/* ==========================================================================
   Kost Mamah Dedeh - CLEAN & MODERN LIGHT THEME WITH GOLD ACCENTS
   Vibe: Ultra Clean, Professional, Eye-Friendly & High Conversion
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIABLES & DESIGN TOKENS (CLEAN & MODERN LIGHT TOKENS)
   -------------------------------------------------------------------------- */
:root {
    /* Backgrounds (Clean & Modern) */
    --bg-main: #FAFAFA;          /* Putih lembut (tidak bikin mata sakit) */
    --bg-card: #FFFFFF;          /* Putih murni untuk kartu agar kontras */
    --bg-surface: #FFFFFF;
    --bg-light: #F3F4F6;         /* Background sekunder untuk section khusus */
    --bg-alt: #F3F4F6;
    --bg-glass: rgba(255, 255, 255, 0.85); /* Efek kaca transparan interaktif */
    
    /* Typography */
    --text-dark: #1F2937;        /* Grey gelap modern (lebih ramah dibanding hitam pekat) */
    --text-muted: #6B7280;      /* Abu-abu halus untuk keterangan */
    --text-light: #9CA3AF;
    
    /* Interactive Gold Accents */
    --accent: #C5A059;            /* Muted Warm Gold */
    --accent-gold: #C5A059;       /* Muted Warm Gold */
    --accent-gold-light: #F4E8C1; /* Emas muda untuk background badge */
    --accent-gold-hover: #B08C45; /* Emas sedikit gelap saat tombol ditekan */
    --accent-hover: #B08C45;
    --accent-light: #FDF8EC;
    
    --slate-dark: #111827;
    
    /* Borders & Soft Shadows (Teknologi Look) */
    --border-light: #E5E7EB;
    --border-color: #E5E7EB;
    --border-gold: rgba(197, 160, 89, 0.4);
    
    --shadow-tech: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    --shadow-gold: 0 8px 20px -4px rgba(197, 160, 89, 0.25);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 30px -10px rgba(0, 0, 0, 0.12);
    
    /* Badges Status */
    --tag-bg: #F3F4F6;
    --tag-text: #374151;
    
    --success-bg: #DCFCE7;
    --success-text: #15803D;
    --warning-bg: #FEF9C3;
    --warning-text: #A16207;
    --danger-bg: #FEE2E2;
    --danger-text: #B91C1C;
    
    --radius-sm: 8px;
    --radius-md: 12px;           /* Smooth 12px Rounded Corners */
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

/* --------------------------------------------------------------------------
   2. BASE RESET & GLOBAL STYLING
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-overflow-scrolling: touch;
}

body {
    background-color: var(--bg-main);
    color: var(--text-dark);
    font-family: var(--font-family);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding-bottom: 70px;
}

@media (min-width: 769px) {
    body { padding-bottom: 0; }
}

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

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

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

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

/* --------------------------------------------------------------------------
   3. ANIMATIONS & AOS ENTRANCE EFFECTS
   -------------------------------------------------------------------------- */
[data-aos] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   4. NAVIGATION BAR (GLASSMORPHISM CLEAN HEADER)
   -------------------------------------------------------------------------- */
.navbar {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    padding: 16px 0;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-logo i { color: var(--accent-gold); }
.brand-logo span { color: var(--accent-gold); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.92rem;
    transition: var(--transition);
}

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

.btn-primary-sm {
    background: var(--accent-gold);
    color: #FFFFFF !important;
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
}

.btn-primary-sm:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* --------------------------------------------------------------------------
   5. HERO SECTION (CLEAN & MODERN LIGHT)
   -------------------------------------------------------------------------- */
.hero {
    padding: 80px 0 60px;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, rgba(197, 160, 89, 0.08) 0%, rgba(250, 250, 250, 0) 70%),
                linear-gradient(180deg, #FFFFFF 0%, var(--bg-main) 100%);
    border-bottom: 1px solid var(--border-light);
}

.badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--accent-gold-light);
    color: #926E24;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid var(--border-gold);
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 30px;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent-gold);
    color: #FFFFFF !important;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -4px rgba(197, 160, 89, 0.35);
}

.btn-outline {
    background-color: var(--bg-card);
    border: 1.5px solid var(--border-light);
    color: var(--text-dark);
    box-shadow: var(--shadow-tech);
}

.btn-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 36px;
    margin-top: 50px;
    padding-top: 36px;
    border-top: 1px solid var(--border-light);
}

.stat-item h4 {
    font-size: 1.6rem;
    color: var(--accent-gold);
    font-weight: 800;
}

