/* =========================================
   1. CORE VARIABLES & RESET
   ========================================= */
:root {
    --brand-gold: #C08E72; 
    --brand-gold-dark: #A3765B;
    --brand-charcoal: #0f172a;
    --brand-gray-text: #64748b;
    --brand-light-bg: #f8fafc;
    --swiper-theme-color: #C08E72;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--brand-charcoal);
    background-color: var(--brand-light-bg);
    background-image: repeating-linear-gradient(90deg, #e2e8f0, #e2e8f0 1px, transparent 1px, transparent 40px);
    overflow-x: hidden;
    /* FIX: Added padding to body so fixed navbar doesn't cover content */
    padding-top: 85px; 
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* =========================================
   2. REUSABLE COMPONENTS & BUTTONS
   ========================================= */
.section-padding {
    padding: 50px 0;
}

.hero-title { 
    font-family: 'Inter', sans-serif; 
    font-weight: 800; 
    font-size: 2.5rem; 
    line-height: 1.2; 
    color: var(--brand-charcoal); 
    text-transform: uppercase; 
    margin-bottom: 20px; 
    letter-spacing: -1px; 
}

.section-subtitle {
    color: var(--brand-gold);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}

/* Buttons */
.btn-primary-pulse { 
    background-color: var(--brand-gold); 
    color: white; 
    border-radius: 50px; 
    padding: 14px 32px; 
    font-weight: 700; 
    border: none; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center;
    gap: 10px; 
    text-decoration: none; 
    transition: all 0.3s ease; 
    white-space: nowrap; 
}
.btn-primary-pulse:hover {
    background-color: var(--brand-gold-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(192, 142, 114, 0.4);
}

.btn-double-outline { 
    background: transparent; 
    color: var(--brand-gold); 
    font-weight: 700; 
    padding: 12px 28px; 
    border-radius: 50px; 
    border: none; 
    box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--brand-gold); 
    margin-left: 20px; 
    text-decoration: none; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center;
    gap: 8px; 
    transition: all 0.3s; 
    white-space: nowrap; 
}
.btn-double-outline:hover {
    background-color: var(--brand-gold);
    color: white;
    box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--brand-gold-dark);
}

/* =========================================
   3. NAVBAR
   ========================================= */
.navbar {
    background-color: #000000;
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.navbar-brand img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.nav-link {
    font-weight: 500;
    font-size: 1.05rem;
    color: #ffffff !important;
    margin: 0 15px;
    letter-spacing: 0.5px;
    opacity: 0.9;
    transition: all 0.3s;
}
.nav-link:hover { color: var(--brand-gold) !important; opacity: 1; transform: translateY(-1px); }
.nav-link i { margin-right: 8px; color: var(--brand-gold); font-size: 1.1rem; }

.navbar-toggler { border: 1px solid rgba(255,255,255,0.3); }
.navbar-toggler .bi-list { color: #ffffff !important; font-size: 2rem; }

.btn-nav {
    background-color: var(--brand-gold);
    color: white;
    border-radius: 50px;
    padding: 10px 30px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-nav:hover { background-color: var(--brand-gold-dark); color: white; }

/* FIX: Ensure Offcanvas is above everything on mobile for close button to work */
.offcanvas-lg {
    z-index: 1055 !important;
}

/* =========================================
   4. HERO & SNAPSHOT BAR
   ========================================= */
   
   
.mobile-carousel {
   
    overflow: hidden;
    
}

.mobile-carousel img {
   
    padding-top: 10px !important;
   
    object-fit: contain;
}


.snapshot-bar {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-top: -50px;
    border-radius: 8px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.snapshot-col {
    padding: 30px 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.snapshot-col::after { content: ""; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background-color: #e2e8f0; }
.snapshot-col:last-child::after { display: none; }
.snapshot-icon { font-size: 1.8rem; color: var(--brand-gold); margin-bottom: 10px; }
.snapshot-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; color: var(--brand-gray-text); text-transform: uppercase; display: block; margin-bottom: 5px; }
.snapshot-value { font-size: 1.25rem; font-weight: 800; color: var(--brand-charcoal); margin: 0; line-height: 1.2; }

/* =========================================
   5. SECTIONS (About & Highlights)
   ========================================= */
.about-content { padding: 80px 0; position: relative; }
.geo-image-wrapper { position: relative; height: 100%; min-height: 400px; display: flex; align-items: flex-end; }
.shape-back { position: absolute; top: 0; right: 0; width: 50%; height: 80%; background-color: var(--brand-gold); opacity: 0.2; z-index: 0; }
.shape-mid { position: absolute; top: 50px; left: -20px; width: 80%; height: 90%; background-color: var(--brand-charcoal); clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%); z-index: 1; }
.main-img { position: relative; z-index: 2; width: 90%; border-radius: 4px; box-shadow: -20px 20px 40px rgba(0,0,0,0.2); }

.stats-row { display: flex; gap: 40px; margin-top: 40px; border-top: 1px solid #dcdcdc; padding-top: 30px; }
.stat-item { border-right: 1px solid #dcdcdc; padding-right: 40px; }
.stat-item:last-child { border-right: none; }
.stat-val { font-size: 2rem; font-weight: 800; color: var(--brand-charcoal); display: block; line-height: 1; }
.stat-lbl { font-size: 0.85rem; color: var(--brand-gray-text); font-weight: 600; margin-top: 5px; display: block; }

.highlight-list { list-style: none; padding: 0; margin: 30px 0; }
.highlight-list li { position: relative; padding-left: 35px; margin-bottom: 15px; color: var(--brand-gray-text); font-size: 1.05rem; }
.highlight-list li::before { content: "\F26A"; font-family: "bootstrap-icons"; position: absolute; left: 0; top: 3px; color: var(--brand-gold); font-size: 1.2rem; }
.highlight-img { width: 100%; border-radius: 4px; box-shadow: 0 15px 40px rgba(0,0,0,0.15); transition: transform 0.5s ease; }
.highlight-img:hover { transform: scale(1.02); }

/* =========================================
   6. AMENITIES 
   ========================================= */
.swiper { width: 100%; padding-bottom: 50px !important; }
.swiper-pagination-bullet-active { background-color: var(--brand-gold) !important; }

.amenity-card {
    border: 1px solid #462c0e;
    background: white;
    padding: 40px 20px;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.amenity-card:hover { border-color: var(--brand-gold); box-shadow: 0 10px 30px rgba(0,0,0,0.08); transform: translateY(-5px); }
.amenity-icon { font-size: 4rem; color: var(--brand-charcoal); margin-bottom: 20px; transition: color 0.3s; }
.amenity-card:hover .amenity-icon { color: var(--brand-gold); }
.amenity-title { font-weight: 600; font-size: 1rem; color: var(--brand-gray-text); margin: 0; line-height: 1.4; }

/* =========================================
   7. SNAPSHOT GRID
   ========================================= */
.snapshot-grid-container {
    background: white;
    border-radius: 8px;
    overflow: hidden; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}
.snapshot-column { border-right: 1px solid #e2e8f0; }
.snapshot-column:last-child { border-right: none; }
.snapshot-header {
    background-color: var(--brand-charcoal);
    color: white;
    padding: 20px 10px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    border-right: 1px solid rgba(255,255,255,0.1); 
}
.snapshot-column:last-child .snapshot-header { border-right: none; }
.snapshot-content { background: white; }
.snapshot-item {
    padding: 25px 15px;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
    height: 140px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}
.snapshot-item:hover { background-color: #f8fafc; }
.snapshot-item.no-border { border-bottom: none; }
.snapshot-item .lbl { display: block; font-size: 0.8rem; color: var(--brand-gray-text); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.snapshot-item .val { display: block; font-size: 1.15rem; font-weight: 700; color: var(--brand-charcoal); line-height: 1.3; }
.text-gold { color: var(--brand-gold) !important; }

/* =========================================
   8. GALLERY
   ========================================= */
.gallery-img { width: 100%; height: 350px; object-fit: cover; border-radius: 4px; transition: transform 0.4s ease; }
.gallery-slide { position: relative; overflow: hidden; border-radius: 4px; }
.gallery-slide:hover .gallery-img { transform: scale(1.05); }
.gallery-overlay {
    position: absolute; inset: 0;
    border: 2px solid var(--brand-gold);
    opacity: 0; transition: opacity 0.3s; pointer-events: none;
    margin: 10px;
}
.gallery-slide:hover .gallery-overlay { opacity: 1; }

/* =========================================
   9. FORMS & FAQ
   ========================================= */
/* =========================================
   9. FORMS & FAQ
   ========================================= */
.form-card-unified {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.benefits-strip-side { min-width: 90px; }

.benefit-icon-box {
    width: 45px; height: 45px;
    border: 1px solid var(--brand-gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 5px auto;
    color: var(--brand-gold);
    font-size: 1.1rem;
    transition: all 0.3s;
    background: white;
}

.benefit-item:hover .benefit-icon-box { background-color: var(--brand-gold); color: white; }
.benefit-text { font-size: 0.7rem; font-weight: 700; color: var(--brand-charcoal); line-height: 1.2; display: block; }

/* --- INPUT & SELECT STYLES (UPDATED FIX) --- */
.custom-input-pill {
    border-radius: 50px !important;
    padding: 12px 20px;
    border: 1px solid #cbd5e1;
    font-size: 0.95rem;
    background-color: #f8fafc;
    transition: all 0.3s;
}

/* FIX: Removes Default Blue Border & Adds Gold Glow */
.custom-input-pill:focus,
.form-select.custom-input-pill:focus {
    background-color: white;
    border-color: var(--brand-gold) !important;
    box-shadow: 0 0 0 4px rgba(192, 142, 114, 0.2) !important;
    outline: none !important;
}

.form-select.custom-input-pill { 
    background-position: right 1.5rem center; 
    color: var(--brand-charcoal); /* Ensures text is dark, not gray */
}

/* --- ACCORDION STYLES --- */
.custom-accordion .accordion-item { background-color: transparent; border: none; border-bottom: 1px solid #e2e8f0; margin-bottom: 5px; }
.custom-accordion .accordion-button { background-color: transparent; color: var(--brand-charcoal); font-weight: 700; font-size: 1.05rem; padding: 18px 0; box-shadow: none; }
.custom-accordion .accordion-button:not(.collapsed) { color: var(--brand-gold); }
.custom-accordion .accordion-body { padding: 0 0 20px 0; color: var(--brand-gray-text); line-height: 1.6; }
.custom-accordion .accordion-button::after { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C08E72'%3e%3cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2Z'/%3e%3c/svg%3e"); }
.custom-accordion .accordion-button:not(.collapsed)::after { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C08E72'%3e%3cpath fill-rule='evenodd' d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8Z'/%3e%3c/svg%3e"); }
/* =========================================
   10. FOOTER & STICKY BAR
   ========================================= */
.footer-dark {
    background-color: var(--brand-charcoal);
    color: #e2e8f0;
    margin-top: auto;
    padding-top: 60px;
    padding-bottom: 40px;
    position: relative;
    z-index: 1;
}

.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1040;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
}
.btn-sticky {
    width: 100%;
    border: none;
    padding: 15px 0;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.btn-sticky-dark { background-color: #0f172a; color: white; }
.btn-sticky-gold { background-color: var(--brand-gold); color: white; }

.btn-bottom-to-top {
    position: fixed;
    right: 20px;
    bottom: 30px; 
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--brand-gold);
    color: white;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1050; 
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-bottom-to-top:hover { background-color: var(--brand-gold-dark); transform: translateY(-3px); }
.btn-bottom-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* =========================================
   11. RESPONSIVE MEDIA QUERIES
   ========================================= */
@media (max-width: 991px) {
    .navbar-nav { align-items: flex-start; margin-top: 20px; }
    .nav-link { color: #333 !important; text-align: left; margin: 8px 0; }
    .nav-link i { color: var(--brand-gold); }
    .offcanvas-body { background-color: white; }
    .snapshot-bar { margin-top: 0; border-radius: 0; }
    .snapshot-col { border-bottom: 1px solid #e2e8f0; }
    .snapshot-col::after { display: none; }
    .geo-image-wrapper { height: auto; margin-top: 50px; }
    
    /* Uniform Button Alignment on Mobile */
    .btn-wrapper-mobile { display: flex; gap: 10px; width: 100%; margin-bottom: 30px; }
    .btn-primary-pulse, .btn-double-outline { width: 50%; justify-content: center; padding: 12px 10px; font-size: 0.85rem; margin-left: 0; }
    
    .stats-row { flex-wrap: nowrap; gap: 0; }
    .stat-item { padding: 0 10px; flex: 1; text-align: center; }
}

@media (max-width: 768px) {
    .snapshot-column { border-right: none; border-bottom: 10px solid #f1f5f9; }
    .snapshot-item { height: auto; padding: 20px; }
    body { padding-bottom: 60px; }
    .btn-bottom-to-top { bottom: 80px; }
}

@media (max-width: 576px) {
    .benefits-strip-side { display: none !important; }
    .form-card-unified { padding: 20px; }
}