/* ==========================================================================
   Homepage Specific Styles
   ========================================================================== */

@import url('../base.css');

/* ==========================================================================
   Page Layout Override pour Header Transparent
   ========================================================================== */

/* Body sur page d'accueil - background transparent/noir pour hero */
.page-home body {
    background: #0f1215; /* Même couleur que le hero fallback */
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: transparent; /* Transparent pour voir la vidéo */
    /* Aucun padding-top - le main.home-main n'a plus de padding */
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #fff !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Plus de margin-top - le hero prend toute la hauteur */
}

.hero-content .overline {
    color: var(--gold-500) !important;
    margin-bottom: var(--g-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: var(--font-semibold);
}

.hero-content h1 {
    font-size: clamp(48px, 5vw, 64px);
    line-height: 1.1;
    margin-bottom: var(--g-sm);
    font-weight: var(--font-bold);
    color: #fff !important;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.hero-content .lead {
    font-size: clamp(20px, 2vw, 24px);
    color: #fff !important;
    margin-bottom: var(--g-md);
    font-weight: var(--font-regular);
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: var(--g-xs);
    justify-content: center;
}

/* Premium button animations for hero */
.hero-cta .btn {
    position: relative;
    overflow: hidden;
}

.hero-cta .btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-cta .btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Hero Welcome Image */
.hero-image {
    margin-bottom: var(--g-md);
    max-width: 600px;
    width: 100%;
    animation: heroImageFade 0.8s ease-out;
}

.hero-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

/* Hero Tagline */
.hero-tagline {
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.4;
    margin-bottom: var(--g-md);
    font-weight: var(--font-semibold);
    color: #fff !important;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
    max-width: 600px;
}

/* White Button Style */
.btn-white {
    background: rgba(255, 255, 255, 0.95);
    color: var(--ink-900);
    border: 1px solid transparent;
    padding: 14px 32px;
    font-weight: var(--font-semibold);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-white:hover {
    background: #fff;
    color: var(--gold-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-white::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold-500);
    transition: width 0.3s ease;
}

.btn-white:hover::after {
    width: 100%;
}

/* Hero Image Fade Animation */
@keyframes heroImageFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ==========================================================================
   About Section
   ========================================================================== */

.section-about {
    padding: calc(var(--g-xxl) * 1.2) 0;
    position: relative;
}

.section-about::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100px;
    width: 300px;
    height: 300px;
    background: var(--gold-100);
    opacity: 0.3;
    border-radius: 50%;
    filter: blur(100px);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: var(--g-xl);
    align-items: center;
}

.about-content h2 {
    margin-bottom: var(--g-sm);
}

.about-content .overline {
    color: var(--gold-500);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 14px;
    font-weight: var(--font-semibold);
    margin-bottom: var(--g-xs);
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--ink-700);
    margin-bottom: var(--g-sm);
}

.about-image figure {
    height: 100%;
    min-height: 400px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.section-services {
    padding: calc(var(--g-xxl) * 1.2) 0;
    background: var(--paper);
    position: relative;
    overflow: hidden;
}

.section-services::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--gold-300);
    opacity: 0.2;
    border-radius: 50%;
    filter: blur(80px);
}

.section-header {
    margin-bottom: var(--g-lg);
}

.section-header .overline {
    color: var(--gold-500);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 14px;
    font-weight: var(--font-semibold);
    margin-bottom: var(--g-xs);
    display: inline-block;
}

.section-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--ink-900);
    margin-bottom: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--g-md);
    margin-bottom: var(--g-lg);
}

/* Enhanced service card hover */
.services-grid .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

/* ==========================================================================
   Properties Section
   ========================================================================== */

.section-properties {
    padding: calc(var(--g-xxl) * 1.2) 0;
    background: var(--paper);
    position: relative;
}

.properties-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--g-lg);
    align-items: start;
}

.properties-main figure {
    height: 600px;
}

.properties-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.properties-content {
    padding-top: var(--g-md);
}

