/* -------------------------------------------------------------
 * Dilsh Tours Sri Lanka (www.dilshtours.com)
 * Modern Luxury & Heritage Tourism Platform Design System
 * ------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,600;0,700;0,800;0,900;1,600&display=swap');

:root {
    /* Color Palette - Dilsh Tours Sri Lanka Theme */
    --primary-dark: #042621;     /* Midnight Dark Emerald */
    --primary: #06373A;          /* Deep Emerald Teal */
    --primary-mid: #0A4F53;      /* Royal Forest Emerald */
    --primary-light: #0E6B70;    /* Vibrant Lagoon Teal */
    --primary-glow: rgba(6, 55, 58, 0.35);

    --accent: #F59E0B;           /* Sunburst Gold */
    --accent-hover: #D97706;     /* Deep Gold Amber */
    --accent-light: #FBBF24;     /* Bright Gold Yellow */
    --accent-glow: rgba(245, 158, 11, 0.45);

    --whatsapp: #25D366;         /* Official WhatsApp Green */
    --whatsapp-hover: #1EBE57;
    --whatsapp-glow: rgba(37, 211, 102, 0.4);

    --cyan: #06B6D4;             /* Lagoon Turquoise */
    --coral: #EF4444;            /* Hibiscus Red */

    /* Heritage & Cream Surfaces */
    --bg-light: #F8FAFC;         /* Soft Off-White */
    --bg-cream: #F5EBDD;         /* Warm Editorial Cream */
    --bg-ivory: #EDE0CB;         /* Heritage Ivory */
    --bg-white: #FFFFFF;
    --bg-card: #FFFFFF;
    --bg-dark-surface: #031E1A;  /* Ultra Dark Emerald Surface */
    
    --text-dark: #0F172A;        /* Slate Dark Body */
    --text-muted: #475569;       /* Slate Subtitle */
    --text-light: #94A3B8;
    --earth-brown: #3A281C;      /* Antique Earth Brown */
    --charcoal: #24201C;         /* Premium Charcoal */
    --border-color: #E2E8F0;
    --border-dark: rgba(255, 255, 255, 0.12);

    /* Typography Scale - Unified Modern Standard Sans-Serif */
    --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-serif: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Shadows & Radii */
    --shadow-sm: 0 4px 14px -2px rgba(4, 38, 33, 0.06);
    --shadow-md: 0 12px 30px -6px rgba(4, 38, 33, 0.12);
    --shadow-lg: 0 24px 50px -10px rgba(4, 38, 33, 0.25);
    --shadow-glow: 0 0 25px rgba(245, 158, 11, 0.35);

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-full: 9999px;

    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Global Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 105px;
    font-size: 16px;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.65;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

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

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Currency Select Badge */
.mobile-currency-item {
    display: none;
}

.currency-selector {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #F1F5F9;
    border: 1px solid var(--border-color);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    transition: var(--transition);
}

.site-header.scrolled .currency-selector {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(245, 158, 11, 0.4);
}

.currency-selector select {
    background: transparent;
    border: none;
    color: var(--primary-dark);
    font-weight: 800;
    font-family: var(--font-body);
    cursor: pointer;
    outline: none;
}

.site-header.scrolled .currency-selector select {
    color: #FFFFFF;
}

.currency-selector select option {
    background: var(--primary-dark);
    color: white;
}

/* Main Site Header Navigation System */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.35s ease, backdrop-filter 0.35s ease, border-bottom 0.35s ease, box-shadow 0.35s ease;
    height: 78px !important;
}

/* Unified Header: Transparent at top on all pages, Dark Luxury Glass on Scroll */
.site-header,
.site-header.subpage-header {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.site-header.scrolled,
.site-header.menu-active,
.site-header.subpage-header.scrolled,
.site-header.subpage-header.menu-active {
    background: rgba(4, 23, 20, 0.72) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom: 1.5px solid rgba(245, 158, 11, 0.4) !important;
    box-shadow: 0 8px 30px rgba(4, 23, 20, 0.35) !important;
}

/* Mobile View: Always show Scrolled Dark Luxury Navbar on Subpages (Home Screen remains unchanged) */
@media (max-width: 991px) {
    .site-header.subpage-header {
        background: rgba(4, 23, 20, 0.85) !important;
        backdrop-filter: blur(16px) !important;
        -webkit-backdrop-filter: blur(16px) !important;
        border-bottom: 1.5px solid rgba(245, 158, 11, 0.4) !important;
        box-shadow: 0 8px 30px rgba(4, 23, 20, 0.35) !important;
    }
}

/* Package Details Header Bar (Matches Exact Other Screen Navigation Bar) */
.site-header.details-dark-header,
.site-header.subpage-header.details-dark-header,
header.site-header.details-dark-header {
    background: rgba(4, 23, 20, 0.72) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom: 1.5px solid rgba(245, 158, 11, 0.4) !important;
    box-shadow: 0 8px 30px rgba(4, 23, 20, 0.35) !important;
}

.site-header.details-dark-header .nav-link,
header.site-header.details-dark-header .nav-link {
    color: #FFFFFF !important;
    text-shadow: none !important;
}

.site-header.details-dark-header .nav-link:hover {
    color: #F59E0B !important;
}

.site-header.details-dark-header .brand-name-gold {
    color: #FFFFFF !important;
}

.site-header.details-dark-header .brand-name-gold .brand-tours {
    color: #C7A96B !important;
}

.site-header.details-dark-header .brand-sub-gold {
    color: #FFFFFF !important;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.header-logo-card {
    display: flex;
    align-items: center;
    gap: 8px !important;
}

.header-logo-img {
    height: 62px !important;
    width: auto;
    max-height: 64px !important;
    object-fit: contain;
    margin-right: 0;
    filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.65));
    transition: transform 0.25s ease;
}

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

@media (max-width: 768px) {
    .header-logo-img {
        height: 56px !important;
        max-height: 58px !important;
    }
}

.logo-text {
    white-space: nowrap;
    text-align: left;
}

.brand-name-gold {
    display: block;
    font-family: 'Playfair Display', Georgia, serif !important;
    font-weight: 700 !important;
    font-size: 1.62rem !important;
    line-height: 1.12 !important;
    letter-spacing: 0.5px !important;
    text-transform: none !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.brand-name-gold .brand-dilsh {
    color: #FFFFFF !important;
}

.brand-name-gold .brand-tours {
    color: #C7A96B !important;
}

.brand-sub-gold {
    display: block;
    font-family: 'Playfair Display', Georgia, serif !important;
    font-weight: 700 !important;
    font-size: 1.35rem !important;
    color: #FFFFFF !important;
    letter-spacing: 0.5px !important;
    line-height: 1.12 !important;
    text-transform: none !important;
    margin-top: 1px !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* Footer Brand Header Styling */
.footer-brand-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.footer-brand-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.65));
}

.footer-brand-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: #F59E0B;
    letter-spacing: 1px;
}

.footer-brand-subtitle {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
}

.footer-social-links .social-icon-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4A758 !important;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-links .social-icon-link.social-facebook:hover {
    background: #1877F2 !important;
    color: #FFFFFF !important;
    transform: translateY(-3px);
}

.footer-social-links .social-icon-link.social-instagram:hover {
    background: #E4405F !important;
    color: #FFFFFF !important;
    transform: translateY(-3px);
}

.footer-social-links .social-icon-link.social-whatsapp:hover {
    background: #25D366 !important;
    color: #FFFFFF !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.footer-flourish-under {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 2px 0;
}

.footer-flourish-under .flourish-line-sm {
    width: 25px;
    height: 1px;
    background: rgba(245, 158, 11, 0.4);
}

.footer-flourish-under .flourish-icon-sm {
    color: #F59E0B;
    font-size: 0.7rem;
}

.footer-brand-tagline {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 2px;
}

/* Navigation Links */
.nav-wrapper {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #FFFFFF !important;
    font-family: 'Cinzel', 'Playfair Display', serif !important;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
    position: relative;
    padding: 6px 0;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    letter-spacing: 1.2px !important;
    text-transform: uppercase !important;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; width: 0; height: 2px;
    background: #D4A758;
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
    color: #D4A758 !important;
}

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

.header-right-action {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-gold-header {
    background: linear-gradient(135deg, #D4A758 0%, #B38332 100%) !important;
    color: #1A130C !important;
    font-family: var(--font-heading), sans-serif !important;
    font-weight: 800 !important;
    font-size: 0.78rem !important;
    letter-spacing: 1px !important;
    padding: 8px 18px !important;
    border-radius: 6px !important;
    border: 1px solid #E6D9C5 !important;
    box-shadow: 0 4px 14px rgba(212, 167, 88, 0.35);
    text-transform: uppercase;
    white-space: nowrap;
    display: inline-block;
    transition: var(--transition);
    text-shadow: none !important;
}

.btn-gold-header:hover {
    background: linear-gradient(135deg, #E6C27A 0%, #D4A758 100%) !important;
    color: #1A130C !important;
    box-shadow: 0 6px 20px rgba(212, 167, 88, 0.5);
    transform: translateY(-2px);
    border-color: #FAF6EE !important;
}

.header-plan-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
    color: white;
    padding: 10px 24px;
    font-size: 0.92rem;
    border-radius: 30px;
    font-weight: 800;
    transition: var(--transition);
    box-shadow: 0 6px 18px rgba(6, 55, 58, 0.3);
    text-decoration: none;
}

/* Floating Action Widgets - Clean Bottom Right Stacking */
.floating-widgets {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    pointer-events: auto;
}

/* Floating Action Widgets - Stacked Bottom Right */
.floating-widgets {
    position: fixed !important;
    bottom: 24px !important;
    right: 18px !important;
    z-index: 9999 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
    pointer-events: none;
}

.float-btn {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #FFFFFF !important;
    font-size: 1.35rem !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: none !important;
    cursor: pointer !important;
    text-decoration: none !important;
    pointer-events: auto !important;
    position: static !important;
}

.float-btn:hover {
    transform: scale(1.12) !important;
}

.float-whatsapp {
    background: #25D366 !important;
    color: #FFFFFF !important;
}

.float-whatsapp:hover {
    background: #1EBE57 !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6) !important;
}

.float-review {
    background: #0B2420 !important;
    border: 1.5px solid #F59E0B !important;
    color: #F59E0B !important;
    display: flex !important;
}

.float-review:hover {
    background: #143A34 !important;
    color: #FBBF24 !important;
}

.float-backtotop {
    background: #0B2420 !important;
    border: 1.5px solid rgba(245, 158, 11, 0.5) !important;
    color: #F59E0B !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease !important;
}

.float-backtotop.show,
.float-backtotop.active {
    opacity: 1 !important;
    visibility: visible !important;
}

.float-backtotop:hover {
    background: #F59E0B !important;
    color: #0B2420 !important;
}

@keyframes pulseWhatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.site-header.scrolled .header-plan-btn {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--primary-dark);
    box-shadow: 0 6px 20px var(--accent-glow);
}

.header-plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(6, 55, 58, 0.45);
    color: white;
}

.site-header.scrolled .header-plan-btn:hover {
    color: var(--primary-dark);
    box-shadow: 0 10px 28px var(--accent-glow);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #1E293B;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,0,0,0.04);
}

.site-header.scrolled .nav-toggle {
    color: white;
    background: rgba(255,255,255,0.1);
}

/* Modern Luxury Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    white-space: nowrap;
    text-decoration: none;
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--primary-dark);
    box-shadow: 0 6px 20px var(--accent-glow);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px var(--accent-glow);
    color: var(--primary-dark);
}

.btn-primary {
    background: #0B2420 !important;
    color: #FFFFFF !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 6px 20px rgba(6, 55, 58, 0.35);
}

.btn-primary:hover {
    background: #143A34 !important;
    color: #FBBF24 !important;
}

.btn-whatsapp {
    background: #25D366 !important;
    color: #FFFFFF !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    background: #1EBE57 !important;
    color: #FFFFFF !important;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: #FFFFFF !important;
    color: #042621 !important;
    border-color: #FFFFFF !important;
}

.btn-outline-dark {
    background: #FFFFFF;
    border: 2px solid var(--border-color);
    color: var(--primary-dark);
    font-weight: 700;
}

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

.btn-sm {
    padding: 9px 20px;
    font-size: 0.88rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 760px;
    max-height: 880px;
    height: clamp(740px, 56vw, 860px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
    padding-top: 30px;
    padding-bottom: 75px;
    background-color: var(--primary-dark);
    background-image: url('../images/before-hero-video.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
    object-position: center 10%;
}

.hero-video-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(3, 30, 26, 0.45) 0%, rgba(3, 30, 26, 0.3) 50%, rgba(3, 30, 26, 0.75) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-container-inner {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 1050px;
    width: 100%;
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    padding: 7px 20px;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.2px;
    transition: var(--transition);
}

.hero-badge-pill i {
    color: #FBBF24;
    font-size: 1.05rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
}

.hero-badge-pill span {
    color: #FFFFFF;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85);
}

.hero-brand-badge-filigree {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 8px 16px;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    cursor: pointer;
}

.hero-brand-badge-filigree:hover {
    transform: translateY(-4px) scale(1.03);
    background: transparent;
    border: none;
    box-shadow: none;
}

.hero-center-logo {
    height: 85px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.95));
    margin-bottom: 6px;
    animation: heroLogoFloat 5s ease-in-out infinite;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.hero-brand-badge-filigree:hover .hero-center-logo {
    transform: scale(1.06);
    filter: drop-shadow(0 8px 25px rgba(245, 158, 11, 0.8));
}

@keyframes heroLogoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.hero-brand-serif {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: 5px;
    line-height: 1;
    margin-bottom: 3px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.95), 0 0 30px rgba(0, 0, 0, 0.7);
    transition: text-shadow 0.35s ease;
}

.hero-brand-badge-filigree:hover .hero-brand-serif {
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.9), 0 0 35px rgba(245, 158, 11, 0.6);
}

.hero-brand-sub-serif {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--accent-light);
    letter-spacing: 6px;
    text-transform: uppercase;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95);
    margin-bottom: 8px;
    transition: color 0.35s ease, text-shadow 0.35s ease;
}

.hero-brand-badge-filigree:hover .hero-brand-sub-serif {
    color: #FBBF24;
    text-shadow: 0 0 16px rgba(245, 158, 11, 0.8);
}

.filigree-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--accent-light);
    margin-top: 2px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.9));
}

.filigree-line {
    width: 60px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-light) 50%, var(--accent) 100%);
    transition: width 0.35s ease;
}

.hero-brand-badge-filigree:hover .filigree-line {
    width: 75px;
}

.filigree-line:last-child {
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 50%, transparent 100%);
}

.filigree-icon {
    font-size: 0.88rem;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.35s ease;
}

.hero-brand-badge-filigree:hover .filigree-icon {
    transform: rotate(180deg);
    color: #FBBF24;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 12px;
    color: #FFFFFF;
    letter-spacing: -1px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.85);
}

.highlight-explore {
    color: var(--accent-light);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 0 15px var(--accent-glow);
}

.hero-tagline {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 0;
    line-height: 1.5;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

/* Simple Hero Search Bar */
.hero-search-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 680px;
    margin-top: 28px;
}

.hero-simple-search {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    padding: 6px 6px 6px 24px;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    gap: 12px;
    width: 100%;
}

.hero-simple-search:focus-within {
    background: #FFFFFF;
    border-color: var(--accent);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.simple-search-icon {
    font-size: 1.15rem;
    color: var(--primary);
}

.simple-search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: var(--font-body);
}

.simple-search-input::placeholder {
    color: #64748B;
    font-weight: 500;
}

.simple-search-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 6px 18px rgba(6, 55, 58, 0.35);
    white-space: nowrap;
}

.simple-search-btn:hover {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px var(--accent-glow);
}

/* Dark Bottom Feature Stats Bar */
.hero-bottom-stats-bar {
    background: #031C18;
    color: white;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-feature-grid {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 15px;
}

.stat-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.stat-icon {
    font-size: 1.1rem;
    color: var(--accent);
    margin-right: 2px;
}

.stat-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-text strong,
.stat-text strong span.counter-val {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1.1;
}

.stat-text > span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
    text-align: center;
}

.stat-divider {
    width: 1px;
    height: 38px;
    background: rgba(255, 255, 255, 0.16);
    flex-shrink: 0;
}

/* Base Section Layout Styling */
.site-section {
    padding: 85px 0;
}

/* Section Title */
.section-title {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}

.section-title-left {
    text-align: left;
    margin-bottom: 20px;
}

.section-title h4,
.section-title-left h4 {
    color: var(--accent-hover);
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-title h2,
.section-title-left h2 {
    font-family: var(--font-heading);
    font-size: 1.95rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.05rem;
    text-align: center;
}

/* Top Destinations Section */
.top-destinations-section {
    padding: 85px 0 65px;
    background: #FFFFFF;
}

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

.dest-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    height: 300px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

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

.dest-img-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.dest-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease;
}

.dest-card:hover .dest-img {
    transform: scale(1.08);
    filter: brightness(1.18) contrast(1.05);
}

.dest-overlay {
    position: absolute;
    inset: 0;
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(180deg, rgba(3, 30, 26, 0.1) 0%, rgba(3, 30, 26, 0.65) 50%, rgba(3, 30, 26, 0.95) 100%);
    color: white;
    transition: background 0.4s ease;
}

.dest-card:hover .dest-overlay {
    background: linear-gradient(180deg, rgba(3, 30, 26, 0.0) 0%, rgba(3, 30, 26, 0.22) 45%, rgba(3, 30, 26, 0.8) 100%);
}

.dest-type {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #FFD166;
    background: rgba(3, 30, 26, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 209, 102, 0.4);
    width: fit-content;
    margin-bottom: 8px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.dest-type i {
    color: #FFD166;
    font-size: 0.7rem;
}

.dest-name {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: #FFFFFF;
    font-family: var(--font-heading);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
    line-height: 1.25;
}

.dest-desc {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
}

/* Features / Why Choose Us */
.features-section {
    padding: 95px 0 70px;
    background: #F8FAFC;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.feature-card {
    background: #FFFFFF;
    padding: 40px 28px 34px;
    border-radius: 18px;
    box-shadow: 0 10px 30px -5px rgba(4, 38, 33, 0.06);
    border: 1px solid #E2E8F0;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    text-align: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0.8;
    transition: opacity 0.35s ease, height 0.35s ease;
}

.feature-card:hover::before {
    opacity: 1;
    height: 5px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 48px -12px rgba(4, 38, 33, 0.16);
    border-color: rgba(245, 158, 11, 0.5);
}

.feature-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    margin: 0 auto 24px;
    color: #FFFFFF;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.12) rotate(4deg);
}

/* Individual Feature Card Color Themes */
.feature-card:nth-child(1)::before {
    background: linear-gradient(90deg, #042621 0%, #0E6B70 100%);
}
.feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #042621 0%, #0E6B70 100%);
    box-shadow: 0 10px 22px -4px rgba(14, 107, 112, 0.45);
}
.feature-card:nth-child(1):hover {
    border-color: rgba(14, 107, 112, 0.5);
}

.feature-card:nth-child(2)::before {
    background: linear-gradient(90deg, #F59E0B 0%, #D97706 100%);
}
.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    box-shadow: 0 10px 22px -4px rgba(245, 158, 11, 0.45);
}
.feature-card:nth-child(2):hover {
    border-color: rgba(245, 158, 11, 0.5);
}

.feature-card:nth-child(3)::before {
    background: linear-gradient(90deg, #06B6D4 0%, #0284C7 100%);
}
.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #06B6D4 0%, #0284C7 100%);
    box-shadow: 0 10px 22px -4px rgba(6, 182, 212, 0.45);
}
.feature-card:nth-child(3):hover {
    border-color: rgba(6, 182, 212, 0.5);
}

.feature-card:nth-child(4)::before {
    background: linear-gradient(90deg, #25D366 0%, #10B981 100%);
}
.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #25D366 0%, #10B981 100%);
    box-shadow: 0 10px 22px -4px rgba(37, 211, 102, 0.45);
}
.feature-card {
    background: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(245, 158, 11, 0.3) !important;
    border-top: 3.5px solid #F59E0B !important;
    border-radius: 16px !important;
    padding: 28px 20px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3) !important;
    text-align: center !important;
    transition: all 0.35s ease !important;
}

.feature-card:hover {
    transform: translateY(-6px) !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: #F59E0B !important;
    box-shadow: 0 16px 36px rgba(245, 158, 11, 0.2) !important;
}

.feature-card h3 {
    font-family: var(--font-body) !important;
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    color: #FFFFFF !important;
    margin-bottom: 10px !important;
    text-transform: none !important;
    letter-spacing: 0.5px !important;
}

.feature-card p {
    font-family: var(--font-body) !important;
    color: #FDE68A !important;
    font-size: 0.92rem !important;
    line-height: 1.65 !important;
    margin: 0 !important;
    opacity: 0.95 !important;
}

/* Tour Packages Section */
.packages-section {
    padding: 90px 0;
    background: #FFFFFF;
}

/* Desktop Category Filter Tabs - Full Unclipped Pill Display */
@media (min-width: 769px) {
    .filter-tabs,
    .tours-filter-section .filter-tabs {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 12px !important;
        margin: 0 auto 30px auto !important;
        flex-wrap: wrap !important;
        overflow: visible !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
        padding: 10px 10px 18px 10px !important;
        width: 100% !important;
    }
    .filter-tabs::-webkit-scrollbar,
    .tours-filter-section .filter-tabs::-webkit-scrollbar {
        display: none !important;
    }
    .filter-tabs .tab-btn,
    .tours-filter-section .tab-btn {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
    }
}

.tab-btn,
.filter-tabs .tab-btn {
    padding: 10px 22px !important;
    border-radius: 30px !important;
    background: #FFFFFF !important;
    border: 1.5px solid #CBD5E1 !important;
    font-family: var(--font-body) !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    color: #0B2420 !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
    box-shadow: 0 4px 12px rgba(11, 36, 32, 0.05) !important;
    outline: none !important;
    text-transform: none !important;
}

.tab-btn:hover:not(.active),
.filter-tabs .tab-btn:hover:not(.active) {
    background: #FEF3C7 !important;
    border-color: #F59E0B !important;
    color: #B45309 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.2) !important;
}

.tab-btn.active,
.filter-tabs .tab-btn.active {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%) !important;
    color: #FFFFFF !important;
    border: 1.5px solid #FBBF24 !important;
    font-weight: 800 !important;
    box-shadow: 0 6px 22px rgba(245, 158, 11, 0.45) !important;
    transform: translateY(-2px) scale(1.03) !important;
}

.packages-search-wrapper {
    position: relative;
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
}

.packages-search-wrapper .search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #F59E0B;
    font-size: 1.1rem;
    pointer-events: none;
    z-index: 2;
    margin: 0;
}

.packages-search-input {
    width: 100%;
    padding: 12px 165px 12px 52px !important;
    border: 2px solid #E2E8F0 !important;
    border-radius: 50px !important;
    outline: none !important;
    font-size: 0.96rem;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #FFFFFF !important;
    color: #0F172A;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.06) !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.packages-search-input:focus {
    border-color: #F59E0B !important;
    background: #FFFFFF !important;
    box-shadow: 0 10px 30px -5px rgba(245, 158, 11, 0.22), 0 0 0 4px rgba(245, 158, 11, 0.12) !important;
}

.packages-search-input::placeholder {
    color: #94A3B8;
    font-weight: 500;
    opacity: 1;
}

