/* ============================================================
   THE JUNGLE MIST RETREATS — Global CSS
   Shared across ALL pages for consistent branding
   (FULL VERSION WITH FIXES)
   ============================================================ */

:root {
    --primary: #000B16;
    --secondary: #D4AF37;
    --gradient: linear-gradient(135deg, #061017 0%, #071826 100%);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-muted: #9ca3af;
    --font-body: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--gradient);
    color: #f9f9f9;
    overflow-x: hidden;
}

.font-playfair {
    font-family: var(--font-display);
}

/* ── GLASS ── */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ── SCROLL BAR ── */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--secondary), #FFA500);
    border-radius: 4px;
}

/* =============================================
   GLOBAL NAVBAR
   ============================================= */
#globalNav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9000;
    background: rgba(0, 11, 22, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s ease;
}

#globalNav.scrolled {
    background: rgba(0, 11, 22, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo img {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.nav-logo-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.nav-logo-sub {
    font-size: 0.65rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.25s ease;
    white-space: nowrap;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* ── MORE DROPDOWN ── */
.nav-more-wrap {
    position: relative;
    list-style: none;
}

.nav-more-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 0 4px;
    white-space: nowrap;
    transition: color 0.25s ease;
    font-family: var(--font-body);
}

.nav-more-btn:hover,
.nav-more-btn.active {
    color: #fff;
}

.nav-more-chevron {
    transition: transform 0.3s ease;
    font-size: 0.6rem;
}

.nav-more-btn.active .nav-more-chevron {
    transform: rotate(180deg);
}

.nav-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 16px);
    right: 0;
    min-width: 720px;
    background: rgba(4, 14, 24, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.04);
    padding: 1.5rem;
    z-index: 9200;
    animation: dropdownFade 0.22s ease;
    transform-origin: top right;
}

.nav-dropdown.open {
    display: block;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.nav-dropdown-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem 1.5rem;
}

.nav-dropdown-col {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-dropdown-heading {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--secondary);
    margin-bottom: 6px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.nav-dropdown a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0.52rem 0.7rem;
    border-radius: 8px;
    color: #9ca3af;
    font-size: 0.78rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.18s ease;
    white-space: nowrap;
    text-transform: none;
    letter-spacing: 0;
}

.nav-dropdown a::after {
    display: none !important;
}

.nav-dropdown a i {
    width: 16px;
    text-align: center;
    color: var(--secondary);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.nav-dropdown a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #fff;
    transform: translateX(3px);
}

.nav-book-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    color: #fff !important;
    padding: 0.55rem 1.3rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.35);
    white-space: nowrap;
}

.nav-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.5);
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
}

.nav-book-btn::after {
    display: none !important;
}

/* ── HAMBURGER ── */
#navToggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

#navToggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

#navToggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

#navToggle.open span:nth-child(2) {
    opacity: 0;
}

#navToggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    color: #000 !important;
    font-weight: 700;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
}

.btn-secondary {
    display: inline-block;
    border: 2px solid #D4AF37;
    color: #D4AF37 !important;
    font-weight: 600;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #FFD700;
    color: #FFD700 !important;
}

.btn-whatsapp {
    display: inline-block;
    background: #25D366;
    color: white !important;
    font-weight: 600;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ── MOBILE DRAWER ── */
#mobileDrawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: linear-gradient(160deg, #061017, #071826);
    border-left: 1px solid rgba(212, 175, 55, 0.15);
    z-index: 9100;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 5rem 1.5rem 2rem;
}

#mobileDrawer.open {
    transform: translateX(0);
}

#drawerOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 9050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#drawerOverlay.open {
    opacity: 1;
    visibility: visible;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 1.5rem;
}

.drawer-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    color: #d1d5db;
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.drawer-links a:hover,
.drawer-links a.active {
    background: rgba(255, 255, 255, 0.06);
    color: var(--secondary);
}

.drawer-links a i {
    width: 20px;
    text-align: center;
    color: var(--secondary);
    font-size: 0.85rem;
}

.drawer-divider {
    padding: 0.5rem 1rem 0.2rem;
    margin-top: 0.4rem;
}

.drawer-divider span {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--secondary);
    opacity: 0.8;
    display: block;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding-bottom: 0.4rem;
}

.drawer-book-btn {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    color: #fff;
    padding: 0.9rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 1rem;
}