.properties-content .overline {
    color: var(--gold-500);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 14px;
    font-weight: var(--font-semibold);
    margin-bottom: var(--g-xs);
    display: inline-block;
}

.properties-content h2 {
    font-size: clamp(32px, 4vw, 40px);
    margin-bottom: var(--g-sm);
}

.properties-gallery {
    display: flex;
    gap: var(--g-sm);
    margin: var(--g-md) 0;
}

.gallery-thumb {
    width: 60px;
    height: 60px;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ==========================================================================
   Enhanced Contact Split Section - Premium JOIA-like Design
   ========================================================================== */

.section-contact-split {
    background: linear-gradient(to bottom, var(--paper-contrast) 0%, var(--paper) 100%);
    position: relative;
    overflow: hidden;
    padding: var(--g-xxl) 0;
}

/* Elegant decorative blurs */
.section-contact-split::before {
    content: "";
    position: absolute;
    top: -150px;
    left: -150px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(191, 161, 116, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
}

.section-contact-split::after {
    content: "";
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(191, 161, 116, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.container-fluid {
    max-width: none;
    padding: 0;
}

/* Premium two-column layout */
.contact-business-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
    gap: var(--g-xxl);
    padding: 0 var(--g-xl);
}

/* ==========================================================================
   Business Card Component - Luxury Edition
   ========================================================================== */

.business-card {
    position: relative;
    background-image: url('../../../media/image/Accueil/villa-castellane-portrait-nuit-1.png');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.18),
        0 0 0 1px rgba(191, 161, 116, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 480px;
    display: flex;
    align-items: flex-end;
}

.business-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.22),
        0 0 0 1px rgba(191, 161, 116, 0.25);
}

/* Sophisticated dark gradient overlay with blur effect */
.business-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(15, 18, 21, 0.92) 0%,
        rgba(15, 18, 21, 0.8) 30%,
        rgba(15, 18, 21, 0.5) 60%,
        rgba(15, 18, 21, 0.25) 100%
    );
    backdrop-filter: blur(2px);
    z-index: 1;
}

/* Elegant gold vertical accent */
.business-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        var(--gold-500) 20%,
        var(--gold-600) 50%,
        var(--gold-500) 80%,
        transparent 100%
    );
    opacity: 0.85;
    z-index: 2;
}

.business-card-content {
    position: relative;
    z-index: 3;
    padding: var(--g-lg) var(--g-lg) var(--g-xl) var(--g-lg);
    color: #fff;
    width: 100%;
}

/* Subtle top accent line */
.business-card-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: var(--g-xl);
    right: var(--g-xl);
    height: 2px;
    background: linear-gradient(
        to right,
        transparent 0%,
        var(--gold-500) 30%,
        var(--gold-500) 70%,
        transparent 100%
    );
    opacity: 0.4;
}

.business-card h3 {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: var(--font-bold);
    color: #fff;
    margin-bottom: var(--g-sm);
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.7);
}

.business-card address {
    font-style: normal;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: var(--g-md);
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.business-card-email {
    font-size: 18px;
    font-weight: var(--font-semibold);
    color: var(--gold-300);
    text-decoration: none;
    margin-bottom: var(--g-md);
    display: inline-block;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    padding-bottom: 4px;
}

.business-card-email::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-400);
    transition: width 0.4s ease;
}

.business-card-email:hover {
    color: var(--gold-200);
}

.business-card-email:hover::after {
    width: 100%;
}

.business-card-social {
    display: flex;
    gap: 14px;
    align-items: center;
}

.business-card .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
}

.business-card .social-icon:hover {
    background: var(--gold-500);
    border-color: var(--gold-500);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 28px rgba(191, 161, 116, 0.5);
}

.business-card .social-icon svg {
    width: 22px;
    height: 22px;
    fill: #fff;
    transition: transform 0.3s ease;
}

.business-card .social-icon:hover svg {
    transform: scale(1.15);
}

/* ==========================================================================
   Contact Form Panel - Ultra Clean & Premium
   ========================================================================== */

