/* ==========================================================================
   Trusty Travel Sri Lanka With Sanjeewa — 2026 Modern Premium Theme
   ========================================================================== */

:root {
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --font-display: 'Playfair Display', serif;
    --font-handwriting: 'Caveat', cursive;
    --font-bold: 'Syne', sans-serif;

    /* Premium Dark Palette */
    --navy-trust: #0b192c;
    --navy-dark: #050d18;
    --navy-light: #1e293b;

    --gold-sun: #f59e0b;
    --gold-warm: #d97706;
    --gold-bright: #fbbf24;
    --gold-light: #fef3c7;

    --teal-wave: #14b8a6;
    --teal-dark: #0d7377;
    --teal-light: #e6f5f3;
    --emerald-logo: #042f31;

    --green-wa: #25D366;
    --tripadvisor-green: #00af87;

    --bg-body: #f8fafc;
    --bg-surface: #ffffff;
    --bg-card: #ffffff;
    --border-card: #e2e8f0;

    --text-dark: #0f172a;
    --text-sub: #334155;
    --text-muted: #64748b;
    --text-white: #ffffff;

    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-bg-light: rgba(255, 255, 255, 0.85);

    /* Gradients */
    --gradient-hero: linear-gradient(160deg, rgba(5, 13, 24, 0.65) 0%, rgba(11, 25, 44, 0.52) 50%, rgba(4, 47, 49, 0.45) 100%);
    --gradient-dark: linear-gradient(135deg, #050d18 0%, #0b192c 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b, #d97706);
    --gradient-section: linear-gradient(180deg, #f8fafc 0%, #f0f4f8 100%);

    /* Elevation & Glows */
    --shadow-sm: 0 4px 14px rgba(11, 25, 44, 0.04);
    --shadow-md: 0 12px 35px rgba(11, 25, 44, 0.07);
    --shadow-lg: 0 24px 60px rgba(11, 25, 44, 0.12);
    --shadow-xl: 0 32px 80px rgba(11, 25, 44, 0.18);
    --glow-gold: 0 10px 25px rgba(245, 158, 11, 0.4);
    --glow-teal: 0 10px 25px rgba(20, 184, 166, 0.35);

    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-full: 9999px;
    --transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

::selection {
    background: var(--gold-sun);
    color: var(--navy-dark);
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-body);
    color: var(--text-sub);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 800;
    line-height: 1.2;
}

.display-title {
    font-family: var(--font-display);
    font-style: italic;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    width: 92%;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes kenBurnsZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

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

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(245, 158, 11, 0); }
}

@keyframes scroll-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-8px) translateX(-50%); }
    60% { transform: translateY(-4px) translateX(-50%); }
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

@keyframes float-particle {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    25% { transform: translateY(-20px) translateX(10px); opacity: 0.6; }
    50% { transform: translateY(-10px) translateX(-5px); opacity: 0.4; }
    75% { transform: translateY(-30px) translateX(15px); opacity: 0.5; }
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== FLOATING REVIEW & WHATSAPP WIDGETS ===== */
.review-float-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: var(--navy-trust);
    color: #ffffff;
    padding: 0.75rem 1.4rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 1.5px solid var(--gold-sun);
    cursor: pointer;
    transition: var(--transition);
    animation: heroFloat 4s ease-in-out infinite;
}

.review-float-btn:hover {
    transform: translateY(-5px) scale(1.04);
    background: var(--gold-sun);
    color: var(--navy-dark);
    box-shadow: var(--glow-gold);
}

.review-float-btn span {
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.float-wp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--green-wa);
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.float-wp:hover {
    transform: scale(1.12) rotate(8deg);
    box-shadow: 0 14px 35px rgba(37, 211, 102, 0.6);
}

.wp-pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--green-wa);
    animation: ripple 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

/* ===== PREMIUM BUTTONS ===== */
.btn-primary {
    background: var(--gradient-gold);
    color: #ffffff;
    padding: 0.9rem 2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    border: none;
    cursor: pointer;
    box-shadow: var(--glow-gold);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.55);
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--green-wa), #128C7E);
    color: #ffffff;
    padding: 0.9rem 2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}

.btn-enquire {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.9rem 1.6rem;
    background: linear-gradient(135deg, #0b192c 0%, #1e293b 100%);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.92rem;
    letter-spacing: 0.3px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(11, 25, 44, 0.22);
    margin-top: auto;
}

.btn-enquire::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.btn-enquire:hover::before {
    left: 100%;
}

.btn-enquire:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #050d18;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.45);
    transform: translateY(-3px) scale(1.01);
}

/* ===== FIXED FROSTED GLASS NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    z-index: 10000;
    background: rgba(5, 13, 24, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.35);
    padding: 0.75rem 0;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar .container {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.brand-logo {
    display: flex;
    align-items: center;
}

.brand-logo-img {
    height: 50px !important;
    max-height: 54px !important;
    width: auto !important;
    max-width: 260px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.6));
    transition: all 0.3s ease;
}

.brand-logo-img:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.7)) 
            drop-shadow(0 0 16px rgba(6, 182, 212, 0.45)) 
            drop-shadow(0 0 8px rgba(245, 158, 11, 0.35));
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    gap: 0.35rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    padding: 0.55rem 1.05rem;
    border-radius: var(--radius-full);
    transition: all 0.25s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

@media (min-width: 992px) {
    .nav-links a .nav-icon { display: none !important; }
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 5px;
    height: 5px;
    background: var(--gold-bright);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold-bright);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-links a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.nav-links a.active {
    color: var(--gold-bright);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.18) 0%, rgba(245, 158, 11, 0.08) 100%);
    box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.3), 0 4px 15px rgba(245, 158, 11, 0.15);
    font-weight: 700;
}

.nav-links a.active::after {
    transform: translateX(-50%) scale(1);
}

/* WhatsApp Modern Shimmer CTA */
.nav-links .whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff !important;
    padding: 0.6rem 1.35rem;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-left: 0.75rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.nav-links .whatsapp-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        60deg,
        transparent 30%,
        rgba(255, 255, 255, 0.25) 50%,
        transparent 70%
    );
    transform: rotate(30deg);
    animation: waShimmer 3.5s infinite;
}