.drawer-contact {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.drawer-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
    font-size: 0.85rem;
    text-decoration: none;
    margin-bottom: 0.6rem;
}

.drawer-contact a:hover {
    color: var(--secondary);
}

.drawer-contact a i {
    color: var(--secondary);
    width: 16px;
}

#navCloser {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
}

/* =============================================
   GLOBAL HERO (Landing sections)
   ============================================= */
.tjm-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.tjm-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35);
    z-index: 0;
}

.tjm-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 11, 22, 0.7) 0%, rgba(0, 11, 22, 0.1) 100%);
    z-index: 1;
}

.tjm-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 2rem;
}

/* Glassmorphism utility */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

/* =============================================
   SECTION UTILITIES
   ============================================= */
.tjm-section {
    padding: 6rem 0;
}

.tjm-section-sm {
    padding: 4rem 0;
}

main[class*="pt-"] {
    padding-top: 6.5rem !important;
    /* Standardized header offset */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--secondary);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 1rem;
}

.section-title .gold {
    color: var(--secondary);
}

.section-subtitle {
    color: #9ca3af;
    font-size: 1rem;
    line-height: 1.8;
    max-width: 600px;
}

.gold-text {
    color: var(--secondary);
}

/* =============================================
   BUTTONS (GLOBAL)
   ============================================= */
.btn-primary,
.btn-secondary,
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary), #e6c84a);
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.45);
}

.btn-secondary {
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.5);
    color: var(--secondary);
}

.btn-secondary:hover {
    border-color: var(--secondary);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.btn-blue {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.45);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
}

/* =============================================
   CARDS
   ============================================= */
.feature-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 1.8rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.04));
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #9ca3af;
    font-size: 0.85rem;
    line-height: 1.7;
}

/* =============================================
   PRICE CARD
   ============================================= */
.price-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.price-card.popular {
    border-color: var(--secondary);
}

.price-card.popular::before {
    content: '⭐ Most Popular';
    position: absolute;
    top: 0;
    right: 0;
    background: var(--secondary);
    color: var(--primary);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 1rem;
    border-radius: 0 20px 0 12px;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.18);
    border-color: rgba(212, 175, 55, 0.5);
}

.price-amount {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
}

.price-period {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 400;
}

.price-includes {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.3rem;
    margin-bottom: 1.2rem;
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.price-features li {
    padding: 0.35rem 0;
    font-size: 0.82rem;
    color: #d1d5db;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-features li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: 700;
    flex-shrink: 0;
}

/* =============================================
   FAQ
   ============================================= */
.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item.active {
    border-color: rgba(212, 175, 55, 0.35);
}

.faq-q {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    color: #fff;
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: left;
    transition: background 0.2s;
}

.faq-q:hover {
    background: rgba(255, 255, 255, 0.06);
}

.faq-q i {
    color: var(--secondary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-q i {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-a {
    max-height: 400px;
    padding: 0.8rem 1.5rem 1.2rem;
}

.faq-a p {
    color: #9ca3af;
    font-size: 0.85rem;
    line-height: 1.8;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.04) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 24px;
    padding: 3.5rem 2rem;
    text-align: center;
}

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #fff;
    margin-bottom: 0.8rem;
}

.cta-banner p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 1.8rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.urgency-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #f87171;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
}

/* =============================================
   REVIEW CARD
   ============================================= */
.review-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 1.5rem;
    transition: border-color 0.3s ease;
}

.review-card:hover {
    border-color: rgba(212, 175, 55, 0.25);
}

.review-stars {
    color: var(--secondary);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.review-card blockquote {
    color: #d1d5db;
    font-size: 0.85rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 0.8rem;
}

.review-card cite {
    color: #6b7280;
    font-size: 0.75rem;
    font-style: normal;
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.2rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #fff;
    text-decoration: underline;
}

.breadcrumb .sep {
    opacity: 0.6;
    font-size: 0.7rem;
    margin: 0 4px;
}

.breadcrumb .current {
    color: var(--secondary);
}

/* =============================================
   FLOATING BUTTONS
   ============================================= */
.float-whatsapp {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 8000;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    animation: pulseWA 2.2s infinite;
    transition: transform 0.3s ease;
}

.float-whatsapp:hover {
    transform: scale(1.12);
}

@keyframes pulseWA {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6), 0 0 0 18px rgba(37, 211, 102, 0);
    }
}

/* =============================================
   GLOBAL FOOTER
   ============================================= */
