/* =========================================
   VARIABLES & RESET
   ========================================= */
:root {
    --bg-color: #ffffff;
    --surface-light: #f4f5f7;
    --text-dark: #0a0a0a;
    --text-muted: #555555;
    --accent-gold: #C19B6C;
    --accent-gold-hover: #a8855a;
    --border-light: #e5e7eb;
    /* Ultra-smooth premium easing */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: all 0.8s var(--ease-out-expo);
    --transition-fast: all 0.3s ease;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* All headings use Montserrat */
h1, h2, h3, h4, h5, h6, .brand-font { 
    font-family: 'Montserrat', sans-serif; 
}

/* =========================================
   ANIMATIONS (Intersection Observer)
   ========================================= */
.reveal { opacity: 0; transition: var(--transition-smooth); }
.reveal.fade-up { transform: translateY(50px); }
.reveal.fade-left { transform: translateX(-40px); }
.reveal.fade-right { transform: translateX(40px); }
.reveal.scale-up { transform: scale(0.95); }
.reveal.active { opacity: 1; transform: translate(0, 0) scale(1); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* =========================================
   VIDÉO & BACKGROUNDS
   ========================================= */
.video-container {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    z-index: 0; overflow: hidden;
}
.video-container video { width: 100%; height: 100%; object-fit: cover; }
.video-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.19) 0%,
      rgba(0, 0, 0, 0.61) 100%
    );
    z-index: 1;
}

.page-wrapper { position: relative; z-index: 2; }

/* =========================================
   COMPOSANTS COMMUNS
   ========================================= */
.container { max-width: 1400px; margin: 0 auto; padding: 0 4rem; }
section { padding: 9rem 0; background: var(--bg-color); position: relative; }

.section-title { 
    font-size: 3.5rem; font-weight: 300; margin-bottom: 1.5rem; line-height: 1.1; letter-spacing: -1px;
}
.section-title strong { font-weight: 700; color: var(--text-dark); }
.section-title span { color: var(--accent-gold); font-weight: 400; }

.section-subtitle { 
    font-size: 1.1rem; color: var(--text-muted); max-width: 650px; 
    line-height: 1.8; margin-bottom: 4rem; font-weight: 300;
}

.btn-gold {
    display: inline-flex; align-items: center; justify-content: center; gap: 12px;
    background: var(--accent-gold); color: #fff; border: none;
    padding: 1.1rem 2.5rem; font-size: 0.85rem; font-weight: 600; 
    text-transform: uppercase; letter-spacing: 1.5px; font-family: 'Montserrat', sans-serif;
    border-radius: 50px; cursor: pointer; text-decoration: none; 
    transition: var(--transition-fast);
}
.btn-gold:hover { 
    background: var(--text-dark); 
    transform: translateY(-2px); 
    box-shadow: 0 15px 30px rgba(0,0,0,0.15); 
}

/* =========================================
   HEADER & NAVBAR
   ========================================= */
header {
    position: absolute; top: 0; left: 0; width: 100%;
    padding: 2.5rem 4rem; display: flex; justify-content: space-between; align-items: center;
    z-index: 100; color: #fff; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.logo { 
    font-family: 'Montserrat', sans-serif; font-size: 2.2rem; font-weight: 800; 
    text-decoration: none; color: #fff; letter-spacing: -1px; display: flex; align-items: baseline;
}
.logo span { 
    font-size: 0.8rem; font-weight: 500; letter-spacing: 4px; 
    text-transform: uppercase; margin-left: 8px; color: var(--accent-gold);
}
nav ul { display: flex; gap: 3.5rem; list-style: none; }
nav a { 
    font-family: 'Montserrat', sans-serif; color: #fff; text-decoration: none; 
    font-size: 0.85rem; font-weight: 500; text-transform: uppercase; 
    letter-spacing: 1px; transition: var(--transition-fast);
}
nav a:hover { color: var(--accent-gold); }

/* =========================================
   HERO SECTION
   ========================================= */