.packages-search-wrapper .clear-search-btn,
.hero-search-wrapper .hero-clear-search-btn {
    position: absolute;
    right: 126px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.25);
    color: #475569;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    z-index: 4;
    transition: all 0.2s ease;
}

.packages-search-wrapper .clear-search-btn:hover,
.hero-search-wrapper .hero-clear-search-btn:hover {
    background: rgba(15, 23, 42, 0.15);
    color: #0F172A;
    transform: translateY(-50%) scale(1.1);
}

.packages-search-submit-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%) !important;
    color: #0B2420 !important;
    border: none !important;
    padding: 8px 18px !important;
    border-radius: 30px !important;
    cursor: pointer;
    font-size: 0.85rem !important;
    font-weight: 800 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3) !important;
    transition: all 0.25s ease !important;
    z-index: 3 !important;
}

.packages-search-submit-btn span,
.packages-search-submit-btn i {
    color: #0B2420 !important;
    font-weight: 800 !important;
}

.packages-search-submit-btn:hover {
    background: #0B2420 !important;
    color: #FFFFFF !important;
    box-shadow: 0 6px 16px rgba(11, 36, 32, 0.4) !important;
}

.packages-search-submit-btn:hover span,
.packages-search-submit-btn:hover i {
    color: #FFFFFF !important;
}

/* Inline Search Error Message */
.search-inline-error-msg {
    margin: 14px auto 0 auto !important;
    background: #042621 !important;
    border: 1.5px solid #F59E0B !important;
    color: #FFFFFF !important;
    padding: 10px 24px !important;
    border-radius: 30px !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    text-align: center !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25) !important;
    animation: searchShake 0.3s ease-in-out !important;
    max-width: 580px !important;
    width: fit-content !important;
    position: relative !important;
    z-index: 20 !important;
    display: none;
}

.search-inline-error-msg em {
    color: #F59E0B !important;
    font-style: normal !important;
    font-weight: 700 !important;
}

/* Package Quote Badge (Price on Request) */
.package-quote-badge {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.package-quote-badge .quote-badge-tag {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 800;
    color: #D97706;
    line-height: 1.2;
}

.package-quote-badge .quote-badge-title {
    font-size: 0.92rem;
    font-weight: 800;
    color: #06373A;
    line-height: 1.3;
}

/* Search Destination Spotlight Banner Card */
.search-destination-banner {
    background: linear-gradient(135deg, #0b3c36 0%, #062824 100%);
    border-radius: 16px;
    color: #FFFFFF;
    padding: 22px 28px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 22px;
    box-shadow: 0 10px 30px rgba(11, 60, 54, 0.14);
    border: 1px solid rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
}

.search-destination-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F59E0B 0%, #FBBF24 100%);
}

.dest-banner-img {
    width: 140px;
    height: 95px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.dest-banner-content {
    flex-grow: 1;
    min-width: 0;
}

.dest-banner-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.dest-banner-badge {
    font-size: 0.74rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: #F59E0B;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.dest-banner-type {
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.95);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
}

.dest-banner-title {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    color: #FFFFFF;
    font-size: 1.45rem;
    margin-bottom: 6px;
    font-weight: 800;
    line-height: 1.25;
}

.dest-banner-desc {
    margin: 0;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .search-destination-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
    }

    .dest-banner-img {
        width: 100%;
        height: 150px;
    }
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.package-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.package-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.package-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease;
}

.package-card:hover .package-img {
    transform: scale(1.08);
    filter: brightness(1.15);
}

.package-tag {
    position: absolute;
    top: 14px; right: 14px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--primary-dark);
    font-size: 0.76rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.package-meta {
    position: absolute;
    bottom: 14px; left: 14px;
    background: rgba(4, 38, 33, 0.88);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
}

.package-body {
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.package-category {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.package-body h3 {
    font-family: var(--font-heading);
    font-size: 1.32rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.package-body p {
    color: var(--text-muted);
    font-size: 0.93rem;
    margin-bottom: 20px;
    flex: 1;
    line-height: 1.65;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.package-price {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.package-price span.price-val {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--primary);
}

/* Custom Trip Wizard Section */
.wizard-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #021411 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.wizard-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(245, 158, 11, 0.35);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 850px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    position: relative;
}

.wizard-steps-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
    position: relative;
    padding: 0 20px;
}

.wizard-steps-indicator::before {
    content: '';
    position: absolute;
    top: 50%; left: 0; width: 100%; height: 3px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 1;
    transform: translateY(-50%);
    border-radius: 3px;
}

/* Responsive Estimated Price Badge */
.wizard-price-badge {
    background: rgba(245, 158, 11, 0.14);
    border: 1.5px solid rgba(245, 158, 11, 0.5);
    padding: 8px 24px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto 22px auto;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
    font-weight: 700;
    font-size: 0.9rem;
    color: #FBBF24;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.wizard-price-badge i {
    color: #F59E0B;
    font-size: 1.05rem;
}

.wizard-price-badge .wizard-price-val {
    color: #F59E0B;
    font-weight: 900;
    font-size: 1.35rem;
    font-family: var(--font-heading);
    margin-left: 2px;
    line-height: 1;
}

.wizard-price-badge .badge-unit {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* Light Theme Variant (for custom-tour.php) */
.wizard-price-badge.light-theme {
    background: #FEF3C7;
    border: 1.5px solid #F59E0B;
    color: #92400E;
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.12);
}

.wizard-price-badge.light-theme i {
    color: #D97706;
}

.wizard-price-badge.light-theme .wizard-price-val {
    color: #B45309;
}

.wizard-price-badge.light-theme .badge-unit {
    color: #78350F;
}

@media (max-width: 600px) {
    .wizard-price-badge {
        padding: 6px 14px;
        border-radius: 40px;
        gap: 5px;
        font-size: 0.74rem;
        max-width: 96%;
    }

    .wizard-price-badge i {
        font-size: 0.85rem;
    }

    .wizard-price-badge .wizard-price-val {
        font-size: 1.08rem;
    }

    .wizard-price-badge .badge-unit {
        font-size: 0.68rem;
    }
}

.step-dot {
    position: relative;
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #031e1a;
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.step-dot.active {
    background: var(--accent);
    color: var(--primary-dark);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
}

.step-dot.completed {
    background: #10B981;
    border-color: #10B981;
    color: transparent;
}

.step-dot.completed::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.85rem;
    color: white;
    position: absolute;
}

.wizard-step-content {
    display: none;
}

.wizard-step-content.active {
    display: block;
    animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.options-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important;
    gap: 16px !important;
    margin-top: 18px !important;
}

.option-box {
    background: rgba(255, 255, 255, 0.07) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 14px !important;
    padding: 20px 16px !important;
    text-align: center !important;
    cursor: pointer !important;
    position: relative !important;
    transition: all 0.25s ease !important;
    user-select: none !important;
    color: #FFFFFF !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.option-box:hover {
    border-color: #F59E0B !important;
    background: rgba(245, 158, 11, 0.15) !important;
    transform: translateY(-2px) !important;
}

.option-box.selected {
    border: 2.5px solid #F59E0B !important;
    background: rgba(245, 158, 11, 0.22) !important;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.35) !important;
}

.option-box.selected::after {
    content: '\f058' !important;
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900 !important;
    position: absolute !important;
    top: 8px !important;
    right: 8px !important;
    font-size: 0.95rem !important;
    color: #F59E0B !important;
}

.option-box i {
    font-size: 1.8rem !important;
    color: #F59E0B !important;
    margin: 0 auto 10px auto !important;
    display: block !important;
    transition: transform 0.25s ease !important;
}

.option-box:hover i,
.option-box.selected i {
    transform: scale(1.1) !important;
    color: #FBBF24 !important;
}

.option-box h4 {
    font-family: var(--font-body) !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
    margin-bottom: 4px !important;
    text-transform: none !important;
    letter-spacing: 0.3px !important;
    text-align: center !important;
    width: 100% !important;
}

.option-box p {
    font-family: var(--font-body) !important;
    color: #FDE68A !important;
    font-size: 0.78rem !important;
    line-height: 1.25 !important;
    margin: 4px auto 0 auto !important;
    padding: 0 4px !important;
    opacity: 0.95 !important;
    text-align: center !important;
    text-align-last: center !important;
    width: 100% !important;
    display: block !important;
}

.wizard-step-content h3 {
    font-family: var(--font-body) !important;
    color: #FFFFFF !important;
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    text-transform: none !important;
    margin-bottom: 16px !important;
    letter-spacing: 0.3px !important;
    text-align: center !important;
}

/* Light Wizard Theme Overrides (custom-tour.php) */
.wizard-card-light {
    background: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    border-top: 4px solid #D97706 !important;
    box-shadow: 0 12px 36px rgba(11, 36, 32, 0.08) !important;
    color: #0B2420 !important;
}

.wizard-card-light .wizard-step-content h3 {
    color: #0B2420 !important;
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    text-transform: none !important;
    margin-bottom: 16px !important;
    text-align: center !important;
}

.wizard-card-light .wizard-steps-indicator::before {
    background: #CBD5E1 !important;
    height: 3px !important;
}

.wizard-card-light .step-dot {
    background: #F1F5F9 !important;
    border: 2px solid #CBD5E1 !important;
    color: #475569 !important;
}

.wizard-card-light .step-dot.active {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%) !important;
    color: #FFFFFF !important;
    border-color: #F59E0B !important;
    box-shadow: 0 0 16px rgba(245, 158, 11, 0.4) !important;
}

.wizard-card-light .step-dot.completed {
    background: #10B981 !important;
    border-color: #10B981 !important;
    color: white !important;
}

.wizard-card-light .option-box {
    background: #FAF6EE !important;
    border: 1.5px solid #E6D9C5 !important;
    color: #0B2420 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

.wizard-card-light .option-box i {
    color: #D97706 !important;
}

.wizard-card-light .option-box h4 {
    color: #0B2420 !important;
    font-weight: 800 !important;
    text-transform: none !important;
    text-align: center !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.wizard-card-light .option-box p {
    color: #475569 !important;
    font-weight: 600 !important;
    text-align: center !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.wizard-card-light .option-box:hover {
    border-color: #D97706 !important;
    background: #FEF3C7 !important;
    transform: translateY(-2px) !important;
}

.wizard-card-light .option-box.selected {
    border: 2.5px solid #D97706 !important;
    background: #FEF3C7 !important;
    box-shadow: 0 4px 16px rgba(217, 119, 6, 0.25) !important;
}

.wizard-card-light .option-box.selected h4 {
    color: #78350F !important;
    font-weight: 800 !important;
}

.wizard-card-light .option-box.selected p {
    color: #92400E !important;
    font-weight: 600 !important;
}

.wizard-card-light .option-box.selected i {
    color: #B45309 !important;
}

.wizard-card-light .option-box.selected::after {
    color: #D97706 !important;
}

.wizard-card input,
.wizard-card textarea,
.wizard-card select,
.wizard-card-light input,
.wizard-card-light textarea,
.wizard-step-3 input,
.wizard-step-3 textarea,
#wizName,
#wizEmail,
#wizNotes {
    background: #FFFFFF !important;
    border: 1px solid var(--border-color) !important;
    color: var(--primary-dark) !important;
    -webkit-text-fill-color: var(--primary-dark) !important;
    text-align: left !important;
    padding-left: 16px !important;
}

.wizard-card input::placeholder,
.wizard-card textarea::placeholder,
.wizard-card-light input::placeholder,
.wizard-card-light textarea::placeholder,
.wizard-step-3 input::placeholder,
.wizard-step-3 textarea::placeholder,
.wizard-step-3 input::-webkit-input-placeholder,
.wizard-step-3 textarea::-webkit-input-placeholder,
.wizard-step-3 input::-moz-placeholder,
.wizard-step-3 textarea::-moz-placeholder,
#wizName::placeholder,
#wizEmail::placeholder,
#wizNotes::placeholder,
#wizName::-webkit-input-placeholder,
#wizEmail::-webkit-input-placeholder,
#wizNotes::-webkit-input-placeholder {
    text-align: left !important;
}

.wizard-card-light input::placeholder,
.wizard-card-light textarea::placeholder,
.wizard-card-light input::-webkit-input-placeholder,
.wizard-card-light textarea::-webkit-input-placeholder,
.wizard-card-light input::-moz-placeholder,
.wizard-card-light textarea::-moz-placeholder,
.wizard-card-light input:-ms-input-placeholder,
.wizard-card-light textarea:-ms-input-placeholder {
    color: #64748B !important;
    -webkit-text-fill-color: #64748B !important;
    opacity: 0.85 !important;
}

.wizard-prev-btn {
    background: rgba(255, 255, 255, 0.14) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
    color: #FFFFFF !important;
    font-weight: 700 !important;
    padding: 10px 24px !important;
    border-radius: 30px !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.25s ease !important;
}

.wizard-prev-btn i {
    color: inherit !important;
    transition: color 0.25s ease !important;
}

.wizard-prev-btn:hover {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%) !important;
    color: #0B2420 !important;
    border-color: #FBBF24 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(245, 158, 11, 0.4) !important;
}

.wizard-prev-btn:hover i {
    color: #0B2420 !important;
}

.wizard-card-light .wizard-prev-btn {
    background: #FFFFFF !important;
    border: 1.5px solid var(--border-color) !important;
    color: var(--primary-dark) !important;
    font-weight: 700 !important;
    transition: all 0.25s ease !important;
}

.wizard-card-light .wizard-prev-btn i {
    color: var(--primary-dark) !important;
}

.wizard-card-light .wizard-prev-btn:hover {
    background: #F1F5F9 !important;
    border-color: var(--primary-dark) !important;
    color: var(--primary-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 14px rgba(3, 30, 26, 0.1) !important;
}

.wizard-card-light .wizard-prev-btn:hover i {
    color: var(--primary-dark) !important;
}

/* Modern Premium FAQ Accordion Component */
.accordion-item {
    background: #FFFFFF;
    border: 1px solid rgba(16, 185, 129, 0.14);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px -2px rgba(3, 30, 26, 0.05);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 16px;
    position: relative;
}

.accordion-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #F59E0B 0%, #10B981 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.accordion-item:hover {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 8px 24px -4px rgba(3, 30, 26, 0.09);
}

.accordion-item.active {
    border-color: rgba(16, 185, 129, 0.35);
    box-shadow: 0 12px 32px -6px rgba(3, 30, 26, 0.12), 0 0 20px rgba(16, 185, 129, 0.06);
}

.accordion-item.active::before {
    opacity: 1;
}

.accordion-header {
    padding: 20px 24px;
    background: #FFFFFF;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background 0.3s ease;
}

.accordion-header span {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.accordion-header:hover {
    background: #F8FAFC;
}

.accordion-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.faq-icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #ECFDF5;
    color: #059669;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.35s ease;
    border: 1px solid #A7F3D0;
}

.accordion-item.active .faq-icon-badge {
    background: linear-gradient(135deg, #031E1A 0%, #059669 100%);
    color: #F59E0B;
    border-color: #F59E0B;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.28);
}

.accordion-header h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0;
    transition: color 0.3s ease;
}

.accordion-item.active .accordion-header h3 {
    color: #047857;
}

.accordion-toggle-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F1F5F9;
    color: #64748B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    transition: all 0.35s ease;
    flex-shrink: 0;
}

.accordion-item.active .accordion-toggle-btn {
    background: #FFFBEB;
    color: #D97706;
    transform: rotate(180deg);
    box-shadow: 0 2px 8px rgba(217, 119, 6, 0.2);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 24px;
    color: #334155;
    font-size: 0.96rem;
    line-height: 1.75;
    background: #FAFDFB;
}

.accordion-item.active .accordion-body {
    max-height: 500px;
    padding: 20px 24px 24px 84px;
    border-top: 1px dashed #E2E8F0;
}

@media (max-width: 640px) {
    .accordion-item.active .accordion-body {
        padding: 16px 20px 20px 20px;
    }
}

/* Testimonials */
.testimonials-section {
    padding: 90px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

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

@media (max-width: 640px) {
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
}

/* Pagination Bar Component */
.pagination-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 45px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.pagination {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    padding: 8px 16px;
    border-radius: 40px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 38px;
    height: 38px;
    padding: 0 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-dark);
    transition: var(--transition);
    text-decoration: none;
}

.page-link:hover {
    background: rgba(6, 55, 58, 0.08);
    color: var(--primary);
}

.page-link.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
    color: white !important;
    box-shadow: 0 4px 12px rgba(6, 55, 58, 0.25);
}

.page-link.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-info {
    font-size: 0.86rem;
    color: var(--text-muted);
    font-weight: 600;
    text-align: center;
}

@media (max-width: 768px) {
    .pagination-wrapper {
        margin-top: 25px;
        padding-top: 20px;
    }

    .pagination {
        gap: 4px;
        padding: 6px 10px;
        width: 100%;
        max-width: 380px;
        justify-content: space-between;
    }

    .page-link {
        min-width: 34px;
        height: 34px;
        padding: 0 10px;
        font-size: 0.82rem;
    }
}

.testimonial-card {
    position: relative;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 30px 24px 24px;
    border: 1px solid rgba(3, 30, 26, 0.09);
    box-shadow: 0 10px 25px -5px rgba(3, 30, 26, 0.05);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 16px 16px 0 0;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px -6px rgba(3, 30, 26, 0.12);
    border-color: rgba(245, 158, 11, 0.35);
}

.testimonial-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 10px;
}

.testimonial-stars {
    color: var(--accent);
    font-size: 0.88rem;
    display: inline-flex;
    gap: 3px;
    background: rgba(245, 158, 11, 0.08);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.testimonial-verified {
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--primary-dark);
    background: rgba(10, 77, 64, 0.07);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(10, 77, 64, 0.18);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.testimonial-verified i {
    color: var(--primary-mid);
}

/* Traveller Stories Infinite Auto-Scroll Marquee Component */
.reviews-carousel-arrow {
    display: none !important;
}

.marquee-reviews-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 15px 0 25px 0;
    mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
    touch-action: pan-y;
}

.marquee-reviews-track {
    display: flex;
    gap: 24px;
    width: max-content;
    will-change: transform;
    animation: infiniteMarqueeRoll 35s linear infinite;
}

.marquee-reviews-wrapper:hover .marquee-reviews-track {
    animation-play-state: paused;
}

@keyframes infiniteMarqueeRoll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-reviews-wrapper .testimonial-card {
    width: 370px;
    flex-shrink: 0;
    box-sizing: border-box;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}

.marquee-reviews-wrapper .testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: #FFFFFF;
    border-color: var(--accent);
    box-shadow: 0 16px 36px -6px rgba(3, 30, 26, 0.15), 0 0 25px rgba(245, 158, 11, 0.15);
    z-index: 20;
}

@media (max-width: 768px) {
    .reviews-carousel-arrow {
        display: none !important;
    }
    .marquee-reviews-wrapper {
        padding: 10px 0 20px;
    }
    .marquee-reviews-track {
        gap: 16px;
        animation: infiniteMarqueeRoll 25s linear infinite;
    }
    .marquee-reviews-wrapper .testimonial-card {
        width: 290px;
        padding: 20px 16px 18px;
    }
}

/* CTA Banner Section Styles */
.cta-banner-section {
    padding: 85px 0;
    background: linear-gradient(180deg, rgba(11, 36, 32, 0.82) 0%, rgba(4, 26, 23, 0.92) 100%), url('../images/hero_lighthouse_sunset.webp') center/cover no-repeat !important;
    color: #FFFFFF !important;
    text-align: center;
    position: relative;
}

@media (max-width: 768px) {
    .cta-banner-section {
        padding: 42px 16px 48px 16px !important;
    }
    .cta-banner-section .destinations-header-block {
        margin-bottom: 14px !important;
    }
    .cta-banner-section p {
        font-size: 0.94rem !important;
        margin: 0 auto 18px auto !important;
        line-height: 1.5 !important;
        color: #FFFFFF !important;
    }
    .cta-banner-buttons {
        gap: 12px !important;
        margin-top: 12px !important;
    }
    .cta-banner-buttons .btn {
        width: 100% !important;
        padding: 12px 20px !important;
    }
}

.marquee-reviews-wrapper .testimonial-card {
    width: 360px;
    flex-shrink: 0;
    box-sizing: border-box;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.4s ease, 
                border-color 0.4s ease;
}

.marquee-reviews-wrapper .testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: #FFFFFF;
    border-color: var(--accent);
    box-shadow: 0 16px 36px -6px rgba(3, 30, 26, 0.15), 
                0 0 25px rgba(245, 158, 11, 0.15);
    z-index: 20;
}

.marquee-reviews-wrapper .testimonial-card:hover .user-avatar {
    box-shadow: 0 0 16px rgba(245, 158, 11, 0.4);
    border-color: var(--accent);
}

@media (max-width: 768px) {
    .marquee-reviews-wrapper {
        padding: 15px 0 25px;
        mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
    }
    
    .marquee-reviews-track {
        gap: 16px;
        animation: infiniteMarqueeRoll 30s linear infinite;
    }
    
    .marquee-reviews-wrapper .testimonial-card {
        width: 290px;
        flex-shrink: 0;
        padding: 20px 16px 18px;
        border-radius: 14px;
    }

    .testimonial-card::before {
        height: 3px;
    }

    .testimonial-top-row {
        margin-bottom: 12px;
        gap: 8px;
    }

    .testimonial-stars {
        padding: 4px 10px;
        font-size: 0.8rem;
    }

    .testimonial-verified {
        padding: 4px 10px;
        font-size: 0.72rem;
    }

    .testimonial-text {
        font-size: 0.86rem;
        line-height: 1.55;
        margin-bottom: 16px;
    }

    .testimonial-user {
        padding-top: 12px;
        gap: 10px;
    }

    .user-avatar {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .user-details h4 {
        font-size: 0.88rem;
    }

    .user-details p {
        font-size: 0.73rem;
    }
}

.testimonial-quote-icon {
    font-size: 1.5rem;
    color: rgba(245, 158, 11, 0.22);
    margin-bottom: 8px;
    display: block;
}

.testimonial-text {
    font-size: 0.94rem;
    color: #334155;
    font-weight: 500;
    margin-bottom: 22px;
    line-height: 1.68;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid #F1F5F9;
}

.user-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0A4D40 100%);
    color: var(--accent);
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow: 0 4px 12px rgba(3, 30, 26, 0.15);
    border: 2px solid rgba(245, 158, 11, 0.35);
    flex-shrink: 0;
}

.user-details h4 {
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 2px;
}

.user-details p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: white;
    border-radius: var(--radius-md);
    max-width: 600px;
    width: 90%;
    padding: 32px;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.modal-close {
    position: absolute;
    top: 15px; right: 15px;
    background: #F59E0B;
    border: 1.5px solid #FFFFFF;
    color: #042621;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #FDE047;
    color: #000000;
    transform: scale(1.1) rotate(90deg);
}

/* Floating Action Widgets */
.floating-widgets {
    position: fixed;
    bottom: 25px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.28);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

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

.float-whatsapp {
    background: var(--whatsapp);
}

.float-review {
    background: var(--primary);
}

.float-backtotop {
    background: var(--primary-mid);
    opacity: 0;
    visibility: hidden;
}

.float-backtotop.show {
    opacity: 1;
    visibility: visible;
}