.contact-form-panel {
    background: rgba(255, 255, 255, 0.98);
    padding: var(--g-xl) var(--g-lg);
    display: flex;
    align-items: center;
    position: relative;
    border-radius: var(--r-xl);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(191, 161, 116, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
}

.contact-form-panel:hover {
    box-shadow:
        0 30px 85px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(191, 161, 116, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* Elegant gold accent top border */
.contact-form-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(
        to right,
        transparent 0%,
        var(--gold-500) 50%,
        transparent 100%
    );
    border-radius: var(--r-xl) var(--r-xl) 0 0;
}

.contact-form-wrapper {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
}

.contact-form-header {
    margin-bottom: var(--g-md);
    text-align: left;
}

.contact-form-header .overline {
    color: var(--gold-500);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 13px;
    font-weight: var(--font-bold);
    margin-bottom: var(--g-xs);
    display: inline-block;
}

.contact-form-header h2 {
    font-size: clamp(28px, 3vw, 36px);
    margin-bottom: var(--g-xs);
    color: var(--ink-900);
    font-weight: var(--font-bold);
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.contact-form-header p {
    color: var(--ink-700);
    font-size: 16px;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--g-sm);
}

.form-group {
    margin-bottom: var(--g-xs);
}

.btn-full {
    width: 100%;
    margin-top: var(--g-sm);
    padding: 14px 28px;
    font-size: 15px;
    font-weight: var(--font-semibold);
}

/* ==========================================================================
   Enhanced Map Section - Full Width with Floating Overlay
   ========================================================================== */

.section-map {
    position: relative;
    overflow: visible;
    background: transparent;
    padding: 0;
}

.map-container {
    position: relative;
    width: 100%;
    z-index: 1;
}

/* Full width map */
.map-container iframe {
    width: 100%;
    height: 450px;
    display: block;
    filter: grayscale(30%) contrast(1.05) brightness(0.95) saturate(0.95);
    transition: filter 0.5s ease;
}

.map-container:hover iframe {
    filter: grayscale(10%) contrast(1.02) brightness(0.98) saturate(1);
}

/* ==========================================================================
   Floating Map Overlay - Compact & Elegant
   ========================================================================== */

.map-overlay-enhanced {
    position: absolute;
    bottom: var(--g-lg);
    right: var(--g-lg);
    background: rgba(255, 255, 255, 0.97);
    border-radius: var(--r-lg);
    padding: var(--g-md) var(--g-lg);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(191, 161, 116, 0.15);
    backdrop-filter: blur(16px);
    z-index: 10;
    max-width: 340px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-overlay-enhanced:hover {
    transform: translateY(-4px);
    box-shadow:
        0 20px 56px rgba(0, 0, 0, 0.18),
        0 0 0 1px rgba(191, 161, 116, 0.25);
}

/* Gold accent bar at left */
.map-overlay-enhanced::before {
    content: "";
    position: absolute;
    top: var(--g-sm);
    bottom: var(--g-sm);
    left: 0;
    width: 4px;
    background: linear-gradient(
        to bottom,
        var(--gold-500) 0%,
        var(--gold-600) 100%
    );
    border-radius: 0 var(--r-md) var(--r-md) 0;
}

.map-info-enhanced {
    position: relative;
}

/* Compact icon */
.map-info-icon {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-600) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 20px rgba(191, 161, 116, 0.4),
        0 0 0 3px rgba(255, 255, 255, 1);
    transition: all 0.3s ease;
}

.map-overlay-enhanced:hover .map-info-icon {
    transform: scale(1.05);
}

.map-info-icon img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

/* Typography */
.map-info-enhanced h3 {
    font-size: 22px;
    margin-bottom: var(--g-xs);
    color: var(--ink-900);
    font-weight: var(--font-bold);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.map-location {
    margin-bottom: var(--g-sm);
    color: var(--ink-700);
    line-height: 1.6;
    font-size: 15px;
}

.map-location strong {
    color: var(--gold-600);
    font-weight: var(--font-semibold);
    font-size: 16px;
    display: block;
    margin-bottom: 4px;
}

/* Compact actions */
.map-actions {
    display: flex;
    gap: var(--g-xs);
    flex-wrap: wrap;
}

.map-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: var(--font-semibold);
    white-space: nowrap;
}

.map-actions .btn-primary {
    box-shadow: 0 4px 12px rgba(191, 161, 116, 0.3);
}

.map-actions .btn-primary:hover {
    box-shadow: 0 6px 16px rgba(191, 161, 116, 0.4);
    transform: translateY(-2px);
}

.map-actions .btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Hide hours on overlay - keep it minimal */
.map-hours {
    display: none;
}

/* Reveal animation */
.map-overlay-enhanced[data-reveal] {
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.map-overlay-enhanced.in {
    transform: translateY(0);
    opacity: 1;
}

/* ==========================================================================
   Responsive Design - Contact & Map Sections
   ========================================================================== */

@media (max-width: 1440px) {
    .contact-business-grid {
        max-width: 1200px;
        gap: var(--g-lg);
    }
}

@media (max-width: 1200px) {
    .contact-business-grid {
        gap: var(--g-md);
    }

    .business-card {
        min-height: 440px;
    }

    .map-container iframe {
        height: 400px;
    }

    .map-overlay-enhanced {
        right: var(--g-md);
        bottom: var(--g-md);
    }
}

@media (max-width: 1024px) {
    /* Contact Section Responsive */
    .contact-business-grid {
        grid-template-columns: 1fr;
        gap: var(--g-lg);
        padding: var(--g-lg) var(--g-md);
    }

    .business-card {
        min-height: 380px;
        order: 2;
    }

    .contact-form-panel {
        order: 1;
    }

    /* Map Section Responsive */
    .map-container iframe {
        height: 380px;
    }

    .map-overlay-enhanced {
        right: var(--g-sm);
        bottom: var(--g-sm);
        max-width: 300px;
        padding: var(--g-sm) var(--g-md);
    }

    .map-info-enhanced h3 {
        font-size: 20px;
    }

    .map-location {
        font-size: 14px;
    }

    .map-info-icon {
        width: 42px;
        height: 42px;
    }

    .map-info-icon img {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 768px) {
    /* Contact Section Mobile */
    .section-contact-split {
        padding: var(--g-xl) 0;
    }

    .contact-business-grid {
        padding: var(--g-md) var(--g-sm);
        gap: var(--g-md);
    }

    .business-card {
        min-height: 340px;
        border-radius: var(--r-lg);
    }

    .business-card-content {
        padding: var(--g-md) var(--g-md) var(--g-lg) var(--g-md);
    }

    .business-card h3 {
        font-size: clamp(22px, 5vw, 26px);
    }

    .business-card address {
        font-size: 15px;
    }

    .business-card-email {
        font-size: 16px;
    }

    .business-card .social-icon {
        width: 44px;
        height: 44px;
    }

    .contact-form-panel {
        padding: var(--g-lg) var(--g-md);
        border-radius: var(--r-lg);
    }

    .contact-form-header h2 {
        font-size: clamp(24px, 5vw, 30px);
    }

    /* Map Section Mobile */
    .map-container iframe {
        height: 350px;
    }

    .map-overlay-enhanced {
        position: relative;
        left: auto;
        bottom: auto;
        max-width: none;
        margin: calc(var(--g-md) * -1) var(--g-sm) var(--g-md) var(--g-sm);
        padding: var(--g-md) var(--g-md);
    }

    .map-info-enhanced h3 {
        font-size: 20px;
    }

    .map-info-icon {
        top: -12px;
        right: -4px;
        width: 44px;
        height: 44px;
    }

    .map-info-icon img {
        width: 20px;
        height: 20px;
    }

    .map-actions {
        flex-direction: row;
    }

    .map-actions .btn {
        flex: 1;
        justify-content: center;
        padding: 10px 12px;
        font-size: 12px;
    }
}

@media (max-width: 640px) {
    /* Contact Section Small Mobile */
    .section-contact-split {
        padding: var(--g-lg) 0;
    }

    .contact-business-grid {
        padding: var(--g-sm) var(--g-xs);
        gap: var(--g-sm);
    }

    .business-card {
        min-height: 300px;
        border-radius: var(--r-md);
    }

    .business-card-content {
        padding: var(--g-sm) var(--g-sm) var(--g-md) var(--g-sm);
    }

    .business-card-content::before {
        left: var(--g-sm);
        right: var(--g-sm);
    }

    .business-card h3 {
        font-size: 20px;
    }

    .business-card address {
        font-size: 14px;
        margin-bottom: var(--g-xs);
    }

    .business-card-email {
        font-size: 15px;
        margin-bottom: var(--g-xs);
    }

    .business-card-social {
        gap: 10px;
    }

    .business-card .social-icon {
        width: 40px;
        height: 40px;
    }

    .business-card .social-icon svg {
        width: 18px;
        height: 18px;
    }

    .contact-form-panel {
        padding: var(--g-md) var(--g-sm);
        border-radius: var(--r-md);
    }

    .contact-form-header {
        margin-bottom: var(--g-sm);
    }

    .contact-form-header h2 {
        font-size: 22px;
    }

    .contact-form-header p {
        font-size: 14px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Map Section Small Mobile */
    .map-container iframe {
        height: 300px;
    }

    .map-overlay-enhanced {
        margin: calc(var(--g-sm) * -1) var(--g-xs) var(--g-sm) var(--g-xs);
        padding: var(--g-sm) var(--g-sm);
        border-radius: var(--r-md);
    }

    .map-info-enhanced h3 {
        font-size: 18px;
    }

    .map-location {
        font-size: 13px;
        margin-bottom: var(--g-xs);
    }

    .map-location strong {
        font-size: 14px;
    }

    .map-info-icon {
        width: 38px;
        height: 38px;
        top: -10px;
        right: -2px;
    }

    .map-info-icon img {
        width: 18px;
        height: 18px;
    }

    .map-actions .btn {
        font-size: 11px;
        padding: 8px 10px;
        gap: 6px;
    }
}

/* ==========================================================================
   Partners Section
   ========================================================================== */

.section-partners {
    padding: var(--g-lg) 0;
    background: linear-gradient(to bottom, var(--paper), #fff);
    border-top: 1px solid rgba(191, 161, 116, 0.1);
    position: relative;
}

.partners-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--g-lg);
    flex-wrap: wrap;
}

.partner-logo {
    opacity: 0.6;
    transition: opacity var(--transition-base);
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo img {
    max-height: 45px;
    width: auto;
    filter: grayscale(100%) opacity(0.8);
    transition: filter var(--transition-base), transform var(--transition-base);
}

.partner-logo:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

.partner-logo-large img {
    max-height: 60px;
}


/* ==========================================================================
   Page Loader
   ========================================================================== */

.page-loader {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s, visibility 0.3s;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--gold-100);
    border-top-color: var(--gold-500);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1200px) {
    .about-grid {
        grid-template-columns: 1fr 400px;
        gap: var(--g-lg);
    }
    
    .properties-showcase {
        grid-template-columns: 1fr;
        gap: var(--g-md);
    }
    
    .properties-main figure {
        height: 400px;
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 500px;
    }
    
    .hero-content {
        text-align: center;
        margin: 0 auto;
        padding: 0 var(--g-sm);
    }
    
    .hero-image {
        max-width: 400px;
    }
    
    .hero-tagline {
        font-size: clamp(20px, 4vw, 28px);
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .btn-white {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--g-md);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .properties-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hero-image {
        max-width: 300px;
        margin-bottom: var(--g-sm);
    }
    
    .hero-tagline {
        font-size: 20px;
        padding: 0 var(--g-xs);
    }
    
    .partners-grid {
        gap: var(--g-md);
    }
    
    .partner-logo img {
        max-height: 30px;
    }
}