@keyframes waShimmer {
    0% { transform: translateX(-100%) rotate(30deg); }
    30%, 100% { transform: translateX(100%) rotate(30deg); }
}

.nav-links .whatsapp-btn:hover {
    background: linear-gradient(135deg, #28e06e 0%, #0f7a6e 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

/* Modern Hamburger Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.4);
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--gold-bright);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===== PAGE HEADER BANNER ===== */
.page-header-banner {
    background: var(--gradient-dark);
    padding: 7.5rem 0 4rem;
    text-align: center;
    color: #ffffff;
    border-bottom: 3px solid var(--gold-sun);
    position: relative;
    overflow: hidden;
}

.page-header-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.page-header-banner h1 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: #ffffff;
    margin-bottom: 0.6rem;
    font-weight: 800;
}

.page-header-banner p {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 680px;
    margin: 0 auto;
}

/* ===== CINEMATIC HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 7rem 0 4.5rem;
    display: flex;
    align-items: center;
    color: #ffffff;
    overflow: hidden;
}

.hero-slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
    animation: kenBurnsZoom 18s ease-in-out infinite alternate;
    will-change: opacity, transform;
    transform: translateZ(0);
}

.hero-slide-item.active { opacity: 1; }

/* Immediate Hero Render (No JS/AOS Delay) */
.hero-content, .hero-image, .hero-stats {
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 2;
}

/* Decorative particle dots */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(245, 158, 11, 0.3);
    border-radius: 50%;
    animation: float-particle 8s ease-in-out infinite;
}

.hero-particle:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; animation-duration: 7s; }
.hero-particle:nth-child(2) { top: 45%; left: 85%; animation-delay: 1s; animation-duration: 9s; width: 6px; height: 6px; }
.hero-particle:nth-child(3) { top: 70%; left: 25%; animation-delay: 2s; animation-duration: 6s; }
.hero-particle:nth-child(4) { top: 25%; left: 70%; animation-delay: 3s; animation-duration: 10s; width: 5px; height: 5px; }
.hero-particle:nth-child(5) { top: 80%; left: 60%; animation-delay: 1.5s; animation-duration: 8s; }
.hero-particle:nth-child(6) { top: 10%; left: 50%; animation-delay: 4s; animation-duration: 11s; width: 3px; height: 3px; }

/* Decorative ring */
.hero-deco-ring {
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(245, 158, 11, 0.08);
    border-radius: 50%;
    top: -150px;
    right: -100px;
    z-index: 3;
    pointer-events: none;
    animation: rotate-slow 60s linear infinite;
}

.hero h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.7);
}

.hero-subtag {
    font-family: var(--font-handwriting);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: var(--gold-bright);
    margin-bottom: 0.3rem;
    display: block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.animated-service-rotator {
    display: inline-block;
    color: #5eead4;
    font-weight: 800;
    min-width: 200px;
    border-bottom: 2px solid rgba(20, 184, 166, 0.5);
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 4;
    margin-top: -2.5rem;
}

.hero-content { flex: 1 1 480px; }

.hero-description {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.2rem;
    max-width: 560px;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-badges-wrapper {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}

.hero-badge-pill {
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--gold-bright);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.82rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.hero-badge-pill:hover {
    background: rgba(245, 158, 11, 0.25);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    padding: 1rem 1.6rem;
    border-radius: var(--radius-md);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: fit-content;
    flex-wrap: wrap;
}

.hero-stats > div {
    position: relative;
    padding-right: 2rem;
}

.hero-stats > div:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-stats > div:last-child {
    padding-right: 0;
}

.stat-number {
    display: block;
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--gold-bright);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.78rem;
    color: rgba(226, 232, 240, 0.8);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 0 0 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== PURE FLOATING EMBLEM (NO CONTAINER BOXES OR OVALS) ===== */
.hero-logo-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0.5rem !important;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: heroFloat 4s ease-in-out infinite;
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.hero-logo-card::before,
.hero-logo-card::after {
    display: none !important;
}

.hero-logo {
    max-width: 330px;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    cursor: pointer;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.75));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.4s ease;
}

.hero-logo:hover {
    transform: translateY(-8px) scale(1.04);
    filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.85)) 
            drop-shadow(0 0 22px rgba(6, 182, 212, 0.45)) 
            drop-shadow(0 0 12px rgba(245, 158, 11, 0.35));
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: scroll-bounce 2.5s infinite;
    cursor: pointer;
}

.hero-scroll-indicator i {
    font-size: 1.2rem;
    color: var(--gold-bright);
}

/* ===== EXPANDABLE DAY-BY-DAY ITINERARY ACCORDION ===== */
.itinerary-toggle-btn {
    background: #f8fafc;
    color: #0b192c;
    border: 1.5px solid #cbd5e1;
    padding: 0.65rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    transition: all 0.3s ease;
}

.itinerary-toggle-btn .fa-chevron-down {
    transition: transform 0.3s ease;
}

.itinerary-toggle-btn:hover,
.itinerary-toggle-btn.active {
    background: #0b192c;
    color: #ffffff;
    border-color: #0b192c;
    box-shadow: 0 4px 12px rgba(11, 25, 44, 0.2);
}

.itinerary-toggle-btn.active .fa-chevron-down {
    transform: rotate(180deg);
}

.itinerary-details {
    display: none;
    background: #f8fafc;
    border: 1.5px solid #cbd5e1;
    border-radius: 14px;
    padding: 0.85rem;
    margin-bottom: 1rem;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.03);
}

.itinerary-details.open { display: flex; flex-direction: column; gap: 0.55rem; }

.itinerary-day-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-left: 3.5px solid #f59e0b;
    border-radius: 10px;
    padding: 0.65rem 0.85rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.day-badge {
    display: inline-block;
    background: rgba(245, 158, 11, 0.15);
    color: #b45309;
    font-weight: 800;
    font-size: 0.73rem;
    padding: 0.18rem 0.55rem;
    border-radius: 6px;
    margin-bottom: 0.4rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.day-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.day-steps-list li {
    font-size: 0.83rem;
    color: #334155;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.35;
}

.day-steps-list li i {
    color: #f59e0b;
    font-size: 0.78rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

/* ===== FILTER TABS ===== */
.filter-tabs-wrapper {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: #ffffff;
    color: var(--text-dark);
    border: 1px solid #e2e8f0;
    padding: 0.7rem 1.4rem;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-sm);
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.filter-btn * {
    pointer-events: none;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--navy-trust);
    color: #ffffff;
    border-color: var(--navy-trust);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px) scale(1.02);
}