/* Site Footer - Navbar Inspired Glassmorphism Aesthetic */
.site-footer {
    position: relative;
    background: linear-gradient(180deg, #031C18 0%, #021412 100%);
    color: rgba(255, 255, 255, 0.82);
    padding: 75px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F59E0B 0%, #10B981 50%, #F59E0B 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.9fr 0.95fr 1.15fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.footer-brand-header .logo-link {
    display: flex;
    align-items: center;
    gap: 8px !important;
    text-decoration: none;
}

.footer-brand-header .logo-text {
    display: flex;
    flex-direction: column;
}

.footer-brand-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}

.footer-brand-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.1;
    letter-spacing: -0.2px;
}

.footer-brand-subtitle {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: #F59E0B;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 3px;
}

.footer-brand-desc {
    font-size: 0.91rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 24px;
    max-width: 380px;
    text-align: left;
}

.footer-social-row {
    display: flex;
    gap: 12px;
}

.footer-social-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.footer-social-btn:hover {
    background: #F59E0B;
    color: #031E1A;
    border-color: #F59E0B;
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.35);
}

.footer-social-btn.whatsapp-social:hover {
    background: #25D366;
    color: white;
    border-color: #25D366;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.footer-social-btn.instagram-social:hover {
    background: #E1306C;
    color: white;
    border-color: #E1306C;
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.35);
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 1.18rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: #F59E0B;
    border-radius: 2px;
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-list li a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-link-list li a:hover {
    color: #F59E0B;
    transform: translateX(6px);
}

.footer-link-list .link-arrow {
    font-size: 0.72rem;
    color: #10B981;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-link-list li a:hover .link-arrow {
    color: #F59E0B;
    transform: translateX(3px);
}

.footer-link-list .link-pin {
    font-size: 0.78rem;
    color: #F59E0B;
    transition: transform 0.3s ease;
}

.footer-link-list li a:hover .link-pin {
    transform: scale(1.2);
}

