@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --ivory-white: #ffffff;
    --cream-white: #faf8f5;
    --warm-cream: #f5f2ed;
    --deep-charcoal: #1a1a1a;
    --soft-black: #2c2c2c;
    --luxury-gold: #d4af37;
    --rich-gold: #b8860b;
    --subtle-gray: #f8f8f8;
    --border-light: #e8e6e0;
    --text-secondary: #666666;
    --text-light: #999999;
    --shadow-soft: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.1);
    --shadow-strong: rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, var(--deep-charcoal) 0%, var(--soft-black) 100%);
    --gradient-gold: linear-gradient(135deg, var(--luxury-gold) 0%, var(--rich-gold) 100%);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--ivory-white);
    color: var(--deep-charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Mobile-First Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0.75rem 1rem;
    display: block;
    width: 100%;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    width: 4rem;
    height: 4rem;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-text {
    display: none;
}

.nav-links {
    display: none; /* Hidden by default on mobile */
    position: fixed;
    inset: 0;
    background: #ffffff;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 2000; /* above navbar */
    transform: translateX(-100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    /* Prevent off-canvas layer from blocking page interactions when closed */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    height: 100dvh; /* mobile viewport units for full height */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.nav-links.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: var(--deep-charcoal);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.5rem;
    padding: 1rem 2rem;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--luxury-gold);
    background: var(--warm-cream);
}

.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--deep-charcoal);
    cursor: pointer;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    z-index: 1001;
}

/* Stronger scroll lock when menu is open */
body.menu-open {
    position: fixed;
    width: 100%;
    overflow: hidden;
    touch-action: none;
}

/* Ensure navbar sits above page content but below menu overlay */
.navbar { z-index: 1500; }

.mobile-menu-btn:hover {
    background: var(--warm-cream);
    color: var(--luxury-gold);
}

.cta-nav {
    display: none;
}

/* Desktop Styles */
@media screen and (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }

    .nav-links {
        display: flex;
        position: static;
        flex-direction: row;
        background: transparent;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        height: auto;
        gap: 2rem;
        padding: 0;
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links a {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }

    .logo-text {
        display: block;
    }

    .cta-nav {
        display: block;
    }
}

/* Mobile-First Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-primary);
    padding: 6rem 1rem 2rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(44, 44, 44, 0.6) 100%);
    z-index: 2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 3;
    text-align: center;
}

.hero-content {
    margin-bottom: 3rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-light);
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--luxury-gold);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-soft);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--ivory-white);
}

.hero-title .accent {
    color: var(--luxury-gold);
    font-style: italic;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
}

.cta-primary {
    background: var(--luxury-gold);
    color: var(--deep-charcoal);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid var(--luxury-gold);
    min-width: 200px;
    text-align: center;
}

.cta-primary:hover {
    background: transparent;
    color: var(--luxury-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.cta-secondary {
    background: transparent;
    color: var(--ivory-white);
    padding: 1rem 2rem;
    border: 2px solid var(--ivory-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    min-width: 200px;
    text-align: center;
}

.cta-secondary:hover {
    background: var(--ivory-white);
    color: var(--deep-charcoal);
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    margin-top: 2rem;
}

.hero-image-container {
    width: 100%;
    height: 300px;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-medium);
    background: var(--ivory-white);
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem 1.5rem;
    color: var(--ivory-white);
}

.overlay-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    font-size: 1.125rem;
    color: var(--luxury-gold);
    font-weight: 600;
}

.floating-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    padding: 0 1rem;
}

.stat {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem 1rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-medium);
    border: 1px solid var(--border-light);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--luxury-gold);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

/* Mobile-First Section Styles */
.section {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--warm-cream);
    border: 1px solid var(--border-light);
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--luxury-gold);
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    font-weight: 700;
    color: var(--deep-charcoal);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Mobile-First Properties Grid */
.properties-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.property-card {
    background: var(--ivory-white);
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}

.property-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.property-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.property-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.property-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--luxury-gold);
    color: var(--ivory-white);
    padding: 0.375rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.property-content {
    padding: 1.5rem;
}

.property-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--deep-charcoal);
    line-height: 1.3;
}

.property-location {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.property-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--luxury-gold);
    margin-bottom: 0.5rem;
}

.property-roi {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.property-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.property-features span {
    background: var(--warm-cream);
    color: var(--text-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Mobile-First Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--ivory-white);
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: var(--warm-cream);
    border: 2px solid var(--luxury-gold);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: var(--luxury-gold);
    color: var(--ivory-white);
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--deep-charcoal);
}

.service-description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Mobile-First About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.about-content {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: center;
}

.about-highlight {
    font-size: 1.25rem;
    color: var(--luxury-gold);
    font-weight: 600;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--ivory-white);
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px var(--shadow-medium);
}

.stat-card-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--luxury-gold);
    margin-bottom: 0.5rem;
}

.stat-card-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

/* Mobile-First Contact Section */
.contact {
    background: var(--ivory-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form {
    background: var(--warm-cream);
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border-light);
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--deep-charcoal);
    text-align: center;
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--deep-charcoal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--ivory-white);
    border: 2px solid var(--border-light);
    border-radius: 0.5rem;
    color: var(--deep-charcoal);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--luxury-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

.contact-info {
    padding: 0;
}

.contact-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--deep-charcoal);
    margin-bottom: 1rem;
}

.contact-item p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--luxury-gold);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--rich-gold);
    text-decoration: underline;
}

/* Mobile-First Footer */
footer {
    background: var(--deep-charcoal);
    color: var(--ivory-white);
    padding: 3rem 1rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--luxury-gold);
    text-align: center;
}