.hero { 
    height: 100vh; display: flex; flex-direction: column; 
    justify-content: flex-end; padding-bottom: 5rem; background: transparent; 
}
.hero-content { color: #fff; margin-bottom: 5rem; text-align: left; }
.hero-title { 
    font-size: 5.5rem; font-weight: 300; line-height: 1.05; 
    margin-bottom: 1.5rem; letter-spacing: -2px;
}
.hero-title strong { font-weight: 700; }

/* Frosted Glass Widget */
.booking-widget {
    background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
    border-radius: 20px; padding: 2.5rem; width: 100%;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15); color: var(--text-dark);
    border: 1px solid rgba(255,255,255,0.4);
}
.widget-tabs { 
    display: flex; gap: 2.5rem; margin-bottom: 2rem; 
}
.tab-btn { 
    font-family: 'Montserrat', sans-serif; background: none; border: none; 
    font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
    color: var(--text-muted); cursor: pointer; transition: var(--transition-fast); 
    position: relative; padding-bottom: 0.5rem;
}
.tab-btn.active { color: var(--text-dark); }
.tab-btn.active::after { 
    content: ''; position: absolute; bottom: 0; left: 0; 
    width: 100%; height: 2px; background: var(--accent-gold); 
}

.search-bar { display: flex; gap: 1.5rem; align-items: center; }
.search-input { 
    flex: 1; display: flex; align-items: center; gap: 15px; 
    padding: 1.2rem 1.5rem; background: var(--surface-light); 
    border-radius: 12px; transition: var(--transition-fast);
    border: 1px solid transparent;
}
.search-input:focus-within { border-color: var(--accent-gold); background: #fff; }
.search-input i { color: var(--text-dark); font-size: 1.1rem; }
.search-input input { 
    border: none; outline: none; width: 100%; background: transparent;
    font-family: 'Montserrat', sans-serif; font-size: 0.95rem; font-weight: 500; color: var(--text-dark);
}
.search-input input::placeholder { color: #888; font-weight: 400; }

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 8rem; align-items: center; }
.about-img-wrapper { position: relative; }
.about-img { 
    width: 100%; height: 700px; object-fit: cover; 
    border-radius: 20px; box-shadow: 0 30px 60px rgba(0,0,0,0.1); 
}
.about-badge { 
    position: absolute; bottom: -40px; right: -40px; background: var(--text-dark); 
    color: #fff; padding: 2.5rem; border-radius: 20px; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.2); text-align: center; 
}
.about-badge strong { 
    font-size: 3rem; color: var(--accent-gold); font-family: 'Montserrat', sans-serif; 
    font-weight: 300; display: block; line-height: 1; margin-bottom: 0.5rem;
}
.about-badge span { 
    font-size: 0.75rem; font-weight: 600; text-transform: uppercase; 
    letter-spacing: 2px; color: #aaa; font-family: 'Montserrat', sans-serif;
}

.about-list { list-style: none; margin: 2rem 0 3rem 0; }
.about-list li { 
    display: flex; align-items: center; gap: 15px; margin-bottom: 1.2rem; 
    font-weight: 500; font-size: 1.05rem; color: var(--text-dark);
}
.about-list li i { 
    color: #fff; background: var(--accent-gold); width: 28px; height: 28px; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; 
}

/* =========================================
   SERVICES SECTION (Hover Cards)
   ========================================= */
.services-section { background: var(--surface-light); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.service-card {
    border-radius: 20px; overflow: hidden; height: 550px; position: relative;
    cursor: pointer; box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform: translateZ(0); /* Hardware acceleration */
}
.service-img { 
    width: 100%; height: 100%; object-fit: cover; 
    transition: transform 1.2s var(--ease-out-expo); 
}
.service-overlay {
    position: absolute; inset: 0; 
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%);
    display: flex; flex-direction: column; justify-content: flex-end; 
    padding: 3rem; color: #fff; transition: var(--transition-smooth);
}
.service-card:hover .service-img { transform: scale(1.08); }
.service-card:hover .service-overlay { background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 100%); }