.site-footer {
    background: rgba(0, 11, 22, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin-top: 0;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Footer Nav Section ── */
.footer-nav-section {
    padding: 4rem 0 3rem;
}

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

.footer-nav-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.footer-nav-accent {
    width: 50px;
    height: 3px;
    background: var(--secondary);
    margin: 0 auto;
    border-radius: 3px;
}

.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.footer-col-heading {
    color: var(--secondary);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-col-heading i {
    font-size: 0.7rem;
}

.footer-col-heading--sub {
    margin-top: 1.5rem;
}

.footer-nav-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-col ul li {
    margin-bottom: 0.45rem;
}

.footer-nav-col ul li a {
    color: #6b7280;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-nav-col ul li a:hover {
    color: var(--secondary);
    padding-left: 6px;
}

/* ── Footer Brand Section ── */
.footer-brand-section {
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo-row img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.footer-brand-gold {
    color: var(--secondary);
}

.footer-brand-desc {
    color: #6b7280;
    font-size: 0.8rem;
    line-height: 1.7;
    max-width: 340px;
    margin-bottom: 1.2rem;
}

.footer-nap {
    font-style: normal;
    color: #6b7280;
    font-size: 0.78rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.5rem;
}

.footer-contact-item i {
    color: var(--secondary);
    margin-top: 3px;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-item a:hover {
    color: #fff;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 1.2rem;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-socials a:hover:nth-child(1) {
    background: #E1306C;
    border-color: #E1306C;
    color: #fff;
}

.footer-socials a:hover:nth-child(2) {
    background: #4267B2;
    border-color: #4267B2;
    color: #fff;
}

.footer-socials a:hover:nth-child(3) {
    background: #FF0000;
    border-color: #FF0000;
    color: #fff;
}

/* ── Footer Map ── */
.footer-map-col {
    border-radius: 20px;
    overflow: hidden;
    height: 260px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    position: relative;
}

.footer-map-col iframe {
    filter: grayscale(1) contrast(1.1) opacity(0.7);
    transition: all 0.6s ease;
}

.footer-map-col:hover iframe {
    filter: grayscale(0) contrast(1) opacity(1);
}

/* ── Copyright ── */
.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.5rem 0;
}

.footer-copyright-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright-left p {
    color: #4b5563;
    font-size: 0.75rem;
    margin: 0;
}

.footer-copyright-left p strong {
    color: #9ca3af;
}

.footer-tagline {
    font-size: 0.62rem !important;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
    margin-top: 0.2rem !important;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a {
    color: #4b5563;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: var(--secondary);
}

.footer-credit {
    color: #374151;
    font-size: 0.6rem !important;
    font-style: italic;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
    .nav-dropdown {
        min-width: 580px;
    }

    .nav-dropdown-inner {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem 1rem;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 0.9rem;
    }

    .footer-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-brand-grid {
        grid-template-columns: 1fr;
    }

    .nav-dropdown {
        min-width: 480px;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    #navToggle {
        display: flex;
    }

    .footer-nav-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand-desc,
    .footer-nap {
        max-width: 100%;
    }

    .footer-brand-grid {
        grid-template-columns: 1fr;
    }

    .footer-map-col {
        height: 200px;
    }

    .footer-copyright-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-banner {
        padding: 2.5rem 1.5rem;
    }

    .tjm-section {
        padding: 3.5rem 0;
    }
}

/* =============================================
   FAQ ACCORDION (Universal)
   ============================================= */
.faq-item {
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.04);
}

.faq-q {
    width: 100%;
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    outline: none;
}

.faq-q i {
    font-size: 0.8rem;
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-q i {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-a {
    max-height: 1000px;
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}

.faq-a-inner,
.faq-a p {
    padding: 0 1.5rem 1.5rem;
    color: #9ca3af;
    font-size: 0.88rem;
    line-height: 1.7;
}

/* =============================================
   UTILITIES
   ============================================= */
.text-gold {
    color: var(--secondary) !important;
}

.bg-gold {
    background-color: var(--secondary) !important;
}

.border-gold {
    border-color: var(--secondary) !important;
}

/* Sticky direct book fix */
#stickyBookBtn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 8000;
    display: none;
    animation: slideUp 0.4s ease forwards;
}

#stickyBookBtn.visible {
    display: flex;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    #stickyBookBtn {
        bottom: 20px;
        right: 20px;
        left: 20px;
        justify-content: center;
    }
}