.footer-section p,
.footer-section a {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: var(--luxury-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
}

/* Loading Screen */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--ivory-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 3rem;
    height: 3rem;
    border: 3px solid var(--border-light);
    border-top: 3px solid var(--luxury-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Luxury touches */
.luxury-line {
    width: 3rem;
    height: 2px;
    background: var(--luxury-gold);
    margin: 1.5rem auto;
}

/* Enhanced touch interactions for mobile */
@media (max-width: 767px) {
    .cta-primary, .cta-secondary {
        min-height: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-tap-highlight-color: transparent;
    }
    
    .cta-primary:active, .cta-secondary:active {
        transform: scale(0.98);
    }
    
    .property-card, .service-card {
        -webkit-tap-highlight-color: transparent;
    }
    
    .property-card:active, .service-card:active {
        transform: scale(0.98);
    }
    
    .mobile-menu-btn {
        display: flex;
        -webkit-tap-highlight-color: transparent;
    }
    
    .nav-links a {
        -webkit-tap-highlight-color: transparent;
        user-select: none;
        font-size: 1.25rem;
        padding: 1.5rem 2rem;
    }
    
    .nav-links a:active {
        background: var(--warm-cream);
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    /* Improve form inputs for mobile */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 3rem;
    }
    
    /* Better mobile spacing */
    .hero {
        padding-top: 5rem;
    }
    
    .section {
        padding: 3rem 1rem;
    }
    
    /* Mobile-specific animations */
    .nav-links {
        animation: slideInFromLeft 0.3s ease;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    @keyframes slideInFromLeft {
        from { transform: translateX(-100%); }
        to { transform: translateX(0); }
    }
}

/* Tablet Styles */
@media (min-width: 768px) {
    .navbar {
        padding: 1rem 2rem;
    }
    
    .nav-container {
        padding: 0 2rem;
    }
    
    .nav-links {
        display: flex;
        position: static;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        gap: 2rem;
        z-index: auto;
        transform: none;
        transition: none;
        /* Ensure visibility is restored on larger screens */
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    .nav-links li {
        list-style: none;
    }
    
    .nav-links a {
        color: var(--deep-charcoal);
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        padding: 0.5rem 1rem;
        display: block;
        text-align: center;
        transition: all 0.3s ease;
        border-radius: 0.5rem;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        color: var(--luxury-gold);
        background: var(--warm-cream);
    }
    
    .cta-nav {
        display: inline-block;
        background: var(--luxury-gold);
        color: var(--ivory-white);
        padding: 0.75rem 1.5rem;
        border-radius: 0.5rem;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        margin-left: 1rem;
    }
    
    .cta-nav:hover {
        background: var(--deep-charcoal);
        transform: translateY(-2px);
    }
    
    .hero {
        padding: 7rem 2rem 3rem;
    }
    
    .hero-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        text-align: left;
    }
    
    .hero-content {
        margin-bottom: 0;
    }
    
    .hero-ctas {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .floating-stats {
        position: absolute;
        bottom: -2rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 2rem;
        background: var(--ivory-white);
        padding: 2rem;
        border-radius: 1rem;
        box-shadow: 0 20px 60px var(--shadow-medium);
        border: 1px solid var(--border-light);
    }
    
    .stat {
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        border: none;
        padding: 0;
    }
    
    .section {
        padding: 5rem 2rem;
    }
    
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    
    .about-content {
        text-align: left;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .footer-section h3,
    .footer-section p,
    .footer-section a {
        text-align: left;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .nav-container {
        padding: 0 3rem;
    }
    
    .hero {
        padding: 8rem 3rem 4rem;
    }
    
    .section {
        padding: 6rem 3rem;
    }
    
    .properties-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 4rem;
    }
    
    .logo-text {
        display: flex;
        flex-direction: column;
    }
    
    .logo {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--deep-charcoal);
        letter-spacing: -0.02em;
    }
    
    .logo-subtitle {
        font-size: 0.625rem;
        font-weight: 400;
        color: var(--luxury-gold);
        letter-spacing: 0.1em;
        text-transform: uppercase;
        margin-top: -0.25rem;
    }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
    .hero-container {
        gap: 6rem;
    }
    
    .floating-stats {
        gap: 3rem;
        padding: 2.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for accessibility */
.cta-primary:focus,
.cta-secondary:focus,
.nav-links a:focus,
.mobile-menu-btn:focus {
    outline: 2px solid var(--luxury-gold);
    outline-offset: 2px;
}

/* Consultation form button styling - preserve original button styling */
button[data-action="schedule-consultation"] {
    /* Keep the original cta-primary styling */
    background: var(--luxury-gold);
    color: var(--deep-charcoal);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid var(--luxury-gold);
    min-width: 200px;
    text-align: center;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

button[data-action="schedule-consultation"]:hover {
    background: transparent;
    color: var(--luxury-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --border-light: #000000;
        --text-secondary: #000000;
        --shadow-soft: rgba(0, 0, 0, 0.3);
        --shadow-medium: rgba(0, 0, 0, 0.5);
        --shadow-strong: rgba(0, 0, 0, 0.7);
    }
}

/* Print styles */
@media print {
    .navbar,
    .mobile-menu-btn,
    .hero-background,
    .floating-stats,
    .cta-primary,
    .cta-secondary {
        display: none !important;
    }
    
    .hero {
        background: white !important;
        color: black !important;
        min-height: auto !important;
        padding: 2rem !important;
    }
    
    .hero-title {
        color: black !important;
    }
    
    .hero-description {
        color: black !important;
    }
} 