.service-icon { 
    background: rgba(255,255,255,0.15); width: 60px; height: 60px; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    backdrop-filter: blur(10px); margin-bottom: 1.5rem; font-size: 1.2rem;
    transition: var(--transition-fast);
}
.service-card:hover .service-icon { background: var(--accent-gold); transform: scale(1.1); }

.service-card h3 { font-size: 1.8rem; font-weight: 500; margin-bottom: 1rem; }

.service-content { 
    max-height: 0; overflow: hidden; opacity: 0; 
    transition: var(--transition-smooth); transform: translateY(20px); 
}
.service-card:hover .service-content { max-height: 200px; opacity: 1; transform: translateY(0); }
.service-content p { font-size: 0.95rem; color: #ddd; margin-bottom: 1.5rem; line-height: 1.6; font-weight: 300;}

/* =========================================
   PRESENCE NATIONALE (Marquee Slider)
   ========================================= */
.presence-slider { overflow: hidden; padding: 2rem 0; cursor: grab; }
.presence-slider:active { cursor: grabbing; }
.presence-track { display: flex; gap: 4rem; width: max-content; padding: 0 4rem; }
.city-item { text-align: center; transition: var(--transition-smooth); }
.city-item:hover { transform: translateY(-10px); }
.city-item img { 
    width: 220px; height: 220px; border-radius: 50%; object-fit: cover; 
    margin-bottom: 1.5rem; box-shadow: 0 20px 40px rgba(0,0,0,0.1); pointer-events: none; 
    border: 5px solid #fff;
}
.city-item h4 { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 1.2rem; }

/* =========================================
   TESTIMONIALS 
   ========================================= */
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.testi-col.mt { margin-top: 5rem; }
.testi-card { 
    background: #fff; padding: 3.5rem; border-radius: 20px; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.04); margin-bottom: 3rem; 
    border: 1px solid var(--border-light); position: relative;
}
.testi-card::before {
    content: '\201C'; font-family: 'Montserrat', sans-serif; font-size: 6rem;
    position: absolute; top: 1rem; left: 2rem; color: var(--surface-light);
    line-height: 1; z-index: 0; font-weight: 800;
}
.testi-card p { 
    font-size: 1.1rem; line-height: 1.8; color: var(--text-dark); 
    font-weight: 300; margin-bottom: 2.5rem; position: relative; z-index: 1; 
}
.reviewer { display: flex; align-items: center; gap: 15px; position: relative; z-index: 1;}
.reviewer img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent-gold); }
.reviewer h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.2rem; }
.reviewer span { font-size: 0.75rem; font-family: 'Montserrat', sans-serif; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 600;}
.testimonials{padding:0!important}
/* =========================================
   STATS BAR
   ========================================= */