/* ===== RATE ESTIMATOR ===== */
.estimator-wrapper {
    transform: translateY(-0.5rem);
    position: relative;
    z-index: 10;
}

.estimator-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.2rem 2.4rem;
    box-shadow: 0 20px 50px rgba(11, 25, 44, 0.09), 0 4px 15px rgba(245, 158, 11, 0.08);
    border: 1.5px solid rgba(245, 158, 11, 0.25);
    position: relative;
    overflow: hidden;
    color: var(--text-dark);
}

.estimator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #d97706, #14b8a6, #f59e0b);
    background-size: 200% 100%;
    animation: shimmer 4s linear infinite;
}

.estimator-header {
    margin-bottom: 1.6rem;
}

.estimator-title-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 0.4rem;
}

.estimator-badge {
    background: var(--gold-light);
    border: 1px solid rgba(245, 158, 11, 0.35);
    color: var(--gold-warm);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.estimator-title {
    font-size: 1.35rem;
    color: var(--navy-trust);
    font-weight: 800;
    margin: 0;
}

.estimator-subtitle {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
}

.estimator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1.2rem;
    margin-bottom: 1.2rem;
    align-items: end;
}

.form-group label {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--navy-trust);
    font-family: var(--font-heading);
    text-transform: uppercase;
    margin-bottom: 0.45rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    letter-spacing: 0.6px;
}

.estimator-select,
.estimator-input {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.8rem 1rem;
    background: #f8fafc !important;
    color: var(--text-dark) !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 14px !important;
    font-family: var(--font-main);
    font-size: 0.92rem;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    outline: none;
    transition: var(--transition);
}

.estimator-select option,
.estimator-select optgroup {
    background: #ffffff !important;
    color: var(--text-dark) !important;
    font-size: 0.9rem;
    padding: 0.5rem;
}

.estimator-select:focus,
.estimator-input:focus {
    border-color: var(--gold-sun) !important;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15) !important;
    background: #ffffff !important;
}

.input-with-unit {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-unit .estimator-input {
    padding-right: 3.2rem;
}

.unit-badge {
    position: absolute;
    right: 0.8rem;
    background: var(--gold-light);
    color: var(--gold-warm);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    pointer-events: none;
}

.estimator-result {
    border: 1.5px solid #fde68a;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-radius: 14px;
    padding: 0.75rem 1.1rem;
    min-height: 52px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.08);
}

.estimator-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
    width: 100%;
}

.estimator-btn {
    width: 100%;
    max-width: 480px;
    padding: 0.9rem 1.4rem;
    font-size: 0.95rem;
    font-weight: 800;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    border-radius: var(--radius-full);
}

@media (max-width: 576px) {
    .estimator-btn {
        width: 100%;
        font-size: 0.86rem;
        padding: 0.85rem 0.8rem;
        gap: 0.45rem;
        white-space: nowrap;
    }
}

@media (max-width: 380px) {
    .estimator-btn {
        font-size: 0.78rem;
        padding: 0.8rem 0.5rem;
    }
}

/* ===== GENERAL & CONTACT FORM STYLES ===== */
.contact-form-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1.5px solid rgba(245, 158, 11, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.25rem;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--navy-dark);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 0.5rem;
}

.input-icon-group {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.input-icon-group i.input-icon {
    position: absolute;
    left: 1.1rem;
    color: #64748b;
    font-size: 1.02rem;
    pointer-events: none;
    z-index: 2;
    transition: var(--transition);
}

.form-control {
    width: 100%;
    box-sizing: border-box;
    padding: 0.85rem 1.1rem 0.85rem 2.8rem;
    background: #f8fafc;
    color: var(--navy-dark);
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    outline: none;
    transition: all 0.3s ease;
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.1rem center;
    background-size: 1rem;
    padding-right: 2.8rem;
    max-width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
}

textarea.form-control {
    padding: 0.85rem 1.1rem 0.85rem 2.8rem;
    resize: vertical;
    min-height: 110px;
    line-height: 1.5;
}

.form-control::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

.form-control:focus {
    background: #ffffff;
    border-color: var(--navy-dark);
    box-shadow: 0 0 0 4px rgba(5, 13, 24, 0.12);
}

.input-icon-group:focus-within i.input-icon {
    color: var(--navy-dark);
    transform: scale(1.1);
}

.estimated-price {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--navy-trust);
    letter-spacing: -0.02em;
}

.estimated-price span {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-left: 0.3rem;
}

.estimator-footer {
    margin-top: 1.4rem;
    display: flex;
    justify-content: center;
}

.estimator-btn {
    width: 100%;
    max-width: 360px;
    padding: 0.85rem 2rem !important;
    font-size: 0.95rem !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35) !important;
}

/* ===== PREMIUM SECTIONS & CARDS ===== */
.section { padding: clamp(4rem, 6vw, 6rem) 0; }

.section-title {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 3rem;
}

.badge-title {
    color: var(--gold-sun);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 2.5px;
    display: inline-block;
    margin-bottom: 0.6rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.badge-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 3px;
}

.section-title .badge-title::after,
.text-center .badge-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-title h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--navy-trust);
    letter-spacing: -0.02em;
}

/* Section Divider */
.section-divider {
    height: 80px;
    background: linear-gradient(180deg, var(--teal-light) 0%, #ffffff 100%);
    clip-path: polygon(0 0, 100% 40%, 100% 100%, 0 100%);
}

.card-grid, .safari-grid, .day-grid, .transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

#toursGrid, .card-grid, .safari-grid, .day-grid, .transport-grid {
    align-items: stretch;
}