.footer-contact-box {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-item {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    text-align: left;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-contact-item div {
    text-align: left;
    min-width: 0;
}

.footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(245, 158, 11, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.contact-item-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(245, 158, 11, 0.12);
    color: #F59E0B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.contact-item-label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    font-weight: 600;
}

.contact-item-val {
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 700;
}

.contact-item-val.highlight-gold {
    color: #F59E0B;
    font-weight: 800;
    font-size: 0.98rem;
}

.footer-bottom-bar {
    padding-top: 25px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #94A3B8;
}

.footer-copy-text {
    margin: 0;
    color: #94A3B8;
    font-size: 0.95rem;
    font-weight: 400;
}

.footer-copy-text strong {
    color: #FFFFFF;
    font-weight: 700;
}

.bottom-site-link {
    margin: 0;
    color: #94A3B8;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.65;
}

.bottom-site-link a {
    color: #F59E0B;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: #F59E0B;
    display: inline-block;
    margin-top: 3px;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.bottom-site-link a:hover {
    color: #FBBF24;
    text-decoration-color: #FBBF24;
}

.bottom-tagline.admin-link-badge {
    margin-top: 6px;
    font-weight: 700;
    color: #10B981;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 5px 12px;
    border-radius: 8px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bottom-tagline.admin-link-badge:hover {
    color: #F59E0B;
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}

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

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-brand-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-brand-logo {
        margin: 0 auto;
    }

    .footer-brand-desc {
        text-align: center !important;
        max-width: 100% !important;
        font-size: 0.88rem !important;
        line-height: 1.65 !important;
        margin: 0 auto 20px !important;
    }

    .footer-social-row {
        justify-content: center !important;
    }

    .footer-col-title {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-col-title::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .footer-link-list {
        align-items: center;
    }

    .footer-link-list li a {
        justify-content: center;
    }

    .footer-link-list li a:hover {
        transform: translateY(-2px);
    }

    .footer-contact-box {
        align-items: center;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .footer-contact-item {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        text-align: left !important;
        width: 100% !important;
        padding: 12px 14px !important;
    }

    .footer-contact-item div {
        text-align: left !important;
    }

    .contact-item-val {
        font-size: 0.83rem !important;
        word-break: break-all;
    }

    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Mobile Responsive Drawer & Queries */
@media (max-width: 992px) {
    .header-right-action .currency-selector {
        display: none !important;
    }
    .mobile-currency-item {
        display: block !important;
        width: 100%;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
    .mobile-currency-item .currency-selector {
        display: flex;
        justify-content: space-between;
        width: 100%;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(245, 158, 11, 0.4);
        padding: 8px 16px;
        color: white;
    }
    .mobile-currency-item .currency-selector select {
        color: white;
        font-size: 0.92rem;
    }
    .top-announcement-bar {
        display: none;
    }
    .site-header {
        top: 0;
        height: 62px !important;
    }
    .header-right-action {
        gap: 8px;
    }
    .nav-toggle {
        display: flex !important;
    }
    .nav-menu {
        position: absolute !important;
        top: calc(100% + 8px) !important;
        right: 16px !important;
        width: 220px !important;
        max-width: calc(100vw - 32px) !important;
        height: auto !important;
        max-height: 80vh !important;
        overflow-y: auto !important;
        background: linear-gradient(135deg, rgba(4, 38, 33, 0.96) 0%, rgba(6, 45, 42, 0.98) 100%) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border: 1.5px solid rgba(245, 158, 11, 0.35) !important;
        border-radius: 14px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 10px 12px !important;
        gap: 2px !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(-10px) scale(0.95) !important;
        transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.65), 0 0 20px rgba(4, 38, 33, 0.5) !important;
        z-index: 9999 !important;
    }
    .nav-menu.active {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) scale(1) !important;
    }
    .nav-menu li {
        width: 100% !important;
    }
    .nav-menu .nav-link {
        display: flex !important;
        width: 100% !important;
        padding: 9px 12px !important;
        color: #FFFFFF !important;
        font-family: 'Cinzel', serif !important;
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        letter-spacing: 1.5px !important;
        text-transform: uppercase !important;
        border-radius: 8px !important;
        transition: all 0.2s ease !important;
    }
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: #F59E0B !important;
        background: rgba(245, 158, 11, 0.12) !important;
        padding-left: 16px !important;
    }
    .hero-title {
        font-size: 2.4rem;
    }
    .hero-search-wrapper {
        margin-top: 20px;
        width: 94%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .site-header {
        height: 64px;
    }
    .nav-container {
        padding: 0 16px;
    }
    .brand-logo-img {
        height: 38px;
    }
    .logo-text {
        white-space: nowrap;
        text-align: left;
    }
    .header-plan-btn {
        padding: 7px 16px;
        font-size: 0.78rem;
        border-radius: 20px;
    }
    .hero-section {
        height: auto;
        min-height: 680px;
        max-height: none;
        padding-top: 70px;
        padding-bottom: 60px;
    }
    .hero-badge-pill {
        padding: 5px 14px;
        font-size: 0.73rem;
        margin-bottom: 12px;
        white-space: nowrap;
        max-width: 98%;
        gap: 6px;
        letter-spacing: -0.1px;
    }
    .hero-badge-pill i {
        font-size: 0.85rem;
    }
    /* Hero Stats Bar Mobile Reference Layout */
    .hero-bottom-stats-bar {
        background: #031C18;
        padding: 22px 0;
    }
    .stats-feature-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 16px 0;
        max-width: 380px;
        margin: 0 auto;
        padding: 0 12px;
    }
    .stat-feature-item {
        width: 48%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2px;
    }
    .stat-feature-item.stat-item-rating {
        width: 100%;
        margin-top: 4px;
    }
    .stat-divider {
        display: block !important;
        width: 1px;
        height: 38px;
        background: rgba(255, 255, 255, 0.16);
    }
    .desktop-only-divider {
        display: none !important;
    }
    .stat-text strong,
    .stat-text strong span.counter-val {
        font-size: 1.5rem;
        font-weight: 900;
        color: var(--accent);
        line-height: 1.1;
    }
    .stat-text > span {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.88);
        font-weight: 500;
        margin-top: 2px;
    }
    .hero-brand-badge-filigree {
        padding: 6px 12px;
        margin-bottom: 14px;
        background: transparent;
        border: none;
        box-shadow: none;
    }
    .hero-center-logo {
        height: 62px;
    }
    .hero-brand-serif {
        font-size: 1.9rem;
        letter-spacing: 4px;
    }
    .hero-brand-sub-serif {
        font-size: 0.75rem;
        letter-spacing: 4px;
    }
    .filigree-line {
        width: 40px;
    }
    .hero-title {
        font-size: 1.95rem;
        line-height: 1.2;
    }
    .hero-tagline {
        font-size: 0.95rem;
    }
    .hero-search-wrapper {
        margin-top: 20px;
        width: 92%;
        max-width: 420px;
    }
    .hero-simple-search {
        padding: 5px 5px 5px 16px;
        border-radius: 40px;
    }
    .simple-search-input {
        font-size: 0.88rem;
    }
    .simple-search-btn span {
        display: none;
    }
    .simple-search-btn {
        width: 38px;
        height: 38px;
        min-width: 38px;
        padding: 0;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .floating-widgets {
        bottom: 16px;
        right: 14px;
        gap: 8px;
    }
    .float-btn {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .stats-feature-grid {
        gap: 2px;
        padding: 0 2px;
    }
    .stat-feature-item {
        gap: 3px;
    }
    .stat-icon {
        font-size: 0.95rem;
    }
    .stats-feature-grid {
        max-width: 340px;
        gap: 14px 0;
    }
    .stat-text strong,
    .stat-text strong span.counter-val {
        font-size: 1.38rem;
    }
    .stat-text > span {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.88);
    }
    .hero-badge-pill {
        font-size: 0.67rem;
        padding: 4px 10px;
    }
    .brand-logo-img {
        height: 34px;
    }
    .header-logo-card {
        gap: 6px;
    }
    .header-plan-btn {
        padding: 6px 12px;
        font-size: 0.72rem;
    }
    .hero-title {
        font-size: 1.65rem;
    }
}

/* Photo Gallery Item Hover Effect */
.gallery-item-img {
    filter: brightness(0.9);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease;
}

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

/* -------------------------------------------------------------
 * 10. Premium Scroll-Reveal Animations System
 * ------------------------------------------------------------- */
html {
    scroll-behavior: smooth;
}

/* Base Reveal Trigger Elements */
.reveal,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale,
.section-title,
.dest-card,
.package-card,
.feature-card,
.fleet-card,
.review-card,
.stat-card,
.accordion-item {
    opacity: 0;
    will-change: opacity, transform;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reveal Variations */
.reveal-up,
.section-title,
.dest-card,
.package-card,
.feature-card,
.fleet-card,
.review-card,
.stat-card,
.accordion-item {
    transform: translateY(35px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-scale {
    transform: scale(0.92) translateY(20px);
}

/* Revealed Active State */
.revealed,
.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-scale.revealed,
.section-title.revealed,
.dest-card.revealed,
.package-card.revealed,
.feature-card.revealed,
.fleet-card.revealed,
.review-card.revealed,
.stat-card.revealed,
.accordion-item.revealed {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Stagger Delay Utility Classes */
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
.stagger-5 { transition-delay: 0.40s; }

/* -------------------------------------------------------------
 * 11. Mobile View UX Enhancements & Responsive Layout System
 * ------------------------------------------------------------- */

/* Body Scroll Lock for Mobile Menu */
body.no-scroll {
    overflow: hidden !important;
    touch-action: none;
}

/* Mobile Navigation Drawer Backdrop Overlay */
.nav-drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 30, 26, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-drawer-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Grid Utility Classes */
.package-details-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.sticky-booking-card {
    position: sticky;
    top: 95px;
    background: white;
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    z-index: 90;
}

@media (max-width: 992px) {
    .sticky-booking-card {
        position: static;
        top: auto;
    }
}

.included-excluded-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
}

/* Contact Cards System */
.contact-card-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
    min-width: 0;
}

.contact-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    flex-shrink: 0;
}

.contact-card-text {
    flex: 1;
    min-width: 0;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.contact-card-text h4 {
    font-size: 1.05rem;
    color: var(--primary-dark);
    font-weight: 800;
    margin-bottom: 3px;
}

.contact-card-text p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.contact-link-val {
    font-weight: 800;
    font-size: 0.92rem;
    word-break: break-all;
    overflow-wrap: anywhere;
    display: inline-block;
    max-width: 100%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-header-block {
    text-align: left;
    margin-bottom: 25px;
}

.about-header-block .destinations-flourish {
    justify-content: flex-start;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-feature-card {
    background: #FFFFFF;
    padding: 16px 20px;
    border-radius: 14px;
    border: 1.5px solid #E2E8F0;
    box-shadow: 0 4px 14px rgba(11, 36, 32, 0.05);
    font-weight: 700;
    font-size: 0.92rem;
    color: #0B2420;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature-card i {
    color: #F59E0B;
    font-size: 1.1rem;
}

.about-img-wrap img {
    border-radius: 16px;
    border: 3px solid #F59E0B !important;
    box-shadow: 0 12px 32px rgba(11, 36, 32, 0.2), 0 0 16px rgba(245, 158, 11, 0.25) !important;
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.packages-filter-bar {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 30px;
}

.quick-specs-bar {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    align-items: center;
    justify-content: center;
    background: rgba(250, 246, 238, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 12px 28px;
    border-radius: 50px;
    border: 1.5px solid rgba(217, 119, 6, 0.35);
    box-shadow: 0 8px 26px rgba(11, 36, 32, 0.08);
    width: max-content;
    max-width: 98%;
    margin: 20px auto 0 auto;
}

.quick-specs-bar .quick-spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1E293B;
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
}

.quick-specs-bar .quick-spec-item strong {
    color: #0B2420;
    font-weight: 800;
}

.quick-specs-bar i {
    width: 34px !important;
    height: 34px !important;
    border-radius: 50% !important;
    background: rgba(4, 23, 20, 0.72) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    color: #FBBF24 !important;
    border: 1.5px solid rgba(245, 158, 11, 0.4) !important;
    box-shadow: 0 3px 8px rgba(4, 23, 20, 0.2) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.85rem !important;
    flex-shrink: 0 !important;
}

@media (max-width: 1100px) {
    .quick-specs-bar {
        flex-wrap: wrap !important;
        justify-content: center !important;
        border-radius: 20px !important;
        gap: 14px 24px !important;
        padding: 14px 22px !important;
        width: fit-content !important;
    }
}

/* Tablet & Below Media Queries (max-width: 992px) */
@media (max-width: 992px) {
    .package-details-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.page-banner {
    padding: 105px 20px 42px !important;
    position: relative !important;
    background: #FAF7F2 !important;
    background-image: none !important;
    text-align: center !important;
    color: #1A130C !important;
    border-bottom: 1px solid #E6D9C5 !important;
}

.page-banner-title {
    font-family: 'Cinzel', serif !important;
    font-size: 2.3rem !important;
    font-weight: 900 !important;
    color: #042621 !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
    filter: none !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    line-height: 1.25 !important;
    margin-bottom: 14px !important;
    text-shadow: none !important;
}

.page-banner-desc {
    font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif !important;
    font-style: normal !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #3A2A1A !important;
    line-height: 1.6 !important;
    max-width: 760px !important;
    margin: 0 auto 12px auto !important;
    letter-spacing: 0.5px !important;
    text-transform: none !important;
    white-space: normal !important;
    overflow: visible !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.75) !important;
}

/* Mobile Media Queries (max-width: 768px) */
@media (max-width: 768px) {
    /* Global Section Mobile Padding Fix - Eliminates Huge Gaps */
    section, 
    .site-section, 
    .packages-section, 
    .wizard-section, 
    .testimonials-section {
        padding-top: 36px !important;
        padding-bottom: 36px !important;
    }

    .page-banner {
        padding: 95px 16px 30px !important;
        background: #FAF7F2 !important;
        background-image: none !important;
        border-bottom: 1px solid #E6D9C5 !important;
    }

    .page-banner-title {
        font-size: 1.55rem !important;
        line-height: 1.3 !important;
        letter-spacing: 1px !important;
        margin-bottom: 8px !important;
        color: #1A130C !important;
        text-shadow: none !important;
    }

    .page-banner-desc {
        font-size: 0.98rem !important;
        line-height: 1.5 !important;
        color: #3A2A1A !important;
        text-shadow: none !important;
    }

    .packages-search-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }

    .packages-search-input {
        padding: 10px 145px 10px 42px !important;
        font-size: 0.88rem !important;
        height: 48px !important;
        border-radius: 30px !important;
    }

    .packages-search-wrapper .search-icon {
        left: 14px !important;
        font-size: 0.92rem !important;
    }

    .packages-search-submit-btn {
        padding: 7px 14px !important;
        font-size: 0.82rem !important;
        right: 4px !important;
        border-radius: 22px !important;
    }

    .packages-search-wrapper .clear-search-btn {
        right: 110px !important;
    }

    /* Mobile Section Headings & Paragraph Alignment */
    .section-title,
    .section-title-left {
        text-align: center !important;
        margin-bottom: 20px !important;
    }

    .section-title h2,
    .section-title-left h2,
    .destinations-main-title,
    .about-grid h2,
    .about-grid h4,
    .contact-grid h2,
    section h2 {
        text-align: center !important;
        font-size: 1.55rem !important;
        line-height: 1.25 !important;
        margin-bottom: 10px !important;
        color: #1A130C !important;
    }

    .section-title h4,
    .section-title-left h4,
    .sub-title,
    .destinations-script-tagline {
        text-align: center !important;
        font-size: 0.85rem !important;
        letter-spacing: 1.5px !important;
        margin-bottom: 6px !important;
        color: #B45309 !important;
    }

    .section-title p,
    .section-title-left p {
        font-size: 0.92rem !important;
        line-height: 1.5 !important;
        text-align: center !important;
        color: #334155 !important;
    }

    /* Mobile Body Paragraphs Natural Left Alignment (excluding section header titles and justified text) */
    .site-section p:not(.section-title p):not(.justify-text),
    .about-grid p:not(.justify-text),
    .contact-grid p:not(.justify-text),
    .package-details-layout p:not(.justify-text),
    .wizard-section p:not(.justify-text) {
        text-align: left !important;
    }

    .justify-text {
        text-align: justify !important;
        text-justify: inter-word;
    }

    /* Mobile Container Padding */
    .container {
        padding: 0 16px !important;
    }

    /* About Grid & Mobile Responsive System */
    .about-header-block {
        text-align: center !important;
    }
    .about-header-block .destinations-main-title {
        font-size: 1.55rem !important;
        line-height: 1.3 !important;
        margin-bottom: 6px !important;
    }
    .about-header-block .destinations-script-tagline {
        font-size: 1.12rem !important;
        margin-bottom: 12px !important;
    }
    .about-header-block .destinations-flourish {
        justify-content: center !important;
    }

    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    .about-hero-image-wrap img {
        max-height: 250px !important;
        border-radius: 14px !important;
    }

    .about-grid p {
        font-size: 0.92rem !important;
        line-height: 1.65 !important;
        color: #334155 !important;
    }

    .about-img-wrap img,
    .about-grid img {
        height: 250px !important;
        width: 100% !important;
        object-fit: cover !important;
        border-radius: 14px !important;
        border: 2.5px solid #F59E0B !important;
        box-shadow: 0 8px 24px rgba(11, 36, 32, 0.18) !important;
        margin-top: 10px !important;
    }

    .about-story-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .about-feature-card {
        padding: 12px 16px !important;
        font-size: 0.88rem !important;
    }
}

/* About Us Company Stats Section - Global & Desktop (4 Columns) */
.about-stats-section {
    padding: 70px 0 !important;
    background: linear-gradient(180deg, #041714 0%, #06221E 100%) !important;
    border-top: 3.5px solid #D97706 !important;
    border-bottom: 3.5px solid #D97706 !important;
    color: #FFFFFF !important;
}

.about-stats-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
    text-align: center !important;
}

.about-stat-card {
    padding: 30px 20px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-radius: 18px !important;
    border: 1.5px solid rgba(245, 158, 11, 0.35) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.about-stat-card:hover {
    background: rgba(245, 158, 11, 0.12) !important;
    border-color: #F59E0B !important;
    transform: translateY(-6px) !important;
    box-shadow: 0 14px 35px rgba(245, 158, 11, 0.2) !important;
}

.about-stat-card i {
    font-size: 2.4rem !important;
    color: #F59E0B !important;
    margin-bottom: 14px !important;
    display: inline-block !important;
    text-shadow: 0 2px 10px rgba(245, 158, 11, 0.4) !important;
}

.about-stat-card h3 {
    font-size: 2.2rem !important;
    font-weight: 900 !important;
    color: #FFFFFF !important;
    margin-bottom: 6px !important;
    line-height: 1.1 !important;
}

.about-stat-card p {
    font-size: 0.95rem !important;
    color: #FDE68A !important;
    font-weight: 700 !important;
    margin: 0 !important;
    line-height: 1.3 !important;
}

@media (max-width: 768px) {
    .about-stats-section {
        padding: 42px 0 !important;
    }
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .about-stat-card {
        padding: 16px 12px !important;
        border-radius: 14px !important;
    }
    .about-stat-card i {
        font-size: 1.65rem !important;
        margin-bottom: 8px !important;
        color: #F59E0B !important;
    }
    .about-stat-card h3 {
        font-size: 1.45rem !important;
        font-weight: 900 !important;
        margin-bottom: 3px !important;
        color: #FFFFFF !important;
    }
    .about-stat-card p {
        font-size: 0.82rem !important;
        font-weight: 700 !important;
        color: #FDE68A !important;
        line-height: 1.25 !important;
    }

    /* Contact Grid */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    .contact-grid > div {
        padding: 20px 14px !important;
    }

    .contact-card {
        padding: 16px 12px !important;
        gap: 12px !important;
    }

    .contact-icon-box {
        width: 42px !important;
        height: 42px !important;
        font-size: 1.15rem !important;
    }

    .contact-card-text h4 {
        font-size: 0.94rem !important;
    }

    .contact-card-text p {
        font-size: 0.8rem !important;
    }

    .contact-link-val {
        font-size: 0.82rem !important;
    }

    /* Mobile Gallery View Modes */
    .gallery-grid,
    .full-gallery-grid.view-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .full-gallery-grid.view-grid .gallery-card-item {
        height: 155px !important;
        border-radius: 12px !important;
    }

    .full-gallery-grid.view-masonry {
        column-count: 2 !important;
        column-gap: 12px !important;
    }

    .full-gallery-grid.view-masonry .gallery-card-item {
        min-height: 130px !important;
        margin-bottom: 12px !important;
    }

    .full-gallery-grid.view-masonry .gallery-card-item img,
    .full-gallery-grid.view-masonry .gallery-card-item .gallery-card-img {
        min-height: 130px !important;
        object-fit: cover !important;
    }

    .full-gallery-grid.view-large {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        max-width: 100% !important;
    }

    .full-gallery-grid.view-large .gallery-card-item {
        height: 280px !important;
        width: 100% !important;
        border-radius: 14px !important;
    }

    /* Horizontal Scrollable 1-Line Category Filter Tabs Bar for Mobile */
    .filter-tabs {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-behavior: smooth !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        padding: 12px 16px 18px 16px !important;
        margin-left: -16px !important;
        margin-right: -16px !important;
        width: calc(100% + 32px) !important;
        max-width: calc(100% + 32px) !important;
        justify-content: flex-start !important;
        align-items: center !important;
        gap: 10px !important;
        margin-bottom: 20px !important;
    }

    .filter-tabs::-webkit-scrollbar {
        display: none !important;
    }

    .filter-tabs .tab-btn,
    .tab-btn {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        padding: 8px 18px !important;
        font-size: 0.84rem !important;
        user-select: none !important;
    }

    .filter-tabs.dragging {
        cursor: grabbing;
        scroll-behavior: auto;
    }

    /* Form Input Sizing for iOS Safari Zoom Prevention */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    input[type="date"],
    select,
    textarea {
        font-size: 16px !important;
    }

    /* Universal Form Placeholder Refinement */
    input::placeholder,
    textarea::placeholder {
        color: rgba(255, 255, 255, 0.45);
        font-size: 0.86rem;
        font-weight: 400;
    }

    .wizard-card input::placeholder,
    .wizard-card textarea::placeholder {
        color: rgba(255, 255, 255, 0.45) !important;
        font-size: 0.86rem !important;
    }

    input:not([style*="color: white"])::placeholder,
    textarea:not([style*="color: white"])::placeholder {
        color: #94A3B8;
        font-size: 0.86rem;
    }

    /* Packages Header Bar */
    .packages-filter-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    .packages-filter-bar .filter-tabs {
        margin-bottom: 0;
    }

    /* Quick Specs Bar Mobile - Matching Desktop Layout */
    .page-banner {
        padding: 95px 16px 32px !important;
        background: #FAF7F2 !important;
        background-image: none !important;
        border-bottom: 1px solid #E6D9C5 !important;
        text-align: center !important;
    }

    .page-banner-title {
        font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif !important;
        font-size: 1.65rem !important;
        font-weight: 800 !important;
        color: #1A130C !important;
        letter-spacing: 1px !important;
        line-height: 1.25 !important;
        margin: 0 auto 10px auto !important;
        text-transform: none !important;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8) !important;
    }

    .page-banner-desc {
        font-family: var(--font-body) !important;
        font-style: normal !important;
        font-size: 0.98rem !important;
        font-weight: 600 !important;
        color: #3A2A1A !important;
        line-height: 1.5 !important;
        max-width: 94% !important;
        margin: 0 auto 14px auto !important;
        letter-spacing: 0.2px !important;
        text-transform: none !important;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8) !important;
    }

    .quick-specs-bar {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
        padding: 16px 20px !important;
        background: rgba(250, 246, 238, 0.85) !important;
        backdrop-filter: blur(14px) !important;
        -webkit-backdrop-filter: blur(14px) !important;
        border: 1.5px solid rgba(217, 119, 6, 0.4) !important;
        border-radius: 16px !important;
        box-shadow: 0 6px 20px rgba(11, 36, 32, 0.08) !important;
        width: 100% !important;
        max-width: 380px !important;
        margin: 16px auto 0 auto !important;
    }

    .quick-specs-bar .quick-spec-item {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        color: #1A130C !important;
        font-size: 0.88rem !important;
        white-space: normal !important;
        overflow: visible !important;
        width: 100% !important;
        text-align: left !important;
    }

    .quick-specs-bar i {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.82rem !important;
        flex-shrink: 0 !important;
    }

    .quick-specs-bar i {
        width: 32px !important;
        height: 32px !important;
        border-radius: 50% !important;
        background: rgba(4, 23, 20, 0.72) !important;
        backdrop-filter: blur(16px) !important;
        -webkit-backdrop-filter: blur(16px) !important;
        color: #FBBF24 !important;
        border: 1.5px solid rgba(245, 158, 11, 0.4) !important;
        box-shadow: 0 3px 10px rgba(4, 23, 20, 0.2) !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 0.88rem !important;
        flex-shrink: 0 !important;
    }

    /* Floating Action Buttons Mobile Optimization */
    .floating-widgets {
        bottom: 14px !important;
        right: 12px !important;
        gap: 8px !important;
        z-index: 9999 !important;
    }

    .float-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.05rem !important;
        border-radius: 50% !important;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25) !important;
    }
}

/* Small Mobile Media Queries (max-width: 640px) */
@media (max-width: 640px) {
    .included-excluded-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

/* Gallery View Switcher Buttons */
.view-btn {
    background: #FFFFFF !important;
    border: 1px solid var(--border-color) !important;
    color: #1A130C !important;
    padding: 9px 18px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.86rem;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    box-shadow: var(--shadow-sm);
}

.view-btn:hover,
.view-btn.active:hover {
    background: #F59E0B !important;
    color: #042621 !important;
    border-color: #F59E0B !important;
    box-shadow: 0 6px 18px rgba(245, 158, 11, 0.35) !important;
    transform: translateY(-1px);
}

.view-btn.active {
    background: #0B2420 !important;
    color: #FFFFFF !important;
    border-color: #0B2420 !important;
    box-shadow: 0 4px 14px rgba(3, 30, 26, 0.25);
}

/* Gallery 4 Layout Modes System */

/* Mode 1: Grid View (Default) */
.full-gallery-grid.view-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.full-gallery-grid.view-grid .gallery-card-item {
    height: 220px;
}

/* Mode 2: Masonry View (Natural height aspect ratio) */
.full-gallery-grid.view-masonry {
    display: block;
    column-count: 4;
    column-gap: 20px;
}
.full-gallery-grid.view-masonry .gallery-card-item {
    height: auto !important;
    margin-bottom: 20px;
    break-inside: avoid;
}
.full-gallery-grid.view-masonry .gallery-card-item img {
    height: auto !important;
    object-fit: contain;
}

/* Mode 3: Large View (1 column spacious feed) */
.full-gallery-grid.view-large {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
    gap: 28px;
}
.full-gallery-grid.view-large .gallery-card-item {
    height: 440px;
}

/* Mode 4: List View (Horizontal card format) */
.full-gallery-grid.view-list {
    display: flex;
    flex-direction: column;
    max-width: 760px;
    margin: 0 auto;
    gap: 16px;
}
.full-gallery-grid.view-list .gallery-card-item {
    height: 120px;
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid var(--border-color);
}
.full-gallery-grid.view-list .gallery-card-item img {
    width: 160px;
    height: 100%;
    flex-shrink: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-card-item {
    height: 220px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(3, 30, 26, 0.08);
    position: relative;
    cursor: pointer;
    background: #031E1A;
}

.gallery-card-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery-overlay-badge {
    position: absolute;
    inset: 0;
    background: rgba(3, 30, 26, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card-item:hover .gallery-overlay-badge {
    opacity: 1;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}

.fleet-card {
    background: #ffffff;
    border-radius: var(--radius-md, 16px);
    overflow: hidden;
    border: 1px solid var(--border-color, #E2E8F0);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
    border-color: rgba(220, 38, 38, 0.25);
}

.fleet-img-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #F1F5F9;
}

.fleet-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-img-container img {
    transform: scale(1.06);
}

.fleet-category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #0B2420 0%, #143A34 100%) !important;
    color: #FFFFFF !important;
    font-size: 0.78rem !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    padding: 6px 14px !important;
    border-radius: 6px !important;
    text-transform: uppercase !important;
    box-shadow: 0 4px 12px rgba(11, 36, 32, 0.35) !important;
    border: 1.5px solid #F59E0B !important;
}

.fleet-card-content {
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.fleet-spec-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: #F8FAFC;
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 14px;
    border: 1px solid #E2E8F0;
    font-size: 0.82rem;
    font-weight: 700;
    color: #334155;
}

.fleet-spec-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.fleet-spec-item i {
    color: #047857;
}

.fleet-price-badge {
    background: linear-gradient(135deg, var(--accent, #F59E0B) 0%, var(--accent-hover, #D97706) 100%);
    color: #0F172A;
    border-radius: 10px;
    padding: 10px 14px;
    text-align: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 14px var(--accent-glow, rgba(245, 158, 11, 0.35));
    border: 1px solid rgba(217, 119, 6, 0.25);
}

.fleet-price-amount {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.5px;
    color: #0F172A;
}

.fleet-price-amount .price-val {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 900;
    color: #0F172A;
}

.fleet-price-unit {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1E293B;
    opacity: 0.95;
    margin-top: 3px;
}

.fleet-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-dark, #0F172A);
    margin-bottom: 8px;
}

.fleet-card-desc {
    font-size: 0.88rem;
    color: var(--text-muted, #64748B);
    line-height: 1.55;
    margin-bottom: 18px;
}

.reviews-header-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

/* Extra Small Mobile View (max-width: 480px) */
@media (max-width: 480px) {
    .packages-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .package-card {
        width: 100%;
    }

    .package-footer {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        justify-content: center !important;
        gap: 12px !important;
    }

    .package-footer .package-quote-badge {
        align-items: center !important;
        text-align: center !important;
        justify-content: center !important;
        width: 100% !important;
    }

    .package-footer .package-quote-badge .quote-badge-tag,
    .package-footer .package-quote-badge .quote-badge-title,
    .package-footer .package-quote-badge span {
        text-align: center !important;
        width: 100% !important;
        display: block !important;
    }

    .package-footer .btn {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
    }

    /* Floating Action Buttons Mobile Optimization */
    .floating-widgets {
        bottom: 12px;
        right: 10px;
        gap: 8px;
        z-index: 990;
    }

    .float-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
    }

    .options-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .gallery-card-item {
        height: 145px !important;
        border-radius: 12px !important;
    }

    .reviews-header-card {
        padding: 20px 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .reviews-header-card .btn {
        width: 100%;
        text-align: center;
    }

    .wizard-section {
        padding: 45px 0 65px !important;
    }

    .wizard-card {
        padding: 22px 14px 24px !important;
        border-radius: 16px !important;
        margin: 0 4px !important;
    }

    .wizard-steps-indicator {
        margin-bottom: 24px !important;
        padding: 0 5px !important;
    }

    .step-dot {
        width: 35px !important;
        height: 35px !important;
        font-size: 0.88rem !important;
    }

    .wizard-card,
    .wizard-step-content,
    .wizard-section {
        text-align: center !important;
    }

    .wizard-step-content h3 {
        font-size: 1.12rem !important;
        line-height: 1.35 !important;
        margin-bottom: 14px !important;
        text-align: center !important;
        width: 100% !important;
    }

    .option-box {
        padding: 16px 8px !important;
        border-radius: 12px !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .option-box i {
        font-size: 1.4rem !important;
        margin: 0 auto 6px auto !important;
        text-align: center !important;
    }

    .option-box h4 {
        font-size: 0.88rem !important;
        line-height: 1.25 !important;
        text-align: center !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .option-box p,
    .wizard-card-light .option-box p {
        font-size: 0.75rem !important;
        line-height: 1.25 !important;
        margin-top: 3px !important;
        padding: 0 4px !important;
        text-align: center !important;
        text-align-last: center !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
    }

    .wizard-step-content .wizard-nav-actions,
    .wizard-step-content > div[style*="flex"],
    .wizard-step-content > div[style*="text-align: right"] {
        display: flex !important;
        justify-content: space-between !important;
        gap: 10px !important;
        margin-top: 22px !important;
        width: 100% !important;
    }

    .wizard-step-content .btn {
        flex: 1 !important;
        width: 100% !important;
        padding: 12px 14px !important;
        font-size: 0.88rem !important;
        justify-content: center !important;
        text-align: center !important;
        display: inline-flex !important;
        align-items: center !important;
    }

    .wizard-step-content #submitWizardBtn {
        font-size: 0.92rem !important;
        padding: 13px 16px !important;
    }
}

/* Mobile Only: Developer Credit Footer Link */
@media (max-width: 768px) {
    .bottom-site-link {
        text-align: center !important;
        margin-top: 0 !important;
    }
    .bottom-site-link a {
        display: inline !important;
        margin-top: 0 !important;
        white-space: normal !important;
    }
}

/* -------------------------------------------------------------
 * Dilsh Tours Sri Lanka — Exact Reference Image Custom Styles
 * ------------------------------------------------------------- */

/* Hero Section with Video Background */
.hero-section {
    position: relative;
    background: #042621 url('../images/before-hero-video.webp') center/cover no-repeat;
    min-height: 720px;
    height: clamp(680px, 58vw, 840px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding-top: 30px;
    padding-bottom: 50px;
    width: 100%;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
    object-position: center center;
    filter: none !important;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.05) 45%, rgba(4, 20, 16, 0.48) 100%) !important;
    pointer-events: none;
}

/* Corner Mandala Filigree Overlay */
.corner-filigree-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    pointer-events: none;
    z-index: 4;
}

.corner-filigree-overlay svg {
    width: 100%;
    height: 100%;
}

.hero-container-inner {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: translateY(-38px); /* Lifted upwards */
}

/* Centered Brand Lockup matching user reference */
.hero-brand-lockup {
    max-width: 860px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

/* Top Line: WELCOME TO with flanking gold lines */
.hero-welcome-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    max-width: 520px;
    margin-bottom: 12px;
}

.hero-welcome-text {
    font-family: 'Plus Jakarta Sans', 'Cinzel', sans-serif !important;
    font-size: clamp(0.82rem, 1.4vw, 1.02rem) !important;
    font-weight: 700 !important;
    letter-spacing: 4.5px !important;
    text-transform: uppercase !important;
    color: #FFFFFF !important;
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95) !important;
    line-height: 1.2 !important;
}

.hero-gold-line {
    flex: 1;
    height: 1.5px;
    background: #C7A96B;
}

.hero-gold-line.line-left {
    background: linear-gradient(90deg, transparent 0%, rgba(199, 169, 107, 0.4) 25%, #C7A96B 100%);
}

.hero-gold-line.line-right {
    background: linear-gradient(90deg, #C7A96B 0%, rgba(199, 169, 107, 0.4) 75%, transparent 100%);
}

/* Middle Brand Title: Dilsh Tours in header style & actual colors */
.hero-brand-title {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: clamp(3.2rem, 7.5vw, 5.6rem) !important;
    font-weight: 700 !important;
    line-height: 1.08 !important;
    margin: 0 0 12px 0 !important;
    letter-spacing: 0.5px !important;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.95), 0 6px 32px rgba(0, 0, 0, 0.75) !important;
    display: inline-block;
}

.hero-brand-title .brand-dilsh {
    color: #FFFFFF !important;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.95), 0 6px 32px rgba(0, 0, 0, 0.75);
}

.hero-brand-title .brand-tours {
    color: #C7A96B !important;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.95), 0 6px 32px rgba(0, 0, 0, 0.75), 0 0 25px rgba(199, 169, 107, 0.35);
}

/* SRI LANKA flanked by tapered gold lines */
/* SRI LANKA flanked by tapered gold lines (Group 1 bottom, add a line space after) */
.hero-srilanka-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    max-width: 460px;
    margin-bottom: 24px; /* Added line space */
}

.hero-srilanka-text {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: clamp(0.95rem, 1.8vw, 1.25rem) !important;
    font-weight: 700 !important;
    letter-spacing: 6.5px !important;
    text-transform: uppercase !important;
    color: #FDD863 !important;
    white-space: nowrap;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95) !important;
    line-height: 1.2 !important;
}

/* Tagline: THE UNIQUE EXPERIENCE IN Wonder Land */
.hero-tagline-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.hero-unique-exp {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: clamp(0.78rem, 1.3vw, 0.95rem) !important;
    font-weight: 600 !important;
    letter-spacing: 3.5px !important;
    text-transform: uppercase !important;
    color: #FFFFFF !important;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95) !important;
    margin-bottom: 6px; /* Average line space */
    line-height: 1.2 !important;
}

.hero-wonderland-box {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 0;
    margin-bottom: 28px; /* Added line space before buttons */
}

.hero-wonderland-text {
    font-family: 'Yellowtail', 'Satisfy', 'Alex Brush', 'Great Vibes', cursive !important;
    font-size: clamp(2.35rem, 4.8vw, 3.6rem) !important; /* Decreased little bit */
    line-height: 1.05 !important;
    color: #FDD863 !important;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.95), 0 0 25px rgba(245, 158, 11, 0.35) !important;
    display: block;
}

.hero-wonderland-swoop {
    width: clamp(150px, 28vw, 230px); /* Proportionate with decreased text */
    height: 14px;
    margin-top: -5px;
    display: block;
}

.hero-wonderland-swoop svg {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.8));
}

/* Modern Luxury Action Buttons (Centered) */
.hero-modern-actions.centered {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

/* Primary Button (Solid Warm Camel Gold) */
.btn-modern-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #C7A96B;
    color: #181D22 !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.98rem;
    font-weight: 600;
    padding: 15px 28px;
    border-radius: 16px;
    border: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35), 0 2px 8px rgba(199, 169, 107, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
    cursor: pointer;
    flex: 1;
    text-align: center;
    white-space: nowrap;
}

.btn-modern-primary i {
    font-size: 1.15rem;
    color: #181D22;
    transition: transform 0.3s ease;
}

.btn-modern-primary:hover {
    background: #D4B679;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4), 0 4px 14px rgba(199, 169, 107, 0.45);
    color: #0F1316 !important;
}

.btn-modern-primary:hover i {
    transform: rotate(20deg);
}

/* Secondary Button (Glassmorphic Outline Gold) */
.btn-modern-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(10, 28, 22, 0.48);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid #C7A96B;
    color: #FFFFFF !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.98rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
    cursor: pointer;
    flex: 1;
    text-align: center;
    white-space: nowrap;
}

.btn-modern-secondary i {
    font-size: 1.1rem;
    color: #C7A96B;
    transition: transform 0.3s ease;
}

.btn-modern-secondary:hover {
    background: rgba(199, 169, 107, 0.22);
    border-color: #D4B679;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4), 0 0 16px rgba(199, 169, 107, 0.3);
}

.btn-modern-secondary:hover i {
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 640px !important;
        height: auto !important;
        padding-top: 75px !important;
        padding-bottom: 75px !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .hero-container-inner {
        padding: 0 20px !important;
        align-items: center !important;
        text-align: center !important;
        transform: translateY(-22px) !important;
    }

    .hero-brand-lockup {
        align-items: center;
        text-align: center;
    }

    .hero-welcome-wrapper {
        max-width: 320px;
        gap: 10px;
        margin-bottom: 10px;
    }

    .hero-welcome-text {
        font-size: 0.76rem !important;
        letter-spacing: 3px !important;
    }

    .hero-brand-title {
        font-size: clamp(2.4rem, 11vw, 3.2rem) !important;
        line-height: 1.1 !important;
        margin-bottom: 10px !important;
    }

    .hero-srilanka-wrapper {
        max-width: 290px;
        gap: 10px;
        margin-bottom: 20px; /* Added line space */
    }

    .hero-srilanka-text {
        font-size: 0.88rem !important;
        letter-spacing: 4.5px !important;
    }

    .hero-tagline-wrapper {
        margin-bottom: 0;
    }

    .hero-unique-exp {
        font-size: 0.72rem !important;
        letter-spacing: 2.2px !important;
        margin-bottom: 5px; /* Average line space */
    }

    .hero-wonderland-box {
        margin-bottom: 32px !important; /* Added break / breathing space before buttons */
    }

    .hero-wonderland-text {
        font-family: 'Yellowtail', 'Satisfy', 'Alex Brush', 'Great Vibes', cursive !important;
        font-size: 2.25rem !important; /* Decreased little bit */
    }

    .hero-wonderland-swoop {
        width: 145px; /* Proportionate with decreased text */
        margin-top: -4px;
    }

    .hero-modern-actions.centered {
        flex-direction: column;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        gap: 10px;
    }

    .btn-modern-primary,
    .btn-modern-secondary {
        width: 100%;
        min-height: 42px;
        padding: 9px 16px;
        font-size: 0.84rem;
        font-weight: 600;
        border-radius: 12px;
        gap: 8px;
        box-sizing: border-box;
    }

    .btn-modern-primary i,
    .btn-modern-secondary i {
        font-size: 0.92rem;
    }
}

/* -------------------------------------------------------------
 * Hero Video Sound Controller Toggle Button
 * ------------------------------------------------------------- */
.hero-sound-toggle {
    position: absolute;
    bottom: 45px;
    right: 80px;
    z-index: 15;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 18px;
    background: rgba(4, 38, 33, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1.5px solid rgba(230, 178, 36, 0.65);
    border-radius: 50px;
    color: #FDD863;
    font-family: 'Cinzel', 'Plus Jakarta Sans', sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45), 0 0 14px rgba(230, 178, 36, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    user-select: none;
}

.hero-sound-toggle:hover {
    background: rgba(4, 38, 33, 0.92);
    border-color: #FDD863;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.55), 0 0 18px rgba(230, 178, 36, 0.45);
}

.hero-sound-toggle:active {
    transform: translateY(0);
}

/* Sound Icons */
.hero-sound-toggle .sound-icon-unmuted {
    display: inline-block;
    color: #FDD863;
    font-size: 0.92rem;
    transition: color 0.25s ease;
}

.hero-sound-toggle .sound-icon-muted {
    display: none;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
    transition: color 0.25s ease;
}

.hero-sound-toggle.is-muted {
    background: rgba(4, 23, 20, 0.68);
    border-color: rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-sound-toggle.is-muted .sound-icon-unmuted {
    display: none;
}

.hero-sound-toggle.is-muted .sound-icon-muted {
    display: inline-block;
}

.hero-sound-toggle .sound-toggle-text {
    color: #FDD863 !important;
    font-size: 0.76rem !important;
    font-weight: 700 !important;
    letter-spacing: 1.2px !important;
    display: inline-block !important;
}

.hero-sound-toggle.is-muted .sound-toggle-text {
    color: rgba(255, 255, 255, 0.88) !important;
}

/* Animated Sound Wave Bars */
.hero-sound-toggle .sound-wave-bars {
    display: inline-flex;
    align-items: flex-end;
    gap: 2.5px;
    height: 13px;
}

.hero-sound-toggle .sound-wave-bars .bar {
    width: 2.5px;
    background: #FDD863;
    border-radius: 1.5px;
    animation: soundBarDance 1s ease-in-out infinite alternate;
}

.hero-sound-toggle .sound-wave-bars .bar-1 {
    height: 6px;
    animation-delay: 0.1s;
}

.hero-sound-toggle .sound-wave-bars .bar-2 {
    height: 12px;
    animation-delay: 0.35s;
}

.hero-sound-toggle .sound-wave-bars .bar-3 {
    height: 8px;
    animation-delay: 0.2s;
}

.hero-sound-toggle.is-muted .sound-wave-bars .bar {
    animation: none;
    height: 3px;
    background: rgba(255, 255, 255, 0.35);
}

@keyframes soundBarDance {
    0% { height: 4px; }
    50% { height: 13px; }
    100% { height: 5px; }
}

@media (max-width: 768px) {
    .hero-sound-toggle {
        top: auto !important;
        bottom: 35px !important;
        right: 18px !important;
        padding: 5px 13px !important;
        font-size: 0.68rem !important;
        gap: 6px !important;
        letter-spacing: 0.8px !important;
        height: 32px !important;
        max-height: 32px !important;
        width: auto !important;
        border-radius: 50px !important;
        display: inline-flex !important;
        align-items: center !important;
    }

    .hero-sound-toggle .sound-wave-bars {
        height: 10px;
    }
}

/* Deckle Edge Transition SVG */
.deckle-edge-transition {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 6;
    pointer-events: none;
}

.deckle-edge-transition svg {
    width: 100%;
    height: 48px;
    display: block;
}

/* EXPLORE SRI LANKA Section */
.explore-sri-lanka-section {
    background: #F3E9DA; /* Exact Parchment Tone */
    padding: 65px 0 85px 0;
    position: relative;
}

.explore-title-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.explore-main-title {
    font-family: 'Cinzel', 'Playfair Display', serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: #3A2F25;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.explore-flourish {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.explore-flourish .flourish-line {
    width: 50px;
    height: 1px;
    background: #CFA45D;
}

.explore-flourish .flourish-symbol {
    color: #D4A758;
    font-size: 1rem;
}

/* Category Grid - 6 Columns horizontal layout */
.explore-category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

@media (max-width: 1100px) {
    .explore-category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (max-width: 640px) {
    .explore-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.explore-cat-card {
    background: #FAF6EE;
    border: 1px solid #E6D9C5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(58, 47, 37, 0.06);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.explore-cat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(58, 47, 37, 0.15);
    border-color: #D4A758;
}

.explore-cat-card .cat-img-box {
    height: 165px;
    width: 100%;
    overflow: hidden;
}

.explore-cat-card .cat-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.explore-cat-card:hover .cat-img-box img {
    transform: scale(1.08);
}

.explore-cat-card .cat-card-body {
    padding: 16px 12px 18px 12px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.explore-cat-card .cat-card-title {
    font-family: 'Cinzel', 'Playfair Display', serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #3A2F25;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.explore-cat-card .card-accent-line {
    width: 22px;
    height: 1px;
    background: #D4A758;
    margin: 4px auto 8px auto;
    display: block;
}

.explore-cat-card .cat-card-desc {
    font-size: 0.76rem;
    color: #6E6255;
    line-height: 1.4;
    margin: 0;
}

/* WHY CHOOSE DILSH TOURS Section */
.why-choose-bar-dark {
    background: #042621 !important;
    color: #FFFFFF !important;
    padding: 55px 0;
    border-top: 1px solid rgba(245, 158, 11, 0.2);
}

.why-choose-header {
    text-align: center;
    margin-bottom: 35px;
}

.why-choose-title {
    font-family: var(--font-body) !important;
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    color: #F59E0B !important;
    letter-spacing: 1px !important;
    margin-bottom: 6px;
    text-transform: none !important;
}

.why-choose-flourish {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.gold-line-thin {
    width: 40px;
    height: 1px;
    background: rgba(245, 158, 11, 0.4);
}

.gold-icon-dot {
    color: #FBBF24;
    font-size: 0.85rem;
}

/* 5 Column Grid for Why Choose Us */
.why-choose-5col {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 900px) {
    .why-choose-5col {
        flex-direction: column;
        gap: 25px;
    }
    .why-col-divider {
        display: none;
    }
}

.why-col-item {
    flex: 1;
    text-align: center;
    padding: 0 15px;
}

.why-icon-wrap {
    font-size: 1.8rem;
    color: #F59E0B;
    margin-bottom: 12px;
}

.why-item-title {
    font-family: 'Cinzel', serif !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
    margin-bottom: 6px !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
}

.why-item-sub {
    font-size: 0.88rem !important;
    color: #FDE68A !important;
    margin: 0 !important;
    opacity: 0.95 !important;
}

.why-col-divider {
    width: 1px;
    height: 60px;
    background: rgba(245, 158, 11, 0.25);
}

/* -------------------------------------------------------------
 * Dilsh Tours Sri Lanka — Exact Reference Image Custom Styles
 * ------------------------------------------------------------- */

/* Hero Lighthouse Background */
.hero-section.hero-lighthouse-bg {
    position: relative;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.1) 45%, rgba(4, 38, 33, 0.75) 100%), url('../images/hero_lighthouse_sunset.webp') center center/cover no-repeat !important;
    min-height: 94vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Corner Mandala Filigree Overlay */
.corner-filigree-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 320px;
    height: 320px;
    pointer-events: none;
    z-index: 4;
}

.corner-filigree-overlay svg {
    width: 100%;
    height: 100%;
}

/* Responsive Hero Typography Overrides */
@media (max-width: 768px) {
    .hero-welcome-script {
        gap: 12px !important;
        margin: 0 auto 12px auto !important;
    }

    .hero-welcome-script .welcome-text {
        font-size: 1.9rem !important;
        color: #ECC159 !important;
    }

    .hero-welcome-script .welcome-gold-line {
        width: 45px !important;
    }

    .hero-brand-heading {
        margin: 0 auto 14px auto !important;
    }

    .hero-brand-heading .hero-brand-logo-img {
        width: 540px !important;
        max-width: 92% !important;
    }

    .hero-brand-sub-line {
        gap: 12px !important;
        margin-top: 0 !important;
        margin-bottom: 16px !important;
    }

    .hero-brand-sub-line .gold-line {
        width: 45px !important;
    }

    .hero-brand-sub-line .hero-sub-text {
        font-family: 'Cinzel', serif !important;
        font-size: 1.05rem !important;
        letter-spacing: 5.5px !important;
        color: #E6B224 !important;
    }

    .hero-lotus-flourish {
        display: none !important;
    }

    .hero-tagline-block {
        margin: 0 auto 4px auto !important;
    }

    .hero-tagline-block .tagline-text-serif {
        font-family: 'Cinzel', serif !important;
        font-size: 0.98rem !important;
        letter-spacing: 2.5px !important;
        margin: 0 auto 5px auto !important;
    }

    .hero-tagline-block .tagline-text-script {
        font-family: 'Alex Brush', cursive !important;
        font-size: 2.9rem !important;
        color: #ECC359 !important;
        margin: 0 auto 2px auto !important;
    }

    .wonderland-underline-flourish {
        width: 240px !important;
        height: 15px !important;
        margin: 0 auto 14px auto !important;
    }

    .hero-subhead-text .subhead-white {
        font-size: 0.7rem !important;
        letter-spacing: 2.5px !important;
    }

    .hero-subhead-text .subhead-gold {
        font-size: 0.88rem !important;
        letter-spacing: 3px !important;
        color: #FABF06 !important;
    }
}

/* Hero Action Buttons */
.hero-action-buttons {
    display: flex !important;
    gap: 18px !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    margin-top: 20px !important;
    margin-bottom: 10px !important;
    position: relative !important;
    z-index: 10 !important;
}

.btn-hero-solid {
    background: linear-gradient(135deg, #D4A758 0%, #B38332 100%) !important;
    color: #1A130C !important;
    border: 1px solid #E6D9C5 !important;
    font-family: 'Cinzel', var(--font-heading), sans-serif !important;
    font-weight: 800 !important;
    font-size: 0.88rem !important;
    letter-spacing: 1px !important;
    padding: 12px 30px !important;
    border-radius: 6px !important;
    box-shadow: 0 6px 20px rgba(212, 167, 88, 0.35) !important;
    transition: var(--transition) !important;
    text-transform: uppercase !important;
    display: inline-block !important;
    position: relative !important;
    z-index: 10 !important;
    cursor: pointer !important;
}

.btn-hero-solid:hover {
    background: linear-gradient(135deg, #E6C27A 0%, #D4A758 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(212, 167, 88, 0.55) !important;
    color: #1A130C !important;
}

.btn-hero-outline {
    background: rgba(4, 38, 33, 0.65) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    color: #FFFFFF !important;
    border: 1px solid rgba(212, 167, 88, 0.75) !important;
    font-family: 'Cinzel', var(--font-heading), sans-serif !important;
    font-weight: 800 !important;
    font-size: 0.88rem !important;
    letter-spacing: 1px !important;
    padding: 12px 30px !important;
    border-radius: 6px !important;
    transition: var(--transition) !important;
    text-transform: uppercase !important;
    display: inline-block !important;
    position: relative !important;
    z-index: 10 !important;
    cursor: pointer !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4) !important;
}

.btn-hero-outline:hover {
    background: rgba(212, 167, 88, 0.22) !important;
    border-color: #D4A758 !important;
    color: #FFF9F0 !important;
    transform: translateY(-2px) !important;
}

/* Deckle Edge Torn Paper Transition SVG */
.deckle-edge-transition {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 6;
    pointer-events: none;
}

.deckle-edge-transition svg {
    width: 100%;
    height: 52px;
    display: block;
}

/* EXPLORE SRI LANKA Section */
.explore-sri-lanka-section {
    background: #F3E9DA !important; /* Exact Parchment Tone */
    padding: 65px 0 85px 0 !important;
    position: relative;
}

.explore-title-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.explore-main-title {
    font-family: var(--font-body) !important;
    font-size: 1.85rem !important;
    font-weight: 700 !important;
    color: #3A2F25 !important;
    letter-spacing: 2px !important;
    margin-bottom: 8px;
}

.explore-flourish {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.explore-flourish .flourish-line {
    width: 50px;
    height: 1px;
    background: #CFA45D;
}

.explore-flourish .flourish-symbol {
    color: #D4A758;
    font-size: 1rem;
}

/* Category Grid - 6 Columns horizontal layout */
.explore-category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 16px !important;
}

@media (max-width: 1100px) {
    .explore-category-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 18px !important;
    }
}

@media (max-width: 640px) {
    .explore-category-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
}

.explore-cat-card {
    background: #FAF6EE !important;
    border: 1px solid #E6D9C5 !important;
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(58, 47, 37, 0.06);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.explore-cat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(58, 47, 37, 0.15);
    border-color: #D4A758 !important;
}

.explore-cat-card .cat-img-box {
    height: 165px;
    width: 100%;
    overflow: hidden;
}

.explore-cat-card .cat-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.explore-cat-card:hover .cat-img-box img {
    transform: scale(1.08);
}

.explore-cat-card .cat-card-body {
    padding: 16px 12px 18px 12px !important;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.explore-cat-card .cat-card-title {
    font-family: var(--font-body) !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    color: #3A2F25 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.explore-cat-card .card-accent-line {
    width: 22px;
    height: 1px;
    background: #D4A758 !important;
    margin: 4px auto 8px auto;
    display: block;
}

.explore-cat-card .cat-card-desc {
    font-size: 0.76rem !important;
    color: #6E6255 !important;
    line-height: 1.4 !important;
    margin: 0;
}

/* -------------------------------------------------------------
 * Ultra-Responsive Mobile Optimization (Phones & Tablets)
 * ------------------------------------------------------------- */
@media (max-width: 768px) {
    .site-header {
        height: 66px !important;
        padding: 0 14px !important;
    }

    .nav-container {
        padding: 0 10px !important;
    }

    .header-lotus-icon {
        width: 32px !important;
        height: 26px !important;
    }

    .brand-name-gold {
        font-family: 'Playfair Display', Georgia, serif !important;
        font-size: 1.42rem !important;
        letter-spacing: 0.5px !important;
        font-weight: 700 !important;
        line-height: 1.12 !important;
        text-transform: none !important;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7) !important;
    }

    .brand-sub-gold {
        font-family: 'Playfair Display', Georgia, serif !important;
        font-size: 1.20rem !important;
        letter-spacing: 0.5px !important;
        font-weight: 700 !important;
        color: #FFFFFF !important;
        line-height: 1.12 !important;
        text-transform: none !important;
        margin-top: 1px !important;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7) !important;
    }

    .btn-gold-header {
        padding: 7px 14px !important;
        font-size: 0.75rem !important;
    }

    .hero-section {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        min-height: 680px !important;
        max-height: none !important;
        height: auto !important;
        padding-top: 75px !important;
        padding-bottom: 65px !important;
        position: relative !important;
        overflow: hidden !important;
    }

    .corner-filigree-overlay {
        width: 140px !important;
        height: 140px !important;
        opacity: 0.45 !important;
    }

    .hero-container-inner {
        padding-top: 20px !important;
        padding-bottom: 45px !important;
        margin: 0 auto !important;
        width: 100% !important;
    }

}

/* -------------------------------------------------------------
 * Editorial Destinations Section Styling (Exact Reference Image)
 * ------------------------------------------------------------- */
.destinations-page-section {
    background: #F3E9DA !important;
    padding: 70px 0 90px 0 !important;
    position: relative;
    overflow: hidden;
}

.compass-watermark-bg {
    display: none !important;
}

.destinations-header-block {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.destinations-main-title {
    font-family: var(--font-body) !important;
    font-size: 1.9rem !important;
    font-weight: 700 !important;
    color: #3A2F25 !important;
    letter-spacing: 2px !important;
    margin-bottom: 4px;
}

.destinations-script-tagline {
    font-family: var(--font-body) !important;
    font-style: normal !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #B38332 !important;
    letter-spacing: 0.8px !important;
    margin-bottom: 12px !important;
}

.destinations-flourish {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.destinations-flourish .flourish-line {
    width: 75px;
    height: 1.5px;
    background: #8B5A2B !important;
    box-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.destinations-flourish .flourish-symbol {
    color: #8B5A2B !important;
    font-size: 1.15rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.destinations-card-wrapper {
    background: rgba(250, 246, 238, 0.65);
    border: 1px solid #E6D9C5;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 8px 30px rgba(58, 47, 37, 0.08);
}

.destinations-4col-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
}

@media (max-width: 1100px) {
    .destinations-4col-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .destinations-4col-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }
}

@media (max-width: 480px) {
    .destinations-4col-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

.destination-editorial-card {
    background: #FAF6EE !important;
    border: 1px solid #E6D9C5 !important;
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(58, 47, 37, 0.06);
    transition: all 0.35s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.destination-editorial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(58, 47, 37, 0.16);
    border-color: #D4A758 !important;
}

.dest-card-img-box {
    height: 185px;
    width: 100%;
    overflow: hidden;
}

.dest-card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.destination-editorial-card:hover .dest-card-img-box img {
    transform: scale(1.08);
}

.dest-card-content {
    padding: 16px 12px 18px 12px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.dest-card-name {
    font-family: var(--font-body) !important;
    font-size: 1.08rem !important;
    font-weight: 700 !important;
    color: #3A2F25 !important;
    letter-spacing: 1px !important;
    margin-bottom: 4px;
}

.dest-card-accent-line {
    width: 30px;
    height: 1px;
    background: #CFA45D;
    margin: 4px auto 12px auto;
    display: block;
}

.dest-card-btn-wrap {
    margin-top: auto;
}

.btn-dest-explore {
    display: inline-block;
    border: 1px solid #CFA45D !important;
    color: #5A4D41 !important;
    font-family: var(--font-body) !important;
    font-size: 0.74rem !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    padding: 5px 22px !important;
    border-radius: 3px !important;
    background: transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.destination-editorial-card:hover .btn-dest-explore {
    background: #D4A758 !important;
    color: #1A130C !important;
    border-color: #D4A758 !important;
    box-shadow: 0 4px 12px rgba(212, 167, 88, 0.35);
}

@media (max-width: 768px) {

    .hero-tagline-script {
        font-size: 1.45rem !important;
        margin-bottom: 20px !important;
        line-height: 1.35 !important;
    }

    .hero-subhead-text {
        font-size: 0.78rem !important;
        letter-spacing: 2px !important;
        margin-bottom: 28px !important;
    }

    .hero-action-buttons {
        gap: 12px !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        margin-top: 18px !important;
        margin-bottom: 22px !important;
        width: 100% !important;
    }

    .btn-hero-solid, .btn-hero-outline {
        width: 230px !important;
        max-width: 85% !important;
        padding: 11px 18px !important;
        font-size: 0.82rem !important;
        letter-spacing: 0.8px !important;
        text-align: center !important;
        display: block !important;
        box-sizing: border-box !important;
    }

    .deckle-edge-transition svg {
        height: 28px !important;
    }

    .explore-sri-lanka-section {
        padding: 40px 0 50px 0 !important;
    }

    .explore-main-title {
        font-size: 1.6rem !important;
        letter-spacing: 1px !important;
    }

    .explore-cat-card .cat-img-box {
        height: 110px !important;
    }

    .explore-cat-card .cat-card-body {
        padding: 10px 8px 12px 8px !important;
    }

    .explore-cat-card .cat-card-title {
        font-size: 0.74rem !important;
        letter-spacing: 0px !important;
    }

    .explore-cat-card .cat-card-desc {
        font-size: 0.66rem !important;
        line-height: 1.3 !important;
    }
}

@media (max-width: 480px) {
    .hero-welcome-script {
        gap: 8px !important;
        margin: 0 auto 10px auto !important;
    }

    .hero-welcome-script .welcome-text {
        font-size: 1.45rem !important;
        color: #ECC159 !important;
    }

    .hero-welcome-script .welcome-gold-line {
        width: 28px !important;
    }

    .hero-brand-heading {
        margin: 0 auto 12px auto !important;
    }

    .hero-brand-heading .hero-brand-logo-img {
        width: 380px !important;
        max-width: 94% !important;
    }

    .hero-brand-sub-line {
        gap: 8px !important;
        margin-top: 0 !important;
        margin-bottom: 14px !important;
    }

    .hero-brand-sub-line .gold-line {
        width: 25px !important;
    }

    .hero-brand-sub-line .hero-sub-text {
        font-family: 'Cinzel', serif !important;
        font-size: 0.78rem !important;
        letter-spacing: 3.5px !important;
        padding: 0 2px !important;
        color: #E6B224 !important;
    }

    .hero-tagline-block {
        margin: 0 auto 4px auto !important;
    }

    .hero-tagline-block .tagline-text-serif {
        font-family: 'Cinzel', serif !important;
        font-size: 0.72rem !important;
        letter-spacing: 2px !important;
        margin: 0 auto 4px auto !important;
    }

    .hero-tagline-block .tagline-text-script {
        font-family: 'Alex Brush', cursive !important;
        font-size: 2.15rem !important;
        color: #ECC359 !important;
        margin: 0 auto 2px auto !important;
    }

    .wonderland-underline-flourish {
        width: 175px !important;
        height: 12px !important;
        margin: 0 auto 12px auto !important;
    }
}

@media (max-width: 768px) {
    .nav-brand-logo-img {
        height: 52px !important;
    }
    .footer-brand-logo-img {
        height: 98px !important;
    }
}

@media (max-width: 480px) {
    .hero-brand-heading .hero-brand-logo-img {
        width: 310px !important;
        max-width: 96% !important;
    }
    .nav-brand-logo-img {
        height: 46px !important;
    }
    .footer-brand-logo-img {
        height: 85px !important;
    }
}

/* -------------------------------------------------------------
 * Editorial Tour Packages Section Styling (Exact Reference Image)
 * ------------------------------------------------------------- */
.packages-editorial-section {
    background: #F3E9DA !important;
    padding: 70px 0 90px 0 !important;
    position: relative;
}

.packages-header-block {
    text-align: center;
    margin-bottom: 45px;
}

.packages-main-title {
    font-family: var(--font-body) !important;
    font-size: 1.9rem !important;
    font-weight: 700 !important;
    color: #3A2F25 !important;
    letter-spacing: 2px !important;
    margin-bottom: 4px;
}

.packages-script-tagline {
    font-family: var(--font-body) !important;
    font-style: normal !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #B38332 !important;
    letter-spacing: 0.8px !important;
    margin-bottom: 12px !important;
}

.packages-flourish {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.packages-flourish .flourish-line {
    width: 60px;
    height: 1px;
    background: #CFA45D;
}

.packages-flourish .flourish-symbol {
    color: #D4A758;
    font-size: 1.1rem;
}

.packages-editorial-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 26px !important;
    max-width: 1180px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .packages-editorial-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

.packages-editorial-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 980px;
    margin: 0 auto;
}

.package-editorial-card {
    background: #FAF6EE !important;
    border: 1px solid #E6D9C5 !important;
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(58, 47, 37, 0.07);
    display: flex;
    align-items: stretch;
    transition: all 0.35s ease;
    cursor: pointer;
    min-height: 210px;
}

.package-editorial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(58, 47, 37, 0.15);
    border-color: #D4A758 !important;
}

.pkg-editorial-img-box {
    width: 44%;
    min-width: 44%;
    position: relative;
    overflow: hidden;
}

.pkg-editorial-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.package-editorial-card:hover .pkg-editorial-img-box img {
    transform: scale(1.06);
}

.pkg-editorial-content {
    width: 56%;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #FAF6EE;
}

.pkg-editorial-days {
    display: block;
    font-family: var(--font-body) !important;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
    color: #5A4D41 !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.pkg-editorial-title {
    font-family: var(--font-body) !important;
    font-size: 1.22rem !important;
    font-weight: 700 !important;
    color: #2D2319 !important;
    letter-spacing: 1px !important;
    margin-bottom: 10px;
    line-height: 1.25;
}

.pkg-editorial-desc {
    font-family: var(--font-body), sans-serif;
    font-size: 0.88rem !important;
    color: #5A4D41 !important;
    line-height: 1.5;
    margin-bottom: 20px;
}

.pkg-editorial-action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
}

.btn-pkg-view-tour {
    background: #1F1914 !important;
    color: #FFFFFF !important;
    font-family: var(--font-body) !important;
    font-weight: 700 !important;
    font-size: 0.76rem !important;
    letter-spacing: 1.5px !important;
    padding: 10px 24px !important;
    border-radius: 3px !important;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.package-editorial-card:hover .btn-pkg-view-tour {
    background: #D4A758 !important;
    color: #1A130C !important;
    box-shadow: 0 4px 14px rgba(212, 167, 88, 0.4);
}

.pkg-editorial-price-box {
    background: #FAF6EE;
    border: 1px solid #E6D9C5;
    border-radius: 4px;
    padding: 6px 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 100px;
}

.price-from-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: #7A6C5D;
    letter-spacing: 1.2px;
    display: block;
    line-height: 1;
    margin-bottom: 2px;
}

.price-amount {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1.05rem;
    color: #2D2319;
    letter-spacing: 0.5px;
    display: block;
    line-height: 1;
}

/* -------------------------------------------------------------
 * Modern Tour Packages Design (Green Borders, Orange Badges, No Prices)
 * ------------------------------------------------------------- */
.site-header, 
.transparent-dark-header, 
.subpage-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
}

.subpage-header .nav-link,
.site-header .nav-link {
    color: #FFFFFF !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
}

.subpage-header .nav-link:hover, 
.subpage-header .nav-link.active,
.site-header .nav-link:hover,
.site-header .nav-link.active {
    color: #F59E0B !important;
}

.subpage-header .nav-link::after,
.site-header .nav-link::after {
    background: linear-gradient(90deg, #F59E0B 0%, #FBBF24 100%) !important;
}

.packages-section-modern {
    background: #FFFFFF !important;
    padding: 80px 0 !important;
}

.packages-header-block-modern {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 36px auto;
}

.packages-subhead-orange {
    display: block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    color: #E67E22 !important;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.packages-title-green {
    font-family: var(--font-heading);
    font-size: 2.6rem !important;
    font-weight: 900 !important;
    color: #042621 !important;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.packages-desc-text {
    font-size: 0.98rem;
    color: #6B7280;
    line-height: 1.6;
}

/* Filter Pills matching Screenshot 1 */
.filter-pills-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 42px;
}

.pill-btn {
    background: #FFFFFF;
    border: 1.5px solid #E5E7EB;
    color: #042621;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 10px 24px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pill-btn:hover, .pill-btn.active {
    background: #042621 !important;
    color: #FFFFFF !important;
    border-color: #042621 !important;
    box-shadow: 0 4px 14px rgba(4, 38, 33, 0.25);
}

/* Grid layout matching Screenshot 1 */
.modern-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 28px !important;
}

@media (max-width: 1024px) {
    .modern-packages-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 640px) {
    .modern-packages-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

/* Modern Card with Gold Accent & Micro-Animations */
.modern-package-card,
.package-card {
    background: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    border-top: 3px solid #F59E0B !important;
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(4, 38, 33, 0.08) !important;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.modern-package-card:hover,
.package-card:hover {
    transform: translateY(-8px) scale(1.01) !important;
    box-shadow: 0 20px 45px rgba(4, 38, 33, 0.16), 0 0 20px rgba(245, 158, 11, 0.25) !important;
    border-color: #F59E0B !important;
}

.card-img-box {
    position: relative;
    height: 220px;
    width: 100%;
    overflow: hidden;
}

.card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.modern-package-card:hover .card-img-box img {
    transform: scale(1.08);
}

.orange-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #E67E22 !important;
    color: #FFFFFF !important;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.8px;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.4);
    text-transform: uppercase;
}

.duration-badge {
    position: absolute;
    bottom: 12px;
    left: 14px;
    background: rgba(4, 38, 33, 0.85);
    backdrop-filter: blur(4px);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-content-box {
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.card-cat-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    color: #E67E22;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.card-pkg-title {
    font-family: var(--font-heading);
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    color: #042621 !important;
    line-height: 1.3;
    margin-bottom: 10px;
}

.card-pkg-desc {
    font-size: 0.88rem;
    color: #4B5563;
    line-height: 1.5;
    margin-bottom: 22px;
}

.card-btn-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #E5E7EB;
}

.btn-view-details {
    flex: 1;
    text-align: center;
    border: 2px solid #042621 !important;
    color: #042621 !important;
    background: transparent !important;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-view-details:hover {
    background: #042621 !important;
    color: #FFFFFF !important;
}

.btn-book-now {
    flex: 1;
    text-align: center;
    background: #042621 !important;
    color: #FFFFFF !important;
    border: 2px solid #042621 !important;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(4, 38, 33, 0.2);
}

.btn-book-now:hover {
    background: #E67E22 !important;
    border-color: #E67E22 !important;
    color: #FFFFFF !important;
    box-shadow: 0 6px 16px rgba(230, 126, 34, 0.4);
}

/* -------------------------------------------------------------
 * Parchment & Editorial Headings Theme (Unified Across Site)
 * ------------------------------------------------------------- */
.section-title h2 {
    font-family: var(--font-body) !important;
    font-size: 1.9rem !important;
    font-weight: 700 !important;
    color: #3A2F25 !important;
    letter-spacing: 1px !important;
    text-transform: none !important;
}

.section-title h4 {
    font-family: var(--font-body) !important;
    font-style: normal !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #B38332 !important;
    letter-spacing: 0.8px !important;
    text-transform: none !important;
    margin-bottom: 8px !important;
}

/* Card & Component Refinement - Warm Parchment Tone (#FAF6EE) inside all cards */
.package-card, 
.package-body,
.destination-editorial-card,
.dest-card-content,
.explore-cat-card,
.cat-card-body,
.fleet-card, 
.fleet-card-content,
.review-card, 
.testimonial-card,
.reviews-header-card,
.package-editorial-card,
.pkg-editorial-content,
.pkg-editorial-price-box,
.modern-package-card,
.card-content-box,
.accordion-item,
.accordion-header,
.accordion-body,
.destinations-card-wrapper {
    background: #FAF6EE !important;
    border-color: #E6D9C5 !important;
}

.package-card, 
.fleet-card, 
.review-card, 
.testimonial-card,
.accordion-item,
.explore-cat-card,
.destination-editorial-card,
.package-editorial-card,
.modern-package-card {
    border: 1px solid #E6D9C5 !important;
    box-shadow: 0 4px 16px rgba(58, 47, 37, 0.06) !important;
}

.package-body,
.fleet-card-content,
.cat-card-body,
.dest-card-content,
.pkg-editorial-content,
.card-content-box {
    background: #FAF6EE !important;
}

.package-footer,
.card-btn-row {
    border-top: 1px solid #E6D9C5 !important;
    margin-top: auto !important;
}

.fleet-card-title,
.package-body h3,
.dest-card-name,
.cat-card-title,
.pkg-editorial-title,
.card-pkg-title {
    font-family: var(--font-body) !important;
    font-weight: 800 !important;
    color: #1A130C !important;
    letter-spacing: 0.8px !important;
}

.fleet-card-desc,
.package-body p,
.cat-card-desc,
.pkg-editorial-desc,
.card-pkg-desc,
.testimonial-text {
    color: #4A3E33 !important;
    font-weight: 500 !important;
}

.fleet-spec-bar {
    background: #F3E9DA !important;
    border-color: #E6D9C5 !important;
    color: #3A2F25 !important;
}

.btn-dest-explore {
    background: #FAF6EE !important;
    border: 1px solid #CFA45D !important;
    color: #5A4D41 !important;
}

.btn-dest-explore:hover,
.destination-editorial-card:hover .btn-dest-explore,
.explore-cat-card:hover .btn-dest-explore {
    background: #D4A758 !important;
    color: #1A130C !important;
    border-color: #D4A758 !important;
}

/* Modern Package Cards & Pill Filter Tabs (Matching Exact Style) */
@media (min-width: 769px) {
    .filter-tabs {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 12px !important;
        flex-wrap: wrap !important;
        overflow: visible !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
        padding: 10px 10px 18px 10px !important;
        margin: 0 auto 35px auto !important;
        width: 100% !important;
    }
}

.filter-tabs .tab-btn {
    background: #FAF6EE !important;
    border: 1px solid #E6D9C5 !important;
    color: #1A130C !important;
    font-family: 'Plus Jakarta Sans', 'Inter', 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.92rem !important;
    line-height: 1.25 !important;
    padding: 10px 24px !important;
    border-radius: 30px !important;
    box-shadow: 0 3px 10px rgba(58, 47, 37, 0.05) !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
    box-sizing: border-box !important;
}

.filter-tabs .tab-btn.active {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%) !important;
    color: #FFFFFF !important;
    border: 1.5px solid #FBBF24 !important;
    box-shadow: 0 6px 22px rgba(245, 158, 11, 0.45) !important;
}

.filter-tabs .tab-btn:hover:not(.active) {
    background: #FEF3C7 !important;
    border-color: #F59E0B !important;
    color: #B45309 !important;
    transform: translateY(-3px) !important;
}

.package-card {
    background: #FAF6EE !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    border: 1px solid #E6D9C5 !important;
    box-shadow: 0 4px 14px rgba(58, 47, 37, 0.06) !important;
    transition: all 0.35s ease !important;
    display: flex;
    flex-direction: column !important;
    height: 100%;
}

.package-card.is-hidden,
.package-card.hidden,
.package-card[hidden] {
    display: none !important;
}

.package-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 14px 32px rgba(58, 47, 37, 0.16) !important;
    border-color: #D4A758 !important;
}

.package-img-wrapper {
    position: relative !important;
    height: 250px !important;
    overflow: hidden !important;
    border-radius: 10px 10px 0 0 !important;
}

.package-img-wrapper img.package-img,
.package-img-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 10px 10px 0 0 !important;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.package-card:hover .package-img-wrapper img.package-img,
.package-card:hover .package-img-wrapper img {
    transform: scale(1.08) !important;
}

/* Orange/Gold Top-Right Pill Tag */
.package-tag {
    position: absolute !important;
    top: 16px !important;
    right: 16px !important;
    background: #E88300 !important;
    color: #FFFFFF !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    font-size: 0.72rem !important;
    text-transform: none !important;
    letter-spacing: 0.8px !important;
    padding: 6px 14px !important;
    border-radius: 20px !important;
    box-shadow: 0 4px 12px rgba(232, 131, 0, 0.35) !important;
    border: none !important;
}

/* Dark Green Bottom-Left Duration Pill */
.package-meta {
    position: absolute !important;
    bottom: 16px !important;
    left: 16px !important;
    background: rgba(11, 36, 32, 0.92) !important;
    backdrop-filter: blur(6px) !important;
    color: #FFFFFF !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.78rem !important;
    padding: 6px 14px !important;
    border-radius: 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25) !important;
}

/* Card Body Area - Warm Parchment Cream Tone (#FAF6EE) */
.package-body {
    padding: 24px !important;
    background: #FAF6EE !important;
    border-radius: 0 0 10px 10px !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
}

.package-category {
    font-family: 'Outfit', sans-serif !important;
    font-size: 0.76rem !important;
    font-weight: 800 !important;
    text-transform: none !important;
    letter-spacing: 1.2px !important;
    color: #0B2420 !important;
    margin-bottom: 8px !important;
}

.package-body h3 {
    font-family: var(--font-body) !important;
    font-weight: 800 !important;
    font-size: 1.25rem !important;
    color: #1A130C !important;
    line-height: 1.35 !important;
    margin-bottom: 10px !important;
    letter-spacing: 0.5px !important;
}

.package-body p {
    color: #5A4D41 !important;
    font-size: 0.92rem !important;
    line-height: 1.65 !important;
    margin-bottom: 20px !important;
    font-weight: 500 !important;
}

.package-footer {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-top: 18px !important;
    border-top: 1px solid #E6D9C5 !important;
    margin-top: auto !important;
}

.package-price {
    font-size: 0.78rem !important;
    color: #7A6A5A !important;
    font-weight: 600 !important;
}

.package-price .price-val {
    display: block !important;
    font-family: var(--font-body) !important;
    font-weight: 800 !important;
    font-size: 1.35rem !important;
    color: #1A130C !important;
}

.package-footer .btn-primary {
    background: #0B2420 !important;
    color: #FFFFFF !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    padding: 10px 22px !important;
    border-radius: 24px !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(11, 36, 32, 0.25) !important;
    transition: all 0.3s ease !important;
}

.package-footer .btn-primary:hover {
    background: #1A3E38 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(11, 36, 32, 0.35) !important;
}

/* -------------------------------------------------------------
 * Unified Card Background (#FAF6EE) & Border (#E6D9C5) System
 * FAQ Accordions, Testimonial Cards, Fleet Cards & Components
 * ------------------------------------------------------------- */
.accordion-item,
.accordion-header,
.accordion-body,
.testimonial-card,
.review-card,
.reviews-header-card,
.fleet-card,
.fleet-card-content,
.contact-card,
.sticky-booking-card,
.search-destination-banner {
    background: #FAF6EE !important;
    border-color: #E6D9C5 !important;
}

/* Accordion Luxury Theme System */
.accordion-item {
    background: #FFFFFF !important;
    border: 1.5px solid #E2E8F0 !important;
    border-radius: 16px !important;
    margin-bottom: 16px !important;
    box-shadow: 0 6px 20px rgba(11, 36, 32, 0.05) !important;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
    overflow: hidden !important;
}

.accordion-item:hover {
    border-color: #CBD5E1 !important;
    box-shadow: 0 10px 28px rgba(11, 36, 32, 0.09) !important;
}

.accordion-item.active {
    border-color: #FBBF24 !important;
    border-left: 4.5px solid #D97706 !important;
    box-shadow: 0 12px 32px rgba(217, 119, 6, 0.14) !important;
    transform: translateY(-2px) !important;
}

.accordion-header {
    background: #FFFFFF !important;
    padding: 20px 24px !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    cursor: pointer !important;
    transition: background 0.25s ease !important;
}

.accordion-header:hover {
    background: #FAF8F5 !important;
}

.accordion-header h3 {
    color: #0B2420 !important;
    font-family: var(--font-body) !important;
    font-size: 1.08rem !important;
    font-weight: 800 !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    text-transform: none !important;
}

.accordion-body {
    background: #FAF8F5 !important;
    padding: 20px 24px 24px 24px !important;
    border-top: 1px dashed #E2E8F0 !important;
    border-radius: 0 0 16px 16px !important;
}

.accordion-body p {
    color: #334155 !important;
    font-family: var(--font-body) !important;
    font-size: 0.96rem !important;
    line-height: 1.7 !important;
    font-weight: 500 !important;
    margin: 0 !important;
}

.faq-icon-badge {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #0B2420 0%, #143A34 100%) !important;
    color: #FBBF24 !important;
    border: 1.5px solid #F59E0B !important;
    box-shadow: 0 4px 12px rgba(11, 36, 32, 0.15) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.15rem !important;
    flex-shrink: 0 !important;
}

.accordion-toggle-btn {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: #FEF3C7 !important;
    color: #D97706 !important;
    border: 1px solid #F59E0B !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.9rem !important;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), background 0.3s ease, color 0.3s ease !important;
    flex-shrink: 0 !important;
}

.accordion-item.active .accordion-toggle-btn {
    transform: rotate(180deg) !important;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%) !important;
    color: #FFFFFF !important;
    border-color: #FBBF24 !important;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4) !important;
}

.accordion-toggle-btn {
    background: #F3E9DA !important;
    color: #3A2F25 !important;
    border: 1px solid #E6D9C5 !important;
}

/* Testimonials / Review Cards Luxury Theme System */
.testimonial-card,
.review-card {
    background: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    border-top: 3.5px solid #D97706 !important;
    border-radius: 16px !important;
    padding: 28px 24px 24px 24px !important;
    box-shadow: 0 10px 30px rgba(11, 36, 32, 0.07) !important;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

.testimonial-card:hover,
.review-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 18px 40px rgba(217, 119, 6, 0.16) !important;
    border-top-color: #F59E0B !important;
}

.testimonial-top-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 14px !important;
    gap: 8px !important;
}

.testimonial-stars {
    color: #D97706 !important;
    font-size: 0.88rem !important;
    display: inline-flex !important;
    gap: 3px !important;
    background: #FEF3C7 !important;
    padding: 5px 12px !important;
    border-radius: 20px !important;
    border: 1px solid #F59E0B !important;
}

.testimonial-verified {
    font-size: 0.76rem !important;
    font-weight: 700 !important;
    color: #047857 !important;
    background: #ECFDF5 !important;
    padding: 5px 12px !important;
    border-radius: 20px !important;
    border: 1px solid #10B981 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
}

.testimonial-verified i {
    color: #10B981 !important;
}

.testimonial-quote-icon {
    color: #F59E0B !important;
    opacity: 0.35 !important;
    font-size: 1.8rem !important;
    margin: 10px 0 8px 0 !important;
    display: block !important;
}

.testimonial-text {
    font-family: var(--font-body) !important;
    color: #334155 !important;
    font-size: 0.95rem !important;
    line-height: 1.65 !important;
    font-weight: 500 !important;
    font-style: italic !important;
    margin-bottom: 20px !important;
}

.testimonial-user {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    padding-top: 16px !important;
    border-top: 1px solid #F1F5F9 !important;
    margin-top: auto !important;
}

.user-avatar {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #0B2420 0%, #143A34 100%) !important;
    color: #FBBF24 !important;
    border: 2px solid #F59E0B !important;
    box-shadow: 0 4px 12px rgba(11, 36, 32, 0.2) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 800 !important;
    font-size: 1.15rem !important;
    flex-shrink: 0 !important;
}

.user-details h4 {
    font-family: var(--font-body) !important;
    color: #0B2420 !important;
    font-size: 1.08rem !important;
    font-weight: 800 !important;
    margin-bottom: 2px !important;
    text-transform: none !important;
}

.user-details p {
    font-family: var(--font-body) !important;
    color: #64748B !important;
    font-size: 0.82rem !important;
    line-height: 1.4 !important;
    margin: 0 !important;
}

/* Fleet Cards Theme Adjustments */
.fleet-card {
    background: #FAF6EE !important;
    border: 1px solid #E6D9C5 !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 14px rgba(58, 47, 37, 0.06) !important;
}

.fleet-card-content {
    background: #FAF6EE !important;
    border-radius: 0 0 12px 12px !important;
}

.fleet-spec-bar {
    background: #F3E9DA !important;
    border: 1px solid #E6D9C5 !important;
    color: #3A2F25 !important;
}

.fleet-card-title {
    color: #1A130C !important;
    font-weight: 800 !important;
}

.fleet-card-desc {
    color: #5A4D41 !important;
}

/* =============================================================
   SYSTEM-WIDE CENTRALIZED TYPOGRAPHY - MODERN SANS-SERIF FONT
   ============================================================= */

/* 1. Global Headings & Section Titles */
h1, h2, h3, h4, h5, h6,
.section-title,
.destinations-main-title,
.packages-title-green,
.about-main-title,
.gallery-title,
.reviews-title,
.contact-title,
.wizard-title,
.fleet-section-title,
.page-banner-title {
    font-family: var(--font-body) !important;
    font-weight: 800 !important;
    color: #1A130C !important;
    text-transform: none !important;
    letter-spacing: 0.5px !important;
    line-height: 1.25 !important;
    margin-bottom: 8px !important;
}

/* 2. Subheadings & Script Taglines */
.section-subtitle,
.destinations-script-tagline,
.packages-subhead-orange,
.about-script-tagline,
.gallery-subhead,
.reviews-subhead,
.wizard-subhead {
    font-family: var(--font-body) !important;
    font-style: normal !important;
    font-weight: 700 !important;
    color: #D97706 !important;
    letter-spacing: 0.5px !important;
    line-height: 1.4 !important;
    margin-bottom: 12px !important;
    text-transform: none !important;
    font-size: 0.92rem !important;
}

/* 3. Card Titles */
.package-card-title,
.modern-package-title,
.fleet-card-title,
.dest-title,
.review-author-name {
    font-family: var(--font-body) !important;
    font-weight: 700 !important;
    color: #1A130C !important;
    letter-spacing: 0.5px !important;
}

/* 4. Global Body Text & Inputs */
body, p, li, .body-text, button, input, select, textarea {
    font-family: var(--font-body) !important;
    color: #3A2F25 !important;
    line-height: 1.65 !important;
}

/* Section Heading Responsive Sizing Hierarchy */
@media (min-width: 992px) {
    .section-title, .destinations-main-title, .packages-title-green, .about-main-title {
        font-size: 1.85rem !important;
    }
    .section-subtitle, .destinations-script-tagline {
        font-size: 1.15rem !important;
    }
}

@media (max-width: 991px) and (min-width: 769px) {
    .section-title, .destinations-main-title, .packages-title-green, .about-main-title {
        font-size: 1.55rem !important;
    }
    .section-subtitle, .destinations-script-tagline {
        font-size: 1.05rem !important;
    }
}

@media (max-width: 768px) {
    .section-title, .destinations-main-title, .packages-title-green, .about-main-title {
        font-size: 1.3rem !important;
        letter-spacing: 1px !important;
    }
    .section-subtitle, .destinations-script-tagline {
        font-size: 0.95rem !important;
    }
}

/* =============================================================
   MOBILE VIEWPORT & RESPONSIVE RULES (320px – 430px)
   ============================================================= */
html, body {
    overflow-x: clip !important;
    width: 100% !important;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .container,
    .nav-container,
    .footer-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    section,
    .site-section,
    .packages-section,
    .packages-section-modern,
    .top-destinations-section,
    .about-section,
    .gallery-section,
    .reviews-section,
    .contact-section,
    .wizard-section,
    .fleet-section {
        padding-top: 36px !important;
        padding-bottom: 36px !important;
    }

    /* Mobile Package Cards - 1 Full-Width Card Per Row (High Legibility) */
    .packages-grid,
    .modern-packages-grid,
    .packages-cards-grid,
    .pkg-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        width: 100% !important;
    }

    .package-card,
    .modern-package-card,
    .pkg-card {
        background: #FFFFFF !important;
        border: 1px solid #E2E8F0 !important;
        border-top: 3px solid #F59E0B !important;
        border-radius: 14px !important;
        overflow: hidden !important;
        display: flex;
        flex-direction: column !important;
        width: 100% !important;
        box-shadow: 0 8px 24px rgba(4, 38, 33, 0.08) !important;
        padding: 0 !important;
    }

    .package-card.is-hidden,
    .package-card.hidden,
    .package-card[hidden] {
        display: none !important;
    }

    .package-card img,
    .modern-package-card img,
    .pkg-card-img,
    .modern-package-card-img-wrap {
        height: 185px !important;
        width: 100% !important;
        object-fit: cover !important;
    }

    .package-card-content,
    .modern-package-card-content,
    .pkg-card-body {
        padding: 16px !important;
        display: flex !important;
        flex-direction: column !important;
        flex: 1 !important;
    }

    .package-card-title,
    .modern-package-card h3,
    .pkg-card-title {
        font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif !important;
        font-size: 1.15rem !important;
        font-weight: 700 !important;
        color: #1A130C !important;
        line-height: 1.35 !important;
        margin-bottom: 8px !important;
        display: block !important;
        min-height: auto !important;
        -webkit-line-clamp: unset !important;
    }

    .package-card-subtitle,
    .pkg-card-sub,
    .modern-package-card p {
        font-family: 'Plus Jakarta Sans', sans-serif !important;
        font-style: normal !important;
        font-size: 0.88rem !important;
        color: #475569 !important;
        margin-bottom: 12px !important;
        line-height: 1.5 !important;
        display: block !important;
        -webkit-line-clamp: unset !important;
    }

    .package-card-specs,
    .pkg-card-specs {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 6px !important;
        margin-bottom: 12px !important;
    }

    .package-spec-badge,
    .pkg-badge {
        font-size: 0.72rem !important;
        padding: 4px 10px !important;
        background: #F8FAFC !important;
        color: #0F172A !important;
        border-radius: 6px !important;
        border: 1px solid #E2E8F0 !important;
    }

    .package-card-action,
    .pkg-card-action,
    .modern-package-card .btn {
        margin-top: auto !important;
    }

    .package-card-btn,
    .pkg-btn,
    .btn-gold-card,
    .modern-package-card .btn {
        font-size: 0.88rem !important;
        padding: 11px 16px !important;
        width: 100% !important;
        text-align: center !important;
        border-radius: 8px !important;
        background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%) !important;
        color: #FFFFFF !important;
        font-weight: 800 !important;
        display: block !important;
        border: none !important;
        box-sizing: border-box !important;
    }

    /* Mobile Destinations Grid - 2 Cards Per Row */
    .destinations-grid,
    .top-destinations-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        width: 100% !important;
    }

    .dest-card {
        height: 165px !important;
        border-radius: 12px !important;
        width: 100% !important;
    }

    .dest-title {
        font-size: 0.95rem !important;
        letter-spacing: 0.8px !important;
    }

    /* Mobile Why Choose Dilsh Tours Grid - 4 Pixel-Perfect Equal Cards in 2x2 Grid */
    .why-choose-5col,
    .why-choose-4col {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        width: 100% !important;
        align-items: stretch !important;
    }

    .why-col-divider {
        display: none !important;
    }

    .why-col-item {
        background: rgba(255, 255, 255, 0.06) !important;
        border: 1px solid rgba(212, 167, 88, 0.25) !important;
        border-radius: 14px !important;
        padding: 20px 10px !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        height: 100% !important;
        min-height: 185px !important;
        box-sizing: border-box !important;
    }

    .why-col-item .why-item-title {
        color: #FFFFFF !important;
        font-size: 0.95rem !important;
        font-weight: 700 !important;
        min-height: 2.6em !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        margin-bottom: 6px !important;
        line-height: 1.25 !important;
    }

    .why-col-item .why-item-sub {
        color: #FDE68A !important;
        font-size: 0.82rem !important;
        min-height: 2.4em !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        opacity: 0.95 !important;
        line-height: 1.3 !important;
    }

    /* Mobile Navigation & Header - Pinned Right Corner Hamburger */
    .site-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 1000 !important;
        height: 72px !important;
    }

    .nav-container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0 14px !important;
        width: 100% !important;
    }

    .header-right-action {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        margin-left: auto !important;
    }

    .nav-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: #FDD863 !important;
        background: rgba(10, 28, 22, 0.48) !important;
        border: 1.5px solid #C7A96B !important;
        border-radius: 10px !important;
        width: 44px !important;
        height: 44px !important;
        font-size: 1.35rem !important;
        cursor: pointer !important;
        margin-left: 6px !important;
        flex-shrink: 0 !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    .nav-toggle i {
        color: #FDD863 !important;
        font-size: 1.3rem !important;
        display: block !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85) !important;
    }

    .nav-toggle:hover,
    .nav-toggle:active {
        background: rgba(199, 169, 107, 0.22) !important;
        border-color: #D4B679 !important;
        transform: scale(1.05) !important;
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4), 0 0 16px rgba(199, 169, 107, 0.3) !important;
    }

    /* Hide ENQUIRE NOW Button on Mobile & Tablet View (<= 991px) */
    .btn-gold-header,
    .header-right-action .btn-gold-header {
        display: none !important;
    }

    /* Mobile Hero Section Spacious Uncropped Layout */
    .hero-section {
        min-height: 680px !important;
        max-height: none !important;
        height: auto !important;
        padding-top: 75px !important;
        padding-bottom: 65px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        position: relative !important;
        overflow: hidden !important;
    }

    .hero-video-bg,
    .hero-bg-media,
    .hero-bg-video {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
    }

    .hero-content-block {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 16px !important;
        text-align: center !important;
        width: 100% !important;
    }


    .hero-subhead-text {
        font-size: 1.12rem !important;
        letter-spacing: 0.5px !important;
        line-height: 1.4 !important;
        margin-bottom: 18px !important;
        padding: 0 10px !important;
    }

    .hero-badge-pill {
        margin-bottom: 22px !important;
        padding: 8px 18px !important;
        font-size: 0.82rem !important;
        letter-spacing: 0.8px !important;
    }

    .hero-buttons-group {
        width: 100% !important;
        max-width: 320px !important;
        margin: 10px auto 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 14px !important;
    }

    .hero-buttons-group .btn {
        width: 100% !important;
        text-align: center !important;
        padding: 12px 18px !important;
        font-size: 0.88rem !important;
    }

    /* Mobile Footer Stack */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
        text-align: center !important;
    }

    .footer-brand-header,
    .footer-social-links {
        justify-content: center !important;
    }
}