.stats-section { padding: 2rem 0 6rem 0; background: var(--bg-color); }
.stats-grid { 
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; 
    text-align: center; background: var(--text-dark); color: #fff; 
    padding: 4rem 3rem; border-radius: 24px; box-shadow: 0 30px 60px rgba(0,0,0,0.15); 
}
.stat-icon { font-size: 2rem; color: var(--accent-gold); margin-bottom: 1rem; }
.stat-number { font-size: 3.5rem; font-family: 'Montserrat', sans-serif; font-weight: 300; color: #fff; line-height: 1; margin-bottom: 0.5rem; letter-spacing: -2px;}
.stat-label { font-size: 0.8rem; font-family: 'Montserrat', sans-serif; font-weight: 500; color: #aaa; text-transform: uppercase; letter-spacing: 2px; }

/* =========================================
   PREMIUM FEATURES
   ========================================= */
.premium-section { background: var(--surface-light); }
.premium-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8rem; align-items: center; }
.premium-images { position: relative; height: 650px; }
.img-large { 
    position: absolute; top: 0; left: 0; width: 85%; height: 85%; 
    object-fit: cover; border-radius: 20px; box-shadow: 0 30px 60px rgba(0,0,0,0.15); 
}
.img-small { 
    position: absolute; bottom: 0; right: 0; width: 55%; height: 55%; 
    object-fit: cover; border-radius: 20px; border: 15px solid var(--surface-light); 
    box-shadow: 0 30px 60px rgba(0,0,0,0.15); 
}

.feature-item { display: flex; gap: 25px; margin-bottom: 3rem; }
.feature-icon-box { 
    background: #fff; width: 65px; height: 65px; border-radius: 18px; 
    display: flex; align-items: center; justify-content: center; 
    box-shadow: 0 15px 30px rgba(0,0,0,0.06); flex-shrink: 0; 
}
.feature-icon-box i { font-size: 1.5rem; color: var(--text-dark); }
.feature-text h4 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-text p { font-size: 1rem; color: var(--text-muted); line-height: 1.7; font-weight: 300;}

/* =========================================
   FAQ
   ========================================= */
.faq-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 8rem; align-items: flex-start; }
.accordion-item { border-bottom: 1px solid var(--border-light); margin-bottom: 1rem; }
.accordion-btn { 
    width: 100%; text-align: left; background: none; border: none; 
    padding: 1.8rem 0; font-size: 1.15rem; font-family: 'Montserrat', sans-serif; font-weight: 600; 
    cursor: pointer; display: flex; justify-content: space-between; align-items: center; 
    color: var(--text-dark); transition: var(--transition-fast); 
}
.accordion-btn:hover { color: var(--accent-gold); }
.accordion-btn i { transition: transform 0.4s var(--ease-out-expo); color: var(--text-dark); background: var(--surface-light); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;}
.accordion-btn.active i { transform: rotate(180deg); background: var(--accent-gold); color: #fff;}
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.6s var(--ease-out-expo); }
.accordion-content p { padding-bottom: 1.8rem; color: var(--text-muted); line-height: 1.8; font-weight: 300; font-size: 1.05rem;}

/* =========================================
   4 STEPS
   ========================================= */
.steps-section { background: #fff; text-align: center; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; margin-top: 5rem; }
.step-card { 
    padding: 3.5rem 2.5rem; background: var(--surface-light); border-radius: 24px; 
    position: relative; overflow: hidden; transition: var(--transition-smooth); z-index: 1;
    text-align: left; border: 1px solid transparent;
}
.step-card:hover { 
    transform: translateY(-10px); background: #fff; 
    box-shadow: 0 30px 60px rgba(0,0,0,0.08); border-color: var(--border-light);
}
.step-number-bg { 
    position: absolute; top: -10px; right: -10px; font-size: 10rem; 
    font-weight: 800; color: rgba(0,0,0,0.02); z-index: -1; 
    font-family: 'Montserrat', sans-serif; transition: var(--transition-smooth);
    line-height: 1;
}
.step-card:hover .step-number-bg { color: rgba(193, 155, 108, 0.1); transform: scale(1.1) rotate(-5deg); }
.step-card h4 { font-size: 1.3rem; margin-bottom: 1rem; font-weight: 700;}
.step-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; font-weight: 300;}

/* =========================================
   FOOTER
   ========================================= */
footer { background: var(--text-dark); color: #fff; padding: 7rem 0 2rem 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 5rem; margin-bottom: 5rem; }
.footer-col h4 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 2rem; color: #888; font-weight: 600;}
.footer-col p { color: #aaa; font-size: 0.95rem; line-height: 1.8; max-width: 320px; margin-top: 1.5rem; font-weight: 300;}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 1.2rem; }
.footer-col ul li a { 
    color: #ccc; text-decoration: none; font-size: 0.95rem; 
    font-weight: 400; transition: var(--transition-fast); 
}
.footer-col ul li a:hover { color: var(--accent-gold); padding-left: 5px;}
.footer-bottom { 
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2.5rem; 
    display: flex; justify-content: space-between; font-size: 0.85rem; color: #888; font-weight: 300;
}

/* =========================================
   LIST PAGE (CARS/VILLAS/EXPERIENCES)
   ========================================= */
.page-header {
    height: 50vh;
    min-height: 400px;
    background: var(--text-dark);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px; /* Offset for absolute header */
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1511895426328-dc8714191300?q=80&w=1920&auto=format&fit=crop') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 4.5rem;
    color: #fff;
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.list-section {
    padding: 6rem 0;
    background: var(--surface-light);
}

.list-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.list-count {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.list-filter select {
    appearance: none;
    background: transparent;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    letter-spacing: 1px;
    cursor: pointer;
    outline: none;
    padding-right: 20px;
}

.list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.inventory-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
}

.inventory-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    border-color: var(--border-light);
}

.inv-img-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.inv-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out-expo);
}