.card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(5, 13, 24, 0.06);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1.5px solid rgba(226, 232, 240, 0.9);
    display: flex;
    flex-direction: column;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #d97706, #14b8a6, #f59e0b);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.card:hover::before {
    opacity: 1;
    animation: shimmer 3s linear infinite;
}

.card:hover {
    transform: translateY(-8px) scale(1.005);
    box-shadow: 0 22px 45px rgba(5, 13, 24, 0.12), 0 8px 25px rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.35);
}

.card-img-header {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    min-height: 220px;
    overflow: hidden;
}

.card-img-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card:hover .card-img-header img {
    transform: scale(1.08);
}

/* Image overlay on hover */
.card-img-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(5, 13, 24, 0.6) 0%, transparent 100%);
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.card:hover .card-img-header::after {
    opacity: 0.95;
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(5, 13, 24, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fbbf24;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 0.38rem 0.95rem;
    border-radius: 30px;
    border: 1px solid rgba(245, 158, 11, 0.45);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    z-index: 3;
    letter-spacing: 0.5px;
}

/* Card Header Image Carousel */
.card-img-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    min-height: 220px;
    overflow: hidden;
}

.card-img-carousel .carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 220px;
}

.card-img-carousel .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease-in-out, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-img-carousel .carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.card:hover .card-img-carousel .carousel-slide.active {
    transform: scale(1.06);
}

/* Navigation arrows on image */
.card-img-carousel .carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(5, 13, 24, 0.75);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.82rem;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
    opacity: 0.85;
}

.card-img-carousel:hover .carousel-nav-btn {
    opacity: 1;
}

.card-img-carousel .carousel-nav-btn:hover {
    background: var(--gold-bright);
    color: var(--navy-dark);
    border-color: var(--gold-bright);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.45);
}

.card-img-carousel .prev-btn { left: 12px; }
.card-img-carousel .next-btn { right: 12px; }

/* Dot Indicators */
.card-img-carousel .carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 6px;
    padding: 5px 10px;
    background: rgba(5, 13, 24, 0.65);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.card-img-carousel .carousel-dots .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: all 0.3s ease;
}

.card-img-carousel .carousel-dots .dot.active {
    background: var(--gold-bright);
    width: 18px;
    border-radius: 10px;
}

.card-content-body {
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: nowrap;
    min-height: 32px;
}

.card-meta span:first-child {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 0.28rem 0.65rem;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #475569;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-meta span:last-child {
    background: #fefce8;
    border: 1px solid #fef08a;
    padding: 0.28rem 0.65rem;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 800;
    color: #b45309;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--navy-trust);
    line-height: 1.35;
    transition: color 0.3s ease;
    min-height: 2.8rem;
}

.card:hover h3 {
    color: var(--gold-warm);
}

.card-price-box {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 0.65rem 0.95rem;
    border-radius: 14px;
    border-left: 3.5px solid var(--gold-sun);
    border-top: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
    min-height: 60px;
}

.price-usd {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy-trust);
    line-height: 1.25;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    width: 100%;
}

.price-lkr {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 700;
    line-height: 1.25;
    width: 100%;
}

/* ===== DAY EXCURSION DEPARTURE SCHEDULE BOX ===== */
.card-schedule-box {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 0.75rem 0.95rem;
    border-radius: 14px;
    border-left: 3.5px solid var(--gold-sun);
    border-top: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.4rem;
    margin-bottom: 1rem;
    width: 100%;
}

.schedule-header {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy-trust);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.departure-time-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    width: 100%;
    margin: 0.2rem 0;
}

.time-chip {
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 20px;
    padding: 0.35rem 0.65rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    outline: none;
    user-select: none;
    text-decoration: none;
}

.time-chip:hover {
    border-color: var(--gold-sun);
    background: #fffdf5;
    transform: translateY(-1.5px);
    box-shadow: 0 3px 8px rgba(234, 179, 8, 0.15);
}

.time-chip.active {
    background: linear-gradient(135deg, var(--navy-trust) 0%, #1e293b 100%);
    border-color: var(--gold-sun);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.25);
    transform: translateY(-1px);
}

.time-chip.single-time {
    cursor: default;
    background: #ffffff;
    border-color: #cbd5e1;
    pointer-events: none;
}

.chip-icon {
    font-size: 0.85rem;
    line-height: 1;
}

.chip-time {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--navy-trust);
    line-height: 1;
}

.time-chip.active .chip-time {
    color: var(--gold-bright);
}

.chip-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: #64748b;
    line-height: 1;
}

.time-chip.active .chip-label {
    color: #cbd5e1;
}

.schedule-footer-meta {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    line-height: 1.25;
}


.inclusions-list {
    margin-bottom: 1.1rem;
    padding: 0.75rem 0;
    border-top: 1px dashed #cbd5e1;
    border-bottom: 1px dashed #cbd5e1;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    flex-grow: 1;
}

.inclusions-list li {
    font-size: 0.86rem;
    color: #475569;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.inclusions-list li i {
    color: #10b981;
    font-size: 0.7rem;
    background: rgba(16, 185, 129, 0.12);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ===== GUIDE SECTION ICON CIRCLES ===== */
.guide-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.guide-icon-circle.teal {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(13, 115, 119, 0.1));
    color: var(--teal-dark);
    border: 1.5px solid rgba(20, 184, 166, 0.25);
}

.guide-icon-circle.gold {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(217, 119, 6, 0.1));
    color: var(--gold-warm);
    border: 1.5px solid rgba(245, 158, 11, 0.25);
}

.guide-icon-circle.green {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(37, 211, 102, 0.08));
    color: var(--green-wa);
    border: 1.5px solid rgba(37, 211, 102, 0.25);
}

.card:hover .guide-icon-circle {
    transform: translateY(-3px) scale(1.1);
}

/* ===== REVIEW CARDS ===== */
.review-card {
    background: #ffffff;
    padding: 1.8rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.review-stars {
    color: var(--gold-bright);
    margin-bottom: 0.8rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy-trust);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: var(--font-heading);
}

/* ===== CAROUSEL SLIDER ===== */
.channels-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 2rem auto 0;
    overflow: hidden;
    padding: 1rem 0.5rem 2.5rem;
}

.channels-carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.channel-carousel-card {
    flex: 0 0 calc(33.333% - 1rem);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.channel-carousel-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-sun);
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.15);
}