/* -------------------------------------------------------------
 * Luxury Experience Section ("Experience Sri Lanka Beyond Ordinary")
 * ------------------------------------------------------------- */
.experience-section {
    background: #FAF6EE !important;
    padding: 80px 0 95px 0 !important;
    border-top: 1px solid #E6D9C5 !important;
    position: relative !important;
}

.experience-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
    width: 100% !important;
}

.experience-card {
    background: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    border-top: 3.5px solid #D97706 !important;
    border-radius: 16px !important;
    padding: 32px 24px 28px 24px !important;
    text-align: center !important;
    box-shadow: 0 10px 30px rgba(11, 36, 32, 0.06) !important;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.experience-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(217, 119, 6, 0.16) !important;
    border-top-color: #F59E0B !important;
}

.experience-icon-wrap {
    width: 62px !important;
    height: 62px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #0B2420 0%, #143A34 100%) !important;
    border: 2px solid #F59E0B !important;
    color: #FBBF24 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.55rem !important;
    margin-bottom: 20px !important;
    box-shadow: 0 6px 18px rgba(11, 36, 32, 0.25) !important;
    transition: transform 0.35s ease, background 0.35s ease !important;
}

.experience-card:hover .experience-icon-wrap {
    transform: scale(1.12) rotate(4deg) !important;
    background: linear-gradient(135deg, #D97706 0%, #B45309 100%) !important;
    border-color: #FDE68A !important;
    color: #FFFFFF !important;
}

.experience-card-title {
    font-family: var(--font-body) !important;
    font-size: 1.18rem !important;
    font-weight: 800 !important;
    color: #0B2420 !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 12px !important;
    line-height: 1.3 !important;
    text-transform: none !important;
}

.experience-card-desc {
    font-family: var(--font-body) !important;
    font-size: 0.92rem !important;
    color: #475569 !important;
    line-height: 1.65 !important;
    font-weight: 500 !important;
    margin: 0 !important;
}

/* Responsive Experience Grid */
@media (max-width: 991px) {
    .experience-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

@media (max-width: 576px) {
    .experience-section {
        padding: 50px 0 60px 0 !important;
    }
    .experience-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .experience-card {
        padding: 24px 18px !important;
    }
}

/* =============================================================
 * Site Footer Luxury Theme System (Matching Nav Bar)
 * ============================================================= */
.site-footer {
    position: relative !important;
    background: linear-gradient(180deg, #041714 0%, #06221E 100%) !important;
    border-top: 3.5px solid #D97706 !important;
    color: #FFFFFF !important;
    padding: 75px 0 35px 0 !important;
    overflow: hidden !important;
}

.site-footer::before {
    display: none !important;
}

.site-footer .footer-brand-title,
.site-footer h3,
.site-footer .footer-col-title,
.site-footer .footer-brand-header h3 {
    font-family: var(--font-heading) !important;
    color: #FFFFFF !important;
    font-weight: 800 !important;
    font-size: 1.25rem !important;
    margin-bottom: 6px !important;
    letter-spacing: 0.5px !important;
}

.site-footer .footer-brand-subtitle {
    color: #F59E0B !important;
    font-family: var(--font-body) !important;
    font-weight: 700 !important;
    font-size: 0.84rem !important;
    display: block !important;
    letter-spacing: 0.5px !important;
}

.site-footer .footer-brand-desc,
.site-footer p {
    font-family: var(--font-body) !important;
    color: #CBD5E1 !important;
    font-size: 0.92rem !important;
    line-height: 1.65 !important;
    opacity: 0.95 !important;
}

.site-footer .footer-col-title {
    color: #FFFFFF !important;
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    position: relative !important;
    padding-bottom: 12px !important;
    margin-bottom: 22px !important;
    border-bottom: 2px solid rgba(245, 158, 11, 0.3) !important;
}

.site-footer .footer-col-title::after {
    background: #F59E0B !important;
    height: 3px !important;
}

.site-footer .footer-link-list li a {
    color: #CBD5E1 !important;
    font-family: var(--font-body) !important;
    font-size: 0.92rem !important;
    transition: all 0.25s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
}

.site-footer .footer-link-list li a:hover {
    color: #F59E0B !important;
    transform: translateX(5px) !important;
}

.site-footer .link-arrow,
.site-footer .link-pin {
    color: #F59E0B !important;
    font-size: 0.8rem !important;
}

.site-footer .footer-contact-item {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1.5px solid rgba(245, 158, 11, 0.3) !important;
    border-radius: 14px !important;
    padding: 14px 16px !important;
    margin-bottom: 12px !important;
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    transition: all 0.25s ease !important;
    text-decoration: none !important;
}

.site-footer .footer-contact-item:hover {
    background: rgba(245, 158, 11, 0.12) !important;
    border-color: #F59E0B !important;
    transform: translateY(-2px) !important;
}

.site-footer .contact-item-icon {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%) !important;
    color: #FFFFFF !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1rem !important;
    flex-shrink: 0 !important;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3) !important;
}

.site-footer .contact-item-label {
    color: #94A3B8 !important;
    font-size: 0.78rem !important;
    display: block !important;
    font-weight: 600 !important;
}

.site-footer .contact-item-val {
    color: #FFFFFF !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
}

.site-footer .contact-item-val.highlight-gold {
    color: #FBBF24 !important;
}

.site-footer .social-icon-link {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1.5px solid #F59E0B !important;
    color: #F59E0B !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.1rem !important;
    transition: all 0.25s ease !important;
    text-decoration: none !important;
}

.site-footer .social-icon-link:hover {
    background: #F59E0B !important;
    color: #041714 !important;
    transform: translateY(-3px) scale(1.08) !important;
    box-shadow: 0 6px 18px rgba(245, 158, 11, 0.4) !important;
}

/* Footer Bottom Bar */
.site-footer .footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
    margin-top: 40px !important;
    padding-top: 25px !important;
    padding-bottom: 35px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    gap: 8px !important;
}

