/* Restored Footer Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
}

body {
    background-color: #f8fafc;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-content {
    flex: 1;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.page-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eaeaea;
}

.compact-footer {
    background: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 100%);
    color: #fff;
    padding: 2rem 0 1rem;
    font-size: 0.85rem;
    margin-top: auto;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 2rem;
    padding-bottom: 1.5rem;
}

@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    max-height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: #a0aec0;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.social-section {
    margin-top: auto;
}

.social-title {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    color: #e2e8f0;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.social-links a:hover::before {
    left: 100%;
}

.social-links a:hover {
    background: #3498db;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.footer-heading {
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    position: relative;
    font-weight: 600;
    color: #fff;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '›';
    margin-right: 8px;
    color: #3498db;
    font-weight: bold;
    transition: transform 0.3s;
}

.footer-links a:hover {
    color: #3498db;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    transform: translateX(3px);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    color: #cbd5e0;
}

.contact-info i {
    margin-right: 0.8rem;
    color: #3498db;
    width: 16px;
    text-align: center;
    margin-top: 0.1rem;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
}

.copyright {
    color: #a0aec0;
}

.developer {
    color: #3498db;
    font-weight: 500;
}

.footer-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.footer-menu li {
    position: relative;
}

.footer-menu li:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -0.9rem;
    color: #4a5568;
}

.footer-menu a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.8rem;
}

.footer-menu a:hover {
    color: #3498db;
}

@media (max-width: 576px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-menu {
        justify-content: center;
    }
    
    .footer-menu li:not(:last-child)::after {
        display: none;
    }
}

.demo-content {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-top: 2rem;
    border: 1px solid #e2e8f0;
}

.demo-content h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.demo-content p {
    margin-bottom: 1rem;
    color: #4a5568;
}

.property-highlight {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.property-card {
    flex: 1;
    background: #f8fafc;
    border-radius: 8px;
    padding: 1rem;
    border-left: 3px solid #3498db;
}

.property-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.newsletter-box {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: white;
}

.newsletter-text {
    flex: 1;
}

.newsletter-text h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    padding: 0.7rem 1rem;
    border: none;
    border-radius: 5px;
    width: 220px;
    font-size: 0.9rem;
}

.newsletter-form button {
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 0 1.2rem;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #1a252f;
}

@media (max-width: 768px) {
    .newsletter-box {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        width: 100%;
        justify-content: center;
    }
    
    .property-highlight {
        flex-direction: column;
    }
}