.inventory-card:hover .inv-img-wrapper img {
    transform: scale(1.05);
}

.inv-price-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.inv-price-badge span {
    color: var(--accent-gold);
}

.inv-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.inv-body h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.inv-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.inv-specs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.spec-tag {
    background: var(--surface-light);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.inv-footer {
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem;
}

.btn-outline {
    display: block;
    width: 100%;
    text-align: center;
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
    padding: 1rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.inventory-card:hover .btn-outline {
    background: var(--accent-gold);
    color: #fff;
    border-color: var(--accent-gold);
}

/* =========================================
   DETAIL PAGE (INDIVIDUAL VIEW)
   ========================================= */
.detail-hero {
    height: 70vh;
    min-height: 500px;
    width: 100%;
    position: relative;
    margin-bottom: -5rem; /* Overlap the content below */
}

.detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
}

.detail-wrapper {
    background: var(--bg-color);
    border-radius: 40px 40px 0 0;
    position: relative;
    z-index: 10;
    padding: 6rem 0;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    align-items: start;
}

/* Left Column: Content */
.detail-main-header h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.detail-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 300;
    margin: 2.5rem 0;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-light);
}

.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.amenity-item i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

/* Right Column: Sticky Booking Card & Stripe Mock */
.booking-sidebar {
    position: sticky;
    top: 120px; /* Sticks to the top when scrolling */
}

.checkout-card {
    background: #fff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    border: 1px solid var(--border-light);
}

.checkout-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.checkout-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.checkout-form {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.form-group input {
    padding: 1.2rem;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    background: var(--surface-light);
    transition: var(--transition-fast);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: #fff;
}

/* Stripe Elements Mock */
.stripe-element-mock {
    padding: 1.2rem;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background: #fdfdfd;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #a0a0a0;
}
/* =========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================= */

/* --- 1366p / Laptops --- */
@media (max-width: 1400px) {
    .container { padding: 0 3rem; }
    .hero-title { font-size: 4.5rem; }
    .about-grid, .premium-grid, .faq-grid { gap: 4rem; }
    .about-img { height: 600px; }
    .testi-card { padding: 2.5rem; }
    nav ul { gap: 2rem; }
}

/* --- Tablets (iPad Pro etc. - 1024px) --- */
@media (max-width: 1024px) {
    section { padding: 6rem 0; }
    .container { padding: 0 2.5rem; }
    
    header { padding: 1.5rem 2.5rem; }
    nav { display: none; } /* Hide links on tablet, keep Logo & CTA */
    
    .hero-title { font-size: 4rem; margin-bottom: 1rem; }
    .hero-content { margin-bottom: 3rem; }
    
    /* Convert 2-col grids to 1-col and put images on top */
    .about-grid, .premium-grid, .faq-grid { grid-template-columns: 1fr; gap: 4rem; }
    .about-img-wrapper { order: -1; }
    .premium-images { order: -1; height: 500px; }
    
    /* Convert 3-col & 4-col grids to 2-col */
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    
    /* Footer */
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }

    .list-grid { grid-template-columns: repeat(2, 1fr); }

    .detail-grid { grid-template-columns: 1fr; gap: 4rem; }
    .detail-hero { height: 50vh; }
    .booking-sidebar { position: relative; top: 0; }
}