.channel-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.channel-carousel-card:hover .channel-icon-wrapper {
    transform: scale(1.1);
    border-color: var(--gold-sun);
}

.carousel-nav-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.carousel-nav-btn:hover {
    background: var(--gold-sun);
    color: var(--navy-dark);
    border-color: var(--gold-sun);
    transform: translateY(-50%) scale(1.12);
}

.carousel-prev { left: 0; }
.carousel-next { right: 0; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.4rem;
}

.carousel-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--gold-sun);
    width: 24px;
    border-radius: 10px;
}

/* ===== PREMIUM FAQ ACCORDION ===== */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.faq-item {
    background: var(--bg-surface);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-card);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    border-color: var(--gold-sun);
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(245, 158, 11, 0.15);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: var(--gold-sun);
    box-shadow: var(--shadow-md), 0 0 20px rgba(245, 158, 11, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.6rem;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy-trust);
    font-family: var(--font-heading);
    gap: 1rem;
    transition: var(--transition);
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gold-sun);
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item.active .faq-question::before {
    opacity: 1;
}

.faq-question:hover {
    color: var(--gold-warm);
}

.faq-question span {
    flex: 1;
    display: flex;
    align-items: center;
}

.faq-question span i {
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    border-radius: 0 !important;
    transform: none !important;
    font-size: 1rem !important;
}

.faq-question > i {
    color: var(--gold-sun);
    font-size: 0.85rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 50%;
}

.faq-item.active .faq-question > i {
    transform: rotate(180deg);
    background: var(--gold-sun);
    color: #ffffff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), padding 0.4s ease;
    padding: 0 1.6rem;
    font-size: 0.92rem;
    color: var(--text-sub);
    line-height: 1.7;
    border-top: 0 solid transparent;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.6rem 1.4rem;
    border-top: 1px solid #f1f5f9;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--gradient-dark);
    padding: clamp(4rem, 6vw, 6rem) 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(241, 245, 249, 0.85);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== PREMIUM OPEN FOOTER STYLING ===== */
.footer {
    background: radial-gradient(120% 100% at 50% 0%, #081729 0%, #030810 100%);
    color: #94a3b8;
    padding: 4.5rem 0 2.5rem;
    border-top: none;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--gold-bright) 30%, var(--teal-wave) 70%, transparent 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.15fr 1fr;
    align-items: start;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.footer-col h4 {
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 1.2rem;
    font-size: 0.98rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.7rem;
    display: flex;
    align-items: center;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-bright), var(--gold-sun));
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.footer-brand-desc,
.footer-trust-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 1.1rem;
}

.footer-owner-info {
    margin-bottom: 1.1rem;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    padding: 0.55rem 0.9rem;
    display: inline-flex;
    align-self: flex-start;
}

.owner-title {
    font-size: 0.88rem;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.social-icon-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 0.8rem;
    flex-wrap: wrap;
}

.social-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(20, 184, 166, 0.12);
    border: 1px solid rgba(20, 184, 166, 0.35);
    color: var(--teal-wave);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition);
}

.social-icon-btn:hover {
    background: var(--teal-wave);
    color: #030810;
    border-color: var(--teal-wave);
    transform: translateY(-3px);
    box-shadow: 0 4px 14px rgba(20, 184, 166, 0.4);
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav-list a {
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    background: transparent;
    border: none;
    padding: 0;
    transition: var(--transition);
}

.footer-nav-list a i {
    font-size: 0.75rem;
    color: var(--gold-sun);
    transition: transform 0.3s ease;
    width: 14px;
    text-align: center;
}

.footer-nav-list a:hover {
    color: var(--gold-bright);
    background: transparent;
    transform: translateX(4px);
}

.footer-nav-list a:hover i {
    transform: translateX(3px);
    color: var(--gold-bright);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-contact-pill {
    background: transparent;
    border: none;
    padding: 0;
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.footer-contact-pill i {
    color: var(--gold-bright);
    font-size: 0.95rem;
    width: 16px;
    text-align: center;
}

.footer-contact-pill:hover {
    background: transparent;
    color: #ffffff;
    transform: translateX(4px);
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 0.5rem;
}

.footer-badges span {
    color: #cbd5e1;
    font-size: 0.88rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    border: none;
    padding: 0;
    transition: var(--transition);
}

.footer-badges span i {
    font-size: 0.95rem;
    color: var(--gold-bright);
    width: 16px;
    text-align: center;
}

.footer-badges span:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.8rem;
    margin-top: 2.5rem;
    width: 100%;
    box-sizing: border-box;
}

.footer-bottom-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: #94a3b8;
    width: 100%;
    box-sizing: border-box;
}

.copyright-text,
.footer-credit {
    margin: 0;
    line-height: 1.6;
    text-align: center;
    width: 100%;
}

.copyright-text strong {
    color: #ffffff;
}

.designer-link {
    color: var(--gold-bright);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 4px;
    white-space: nowrap;
    display: inline-block;
    transition: var(--transition);
}

.designer-link:hover {
    color: #ffffff;
    text-shadow: 0 0 12px rgba(245, 158, 11, 0.8);
}

.social-links a i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    transition: var(--transition);
}

.social-links a:hover i {
    background: var(--gold-sun);
    color: var(--navy-dark) !important;
    border-color: var(--gold-sun);
    transform: scale(1.1);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 95px;
    right: 24px;
    background: var(--navy-trust);
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(245, 158, 11, 0.3);
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--gold-sun); color: var(--navy-dark); transform: scale(1.12); border-color: var(--gold-sun); }

/* ===== DARK SECTION VARIANT ===== */
.section-dark {
    background: var(--gradient-dark);
    color: #ffffff;
}

.section-dark .section-title h2 {
    color: #ffffff;
}

.section-dark .badge-title {
    color: var(--gold-bright);
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 992px) {
    .channel-carousel-card { flex: 0 0 calc(50% - 0.75rem); }
    .hero { min-height: 85vh; padding-top: 6.5rem; }
    .page-header-banner { padding-top: 7rem; }
}