.site-footer .footer-bottom-bar p {
    color: #94A3B8 !important;
    font-size: 0.95rem !important;
    margin: 0 !important;
    text-align: center !important;
}

.site-footer .footer-bottom-bar strong {
    color: #FFFFFF !important;
    font-weight: 700 !important;
}

.site-footer .admin-link-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: rgba(245, 158, 11, 0.12) !important;
    border: 1.5px solid #F59E0B !important;
    color: #FDE68A !important;
    padding: 5px 16px !important;
    border-radius: 20px !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
    margin-top: 4px !important;
}

.site-footer .admin-link-badge i {
    color: #F59E0B !important;
    font-size: 0.9rem !important;
    transition: color 0.25s ease !important;
}

.site-footer .admin-link-badge:hover {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%) !important;
    color: #041714 !important;
    border-color: #FBBF24 !important;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35) !important;
}

.site-footer .admin-link-badge:hover i {
    color: #041714 !important;
}

.site-footer .footer-copy-text {
    color: #94A3B8 !important;
    font-size: 0.95rem !important;
    margin: 0 !important;
}

.site-footer .bottom-site-link {
    color: #94A3B8 !important;
    font-size: 0.95rem !important;
    margin: 0 !important;
    line-height: 1.65 !important;
}

.site-footer .bottom-site-link a {
    color: #F59E0B !important;
    font-weight: 700 !important;
    text-decoration: underline !important;
    text-underline-offset: 4px !important;
    text-decoration-color: #F59E0B !important;
    display: inline-block !important;
    margin-top: 3px !important;
}