.stat-item p {
    font-size: 0.88rem;
    margin: 0;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   6. PROPERTY TAG BADGES
   -------------------------------------------------------------------------- */
.property-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.property-tag {
    background: var(--tag-bg);
    color: var(--tag-text);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid var(--border-light);
}

.property-tag.highlight {
    background: var(--accent-gold-light);
    color: #85611B;
    border-color: var(--border-gold);
}

/* --------------------------------------------------------------------------
   7. HIGHLIGHT FASILITAS UMUM
   -------------------------------------------------------------------------- */
.section-header {
    text-align: center;
    margin-bottom: 44px;
}

.section-header h2 {
    font-size: 2.1rem;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.grid-fasilitas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.card-fasilitas {
    background: var(--bg-card);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-tech);
    transition: var(--transition);
}

.card-fasilitas:hover {
    border-color: var(--accent-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.card-fasilitas i {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 14px;
    display: inline-block;
    background: var(--accent-light);
    width: 52px;
    height: 52px;
    line-height: 52px;
    text-align: center;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-gold);
}

.card-fasilitas h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.card-fasilitas p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   8. COMPACT ROOM CARD LAYOUT
   -------------------------------------------------------------------------- */
.room-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.room-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-tech);
    padding: 24px;
    transition: var(--transition);
}

.room-card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-md);
}

.room-card-main {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    align-items: center;
}

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

.room-main-thumb {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #E5E7EB;
}

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

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.room-title-group h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.room-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.room-price span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
}

.badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
}

.badge-available { background: var(--success-bg); color: var(--success-text); border: 1px solid #BBF7D0; }
.badge-warning   { background: var(--warning-bg); color: var(--warning-text); border: 1px solid #FEF08A; }
.badge-full      { background: var(--danger-bg);  color: var(--danger-text);  border: 1px solid #FECACA; }

.btn-toggle-details {
    width: 100%;
    margin-top: 18px;
    padding: 12px 18px;
    background-color: var(--bg-main);
    border: 1px dashed var(--accent-gold);
    border-radius: var(--radius-sm);
    color: #926E24;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.btn-toggle-details:hover {
    background-color: var(--accent-gold-light);
}

.icon-arrow {
    transition: transform 0.3s ease;
}

/* Smooth Accordion Height Expansion */
.accordion-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-wrapper.open {
    grid-template-rows: 1fr;
}

.accordion-inner {
    overflow: hidden;
}

.accordion-content {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

/* Gallery Filtering System */
.gallery-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 7px 14px;
    border: 1px solid var(--border-light);
    background: var(--bg-card);
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.tab-btn:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.tab-btn.active {
    background: var(--accent-gold);
    color: #FFFFFF;
    font-weight: 700;
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    background: #F3F4F6;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--border-light);
}

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

.gallery-item:hover img {
    transform: scale(1.06);
}

/* Specs & Facilities Box */
.specs-box {
    background: var(--bg-main);
    padding: 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    border: 1px solid var(--border-light);
}

.specs-box h4 {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.specs-box h4 i { color: var(--accent-gold); }
.specs-box p { font-size: 0.9rem; color: var(--text-muted); }

.btn-wa-booking {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    text-align: center;
    background: #25D366;
    color: #FFFFFF !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 13px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
    transition: var(--transition);
}

.btn-wa-booking:hover {
    background: #20BA5A;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

/* --------------------------------------------------------------------------
   9. INTERACTIVE FAQ ACCORDION (WHITE & GOLD STYLE)
   -------------------------------------------------------------------------- */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-tech);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--border-gold);
}

.faq-header-btn {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 16px;
}

.faq-header-btn i.faq-icon-arrow {
    color: var(--accent-gold);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-answer-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer-wrapper {
    grid-template-rows: 1fr;
}

.faq-item.open .faq-icon-arrow {
    transform: rotate(180deg);
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-answer-body {
    padding: 0 24px 20px 24px;
    font-size: 0.95rem;
    color: var(--text-muted);
    border-top: 1px solid #F3F4F6;
    padding-top: 16px;
    line-height: 1.65;
}

.faq-answer-body strong {
    color: var(--text-dark);
}

/* --------------------------------------------------------------------------
   10. INTERACTIVE HOUSE RULES & POLICY CARD GRID
   -------------------------------------------------------------------------- */
.badge-gold {
    background: #F4E8C1;
    color: #8A6D2A;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 12px;
    border: 1px solid var(--border-gold);
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.rule-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.rule-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.rule-icon {
    width: 48px;
    height: 48px;
    background: #FAF8F5;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.rule-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.rule-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.rules-footer-box {
    margin-top: 35px;
    background: #FFFFFF;
    border: 1.5px dashed var(--accent-gold);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    box-shadow: var(--shadow-tech);
}

.policy-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 600;
}

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

.btn-gold-outline {
    background: transparent;
    border: 1.5px solid var(--accent-gold);
    color: #926E24;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-size: 0.9rem;
}

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

/* --------------------------------------------------------------------------
   11. MODERN PASAL CARD POLICY MODAL POP-UP
   -------------------------------------------------------------------------- */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2600;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: #FFFFFF;
    width: 100%;
    max-width: 680px;
    max-height: 85vh;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: modalSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--border-light);
}

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

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FAF8F5;
}

.modal-title-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-gold {
    font-size: 1.5rem;
    color: #C5A059;
}

.modal-title-box h3 {
    font-size: 1.15rem;
    color: #1F2937;
    margin: 0;
    font-weight: 700;
}

.modal-title-box p {
    font-size: 0.8rem;
    color: #6B7280;
    margin: 0;
}

.btn-close-modal {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #9CA3AF;
    cursor: pointer;
    transition: 0.2s;
}

.btn-close-modal:hover {
    color: #1F2937;
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    background: #FAFAFA;
}

.policy-intro {
    background: #F4E8C1;
    color: #8A6D2A;
    padding: 12px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid var(--border-gold);
}

.pasal-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pasal-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.pasal-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.pasal-badge {
    background: #1F2937;
    color: #C5A059;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
}

.pasal-card h4 {
    font-size: 1rem;
    color: #1F2937;
    font-weight: 700;
    margin: 0;
}

.pasal-card ul {
    padding-left: 20px;
    margin: 0;
}

.pasal-card li {
    font-size: 0.88rem;
    color: #4B5563;
    margin-bottom: 8px;
    line-height: 1.5;
}

.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid #E5E7EB;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    background: #FFFFFF;
}

.btn-secondary {
    background: #F3F4F6;
    color: #4B5563;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: #E5E7EB;
    color: #1F2937;
}

.btn-wa {
    background: #25D366;
    color: white !important;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
    transition: var(--transition);
}

.btn-wa:hover {
    background: #20BA5A;
}

/* --------------------------------------------------------------------------
   12. STICKY BOTTOM ACTION BAR (MOBILE-ONLY)
   -------------------------------------------------------------------------- */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 2000;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-light);
    padding: 12px 20px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
    .mobile-bottom-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
    }
}