@media (max-width: 768px) {
    .card-meta {
        flex-wrap: wrap;
        height: auto;
        min-height: 32px;
        gap: 0.4rem;
    }
    .card-meta span:first-child {
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        line-height: 1.35;
    }
    .filter-tabs-wrapper {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 0.5rem;
        padding: 0.4rem 0.2rem 0.8rem;
        margin-bottom: 2rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .filter-tabs-wrapper::-webkit-scrollbar {
        display: none;
    }
    .filter-btn {
        flex-shrink: 0;
        white-space: nowrap;
        padding: 0.6rem 1.1rem;
        font-size: 0.85rem;
    }
    .navbar {
        width: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: 0;
        padding: 0.6rem 0;
        top: 0;
        left: 0;
        right: 0;
        transform: none;
        background: rgba(5, 13, 24, 0.88);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        position: fixed;
        z-index: 10000;
    }
    .top-bar { display: none; }
    .menu-toggle { display: flex; }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 1.25rem 1.25rem 1.75rem;
        gap: 0.65rem;
        background: rgba(4, 16, 28, 0.97) !important;
        backdrop-filter: blur(24px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9);
        border: 1px solid rgba(245, 158, 11, 0.3);
        border-radius: 20px;
        z-index: 10001;
    }
    .nav-links.open {
        display: flex;
        animation: navSlideDown 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    .nav-links a {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 0.9rem;
        text-align: left;
        color: rgba(255, 255, 255, 0.9);
        padding: 0.85rem 1.1rem;
        font-size: 0.95rem;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        transition: all 0.25s ease;
        box-sizing: border-box;
    }
    .nav-links a::after {
        display: none !important;
    }
    .nav-links a .nav-icon {
        width: 32px;
        height: 32px;
        border-radius: 10px;
        background: rgba(245, 158, 11, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold-bright);
        font-size: 0.9rem;
        flex-shrink: 0;
        transition: all 0.25s ease;
    }
    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.08);
        color: #ffffff;
        border-color: rgba(245, 158, 11, 0.35);
        transform: translateX(4px);
    }
    .nav-links a.active {
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.08) 100%);
        color: var(--gold-bright) !important;
        border: 1px solid rgba(245, 158, 11, 0.45);
        box-shadow: 0 4px 18px rgba(245, 158, 11, 0.2);
        font-weight: 700;
    }
    .nav-links a.active .nav-icon {
        background: var(--gold-bright);
        color: var(--navy-dark);
    }
    .nav-links .whatsapp-btn {
        margin-top: 0.5rem;
        justify-content: center;
        text-align: center;
        padding: 0.95rem 1.2rem;
        font-size: 0.95rem;
        border-radius: 14px;
        width: 100%;
        background: linear-gradient(135deg, var(--green-wa), #128C7E);
    }

@keyframes navSlideDown {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

    .hero { min-height: auto; padding: 6.8rem 0 2.5rem; }
    .page-header-banner { padding-top: 6.8rem; }
    .hero-grid { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.5rem; }
    .hero-content { display: contents; }
    .hero-subtag { order: 1; margin: 0 auto 0.2rem auto; }
    .hero-grid h1 { order: 2; margin-bottom: 0.2rem; }
    .hero-image { flex: 0 0 auto; order: 3; margin: 0.4rem 0; }
    .hero-rotator-subtitle { order: 4; margin-bottom: 0.3rem !important; }
    .hero-description { order: 5; margin-left: auto; margin-right: auto; margin-bottom: 0.4rem; }
    .hero-badges-wrapper { order: 6; justify-content: center; margin-bottom: 0.2rem; }
    .hero-stats { order: 7; width: 100%; justify-content: space-around; gap: 0.8rem; margin-top: 0.2rem; }
    .hero-buttons { order: 8; width: 100%; justify-content: center; margin-top: 0.3rem; }
    .hero-buttons .btn-primary, .hero-buttons .btn-whatsapp { width: 100%; }
    .hero-scroll-indicator { display: none; }
    .hero-deco-ring { display: none; }

    .channels-carousel-wrapper {
        padding: 1rem 2.8rem 2.5rem;
    }
    .channel-carousel-card {
        flex: 0 0 100%;
        box-sizing: border-box;
        width: 100%;
        margin: 0 auto;
    }
    .channels-carousel-wrapper .carousel-prev { left: 2px; }
    .channels-carousel-wrapper .carousel-next { right: 2px; }
    .card-grid, .safari-grid, .day-grid, .transport-grid { grid-template-columns: 1fr; }
    .card-img-header,
    .card-img-carousel,
    .card-img-carousel .carousel-slides {
        min-height: 210px !important;
        height: 210px !important;
    }
    .card-img-carousel .carousel-nav-btn {
        opacity: 0.95 !important;
    }
    .review-float-btn { display: none !important; }
    .float-wp { bottom: 16px; right: 16px; width: 48px; height: 48px; font-size: 1.5rem; z-index: 999; }
    .scroll-top { bottom: 74px; right: 16px; width: 34px; height: 34px; font-size: 0.85rem; z-index: 999; }
    .contact-form-card,
    .contact-info-card { padding: 1.5rem 1.2rem !important; margin-bottom: 2.5rem !important; }
    .contact-items-wrapper { padding-bottom: 2.5rem !important; }
    /* Modern Tourism Website Centered Mobile Footer */
    .footer {
        text-align: center;
        padding-bottom: 5.5rem !important;
    }
    .footer-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2.2rem;
        width: 100%;
        margin-bottom: 2rem;
    }
    .footer-col {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        box-sizing: border-box;
    }
    .footer-col img {
        margin: 0 auto 0.8rem;
        display: block;
    }
    .footer-brand-desc,
    .footer-trust-desc {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 90%;
    }
    .footer-owner-info {
        align-self: center;
        margin: 0 auto 0.8rem;
    }
    .social-icon-row {
        justify-content: center;
        width: 100%;
        margin-top: 0.8rem;
    }
    .footer-col h4 {
        justify-content: center;
        text-align: center;
        width: 100%;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-nav-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    .footer-nav-list a {
        justify-content: center;
        text-align: center;
        width: 100%;
    }
    .footer-contact-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    .footer-contact-pill {
        justify-content: center;
        text-align: center;
        width: 100%;
    }
    .footer-badges {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    .footer-badges span {
        justify-content: center;
        text-align: center;
        width: 100%;
    }
    .footer-bottom-wrapper {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 0.8rem;
    }
    .copyright-text,
    .footer-credit {
        text-align: center;
        width: 100%;
    }



    .estimator-wrapper { transform: translateY(-1rem); }
    .estimator-card { padding: 1.5rem; }
    .brand-logo-img { height: 42px !important; max-width: 210px !important; }
    .hero-image { flex: 0 0 auto; width: 100%; }
    .hero-logo-card { max-width: 240px !important; padding: 0 !important; margin: 0.5rem auto !important; }
    .hero-logo { max-width: 220px !important; }
}

@media (max-width: 480px) {
    .container { width: 94%; }
    .filter-btn { padding: 0.6rem 1rem; font-size: 0.82rem; }
    .brand-logo-img { height: 38px !important; max-width: 180px !important; }
    .hero-logo-card { max-width: 200px !important; padding: 0 !important; margin: 0.4rem auto !important; }
    .hero-logo { max-width: 185px !important; }
    .hero h1 { font-size: 1.8rem; }
}

/* ===== NATIVE TOUCH CAROUSEL ===== */
.card-grid-carousel {
    display: flex;
    gap: 1.8rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 1rem 0.5rem 2rem;
}

.card-grid-carousel::-webkit-scrollbar {
    height: 6px;
}

.card-grid-carousel::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-full);
}

