/* ===== Header Layout ===== */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 2rem;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Main Navigation */
.main-nav {
    display: block;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-color);
}

/* Mobile menu button - hidden by default */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 15px;
}

/* WhatsApp Button */
.mobile-whatsapp {
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-50%) scale(1.1);
}

/* Mobile styles - only for small mobile devices */
@media (max-width: 480px) {
    .mobile-whatsapp {
        display: flex;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .header .container {
        padding-right: 70px;
    }
}

/* Default styles for larger screens */
.main-nav {
    display: block;
}

.mobile-menu-btn,
.mobile-whatsapp {
    display: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
    margin-left: auto;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #333;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2),
.hamburger span:nth-child(3) {
    top: 10px;
}

.hamburger span:nth-child(4) {
    top: 20px;
}

/* Main Navigation */
.main-nav {
    margin-left: auto;
}

.main-nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    padding: 0.5rem 0;
    display: block;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #007bff;
}

/* Mobile Menu */
@media (max-width: 991px) {
    .hamburger {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        padding: 80px 20px 20px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 900;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hamburger.active span:nth-child(1),
    .hamburger.active span:nth-child(4) {
        top: 10px;
        width: 0%;
        left: 50%;
    }
    
    .hamburger.active span:nth-child(2) {
        transform: rotate(45deg);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg);
    }
}

/* Ensure header container doesn't wrap */
.header .container {
    flex-wrap: nowrap;
    padding: 10px 1rem;
    position: relative;
}

/* ===== About Features ===== */
.about-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.about-features li {
    padding: 0.8rem 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.about-features i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.1rem;
    width: 1.5rem;
    text-align: center;
}

.about-features strong {
    color: var(--dark-color);
    font-weight: 600;
    margin-right: 0.3rem;
}

.about-features li:last-child {
    border-bottom: none;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.about-features i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    margin-top: 0.2rem;
    font-size: 1.1rem;
}

.about-features strong {
    color: var(--dark-color);
    margin-right: 0.25rem;
}

@media (max-width: 768px) {
    .about-features {
        grid-template-columns: 1fr;
    }
}

/* ===== Features Grid ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.feature-block {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    box-sizing: border-box;
    min-height: 220px;
    justify-content: center;
}

.feature-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.feature-block .feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.feature-block:hover .feature-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.feature-block .feature-content h4 {
    color: var(--dark-color);
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.feature-block .feature-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .feature-block {
        flex-direction: row;
        text-align: left;
        align-items: center;
        min-height: auto;
        padding: 1.5rem;
    }

    .feature-block .feature-icon {
        margin-right: 1.25rem;
        margin-bottom: 0;
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .feature-block .feature-content h4 {
        margin-top: 0;
    }

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    min-height: 200px; /* Match feature block height */
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.process-step:hover::before {
    opacity: 1;
}

.process-step:hover .step-icon,
.process-step:hover h3,
.process-step:hover p {
    color: var(--white);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.process-step h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    transition: var(--transition);
}

.process-step p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: var(--transition);
}

/* ===== Investment Options ===== */
.investment-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.investment-option {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #eee;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    min-height: 200px; /* Match feature block height */
}