.mobile-price-group p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.mobile-price-group h4 {
    font-size: 1.15rem;
    color: var(--accent-gold);
    font-weight: 800;
}

.mobile-actions {
    display: flex;
    gap: 8px;
}

.btn-mobile-wa {
    background: #25D366;
    color: white;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* --------------------------------------------------------------------------
   13. LIGHTBOX POPUP
   -------------------------------------------------------------------------- */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 2500;
    background: rgba(17, 24, 39, 0.92);
    backdrop-filter: blur(12px);
    justify-content: center;
    align-items: center;
    padding: 24px;
}

.lightbox-modal.active { display: flex; }

.lightbox-content {
    position: relative;
    max-width: 900px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    color: #FFFFFF;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-prev { left: -50px; }
.lightbox-next { right: -50px; }

.lightbox-counter {
    color: #D1D5DB;
    font-size: 0.85rem;
    margin-top: 10px;
}

/* --------------------------------------------------------------------------
   14. LOCATION SECTION
   -------------------------------------------------------------------------- */
.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.map-box {
    box-shadow: var(--shadow-tech);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.location-details h3 { font-size: 1.3rem; margin-bottom: 18px; color: var(--text-dark); }
.location-details ul { list-style: none; }

.location-details li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.98rem;
    color: var(--text-dark);
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-light);
}

.location-details li:last-child { border-bottom: none; }

.location-details i {
    font-size: 1.1rem;
    color: var(--accent-gold);
    background: var(--accent-light);
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-gold);
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */
footer {
    background: var(--slate-dark);
    color: #9CA3AF;
    padding: 36px 0;
    margin-top: 50px;
}

footer strong { color: #FFFFFF; }

/* --------------------------------------------------------------------------
   16. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.3rem; }
    .location-wrapper { grid-template-columns: 1fr; }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}

@media (max-width: 768px) {
    .navbar .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-card);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border-light);
        box-shadow: var(--shadow-md);
    }
    
    .navbar .nav-links.active { display: flex; }
    .mobile-menu-btn { display: block; }
    .hero h1 { font-size: 1.9rem; }
    .hero p { font-size: 0.95rem; }
    .hero-stats { flex-direction: column; gap: 16px; }
}