.card-grid-carousel::-webkit-scrollbar-thumb {
    background: var(--gold-sun);
    border-radius: var(--radius-full);
}

.card-grid-carousel .card {
    flex: 0 0 calc(33.333% - 1.2rem);
    scroll-snap-align: start;
}

@media (max-width: 992px) {
    .card-grid-carousel .card {
        flex: 0 0 calc(50% - 0.9rem);
    }
}

@media (max-width: 768px) {
    .card-grid-carousel .card {
        flex: 0 0 85%;
    }
}

/* ===== TOURS CAROUSEL SLIDER ===== */
.tours-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 1.5rem auto 0;
    overflow: hidden;
    padding: 1rem 0.5rem 2.5rem;
}

.tours-carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tours-carousel-track .card {
    flex: 0 0 calc(25% - 1.15rem);
    box-sizing: border-box;
}

@media (max-width: 1200px) {
    .tours-carousel-track .card {
        flex: 0 0 calc(33.333% - 1rem);
    }
}

@media (max-width: 992px) {
    .tours-carousel-track .card {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (max-width: 768px) {
    .tours-carousel-wrapper {
        padding: 1rem 2.8rem 2.5rem;
    }
    .tours-carousel-track .card {
        flex: 0 0 100%;
    }
    .tours-carousel-wrapper .carousel-prev { left: 2px; }
    .tours-carousel-wrapper .carousel-next { right: 2px; }
}



/* ==========================================================================
   MOBILE PHONE GALLERY & LIGHTBOX SYSTEM
   ========================================================================== */
.phone-gallery-section {
    padding-top: 2rem;
    padding-bottom: 4rem;
}

/* Toolbar Header */
.phone-gallery-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.phone-toolbar-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.phone-status-dot {
    width: 10px;
    height: 10px;
    background-color: var(--green-wa);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--green-wa);
    animation: pulse-glow 2s infinite;
}

.phone-app-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    color: var(--navy-trust);
    font-size: 1.05rem;
}

.phone-photo-count {
    background: rgba(20, 184, 166, 0.12);
    color: var(--teal-dark);
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-weight: 600;
}

.phone-layout-controls {
    display: flex;
    align-items: center;
    background: var(--bg-body);
    padding: 0.3rem;
    border-radius: var(--radius-sm);
    gap: 0.3rem;
    border: 1px solid rgba(0,0,0,0.06);
}

.phone-layout-controls .layout-btn {
    border: none;
    background: transparent;
    padding: 0.45rem 0.9rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.phone-layout-controls .layout-btn:hover {
    color: var(--navy-trust);
}

.phone-layout-controls .layout-btn.active {
    background: var(--bg-surface);
    color: var(--navy-trust);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.drive-quick-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gold-warm);
    background: var(--gold-light);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.drive-quick-link:hover {
    background: var(--gold-sun);
    color: var(--navy-dark);
    transform: translateY(-2px);
}

/* Gallery Grid Layouts */
.phone-gallery-grid {
    display: grid;
    gap: 1.5rem;
    transition: var(--transition-smooth);
}

.phone-gallery-grid.view-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.phone-gallery-grid.view-compact {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 0.8rem;
}

.view-compact .phone-photo-thumb {
    aspect-ratio: 1 / 1;
}

.view-compact .phone-photo-card {
    border-radius: var(--radius-sm);
}

.phone-gallery-grid.view-feed {
    grid-template-columns: minmax(300px, 520px);
    justify-content: center;
    gap: 2.5rem;
}

/* Photo Card Component */
.phone-photo-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--navy-dark);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.phone-photo-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-xl);
}

.phone-photo-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #0d1b2a;
}

.view-feed .phone-photo-thumb {
    aspect-ratio: 3 / 4;
}

.phone-photo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.phone-photo-card:hover .phone-photo-thumb img {
    transform: scale(1.08);
}

.phone-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 13, 24, 0.2) 0%, rgba(5, 13, 24, 0.65) 100%);
    opacity: 0;
    display: flex;
    align-items: space-between;
    justify-content: space-between;
    padding: 1rem;
    flex-direction: column;
    transition: opacity 0.35s ease;
}

.phone-photo-card:hover .phone-photo-overlay {
    opacity: 1;
}

.photo-index-badge {
    align-self: flex-start;
    background: rgba(11, 25, 44, 0.75);
    backdrop-filter: blur(8px);
    color: var(--gold-bright);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.zoom-action-badge {
    align-self: center;
    margin-top: auto;
    background: var(--gradient-gold);
    color: var(--navy-dark);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-full);
    box-shadow: var(--glow-gold);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transform: translateY(10px);
    transition: transform 0.35s ease;
}