.investment-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.investment-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.investment-option h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.investment-option p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Section Styling */
.section-padding {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.25rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .process-steps,
    .investment-options {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* ===== Section Styling ===== */
section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Alternating background colors */
section:nth-child(odd) {
    background-color: #f8f9fa;  /* Light gray for odd sections */
}

section:nth-child(even) {
    background-color: #ffffff;  /* White for even sections */
}

/* Hero section styling */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
    padding: 8rem 0;
    border-bottom: none;
}

/* Add subtle border between sections */
section:not(:last-child) {
    border-bottom: 1px solid #e9ecef;
}

/* Add subtle shadow to sections for depth */
section:nth-child(even) {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
}

/* Section titles */
.section-title {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Container padding adjustments */
.container {
    position: relative;
    z-index: 1;
}

/* ===== Base Styles ===== */
:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --dark-color: #1f2937;
    --light-color: #f3f4f6;
    --text-color: #374151;
    --text-light: #6b7280;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    padding-top: 90px;
}

/* Reset padding for mobile */
@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

/* Global image styles */
/* Base image styles */
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

ul {
    list-style: none;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: -1;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover::after {
    background: var(--secondary-color);
    transform: scale(1.05);
}

/* Pulse animation for CTA button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

.hero .btn-primary {
    animation: pulse 2s infinite 2s;
}

.hero .btn-primary:hover {
    animation: pulse 2s infinite;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 0.75rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
}

/* Logo Container */
.logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* BlinkHomes Logo */
.blinkhomes-logo {
    height: 5rem;
    width: auto;
    max-width: 18rem;
    object-fit: contain;
}

/* Alliance Bay Logo */
.alliance-logo {
    height: 1.25rem;  /* 25% of BlinkHomes logo */
    width: auto;
    max-width: 8rem;
    object-fit: contain;
    opacity: 0.9;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    font-size: 1rem;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* Mobile Menu Button - Hidden */
.mobile-menu-btn {
    display: none !important;
    visibility: hidden;
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { transform: translateX(20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ===== Contact Section ===== */
.contact {
    padding: 5rem 0;
    background: #f9f9f9;
}

.contact-info-full {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-info-full h3 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: #333;
    position: relative;
    padding-bottom: 1rem;
}

.contact-info-full h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.3rem;
}

.contact-item h4 {
    color: #333;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.contact-item p {
    margin: 0.25rem 0;
    color: #666;
    line-height: 1.6;
}

.contact-item a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.social-links .social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f0f0f0;
    border-radius: 50%;
    color: #555;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .contact-info-full {
        padding: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    color: var(--white);
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    padding: 100px 0;
    margin-top: 0;
    z-index: 1;
    overflow: hidden;
    animation: fadeIn 1s ease-out;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 2rem;
    margin: 0 auto;
}

.hero.compact {
    min-height: 50vh;
    padding: 80px 0;
    background-position: center 30%;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero .btn-primary {
    padding: 12px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.hero .btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/home.jpg') no-repeat center center/cover;
    opacity: 0.9;
    z-index: 0;
    filter: blur(8px);
    transform: scale(1.02); /* Prevents blur edge artifacts */
    will-change: transform, filter;
}

/* Add a dark overlay for better text readability */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
}

.hero h1 {
    font-size: 2.75rem;
    font-weight: 700;
    max-width: 800px;
    line-height: 1.3;
    margin: 0 auto 1.25rem;
    color: var(--white);
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-out 0.2s both;
}

.hero p {
    font-size: 1.1rem;
    max-width: 36rem;
    opacity: 0.95;
    line-height: 1.6;
    margin: 0 auto 1.75rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s ease-out 0.3s both;
}

.hero .btn-primary {
    padding: 8px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 2px solid var(--white);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    animation: fadeInUp 1s ease-out 0.4s both;
    display: inline-block;
    margin-top: 1rem;
}

.hero .btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero responsive adjustments */
/* ===== Mobile Navigation - Hidden ===== */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: none !important;
        visibility: hidden;
    }
    
    .main-nav {
        display: none !important;
        visibility: hidden;
    }
    
    /* Reset any no-scroll styles */
    body.no-scroll {
        overflow: auto !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
    }
}

/* ===== Responsive Styles ===== */
@media (max-width: 992px) {
    .hero {
        min-height: 60vh;
        padding: 80px 1.5rem;
    }
    
    .hero.compact {
        min-height: 45vh;
        padding: 60px 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero .btn-primary {
        padding: 10px 24px;
        font-size: 1rem;
    }
    
    .hero .container {
        align-items: center;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.75rem;
        animation: none;
    }
    
    .hero p {
        font-size: 1.125rem;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .hero .btn {
        align-self: center;
    }
}

@media (max-width: 768px) {
    .hero {
        text-align: center;
        padding: 140px 20px 80px; /* Increased top padding to account for fixed header */
        min-height: calc(100vh - 140px); /* Adjust min-height to account for header */
    }
    
    .hero .container {
        align-items: center;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

/* Properties Section */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.property-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.property-image {
    height: 220px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-info {
    padding: 20px;
}

.property-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.property-price {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.property-features {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.property-features span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* About Section */
.about {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.about .section-title {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.about .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transform: translateY(0);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-content:hover {
    transform: translateY(-5px);
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 2rem auto;
    display: block;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-md);
}

.about-text h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.about-text > p:first-of-type {
    font-size: 1.2rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 2.5rem 0 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.about-features li {
    padding: 20px 25px 20px 70px;
    position: relative;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.about-features li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.about-features li:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.about-features li:hover::before {
    width: 100%;
    opacity: 0.1;
}

.about-features i {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    background: rgba(26, 86, 219, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
    border: 1px solid rgba(26, 86, 219, 0.1);
}

.about-features li:hover i {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(26, 86, 219, 0.2);
}

.about-features strong {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.about-features li span {
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    display: block;
}

.about-image {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    height: 100%;
    min-height: 600px;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: none;
    background: #f1f5f9;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    right: -30px;
    bottom: -30px;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    z-index: 0;
    opacity: 0.2;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-content:hover .about-image::before {
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    opacity: 0.3;
}

.about-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.about-content:hover .about-image img {
    transform: scale(1.03);
}

/* About Section Responsive */
@media (max-width: 1200px) {
    .about-content {
        gap: 60px;
    }
    
    .about-text {
        padding: 50px 40px 50px 0;
    }
    
    .about-image {
        min-height: 550px;
    }
}

@media (max-width: 992px) {
    .about {
        padding: 80px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .about-text {
        padding: 50px 40px;
    }
    
    .about-image {
        min-height: 500px;
        max-width: 100%;
        margin: 0;
    }
    
    .about-image::before {
        top: 20px;
        left: 20px;
        right: -20px;
        bottom: -20px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 60px 0;
    }
    
    .about .section-title {
        margin-bottom: 50px;
    }
    
    .about-text {
        padding: 40px 25px;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-features li {
        padding: 18px 20px 18px 60px;
    }
    
    .about-features i {
        width: 38px;
        height: 38px;
    }
    
    .about-image {
        min-height: 400px;
    }
    
    .about-image::before {
        top: 15px;
        left: 15px;
        right: -15px;
        bottom: -15px;
    }
}

@media (max-width: 480px) {
    .about-text {
        padding: 30px 20px;
    }
    
    .about-text h2 {
        font-size: 1.75rem;
    }
    
    .about-features li {
        padding: 16px 18px 16px 55px;
    }
    
    .about-features i {
        width: 36px;
        height: 36px;
        left: 18px;
    }
    
    .about-image {
        min-height: 350px;
    }
}

/* Contact Section */
.contact {
    position: relative;
    background-color: #fff;
    overflow: hidden;
    padding: 120px 0;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    z-index: -1;
}

.contact .section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.contact .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 60px;
    margin-top: 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.contact-info {
    padding: 60px;
    background: linear-gradient(135deg, #1a56db 0%, #1e429f 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAyKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0.07;
    z-index: 0;
}

.contact-info > * {
    position: relative;
    z-index: 1;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: white;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

.contact-info p {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1.05rem;
}

.contact-info i {
    color: white;
    font-size: 1.2rem;
    margin-top: 0.25rem;
    min-width: 22px;
    text-align: center;
}

.contact-info a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.contact-info a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

.contact-info a:hover {
    color: white;
}

.contact-info a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 2.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    transform: scale(0);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-links a:hover::before {
    transform: scale(1.5);
    opacity: 0.2;
}

.social-links i {
    position: relative;
    z-index: 1;
}

.contact-form {
    padding: 60px;
    background: white;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #f9fafb;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
    background-color: #fff;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(26, 86, 219, 0.2);
}

.btn-submit:hover::before {
    opacity: 1;
}

/* Contact Section Responsive */
@media (max-width: 1200px) {
    .contact-wrapper {
        grid-template-columns: 1fr 1.2fr;
        gap: 40px;
    }
    
    .contact-info,
    .contact-form {
        padding: 50px 40px;
    }
}

@media (max-width: 992px) {
    .contact {
        padding: 80px 0;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-info {
        padding: 50px 40px;
    }
    
    .contact-form {
        padding: 0 40px 50px;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact .section-title {
        margin-bottom: 50px;
    }
    
    .contact-info,
    .contact-form {
        padding: 40px 25px;
    }
    
    .contact-info h3 {
        font-size: 1.6rem;
    }
    
    .social-links a {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 50px 0;
    }
    
    .contact .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .contact-info,
    .contact-form {
        padding: 35px 20px;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

.alliance-logo-container {
    margin-bottom: 25px;
}

.alliance-logo-container img {
    max-width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.alliance-logo-container img:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* ===== Features Grid ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.feature-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.feature-block .feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.feature-block:hover .feature-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.feature-block .feature-content h4 {
    color: var(--dark-color);
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.feature-block .feature-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-block {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }
    
    .feature-block .feature-icon {
        margin-right: 1rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }
}

/* ===== Footer Styles ===== */
.site-footer {
    background-color: #1a1f2b;
    color: #e0e0e0;
    padding: 40px 0 0;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
}

/* Brand and Profile Sections */
.footer-brand,
.footer-profile {
    flex: 1;
    min-width: 280px;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 10px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    display: block;
}

.footer-contact {
    margin: 15px 0;
    width: 100%;
    text-align: center;
}

.contact-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
    color: #e0e0e0;
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
}

.contact-item i {
    color: #c8a97e;
    margin-right: 10px;
    font-size: 16px;
    min-width: 20px;
    text-align: center;
}

.contact-item a {
    color: #4dabf7; /* Light blue color for better visibility */
    text-decoration: underline;
    transition: all 0.2s ease;
    font-weight: 500;
}

.contact-item a:hover {
    color: #339af0; /* Slightly darker blue on hover */
    text-decoration: none;
}

/* Make phone numbers match email link style */
.contact-details a {
    color: #4dabf7;
    text-decoration: underline;
    transition: all 0.2s ease;
}

.contact-details a:hover {
    color: #339af0;
    text-decoration: none;
}

.footer-profile {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: transparent;
    padding: 0;
    color: #e0e0e0;
}

.agent-photo {
    width: 172px;
    height: 172px;
    border-radius: 6px;
    object-fit: cover;
    border: 2px solid rgba(200, 169, 126, 0.3);
    margin-top: 5px;
}

.agent-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.agent-info h3 {
    color: #ffffff;
    margin: 0 0 5px;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.2;
}

.agent-license {
    color: #c8a97e;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.agent-info h3 {
    color: #ffffff;
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 600;
}

.agent-title {
    color: #c8a97e;
    margin: 0 0 5px;
    font-size: 15px;
    font-weight: 500;
}

.agent-license {
    color: #c8a97e;
    font-size: 14px;
    margin: 0 0 12px;
    font-weight: 500;
}

/* Contact Info */
.footer-contact {
    margin: 15px 0;
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
    color: #e0e0e0;
    font-size: 0.9em;
    line-height: 1.4;
}

.contact-item i {
    color: #c8a97e;
    margin-right: 15px;
    font-size: 16px;
    min-width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.contact-item a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
    color: #25D366; /* WhatsApp brand color */
    font-size: 1.2em;
    vertical-align: middle;
}

.whatsapp-link:hover {
    color: #128C7E; /* Darker shade for hover */
    transform: scale(1.1);
}

.contact-item a:hover {
    color: #c8a97e;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 0 0 20px 0;
    padding: 0;
    width: 100%;
    flex-wrap: wrap;
}

/* UserWay Accessibility Widget - Increased specificity */
#userway-widget-container #userwayAccessibilityIcon,
#userwayAccessibilityIcon {
    top: 90% !important;
    left: 3% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translate(-50%, -50%) !important;
    position: fixed !important;
    z-index: 9999 !important;
    margin: 0 !important;
    transition: all 0.3s ease-in-out !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
}

/* Mobile optimization */
@media (max-width: 768px) {
    #userway-widget-container #userwayAccessibilityIcon,
    #userwayAccessibilityIcon {
        bottom: 20px !important;
        top: 90% !important;
        left: 3% !important;
        right: 20px !important;
        transform: none !important;
    }
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(200, 169, 126, 0.1);
    border-radius: 50%;
    color: #c8a97e;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(200, 169, 126, 0.2);
}

.social-links a:hover {
    background: #c8a97e;
    color: #1a1f2b;
    transform: translateY(-2px);
    border-color: #c8a97e;
}

/* Footer Legal */
.footer-legal {
    background: #1a1f2b;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(200, 169, 126, 0.2);
}

.footer-legal p {
    margin: 0;
    color: #b0b0b0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

.footer-legal a {
    color: #c8a97e;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 400;
}

.footer-legal a:hover {
    color: #fff;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 1199px) {
    .footer-grid {
        max-width: 900px;
    }
}

@media (max-width: 991px) {
    .footer-grid {
        justify-content: center;
    }
    
    .footer-brand,
    .footer-profile {
        flex: 0 1 45%;
        min-width: 300px;
    }
}

@media (max-width: 767px) {
    .footer-grid {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .footer-brand,
    .footer-profile {
        width: 100%;
        max-width: 400px;
        text-align: center;
        align-items: center;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        padding: 0 15px 20px;
        margin-bottom: env(safe-area-inset-bottom, 20px);
    }
    
    .footer-brand,
    .footer-profile {
        min-width: 100%;
        max-width: 100%;
    }
    
    .site-footer {
        padding-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .footer-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 10px;
    }
    
    .agent-photo {
        margin: 0 auto 15px;
        width: 150px;
        height: 150px;
    }
    
    .agent-info {
        width: 100%;
        padding: 0 5px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 5px;
        margin-bottom: 8px;
    }
    
    .contact-item i {
        margin-right: 0;
    }
}

/* Old footer styles removed - Using new .site-footer styles instead */

@media (max-width: 576px) {
    .footer-section.profile-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .profile-info {
        text-align: center;
        margin-top: 20px;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .footer {
        padding: 50px 0 20px;
    }
    .alliance-bay-footer-logo {
        height: 20px;
    }
    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 100px;
    }
    .alliance-bay-footer-logo {
        height: 20px;
    }
    .header {
        padding: 15px 0;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        transition: var(--transition);
        padding: 30px 0;
        overflow-y: auto;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .logo-img {
        height: 100px;
    }
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
}