.site-footer .bottom-site-link a:hover {
    color: #FBBF24 !important;
    text-decoration-color: #FBBF24 !important;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 55px 0 110px 0 !important;
    }
    .site-footer .footer-col-brand {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    .site-footer .footer-brand-header {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
        margin-bottom: 14px !important;
    }
    .site-footer .footer-brand-header .logo-link {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 8px !important;
        text-decoration: none !important;
    }
    .site-footer .footer-brand-logo {
        height: 78px !important;
        width: auto !important;
        margin: 0 auto 4px auto !important;
        filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6)) !important;
    }
    .site-footer .logo-text {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    .site-footer .brand-name-gold {
        font-family: 'Playfair Display', Georgia, serif !important;
        font-size: 1.4rem !important;
        font-weight: 700 !important;
        line-height: 1.15 !important;
        letter-spacing: 0.5px !important;
        text-align: center !important;
        text-transform: none !important;
    }
    .site-footer .brand-sub-gold {
        font-family: 'Playfair Display', Georgia, serif !important;
        font-size: 1.18rem !important;
        font-weight: 700 !important;
        letter-spacing: 0.5px !important;
        color: #FFFFFF !important;
        text-align: center !important;
        text-transform: none !important;
        margin-top: 2px !important;
    }
    .site-footer .footer-brand-subtitle {
        text-align: center !important;
        margin: 10px auto 14px auto !important;
    }
    .site-footer .footer-brand-desc {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .site-footer .footer-social-links {
        justify-content: center !important;
    }
    .site-footer .footer-bottom-bar {
        flex-direction: column !important;
        text-align: center !important;
        gap: 12px !important;
        padding-bottom: 90px !important;
    }
}

/* =============================================================
 * Tour Package Details Page - Unified Modern Design System
 * ============================================================= */

.package-details-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 360px !important;
    gap: 40px !important;
    align-items: stretch !important;
    width: 100% !important;
    position: relative !important;
}

.package-details-layout > div:first-child {
    min-width: 0 !important;
    width: 100% !important;
}

.package-details-layout > aside,
.package-details-layout > div:last-child,
.package-details-sidebar {
    width: 360px !important;
    height: 100% !important;
    min-height: 100% !important;
    position: relative !important;
    display: block !important;
}

/* Button System Utilities */
.btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 14px 24px !important;
    border-radius: 30px !important;
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    border: none !important;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-sizing: border-box !important;
}

.btn-sm {
    padding: 9px 16px !important;
    font-size: 0.85rem !important;
    border-radius: 20px !important;
}

.btn-block {
    width: 100% !important;
    display: flex !important;
    text-align: center !important;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #1EBE57 100%) !important;
    color: #FFFFFF !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35) !important;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #1EBE57 0%, #17A34A 100%) !important;
    color: #FFFFFF !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5) !important;
}

.btn-accent {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%) !important;
    color: #042621 !important;
    font-weight: 800 !important;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35) !important;
}

.btn-accent:hover {
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%) !important;
    color: #042621 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.5) !important;
}

.btn-outline-beige {
    background: #FAF6EE !important;
    border: 1.5px solid #E6D9C5 !important;
    color: #06373A !important;
    font-weight: 700 !important;
}

.btn-outline-beige:hover {
    background: #F5EBDD !important;
    border-color: #D97706 !important;
    color: #042621 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(4, 38, 33, 0.08) !important;
}

/* Package Details Header Top Bar & Category Badge (Centered, Navbar Color) */
.pkg-header-top-bar {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 22px !important;
    text-align: center !important;
}

.pkg-detail-category-badge {
    margin: 0 auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    background: rgba(4, 23, 20, 0.72) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1.5px solid rgba(245, 158, 11, 0.4) !important;
    color: #FBBF24 !important;
    padding: 8px 22px !important;
    border-radius: 30px !important;
    font-weight: 800 !important;
    font-size: 0.84rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 4px 14px rgba(4, 23, 20, 0.25) !important;
}

.pkg-detail-category-badge i {
    color: #FBBF24 !important;
}

/* Tour Itinerary Route Places Description */
.page-banner-desc {
    color: #06373A !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
    line-height: 1.65 !important;
    max-width: 880px !important;
    margin: 0 auto 20px auto !important;
    text-align: center !important;
    padding: 0 16px !important;
    text-shadow: none !important;
}

@media (max-width: 768px) {
    .page-banner-desc {
        font-size: 0.94rem !important;
        line-height: 1.6 !important;
        padding: 0 10px !important;
        margin-bottom: 16px !important;
    }
}

/* Section Header Block */
.section-header-block {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    margin-bottom: 22px !important;
    width: 100% !important;
}

.section-icon-badge {
    width: 44px !important;
    height: 44px !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, #06373A 0%, #042621 100%) !important;
    color: #FBBF24 !important;
    border: 1.5px solid #F59E0B !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.15rem !important;
    flex-shrink: 0 !important;
    box-shadow: 0 4px 14px rgba(6, 55, 58, 0.2) !important;
}

.section-heading {
    color: #042621 !important;
    font-family: var(--font-heading) !important;
    font-size: 1.45rem !important;
    font-weight: 800 !important;
    margin: 0 !important;
    line-height: 1.2 !important;
}

/* Tour Hero Image Card Showcase */
.pkg-hero-showcase {
    position: relative !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    margin-bottom: 35px !important;
    box-shadow: 0 12px 36px rgba(4, 38, 33, 0.12) !important;
    border: 3px solid #F59E0B !important;
    background: #042621 !important;
    min-height: 260px !important;
}