.phone-photo-card:hover .zoom-action-badge {
    transform: translateY(0);
}

/* Footer Drive CTA Card */
.gallery-drive-footer-card {
    margin-top: 3.5rem;
    padding: 2.2rem;
    background: var(--gradient-dark);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: #ffffff;
    box-shadow: var(--shadow-xl);
}

.drive-card-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.drive-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.15);
    color: var(--gold-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.drive-card-content h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.drive-card-content p {
    color: #cbd5e1;
    font-size: 0.95rem;
}

/* Lightbox Modal */
.phone-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.phone-lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 13, 24, 0.92);
    backdrop-filter: blur(16px);
    animation: fadeIn 0.3s ease forwards;
}

.phone-lightbox-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
    padding: 1rem;
}

.phone-lightbox-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.2rem;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-header-left {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.lightbox-phone-badge {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(20, 184, 166, 0.2);
    color: var(--teal-wave);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.lightbox-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
}

.lightbox-counter {
    color: #94a3b8;
    font-size: 0.8rem;
}

.lightbox-header-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.lightbox-act-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.lightbox-act-btn:hover {
    background: var(--gold-sun);
    color: var(--navy-dark);
    transform: scale(1.08);
}

.lightbox-act-btn.wp-share-btn:hover {
    background: var(--green-wa);
    color: #ffffff;
}

.lightbox-act-btn.close-btn {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
}

.lightbox-act-btn.close-btn:hover {
    background: #ef4444;
    color: #ffffff;
}

/* Lightbox Stage */
.phone-lightbox-stage {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
    overflow: hidden;
}

.phone-lightbox-img-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-lightbox-img-wrapper img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.lightbox-loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--gold-sun);
    background: rgba(5, 13, 24, 0.5);
    border-radius: var(--radius-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.lightbox-loader.active {
    opacity: 1;
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.lightbox-nav-btn:hover {
    background: var(--gold-sun);
    color: var(--navy-dark);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav-btn.prev-btn { left: 1rem; }
.lightbox-nav-btn.next-btn { right: 1rem; }

/* Lightbox Filmstrip */
.phone-lightbox-filmstrip-bar {
    padding: 0.6rem;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.phone-lightbox-filmstrip {
    display: flex;
    gap: 0.6rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 0.3rem;
}

.phone-lightbox-filmstrip::-webkit-scrollbar {
    height: 5px;
}

.phone-lightbox-filmstrip::-webkit-scrollbar-thumb {
    background: var(--gold-sun);
    border-radius: 10px;
}

.filmstrip-thumb {
    flex: 0 0 65px;
    height: 55px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    padding: 0;
    background: none;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
}

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

.filmstrip-thumb:hover {
    opacity: 0.9;
}

.filmstrip-thumb.active {
    opacity: 1;
    border-color: var(--gold-bright);
    box-shadow: 0 0 12px var(--gold-sun);
    transform: scale(1.05);
}

/* Mobile responsive fixes */
@media (max-width: 768px) {
    .phone-gallery-toolbar {
        padding: 0.8rem 1rem;
        gap: 0.8rem;
    }

    .phone-toolbar-brand {
        width: 100%;
        justify-content: space-between;
    }

    .phone-layout-controls {
        width: 100%;
        justify-content: center;
    }

    .phone-layout-controls .layout-btn {
        padding: 0.5rem 1.2rem;
        font-size: 1.1rem;
    }

    .phone-layout-controls .btn-text {
        display: none;
    }

    /* Distinct Mobile Grid Views */
    .phone-gallery-grid.view-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.6rem !important;
    }

    .phone-gallery-grid.view-compact {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.35rem !important;
    }

    .phone-gallery-grid.view-feed {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    /* Adjust thumbnails per view on mobile */
    .phone-gallery-grid.view-grid .phone-photo-thumb {
        aspect-ratio: 1 / 1;
        border-radius: var(--radius-sm);
    }

    .phone-gallery-grid.view-compact .phone-photo-thumb {
        aspect-ratio: 1 / 1;
        border-radius: 8px;
    }

    .phone-gallery-grid.view-compact .phone-photo-overlay {
        padding: 0.4rem;
    }

    .phone-gallery-grid.view-compact .photo-index-badge {
        font-size: 0.65rem;
        padding: 0.1rem 0.4rem;
    }

    .phone-gallery-grid.view-compact .zoom-action-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }

    .phone-gallery-grid.view-feed .phone-photo-thumb {
        aspect-ratio: 3 / 4;
        border-radius: var(--radius-md);
    }

    .drive-quick-link {
        width: 100%;
        justify-content: center;
    }

    .gallery-drive-footer-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
        gap: 1.2rem;
    }

    .gallery-drive-footer-card .btn-primary {
        width: auto !important;
        max-width: 90% !important;
        padding: 0.65rem 1.3rem !important;
        font-size: 0.88rem !important;
        white-space: nowrap !important;
        box-sizing: border-box !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .drive-card-content {
        flex-direction: column;
    }

    .lightbox-nav-btn.prev-btn { left: 0.3rem; }
    .lightbox-nav-btn.next-btn { right: 0.3rem; }
    .phone-lightbox-img-wrapper { max-width: 96%; }
}

@media (max-width: 480px) {
    .phone-gallery-grid.view-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
    }

    .phone-gallery-grid.view-compact {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.25rem !important;
    }

    .phone-gallery-grid.view-compact .photo-index-badge {
        display: none;
    }

    .phone-gallery-grid.view-compact .zoom-action-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
    }
}

/* Trusty Travel in Action Showcase Gallery Grid */
.action-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem;
}

.action-showcase-grid .action-photo-card {
    height: 260px;
    display: block;
    overflow: hidden;
    position: relative;
}

@media (max-width: 992px) {
    .action-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    .action-showcase-grid .action-photo-card {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .action-showcase-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
        flex-direction: row !important;
    }

    .action-showcase-grid .card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    .action-showcase-grid .action-photo-card {
        min-height: 160px !important;
        height: 160px !important;
    }
}

@media (max-width: 480px) {
    .action-showcase-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.6rem !important;
    }

    .action-showcase-grid .action-photo-card {
        min-height: 140px !important;
        height: 140px !important;
    }