/* --- Mobile Landscape / Standard Tablets (768px) --- */
@media (max-width: 768px) {
    header { padding: 1.2rem 1.5rem; }
    
    .hero { height: auto; min-height: 100vh; padding-top: 120px; justify-content: center; }
    .hero-title { font-size: 3rem; }
    .section-title { font-size: 2.5rem; }
    
    /* Booking Widget Stacking */
    .booking-widget { padding: 1.5rem; }
    .widget-tabs { flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; justify-content: center; }
    .tab-btn { font-size: 0.8rem; padding: 8px 12px; }
    .search-bar { flex-direction: column; gap: 1rem; }
    .search-input { width: 100%; border: 1px solid rgba(255,255,255,0.3); } /* Make borders visible on mobile */
    .search-bar .btn-gold { width: 100%; }
    
    /* Grids to 1 Column */
    .services-grid, .testi-grid, .footer-grid { grid-template-columns: 1fr; }
    .service-card { height: 450px; }
    
    /* Fix Testimonial staggered margin */
    .testi-col.mt { margin-top: 0; }
    
    .about-img { height: 400px; }
    .about-badge { right: 10px; bottom: -20px; padding: 1.5rem; }
    .about-badge strong { font-size: 2.2rem; }
    
    .premium-images { height: 350px; }
    .img-small { border-width: 10px; }
    
    .presence-slider { padding: 1rem 0; }

    .list-grid { grid-template-columns: 1fr; }
}

/* --- Mobile Portrait (480px) --- */
@media (max-width: 480px) {
    section { padding: 4rem 0; }
    .container { padding: 0 1.2rem; } /* Slightly tighter padding for very small screens */
    
    /* Keep Logo and CTA on the same line, scale them down slightly */
    header { 
        flex-direction: row; 
        justify-content: space-between; 
        align-items: center; 
        padding: 1rem 1.2rem; 
        background: rgba(0,0,0,0.4); 
        backdrop-filter: blur(10px); 
    }
    
    /* Adjust logo and button sizes so they fit side-by-side */
    .logo { font-size: 1.4rem; }
    .logo span { font-size: 0.5rem; letter-spacing: 1px; margin-left: 2px; }
    
    .hero { padding-top: 100px; }
    .hero-title { font-size: 2.2rem; line-height: 1.2; }
    .section-title { font-size: 2rem; }
    .hero-content p { font-size: 1rem !important; }
    
    .stats-grid, .steps-grid { grid-template-columns: 1fr; text-align: center; }
    .stats-grid { padding: 2rem 1.2rem; }
    .stat-number { font-size: 2.8rem; }
    
    .about-img { height: 300px; }
    .premium-images { height: 250px; }
    
    .footer-col p { max-width: 100%; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* =========================================
   MOBILE NAVIGATION OVERLAY & HAMBURGER
   ========================================= */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hamburger-menu, .close-menu {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    display: none; /* Hidden on desktop by default */
    transition: var(--transition-fast);
}

.hamburger-menu:hover, .close-menu:hover {
    color: var(--accent-gold);
}

/* The Fullscreen Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.close-menu {
    display: block;
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    font-size: 2.5rem;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    padding: 0; /* Remove default padding */
}

.mobile-nav-links li {
    margin-bottom: 2rem;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-smooth);
}

/* Staggered entrance animation for links */
.mobile-nav-overlay.active .mobile-nav-links li {
    transform: translateY(0);
    opacity: 1;
}
.mobile-nav-overlay.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-overlay.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav-overlay.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav-overlay.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.4s; }
.mobile-nav-overlay.active .mobile-nav-links li:nth-child(5) { transition-delay: 0.5s; }

.mobile-nav-links a:not(.btn-gold) {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    text-decoration: none;
    font-size: 2.2rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-fast);
}

.mobile-nav-links a:not(.btn-gold):hover {
    color: var(--accent-gold);
}

/* Override existing media queries for the new header structure */
@media (max-width: 1024px) {
    .desktop-nav { display: none; }
    .hamburger-menu { display: block; }
}

@media (max-width: 768px) {
    .desktop-btn { display: none; } /* Hide CTA on mobile header, it's in the menu now */
    .close-menu { top: 1.5rem; right: 1.5rem; }
}