.pkg-hero-showcase img {
    width: 100% !important;
    height: 380px !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.pkg-hero-showcase:hover img {
    transform: scale(1.03) !important;
}

.pkg-hero-overlay {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background: linear-gradient(180deg, rgba(3, 30, 26, 0) 0%, rgba(3, 30, 26, 0.88) 100%) !important;
    padding: 25px 30px 20px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-end !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    z-index: 10 !important;
}

.pkg-hero-tag {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%) !important;
    color: #042621 !important;
    font-weight: 800 !important;
    font-size: 0.82rem !important;
    padding: 6px 16px !important;
    border-radius: 20px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.pkg-hero-tag i {
    color: #042621 !important;
}

.pkg-hero-badges {
    display: flex !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
}

.pkg-hero-badge-pill {
    background: rgba(4, 38, 33, 0.75) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(245, 158, 11, 0.4) !important;
    color: #FFFFFF !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    padding: 6px 14px !important;
    border-radius: 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.pkg-hero-badge-pill i {
    color: #FBBF24 !important;
}

/* Tour Overview Card */
.pkg-overview-card {
    background: #FFFFFF !important;
    border-radius: 20px !important;
    padding: 35px !important;
    border: 1px solid #E2E8F0 !important;
    box-shadow: 0 4px 20px rgba(3, 30, 26, 0.05) !important;
    margin-bottom: 35px !important;
    width: 100% !important;
}

.pkg-overview-card p {
    font-size: 1.02rem !important;
    color: #1E293B !important;
    line-height: 1.8 !important;
    margin-bottom: 22px !important;
}

.pkg-customization-box {
    background: #F8FAFC !important;
    border-left: 4px solid #F59E0B !important;
    padding: 18px 22px !important;
    border-radius: 0 14px 14px 0 !important;
    font-size: 0.95rem !important;
    color: #1E293B !important;
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    border-top: 1px solid #E2E8F0 !important;
    border-right: 1px solid #E2E8F0 !important;
    border-bottom: 1px solid #E2E8F0 !important;
}

.pkg-customization-box .customization-icon-box {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: #FFFBEB !important;
    border: 1px solid #FCD34D !important;
    color: #D97706 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1rem !important;
    flex-shrink: 0 !important;
}

/* Day-by-Day Accordion Refinements */
.accordion-item {
    background: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 18px -2px rgba(3, 30, 26, 0.05) !important;
    margin-bottom: 14px !important;
    position: relative !important;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.accordion-item::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 5px !important;
    height: 100% !important;
    background: linear-gradient(180deg, #F59E0B 0%, #10B981 100%) !important;
    opacity: 0 !important;
    transition: opacity 0.35s ease !important;
}

.accordion-item:hover {
    border-color: rgba(16, 185, 129, 0.3) !important;
    box-shadow: 0 8px 24px -4px rgba(3, 30, 26, 0.09) !important;
}

.accordion-item.active {
    border-color: rgba(16, 185, 129, 0.35) !important;
    box-shadow: 0 12px 32px -6px rgba(3, 30, 26, 0.12) !important;
}

.accordion-item.active::before {
    opacity: 1 !important;
}

.accordion-header {
    padding: 20px 24px !important;
    background: #FFFFFF !important;
    cursor: pointer !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 16px !important;
    transition: background 0.3s ease !important;
}

.accordion-header:hover {
    background: #F8FAFC !important;
}

.accordion-header-left {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    flex: 1 !important;
    min-width: 0 !important;
}

.day-badge {
    background: linear-gradient(135deg, #06373A 0%, #042621 100%) !important;
    color: #FFFFFF !important;
    padding: 6px 16px !important;
    border-radius: 20px !important;
    font-weight: 800 !important;
    font-size: 0.82rem !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1.5px solid rgba(245, 158, 11, 0.4) !important;
    box-shadow: 0 3px 10px rgba(6, 55, 58, 0.18) !important;
}

.accordion-day-title {
    font-family: var(--font-heading) !important;
    font-size: 1.08rem !important;
    font-weight: 700 !important;
    color: #0F172A !important;
    margin: 0 !important;
    transition: color 0.3s ease !important;
}

.accordion-item.active .accordion-day-title {
    color: #059669 !important;
}

.accordion-toggle-btn {
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    background: #F1F5F9 !important;
    color: #64748B !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.88rem !important;
    transition: all 0.35s ease !important;
    flex-shrink: 0 !important;
}

.accordion-item.active .accordion-toggle-btn {
    background: #FFFBEB !important;
    color: #D97706 !important;
    transform: rotate(180deg) !important;
    box-shadow: 0 2px 8px rgba(217, 119, 6, 0.2) !important;
}

.accordion-body {
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease !important;
    padding: 0 24px !important;
    color: #334155 !important;
    font-size: 0.96rem !important;
    line-height: 1.75 !important;
    background: #FAFDFB !important;
}

.accordion-item.active .accordion-body {
    max-height: 800px !important;
    padding: 18px 24px 24px 24px !important;
    border-top: 1px dashed #E2E8F0 !important;
}

.accordion-body p {
    margin: 0 !important;
    color: #475569 !important;
}

/* What's Included & Excluded Grid */
.included-excluded-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
    margin-top: 35px !important;
    width: 100% !important;
}

.inc-exc-card {
    background: #FFFFFF !important;
    padding: 30px !important;
    border-radius: 20px !important;
    border: 1px solid #E2E8F0 !important;
    box-shadow: 0 4px 20px rgba(3, 30, 26, 0.05) !important;
    height: 100% !important;
}

.inc-exc-card.included-card {
    border-top: 4px solid #059669 !important;
}

.inc-exc-card.excluded-card {
    border-top: 4px solid #DC2626 !important;
}

.inc-exc-header {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 20px !important;
}

.inc-exc-icon-box {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1rem !important;
    flex-shrink: 0 !important;
}

.inc-exc-icon-box.inc-box {
    background: #ECFDF5 !important;
    color: #059669 !important;
    border: 1px solid #A7F3D0 !important;
}

.inc-exc-icon-box.exc-box {
    background: #FEF2F2 !important;
    color: #DC2626 !important;
    border: 1px solid #FECACA !important;
}

.inc-exc-header h3 {
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    margin: 0 !important;
}

.included-card .inc-exc-header h3 {
    color: #065F46 !important;
}

.excluded-card .inc-exc-header h3 {
    color: #991B1B !important;
}

.inc-exc-list {
    line-height: 2.1 !important;
    font-size: 0.93rem !important;
    color: #1E293B !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

.inc-exc-list li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin-bottom: 10px !important;
}

.inc-check-icon {
    color: #059669 !important;
    font-size: 1.05rem !important;
    margin-top: 4px !important;
    flex-shrink: 0 !important;
}

.exc-x-icon {
    color: #DC2626 !important;
    font-size: 1.05rem !important;
    margin-top: 4px !important;
    flex-shrink: 0 !important;
}

/* Sticky Booking Sidebar Card */
.sticky-booking-card {
    position: sticky !important;
    top: 105px !important;
    background: #FFFFFF !important;
    border-radius: 20px !important;
    padding: 30px !important;
    border: 1px solid #E2E8F0 !important;
    box-shadow: 0 12px 40px rgba(4, 38, 33, 0.1) !important;
    z-index: 80 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.booking-price-header {
    margin-bottom: 22px !important;
    text-align: center !important;
    border-bottom: 1px solid #E2E8F0 !important;
    padding-bottom: 22px !important;
}

.price-label {
    font-size: 0.8rem !important;
    color: #64748B !important;
    text-transform: uppercase !important;
    font-weight: 800 !important;
    letter-spacing: 1.2px !important;
    display: block !important;
    margin-bottom: 4px !important;
}

.price-amount-box {
    font-size: 2.2rem !important;
    font-weight: 900 !important;
    color: #06373A !important;
    margin: 6px 0 !important;
    font-family: var(--font-heading) !important;
}

.price-subtext {
    font-size: 0.84rem !important;
    color: #64748B !important;
    font-weight: 600 !important;
    display: block !important;
}

.booking-actions-stack {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
}

.booking-guarantee-box {
    margin-top: 25px !important;
    background: #F8FAFC !important;
    padding: 18px 20px !important;
    border-radius: 14px !important;
    border: 1px solid #E2E8F0 !important;
    font-size: 0.86rem !important;
    color: #475569 !important;
    line-height: 1.6 !important;
}

.booking-guarantee-title {
    font-weight: 800 !important;
    color: #06373A !important;
    margin-bottom: 6px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 0.92rem !important;
}

.booking-guarantee-title i {
    color: #D97706 !important;
    font-size: 1.1rem !important;
}

/* Trust Perks Bar */
.pkg-trust-bar {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    margin-top: 40px !important;
    padding-top: 35px !important;
    border-top: 1px solid #E2E8F0 !important;
    width: 100% !important;
}

.pkg-trust-item {
    background: #FFFFFF !important;
    padding: 20px !important;
    border-radius: 16px !important;
    border: 1px solid #E2E8F0 !important;
    box-shadow: 0 4px 14px rgba(4, 38, 33, 0.04) !important;
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
}

.pkg-trust-icon {
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    background: #FAF6EE !important;
    border: 1px solid #E6D9C5 !important;
    color: #D97706 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.2rem !important;
    flex-shrink: 0 !important;
}

.pkg-trust-text h4 {
    font-size: 0.92rem !important;
    font-weight: 800 !important;
    color: #042621 !important;
    margin-bottom: 2px !important;
}

.pkg-trust-text p {
    font-size: 0.8rem !important;
    color: #64748B !important;
    margin: 0 !important;
}

/* Mobile Sticky Bar Bottom */
.mobile-bottom-booking-bar {
    display: none !important;
}

/* Media Queries for Tour Details (Desktop & Mobile Responsiveness) */
@media (max-width: 992px) {
    .package-details-layout {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .sticky-booking-card {
        position: static !important;
        top: auto !important;
        margin-bottom: 30px !important;
    }
    .included-excluded-grid {
        grid-template-columns: 1fr !important;
    }
    .pkg-trust-bar {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .pkg-hero-showcase img {
        height: 280px !important;
    }

    /* Fixed Mobile Bottom Action Bar */
    .mobile-bottom-booking-bar {
        display: flex !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 999 !important;
        background: rgba(4, 23, 20, 0.94) !important;
        backdrop-filter: blur(16px) !important;
        -webkit-backdrop-filter: blur(16px) !important;
        padding: 12px 20px !important;
        border-top: 1.5px solid rgba(245, 158, 11, 0.4) !important;
        justify-content: space-between !important;
        align-items: center !important;
        box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.3) !important;
    }

    .mobile-bar-label {
        display: block !important;
        font-size: 0.72rem !important;
        color: #94A3B8 !important;
        text-transform: uppercase !important;
        font-weight: 700 !important;
    }

    .mobile-bar-val {
        font-size: 1.25rem !important;
        font-weight: 900 !important;
        color: #F59E0B !important;
    }

    .mobile-bar-btns {
        display: flex !important;
        gap: 10px !important;
    }
}

@media (max-width: 640px) {
    .pkg-trust-bar {
        grid-template-columns: 1fr !important;
    }
    .pkg-hero-overlay {
        padding: 16px 20px !important;
    }
    .pkg-overview-card {
        padding: 24px 20px !important;
    }
    .accordion-header {
        padding: 16px 18px !important;
    }
    .accordion-day-title {
        font-size: 0.98rem !important;
    }
    .day-badge {
        padding: 4px 12px !important;
        font-size: 0.75rem !important;
    }
}

/* =============================================================
 * ULTRA-SLEEK HIGH-CONTRAST LIGHTBOX POPUP SYSTEM
 * ============================================================= */
.gallery-lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    background: rgba(3, 24, 21, 0.96) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    z-index: 999999 !important;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Bright High-Contrast Close Button */
.lightbox-close-btn {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    background: #F59E0B !important;
    color: #042621 !important;
    border: 2px solid #FFFFFF !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    font-size: 1.4rem !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 1000005 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), 0 0 15px rgba(245, 158, 11, 0.5) !important;
    transition: all 0.25s ease !important;
}

.lightbox-close-btn:hover {
    transform: scale(1.1) rotate(90deg) !important;
    background: #FDE047 !important;
    color: #000000 !important;
}

/* High-Contrast Nav Buttons (Desktop) */
.lightbox-nav-btn {
    position: fixed !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: rgba(4, 38, 33, 0.9) !important;
    border: 2px solid #F59E0B !important;
    color: #F59E0B !important;
    width: 54px !important;
    height: 54px !important;
    border-radius: 50% !important;
    font-size: 1.25rem !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 1000004 !important;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.6) !important;
    transition: all 0.25s ease !important;
}

.lightbox-prev-btn { left: 24px !important; }
.lightbox-next-btn { right: 24px !important; }

.lightbox-nav-btn:hover {
    background: #F59E0B !important;
    color: #042621 !important;
    transform: translateY(-50%) scale(1.1) !important;
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5) !important;
}

/* Lightbox Content Container */
.lightbox-content-box {
    text-align: center;
    max-width: 90vw;
    max-height: 85vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image-element {
    max-width: 88vw !important;
    max-height: 75vh !important;
    border-radius: 14px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 25px rgba(4, 38, 33, 0.6) !important;
    border: 1.5px solid rgba(245, 158, 11, 0.3) !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
}

/* Counter & Navigation Bar */
.lightbox-counter-bar {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(4, 38, 33, 0.92) !important;
    border: 1.5px solid rgba(245, 158, 11, 0.4) !important;
    padding: 8px 20px;
    border-radius: 30px;
    margin-top: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.lightbox-counter-text {
    color: #FFFFFF !important;
    font-family: 'Cinzel', serif !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
}

.lightbox-mobile-nav-btn {
    display: none;
    background: #F59E0B !important;
    border: 1.5px solid #FFFFFF !important;
    color: #042621 !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.95rem !important;
    cursor: pointer !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4) !important;
    transition: all 0.2s ease !important;
}

.lightbox-mobile-nav-btn i {
    color: #042621 !important;
    font-size: 0.95rem !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-block !important;
}

.lightbox-mobile-nav-btn:active,
.lightbox-mobile-nav-btn:hover {
    background: #FDE047 !important;
    color: #000000 !important;
    transform: scale(1.1) !important;
}

/* Mobile Devices Optimization (< 768px) */
@media (max-width: 768px) {
    .lightbox-close-btn {
        top: 16px !important;
        right: 16px !important;
        width: 44px !important;
        height: 44px !important;
        font-size: 1.3rem !important;
    }

    .lightbox-nav-btn {
        display: none !important; /* Hide overlapping side arrows on small screens */
    }

    .lightbox-mobile-nav-btn {
        display: flex !important; /* Show sleek bottom arrows in counter bar on mobile */
    }

    .lightbox-image-element {
        max-width: 94vw !important;
        max-height: 70vh !important;
    }

    .lightbox-counter-bar {
        padding: 6px 14px;
    }
}

/* =============================================================
   STANDARDIZED PAGE HERO BANNERS (COMPACT, BALANCED & RESPONSIVE)
   ============================================================= */
.tours-hero-section,
.page-hero-banner,
.reviews-hero-section,
.gallery-hero-section,
.about-hero-section,
.contact-hero-section {
    position: relative !important;
    width: 100% !important;
    min-height: 460px !important;
    height: 460px !important;
    padding: 105px 24px 45px !important;
    display: flex !important;
    align-items: center !important;
    background-color: #03201D !important;
    background-position: right center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

/* Page Specific Hero Backgrounds (Desktop WebP) */
.tours-hero-section,
.page-hero-banner.hero-tours {
    background-image: 
        linear-gradient(90deg, 
            rgba(3, 32, 29, 0.96) 0%, 
            rgba(3, 32, 29, 0.88) 32%, 
            rgba(3, 32, 29, 0.52) 54%, 
            rgba(3, 32, 29, 0.08) 75%, 
            rgba(3, 32, 29, 0) 100%),
        url('../images/hero-tours.webp') !important;
}

.reviews-hero-section,
.page-hero-banner.hero-reviews {
    background-image: 
        linear-gradient(90deg, 
            rgba(3, 32, 29, 0.96) 0%, 
            rgba(3, 32, 29, 0.88) 32%, 
            rgba(3, 32, 29, 0.52) 54%, 
            rgba(3, 32, 29, 0.08) 75%, 
            rgba(3, 32, 29, 0) 100%),
        url('../images/hero-reviews.webp') !important;
}

.gallery-hero-section,
.page-hero-banner.hero-gallery {
    background-image: 
        linear-gradient(90deg, 
            rgba(3, 32, 29, 0.96) 0%, 
            rgba(3, 32, 29, 0.88) 32%, 
            rgba(3, 32, 29, 0.52) 54%, 
            rgba(3, 32, 29, 0.08) 75%, 
            rgba(3, 32, 29, 0) 100%),
        url('../images/hero-gallery.webp') !important;
}

.about-hero-section,
.page-hero-banner.hero-aboutus {
    background-image: 
        linear-gradient(90deg, 
            rgba(3, 32, 29, 0.96) 0%, 
            rgba(3, 32, 29, 0.88) 32%, 
            rgba(3, 32, 29, 0.52) 54%, 
            rgba(3, 32, 29, 0.08) 75%, 
            rgba(3, 32, 29, 0) 100%),
        url('../images/hero-aboutus.webp') !important;
}

.contact-hero-section,
.page-hero-banner.hero-contactus {
    background-image: 
        linear-gradient(90deg, 
            rgba(3, 32, 29, 0.96) 0%, 
            rgba(3, 32, 29, 0.88) 32%, 
            rgba(3, 32, 29, 0.52) 54%, 
            rgba(3, 32, 29, 0.08) 75%, 
            rgba(3, 32, 29, 0) 100%),
        url('../images/hero-contactus.webp') !important;
}

.tours-hero-content,
.page-hero-content {
    max-width: 540px !important;
    position: relative !important;
    z-index: 2 !important;
    text-align: left !important;
}

.tours-hero-overtitle,
.page-hero-overtitle {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 6px !important;
}

.tours-hero-overtitle-line,
.page-hero-overtitle-line {
    display: inline-block !important;
    width: 24px !important;
    height: 2.5px !important;
    background: #F59E0B !important;
    border-radius: 2px !important;
}

.tours-hero-overtitle-text,
.page-hero-overtitle-text {
    font-family: 'Cinzel', 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.82rem !important;
    font-weight: 800 !important;
    color: #F59E0B !important;
    letter-spacing: 2.2px !important;
    text-transform: uppercase !important;
}

.tours-hero-title,
.page-hero-title {
    font-family: 'Cinzel', 'Playfair Display', serif !important;
    font-size: 2.35rem !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
    line-height: 1.18 !important;
    margin: 4px 0 6px 0 !important;
    letter-spacing: 0.4px !important;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6) !important;
}

.tours-hero-tagline,
.page-hero-tagline {
    font-family: 'Playfair Display', serif !important;
    font-style: italic !important;
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: #FBBF24 !important;
    margin-bottom: 10px !important;
    letter-spacing: 0.3px !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
}

.tours-hero-desc,
.page-hero-desc {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.94rem !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.92) !important;
    line-height: 1.55 !important;
    max-width: 500px !important;
    margin: 0 0 18px 0 !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45) !important;
}

.tours-hero-btn,
.page-hero-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%) !important;
    color: #042621 !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 800 !important;
    font-size: 0.9rem !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: none !important;
    cursor: pointer !important;
}

.tours-hero-btn:hover,
.page-hero-btn:hover {
    background: linear-gradient(135deg, #FBBF24 0%, #EA580C 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.5) !important;
    color: #042621 !important;
}

.tours-hero-btn i,
.page-hero-btn i {
    transition: transform 0.25s ease !important;
    color: #042621 !important;
}

.tours-hero-btn:hover i,
.page-hero-btn:hover i {
    transform: translateX(4px) !important;
}

/* Tours Filter & Search Section */
.tours-filter-section {
    scroll-margin-top: 110px !important;
    padding: 58px 20px 34px !important;
    background: #FAF7F2 !important;
    border-bottom: 1px solid #EFE8DC !important;
}

.tours-filter-section .filter-tabs {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    overflow: visible !important;
    gap: 12px !important;
    margin: 8px auto 26px auto !important;
    padding: 10px 10px 18px 10px !important;
    max-width: 100% !important;
    width: 100% !important;
}

.tours-filter-section .filter-tabs::-webkit-scrollbar {
    display: none !important;
}

.tours-filter-section .tab-btn {
    background: #FFFFFF !important;
    border: 1px solid #E5E7EB !important;
    color: #1F2937 !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.92rem !important;
    font-weight: 600 !important;
    padding: 10px 22px !important;
    border-radius: 50px !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04) !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    white-space: nowrap !important;
}

.tours-filter-section .tab-btn:hover:not(.active) {
    border-color: #F59E0B !important;
    color: #D97706 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08) !important;
}

.tours-filter-section .tab-btn.active {
    background: linear-gradient(135deg, #F59E0B 0%, #EA580C 100%) !important;
    border-color: transparent !important;
    color: #FFFFFF !important;
    font-weight: 700 !important;
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.38) !important;
    transform: translateY(-2px) !important;
}

.tours-filter-section .tab-btn.active i {
    color: #FFFFFF !important;
}

/* Tours Centered Search Bar matching Mockup */
.tours-filter-section .packages-search-wrapper {
    max-width: 660px !important;
    width: 100% !important;
    margin: 0 auto !important;
    background: #FFFFFF !important;
    border: 1.5px solid #E5E7EB !important;
    border-radius: 50px !important;
    padding: 5px 6px 5px 22px !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.25s ease !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
}

.tours-filter-section .packages-search-wrapper:focus-within {
    border-color: #F59E0B !important;
    box-shadow: 0 6px 24px rgba(245, 158, 11, 0.2) !important;
}

.tours-filter-section .search-icon {
    color: #F59E0B !important;
    font-size: 1.05rem !important;
    margin-right: 12px !important;
    position: static !important;
    transform: none !important;
}

.tours-filter-section .packages-search-input {
    flex: 1 !important;
    border: none !important;
    outline: none !important;
    background: transparent !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.96rem !important;
    color: #1F2937 !important;
    padding: 8px 10px 8px 0 !important;
    box-shadow: none !important;
}

.tours-filter-section .packages-search-input::placeholder {
    color: #9CA3AF !important;
    font-weight: 400 !important;
}

.tours-filter-section .packages-search-submit-btn {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%) !important;
    color: #042621 !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.92rem !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 10px 24px !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3) !important;
    position: static !important;
    transform: none !important;
}

.tours-filter-section .packages-search-submit-btn:hover {
    background: linear-gradient(135deg, #FBBF24 0%, #EA580C 100%) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.42) !important;
}

.tours-filter-section .packages-search-submit-btn span,
.tours-filter-section .packages-search-submit-btn i {
    color: #042621 !important;
    font-weight: 700 !important;
}

.tours-filter-section .clear-search-btn {
    position: static !important;
    transform: none !important;
    margin-right: 8px !important;
    margin-left: 4px !important;
    flex-shrink: 0 !important;
    width: 24px !important;
    height: 24px !important;
    border-radius: 50% !important;
    background: rgba(148, 163, 184, 0.25) !important;
    color: #475569 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.75rem !important;
    cursor: pointer !important;
    border: none !important;
    transition: all 0.2s ease !important;
}

.tours-filter-section .clear-search-btn:hover {
    background: rgba(15, 23, 42, 0.15) !important;
    color: #0F172A !important;
    transform: scale(1.1) !important;
}

/* Responsive Breakpoints for Hero Banners */
@media (max-width: 1200px) and (min-width: 993px) {
    .tours-hero-section,
    .page-hero-banner,
    .reviews-hero-section,
    .gallery-hero-section,
    .about-hero-section,
    .contact-hero-section {
        min-height: 460px !important;
        height: 460px !important;
        padding: 105px 24px 45px !important;
        display: flex !important;
        align-items: center !important;
    }
    .tours-hero-content,
    .page-hero-content {
        max-width: 500px !important;
    }
    .tours-hero-title,
    .page-hero-title {
        font-size: 2.15rem !important;
    }
    .tours-hero-tagline,
    .page-hero-tagline {
        font-size: 1.15rem !important;
    }
    .tours-hero-desc,
    .page-hero-desc {
        font-size: 0.9rem !important;
        max-width: 440px !important;
        margin: 0 0 16px 0 !important;
    }
}

@media (max-width: 992px) {
    .tours-hero-section,
    .page-hero-banner,
    .reviews-hero-section,
    .gallery-hero-section,
    .about-hero-section,
    .contact-hero-section {
        min-height: 400px !important;
        height: 400px !important;
        padding: 88px 20px 34px !important;
        background-position: right center !important;
        display: flex !important;
        align-items: center !important;
    }
    .tours-hero-content,
    .page-hero-content {
        max-width: 420px !important;
    }
    .tours-hero-title,
    .page-hero-title {
        font-size: 1.95rem !important;
    }
    .tours-hero-tagline,
    .page-hero-tagline {
        font-size: 1.1rem !important;
    }
    .tours-hero-desc,
    .page-hero-desc {
        font-size: 0.88rem !important;
        max-width: 380px !important;
        margin: 0 0 15px 0 !important;
    }
}

@media (max-width: 768px) {
    .tours-hero-section,
    .page-hero-banner,
    .reviews-hero-section,
    .gallery-hero-section,
    .about-hero-section,
    .contact-hero-section {
        min-height: 380px !important;
        height: 380px !important;
        padding: 78px 18px 24px !important;
        background-position: right center !important;
        background-size: cover !important;
        display: flex !important;
        align-items: center !important;
    }
    
    /* Load Responsive Mobile-Composed WebP Hero Assets */
    .hero-section {
        background-image: url('../images/before-hero-video-mobile.webp') !important;
    }
    .tours-hero-section,
    .page-hero-banner.hero-tours {
        background-image: url('../images/hero-tours-mobile.webp?v=2') !important;
    }
    .reviews-hero-section,
    .page-hero-banner.hero-reviews {
        background-image: url('../images/hero-reviews-mobile.webp?v=2') !important;
    }
    .gallery-hero-section,
    .page-hero-banner.hero-gallery {
        background-image: url('../images/hero-gallery-mobile.webp?v=2') !important;
    }
    .about-hero-section,
    .page-hero-banner.hero-aboutus {
        background-image: url('../images/hero-aboutus-mobile.webp?v=2') !important;
    }
    .contact-hero-section,
    .page-hero-banner.hero-contactus {
        background-image: url('../images/hero-contactus-mobile.webp?v=2') !important;
    }

    .tours-hero-content,
    .page-hero-content {
        max-width: 270px !important;
    }
    .tours-hero-overtitle-line,
    .page-hero-overtitle-line {
        width: 18px !important;
    }
    .tours-hero-overtitle-text,
    .page-hero-overtitle-text {
        font-size: 0.72rem !important;
        letter-spacing: 1.6px !important;
    }
    .tours-hero-title,
    .page-hero-title {
        font-size: 1.6rem !important;
        line-height: 1.2 !important;
        margin: 3px 0 5px 0 !important;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95), 0 4px 18px rgba(0, 0, 0, 0.8) !important;
    }
    .tours-hero-tagline,
    .page-hero-tagline {
        font-size: 1.05rem !important;
        margin-bottom: 8px !important;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.95) !important;
    }
    .tours-hero-desc,
    .page-hero-desc {
        font-size: 0.84rem !important;
        line-height: 1.4 !important;
        max-width: 260px !important;
        margin: 0 0 14px 0 !important;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.95) !important;
    }
    .tours-hero-btn,
    .page-hero-btn {
        padding: 9px 20px !important;
        font-size: 0.84rem !important;
    }
    .tours-filter-section {
        scroll-margin-top: 90px !important;
        padding: 48px 16px 28px !important;
    }
    .tours-filter-section .filter-tabs,
    .filter-tabs {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-behavior: smooth !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        padding: 12px 16px 18px 16px !important;
        margin: 6px -16px 20px -16px !important;
        width: calc(100% + 32px) !important;
        max-width: calc(100% + 32px) !important;
        justify-content: flex-start !important;
        align-items: center !important;
        gap: 8px !important;
    }
    .tours-filter-section .filter-tabs::-webkit-scrollbar,
    .filter-tabs::-webkit-scrollbar {
        display: none !important;
    }
    .tours-filter-section .tab-btn,
    .filter-tabs .tab-btn {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        padding: 8px 16px !important;
        font-size: 0.84rem !important;
    }
    .tours-filter-section .packages-search-wrapper {
        padding: 4px 5px 4px 14px !important;
        max-width: 100% !important;
    }
    .tours-filter-section .search-icon {
        font-size: 0.95rem !important;
        margin-right: 8px !important;
    }
    .tours-filter-section .packages-search-input {
        font-size: 0.88rem !important;
        padding: 6px 6px 6px 0 !important;
    }
    .tours-filter-section .clear-search-btn {
        position: static !important;
        transform: none !important;
        margin-right: 6px !important;
        margin-left: 2px !important;
        width: 22px !important;
        height: 22px !important;
        font-size: 0.7rem !important;
    }
    .tours-filter-section .packages-search-submit-btn {
        padding: 8px 16px !important;
        font-size: 0.82rem !important;
        border-radius: 30px !important;
        gap: 6px !important;
    }
}

@media (max-width: 480px) {
    .tours-hero-section,
    .page-hero-banner,
    .reviews-hero-section,
    .gallery-hero-section,
    .about-hero-section,
    .contact-hero-section {
        min-height: 360px !important;
        padding: 76px 16px 20px !important;
        background-position: right center !important;
        background-size: cover !important;
        display: flex !important;
        align-items: center !important;
    }
    .tours-hero-content,
    .page-hero-content {
        max-width: 230px !important;
    }
    .tours-hero-overtitle-text,
    .page-hero-overtitle-text {
        font-size: 0.68rem !important;
        letter-spacing: 1.4px !important;
    }
    .tours-hero-title,
    .page-hero-title {
        font-size: 1.45rem !important;
        line-height: 1.18 !important;
    }
    .tours-hero-tagline,
    .page-hero-tagline {
        font-size: 0.92rem !important;
        margin-bottom: 6px !important;
    }
    .tours-hero-desc,
    .page-hero-desc {
        font-size: 0.78rem !important;
        line-height: 1.38 !important;
        max-width: 220px !important;
        margin: 0 0 12px 0 !important;
    }
    .tours-hero-btn,
    .page-hero-btn {
        padding: 8px 18px !important;
        font-size: 0.8rem !important;
    }
    .tours-filter-section {
        scroll-margin-top: 85px !important;
        padding: 42px 12px 24px !important;
    }
    .tours-filter-section .filter-tabs,
    .filter-tabs {
        padding: 12px 12px 18px 12px !important;
        margin: 6px -12px 16px -12px !important;
        width: calc(100% + 24px) !important;
        max-width: calc(100% + 24px) !important;
        gap: 7px !important;
    }
    .tours-filter-section .tab-btn,
    .filter-tabs .tab-btn {
        padding: 7px 14px !important;
        font-size: 0.8rem !important;
    }
    .tours-filter-section .packages-search-wrapper {
        padding: 4px 4px 4px 12px !important;
    }
    .tours-filter-section .search-icon {
        font-size: 0.88rem !important;
        margin-right: 6px !important;
    }
    .tours-filter-section .packages-search-input {
        font-size: 0.82rem !important;
    }
    .tours-filter-section .clear-search-btn {
        width: 20px !important;
        height: 20px !important;
        font-size: 0.65rem !important;
        margin-right: 5px !important;
    }
    .tours-filter-section .packages-search-submit-btn {
        padding: 7px 12px !important;
        font-size: 0.78rem !important;
        gap: 4px !important;
    }
    .tours-filter-section .packages-search-submit-btn span {
        font-size: 0.78rem !important;
    }
}

@media (max-width: 375px) {
    .tours-hero-content,
    .page-hero-content {
        max-width: 215px !important;
    }
    .tours-hero-title,
    .page-hero-title {
        font-size: 1.35rem !important;
    }
    .tours-hero-desc,
    .page-hero-desc {
        max-width: 205px !important;
        font-size: 0.75rem !important;
    }
}











