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

:root {
    /* ═══════════════════════════════════════════════
       KINGHILLS TRAVELS — Brand Design Tokens
       Emerald & Gold Premium Travel Identity
       ═══════════════════════════════════════════════ */

    /* Color Palette */
    --primary: #064e3b;         /* Deep Emerald Green */
    --primary-light: #059669;   /* Emerald Green */
    --primary-dark: #022c22;    /* Darkest Emerald */
    --accent: #d97706;          /* Royal Gold */
    --accent-light: #fbbf24;    /* Light Amber Gold */
    --accent-dark: #b45309;     /* Deep Gold */
    
    /* Neutral Tones */
    --bg-main: #f8fafc;         /* Premium Slate Light Off-White */
    --bg-card: #ffffff;         /* Card Background White */
    --bg-dark: #0f172a;         /* Deep Slate Dark */
    --bg-dark-light: #1e293b;   /* Charcoal Secondary Dark */
    --text-main: #1e293b;       /* Primary Text */
    --text-muted: #64748b;      /* Muted secondary text */
    --text-light: #f1f5f9;      /* Light text on dark bg */
    --text-white: #ffffff;
    
    /* Typography — Distinctive Premium Pairing */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'DM Sans', 'Segoe UI', system-ui, sans-serif;

    /* Spacing System (4px grid) */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    
    /* Elevation Shadows (Layered Depth) */
    --shadow-xs: 0 1px 2px rgba(6, 78, 59, 0.03);
    --shadow-sm: 0 2px 4px rgba(6, 78, 59, 0.04), 0 1px 2px rgba(6, 78, 59, 0.02);
    --shadow-md: 0 10px 15px -3px rgba(6, 78, 59, 0.08), 0 4px 6px -2px rgba(6, 78, 59, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(6, 78, 59, 0.1), 0 10px 10px -5px rgba(6, 78, 59, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(6, 78, 59, 0.15), 0 12px 24px -8px rgba(6, 78, 59, 0.08);
    --shadow-gold: 0 10px 15px -3px rgba(217, 119, 6, 0.15), 0 4px 8px -2px rgba(217, 119, 6, 0.08);
    --shadow-glow: 0 0 30px rgba(5, 150, 105, 0.15);

    /* Border Radius System */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Animation Tokens */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --duration-fast: 200ms;
    --duration-normal: 300ms;
    --duration-slow: 500ms;
    --duration-slower: 800ms;

    --transition: all 0.3s var(--ease-smooth);
    --transition-fast: all 0.2s var(--ease-smooth);
    --transition-slow: all 0.5s var(--ease-out-expo);
}

/* ═══════════════════════════════════════════════
   ANIMATION KEYFRAME LIBRARY
   GPU-Accelerated, Performance-First
   ═══════════════════════════════════════════════ */

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

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

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.95); }
    100% { transform: scale(1); opacity: 1; }
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

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

@keyframes breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.015); }
}

@keyframes scrollChevron {
    0%, 100% { opacity: 0.4; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(8px); }
}

@keyframes slideInToast {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutToast {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(120%); opacity: 0; }
}

@keyframes confettiFall {
    0% { transform: translateY(-100%) rotate(0deg); opacity: 1; }
    100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

@keyframes badgePop {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); }
}

@keyframes underlineSlide {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

@keyframes socialProofSlideIn {
    from { transform: translateY(100%) translateX(-20px); opacity: 0; }
    to { transform: translateY(0) translateX(0); opacity: 1; }
}

@keyframes socialProofSlideOut {
    from { transform: translateY(0); opacity: 1; }
    to { transform: translateY(100%); opacity: 0; }
}

/* Scroll Reveal — Hidden state for elements to be revealed */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--duration-slower) var(--ease-out-expo),
                transform var(--duration-slower) var(--ease-out-expo);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity var(--duration-slower) var(--ease-out-expo),
                transform var(--duration-slower) var(--ease-out-expo);
}

.scroll-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity var(--duration-slower) var(--ease-out-expo),
                transform var(--duration-slower) var(--ease-out-expo);
}

.scroll-reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delay utility classes */
.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }
.delay-3 { transition-delay: 300ms; }
.delay-4 { transition-delay: 400ms; }
.delay-5 { transition-delay: 500ms; }

/* Skeleton Shimmer Loading */
.skeleton {
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
    border-radius: var(--radius-sm);
}

/* Prefers Reduced Motion — Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .scroll-reveal,
    .scroll-reveal-left,
    .scroll-reveal-scale {
        opacity: 1;
        transform: none;
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button, input, select, textarea {
    font-family: inherit;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

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

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--text-white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(6, 78, 59, 0.3);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    color: var(--bg-dark);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(217, 119, 6, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--text-white);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    background: rgba(217, 119, 6, 0.1);
    color: var(--accent-dark);
}

/* Header & Glassmorphic Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(6, 78, 59, 0.05);
}

.header.scrolled .nav-link {
    color: var(--text-main);
}

.header.scrolled .logo-text {
    color: var(--primary);
}

.header.scrolled .logo-gold {
    color: var(--accent);
}

.header.scrolled .nav-link:hover::after, .header.scrolled .nav-link.active::after {
    background: var(--primary-light);
}


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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
}

.logo-icon {
    font-size: 2rem;
    line-height: 1;
}

.logo-text {
    color: var(--text-white);
    letter-spacing: -0.5px;
    transition: var(--transition);
}

.logo-gold {
    color: var(--accent-light);
    transition: var(--transition);
}

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

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-white);
    position: relative;
    padding: 8px 0;
}

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

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


.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-icon-btn {
    background: transparent;
    border: none;
    color: inherit;
    font-size: 1.4rem;
    cursor: pointer;
    position: relative;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.header.scrolled .cart-icon-btn {
    color: var(--primary);
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 2px var(--bg-card);
}

/* Mobile Nav Toggle */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 6px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2.5px;
    background-color: currentColor;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(2, 44, 34, 0.7) 0%, rgba(15, 23, 42, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-white);
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--accent-light), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

/* Glassmorphic Search Widget */
.search-widget {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 16px;
    align-items: flex-end;
    margin-top: 20px;
}

.search-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.search-field label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.8);
}

.search-field select, .search-field input {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 12px 16px;
    color: var(--text-white);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
    width: 100%;
}

.search-field select option {
    background: var(--bg-dark);
    color: var(--text-light);
}

.search-field select:focus, .search-field input:focus {
    border-color: var(--accent-light);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.3);
}

.search-widget button {
    height: 48px;
    padding: 0 30px;
}

/* Section Header styling */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header h2 span {
    color: var(--primary-light);
}

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

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

/* Tour Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.category-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(6, 78, 59, 0.03);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(6, 78, 59, 0.1);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: rgba(6, 78, 59, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background: var(--primary);
    color: var(--text-white);
    transform: rotateY(180deg);
}

.category-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

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

/* Packages Grid & Cards */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(6, 78, 59, 0.03);
    transition: var(--transition);
}

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

.package-img-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.package-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.package-card:hover .package-img {
    transform: scale(1.1);
}

.package-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: white;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
}

.package-duration {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(4px);
    color: white;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.package-content {
    padding: 20px;
}

.package-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--accent);
    font-weight: 600;
}

.package-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.package-highlights {
    list-style: none;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.package-highlight {
    background: rgba(6, 78, 59, 0.05);
    color: var(--primary);
    padding: 4px 10px;
    font-size: 0.75rem;
    border-radius: 4px;
    font-weight: 500;
}

.package-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(6, 78, 59, 0.05);
}

.package-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.price-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-light);
}

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

/* Stats Dashboard Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--text-white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-light);
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Interactive Testimonial Slider */
.slider-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    padding: 0 40px;
    box-sizing: border-box;
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 50px;
    box-shadow: var(--shadow-md);
    border-bottom: 4px solid var(--accent);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 8rem;
    font-family: Georgia, serif;
    color: rgba(6, 78, 59, 0.05);
    line-height: 1;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: #1e293b;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(6, 78, 59, 0.1);
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(6, 78, 59, 0.1);
    background: var(--bg-card);
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(6, 78, 59, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 50px;
}

/* ═══════════════════════════════════════════════
   PREMIUM FOOTER — Cinematic Dark Gradient
   ═══════════════════════════════════════════════ */
.footer {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #050b14 100%);
    color: var(--text-light);
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary-light));
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-size: 1.35rem;
    margin-bottom: 28px;
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 36px;
    height: 2px;
    background: var(--accent);
}

.footer-desc {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 14px;
    margin-top: 24px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-link:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.25);
    border-color: var(--accent);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links li a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--accent-light);
    transform: translateX(6px);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info span {
    color: var(--accent-light);
    flex-shrink: 0;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.newsletter-form input {
    flex: 1;
    padding: 13px 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    color: white;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-form input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    font-size: 0.88rem;
    flex-wrap: wrap;
    gap: 16px;
}

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

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Marketplace Global Layout */
.marketplace-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

/* Marketplace Sidebar Filters */
.filter-sidebar {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(6, 78, 59, 0.03);
    position: sticky;
    top: 100px;
}

.filter-section {
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f1f5f9;
}

.filter-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.filter-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.search-box {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 12px 16px;
    padding-right: 40px;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    outline: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(6, 78, 59, 0.1);
}

.search-icon-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 1.1rem;
    color: var(--text-muted);
    cursor: pointer;
}

.category-pills {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
}

.category-pill {
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-pill:hover {
    background: rgba(6, 78, 59, 0.04);
    color: var(--primary);
}

.category-pill.active {
    background: var(--primary);
    color: white;
}

.category-count {
    background: rgba(6, 78, 59, 0.1);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
}

.category-pill.active .category-count {
    background: rgba(255,255,255,0.2);
    color: white;
}

/* Destination Specialties Selector Bar */
.destination-bar-container {
    overflow-x: auto;
    margin-bottom: 40px;
    scrollbar-width: none; /* Hide standard Firefox scrollbar */
}
.destination-bar-container::-webkit-scrollbar {
    display: none; /* Hide Chrome/Safari scrollbar */
}

.destination-bar {
    display: flex;
    gap: 16px;
    list-style: none;
    padding: 4px;
}

.destination-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(6, 78, 59, 0.02);
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.destination-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(6, 78, 59, 0.1);
}

.destination-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    box-shadow: var(--shadow-lg);
}

.destination-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.destination-name {
    font-size: 0.95rem;
    font-weight: 700;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(6, 78, 59, 0.03);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.product-img-container {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f1f5f9;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-label {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.product-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
    letter-spacing: 0.05em;
}

.package-title {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text);
    line-height: 1.3;
}

.product-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-light);
}

/* Slide-out Cart Drawer */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100%;
    height: 100%;
    background: var(--bg-card);
    z-index: 2001;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.cart-overlay.open .cart-drawer {
    transform: translateX(0);
}

.cart-header {
    padding: 24px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.3rem;
    color: var(--primary);
}

.close-cart-btn {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.close-cart-btn:hover {
    color: var(--primary);
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-empty-message {
    text-align: center;
    color: var(--text-muted);
    margin: auto;
}

.cart-empty-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
    color: rgba(6, 78, 59, 0.1);
}

.cart-item {
    display: flex;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.cart-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    background: #f1f5f9;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.cart-item-price {
    font-weight: 700;
    color: var(--primary-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
}

.qty-btn {
    background: transparent;
    border: none;
    width: 28px;
    height: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.qty-btn:hover {
    color: var(--primary);
    background: #f8fafc;
}

.qty-number {
    width: 30px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
}

.remove-item-btn {
    background: transparent;
    border: none;
    color: #ef4444;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.remove-item-btn:hover {
    text-decoration: underline;
}

.cart-summary {
    padding: 24px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.cart-summary-row.total {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    border-top: 1px solid #e2e8f0;
    padding-top: 16px;
}

.cart-coupon-field {
    display: flex;
    gap: 8px;
}

.cart-coupon-field input {
    flex-grow: 1;
    padding: 10px 14px;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    outline: none;
}

.cart-coupon-field input:focus {
    border-color: var(--primary);
}

/* Modal Popup Framework */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
}

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

.modal-content {
    background: var(--bg-card);
    width: 100%;
    max-width: 650px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.modal-overlay.open .modal-content {
    transform: scale(1);
}

.close-modal-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(15, 23, 42, 0.05);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.3rem;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.close-modal-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.modal-body {
    padding: 40px;
}

/* Success Popup Details */
.success-popup {
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-radius: 50%;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.success-popup h3 {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.success-popup p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Media Queries (Responsive Design) */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .packages-grid, .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .search-widget {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .search-widget button {
        grid-column: span 2;
    }
    
    .marketplace-layout {
        grid-template-columns: 1fr;
    }
    
    .filter-sidebar {
        position: static;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .nav-links {
        display: none; /* Will be toggled by JS on mobile */
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial-card {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .packages-grid, .products-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .search-widget {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .search-widget button {
        grid-column: span 1;
    }
}

/* ----------------------------------------------------
   Reels Section & Interactive Reels Player
   ---------------------------------------------------- */
.reels-grid {
    display: flex;
    overflow-x: auto;
    gap: 24px;
    margin-top: 40px;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.reels-grid::-webkit-scrollbar {
    display: none;
}

.reel-card {
    position: relative;
    min-width: 210px;
    max-width: 240px;
    aspect-ratio: 9/16;
    background: #000;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    scroll-snap-align: center;
    flex-shrink: 0;
}

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

.reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: var(--transition);
}

.reel-card:hover .reel-video {
    opacity: 1;
    transform: scale(1.05);
}

.reel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(0deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0) 100%);
    color: white;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 5;
}

.reel-user {
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.reel-caption {
    font-size: 0.8rem;
    opacity: 0.9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.reel-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(6, 78, 59, 0.4);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.2);
    opacity: 0;
    z-index: 6;
    transition: var(--transition);
}

.reel-card:hover .reel-play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Fullscreen Reels Modal Player */
.reels-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.reels-player-container {
    background: #000;
    width: 100%;
    max-width: 850px;
    height: 90vh;
    max-height: 800px;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 340px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255,255,255,0.1);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.reels-modal-overlay.open .reels-player-container {
    transform: scale(1);
}

.reels-video-panel {
    position: relative;
    background: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.reels-modal-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.reels-info-panel {
    background: #0f172a;
    color: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    border-left: 1px solid rgba(255,255,255,0.05);
}

.reels-panel-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.reels-user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--accent);
}

.reels-user-name {
    font-size: 1rem;
    font-weight: 700;
}

.reels-caption-box {
    margin-top: 20px;
    flex-grow: 1;
}

.reels-caption-text {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.reels-tags {
    margin-top: 10px;
    color: var(--accent-light);
    font-weight: 600;
    font-size: 0.85rem;
}

.reels-interaction-row {
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: auto;
}

.reels-btn {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    transition: var(--transition);
}

.reels-btn span {
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.8;
}

.reels-btn:hover {
    color: var(--accent-light);
}

.reels-btn.like-btn.liked {
    color: #ef4444 !important;
}

.reels-close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255,255,255,0.1);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.reels-close-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

@media (max-width: 1024px) {
    .reels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .reels-grid {
        grid-template-columns: 1fr;
    }
    .reels-player-container {
        grid-template-columns: 1fr;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
    }
    .reels-info-panel {
        display: none; /* Hide side panel on mobile for optimal video size */
    }
}

/* ═══════════════════════════════════════════════
   FOXICO PANORAMIC CAROUSEL — Filmstrip Layout
   Full image visible, cards at bottom
   ═══════════════════════════════════════════════ */
.foxico-container {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    max-height: 800px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    color: white;
    transition: background-image 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Left-side gradient only — keeps right side of image visible */
.foxico-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, rgba(5, 11, 20, 0.92) 0%, rgba(5, 11, 20, 0.7) 60%, transparent 100%);
    z-index: 1;
}

/* Subtle bottom gradient for card strip readability */
.foxico-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 220px;
    background: linear-gradient(to top, rgba(5, 11, 20, 0.9) 0%, rgba(5, 11, 20, 0.4) 60%, transparent 100%);
    z-index: 1;
}

.foxico-content-grid {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    padding-bottom: 0;
}

/* Text info — positioned left, vertically centered */
.foxico-info {
    max-width: 560px;
    padding-bottom: 30px;
}

.foxico-info h2 {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 16px;
    text-transform: uppercase;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.75) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.foxico-info p {
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    max-width: 480px;
}

/* ── Card Filmstrip — Anchored to bottom ── */
.foxico-cards-deck {
    display: flex;
    gap: 14px;
    padding: 16px 0 28px;
    overflow-x: auto;
    scrollbar-width: none;
    position: relative;
    z-index: 3;
}

.foxico-cards-deck::-webkit-scrollbar {
    display: none;
}

.foxico-deck-card {
    position: relative;
    width: 155px;
    min-width: 155px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: #000;
}

.foxico-deck-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 2;
}

.foxico-deck-card:hover {
    transform: translateY(-6px) scale(1.04);
    border-color: var(--accent-light);
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.3);
}

.foxico-deck-card.active {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--accent), 0 8px 24px rgba(217, 119, 6, 0.25);
    transform: translateY(-4px);
}

.foxico-deck-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: var(--transition);
}

.foxico-deck-card:hover img,
.foxico-deck-card.active img {
    opacity: 1;
}

.foxico-deck-details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 8px 10px;
    z-index: 3;
    color: white;
}

.foxico-deck-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.foxico-deck-rating {
    font-size: 0.65rem;
    color: var(--accent-light);
    font-weight: 600;
}

.foxico-deck-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    font-size: 0.6rem;
    background: rgba(6, 78, 59, 0.85);
    color: white;
    padding: 2px 7px;
    border-radius: 4px;
    font-weight: 700;
    backdrop-filter: blur(4px);
}

/* ── Nav Controls — Inline with Explore button ── */
.foxico-controls {
    display: flex;
    gap: 10px;
}

.foxico-ctrl-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.foxico-ctrl-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-dark);
    transform: scale(1.05);
}

/* Glassmorphic Slide-up Packages Panel */
.packages-slideup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    z-index: 4500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
}

.packages-slideup-overlay.open {
    opacity: 1;
    visibility: visible;
}

.packages-slideup-container {
    width: 100%;
    height: 75vh;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-top: 4px solid var(--accent);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    box-shadow: 0 -20px 40px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    display: flex;
    flex-direction: column;
}

.packages-slideup-overlay.open .packages-slideup-container {
    transform: translateY(0);
}

.packages-panel-header {
    padding: 30px 40px;
    border-bottom: 1px solid rgba(6, 78, 59, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.packages-panel-header h3 {
    font-size: 2rem;
    color: var(--primary-dark);
}

.packages-panel-header h3 span {
    color: var(--primary-light);
}

.packages-panel-close {
    background: rgba(6, 78, 59, 0.05);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.packages-panel-close:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.packages-panel-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 40px;
}

.packages-panel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.slideup-package-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: 0 10px 15px -3px rgba(6, 78, 59, 0.05);
    border: 1px solid rgba(6,78,59,0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
}

.slideup-package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(6,78,59,0.15);
}

.slideup-package-tag {
    align-self: flex-start;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-light);
    background: rgba(5,150,105,0.08);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.slideup-package-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.slideup-package-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 500;
}

.slideup-package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px dashed #f1f5f9;
}

.slideup-package-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-light);
}

@media (max-width: 1024px) {
    .foxico-container {
        height: 70vh;
        min-height: 500px;
    }
    .foxico-info h2 {
        font-size: 3.5rem;
    }
    .foxico-info p {
        font-size: 0.95rem;
    }
    .packages-panel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .foxico-container {
        height: auto;
        min-height: 450px;
        padding-top: 100px;
    }
    .foxico-container::before {
        width: 100%;
        background: rgba(5, 11, 20, 0.7);
    }
    .foxico-info h2 {
        font-size: 2.8rem;
    }
    .foxico-info p {
        font-size: 0.9rem;
    }
    .foxico-deck-card {
        width: 130px;
        min-width: 130px;
        height: 80px;
    }
    .packages-panel-grid {
        grid-template-columns: 1fr;
    }
}


/* ═══════════════════════════════════════════════
   ENHANCED MICRO-INTERACTIONS (Whimsy Layer)
   ═══════════════════════════════════════════════ */

/* Button Press Effect */
.btn:active {
    transform: scale(0.97) !important;
    transition-duration: 100ms;
}

/* Enhanced Button Hover */
.btn-primary:hover {
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transform: translateY(-1px);
}

.btn-accent:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-1px);
}

/* Card Alive-Feel Hover */
.package-card {
    transition: transform var(--duration-normal) var(--ease-smooth),
                box-shadow var(--duration-normal) var(--ease-smooth);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.category-card {
    transition: transform var(--duration-normal) var(--ease-smooth),
                box-shadow var(--duration-normal) var(--ease-smooth),
                border-color var(--duration-normal) var(--ease-smooth);
}

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

/* Cart Badge Pop Animation */
.cart-count.pop {
    animation: badgePop 0.3s var(--ease-bounce);
}

/* Focus-Visible for Keyboard Navigation */
*:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
    border-radius: var(--radius-xs);
}


/* ═══════════════════════════════════════════════
   MOBILE NAVIGATION DRAWER
   ═══════════════════════════════════════════════ */

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2999;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--duration-normal) var(--ease-smooth),
                visibility var(--duration-normal) var(--ease-smooth);
}

.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background: var(--bg-card);
    z-index: 3000;
    transform: translateX(100%);
    transition: transform var(--duration-slow) var(--ease-spring);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
}

.mobile-nav-overlay.open .mobile-nav-drawer {
    transform: translateX(0);
}

.mobile-nav-header {
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(6, 78, 59, 0.08);
}

.mobile-nav-close {
    background: rgba(6, 78, 59, 0.05);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.mobile-nav-close:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.mobile-nav-links {
    list-style: none;
    padding: 20px 0;
    flex-grow: 1;
}

.mobile-nav-links li {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity var(--duration-normal) var(--ease-smooth),
                transform var(--duration-normal) var(--ease-smooth);
}

.mobile-nav-overlay.open .mobile-nav-links li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav-overlay.open .mobile-nav-links li:nth-child(1) { transition-delay: 100ms; }
.mobile-nav-overlay.open .mobile-nav-links li:nth-child(2) { transition-delay: 150ms; }
.mobile-nav-overlay.open .mobile-nav-links li:nth-child(3) { transition-delay: 200ms; }
.mobile-nav-overlay.open .mobile-nav-links li:nth-child(4) { transition-delay: 250ms; }
.mobile-nav-overlay.open .mobile-nav-links li:nth-child(5) { transition-delay: 300ms; }

.mobile-nav-links a {
    display: block;
    padding: 16px 28px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    border-bottom: 1px solid rgba(6, 78, 59, 0.04);
    transition: var(--transition);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: var(--primary);
    background: rgba(6, 78, 59, 0.03);
    padding-left: 36px;
}

.mobile-nav-cta {
    padding: 24px 28px;
    border-top: 1px solid rgba(6, 78, 59, 0.08);
}

/* Hamburger → X morphing */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}


/* ═══════════════════════════════════════════════
   HERO VIDEO BACKGROUND ENHANCEMENT
   ═══════════════════════════════════════════════ */

.hero {
    position: relative;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
    opacity: 0.7;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(2, 44, 34, 0.55) 0%, 
        rgba(15, 23, 42, 0.75) 60%,
        rgba(15, 23, 42, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Hero Stagger Animation */
.hero-content .badge {
    animation: fadeInDown 0.8s var(--ease-out-expo) 0.2s both;
}

.hero-content h1 {
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.4s both;
}

.hero-content p {
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.6s both;
}

.hero-content .search-widget {
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.8s both;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-indicator-chevron {
    font-size: 1.2rem;
    animation: scrollChevron 2s ease-in-out infinite;
}


/* ═══════════════════════════════════════════════
   STATS COUNTING ANIMATION
   ═══════════════════════════════════════════════ */

.stat-item h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
}

.stat-item.counted h3 {
    animation: bounceIn 0.6s var(--ease-spring) both;
}


/* ═══════════════════════════════════════════════
   FLOATING WHATSAPP CTA BUTTON
   ═══════════════════════════════════════════════ */

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 2000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35), 0 2px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    animation: bounceIn 0.6s var(--ease-spring) 2s both;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-card);
    color: var(--text-main);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}


/* ═══════════════════════════════════════════════
   SOCIAL PROOF TICKER (Bottom-Left)
   ═══════════════════════════════════════════════ */

.social-proof-notification {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 1900;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(6, 78, 59, 0.06);
    max-width: 340px;
    animation: socialProofSlideIn 0.5s var(--ease-spring) both;
}

.social-proof-notification.hiding {
    animation: socialProofSlideOut 0.4s var(--ease-smooth) both;
}

.social-proof-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-light);
    flex-shrink: 0;
}

.social-proof-text {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-main);
}

.social-proof-text strong {
    color: var(--primary);
}

.social-proof-text .sp-time {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.social-proof-close {
    position: absolute;
    top: 6px;
    right: 8px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.85rem;
    padding: 2px;
    opacity: 0.5;
    transition: var(--transition-fast);
}

.social-proof-close:hover {
    opacity: 1;
}


/* ═══════════════════════════════════════════════
   TRUST BADGES BAR
   ═══════════════════════════════════════════════ */

.trust-badges-section {
    background: rgba(6, 78, 59, 0.03);
    border-top: 1px solid rgba(6, 78, 59, 0.06);
    border-bottom: 1px solid rgba(6, 78, 59, 0.06);
    padding: 40px 0;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
}

.trust-badge-icon {
    font-size: 2rem;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(6, 78, 59, 0.06);
}

.trust-badge-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.trust-badge-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.3;
}

@media (max-width: 768px) {
    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}


/* ═══════════════════════════════════════════════
   FAQ ACCORDION SECTION
   ═══════════════════════════════════════════════ */

.faq-section {
    padding: 80px 0;
    background: var(--bg-main);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    border: 1px solid rgba(6, 78, 59, 0.05);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(6, 78, 59, 0.1);
}

.faq-item.active {
    box-shadow: var(--shadow-md);
    border-color: rgba(6, 78, 59, 0.12);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-body);
    color: var(--primary-dark);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-light);
}

.faq-arrow {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: transform 0.3s var(--ease-smooth);
    flex-shrink: 0;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-smooth);
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
}


/* ═══════════════════════════════════════════════
   TOAST NOTIFICATION SYSTEM
   ═══════════════════════════════════════════════ */

.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    pointer-events: auto;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideInToast 0.4s var(--ease-spring) both;
    max-width: 380px;
}

.toast.toast-exit {
    animation: slideOutToast 0.3s var(--ease-smooth) both;
}

.toast-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}


/* ═══════════════════════════════════════════════
   CONFETTI CELEBRATION
   ═══════════════════════════════════════════════ */

.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10000;
    overflow: hidden;
}

.confetti-piece {
    position: absolute;
    top: -10px;
    width: 10px;
    height: 10px;
    animation: confettiFall 2.5s linear forwards;
    opacity: 0.9;
}

.confetti-piece:nth-child(odd) {
    border-radius: 50%;
}

.confetti-piece:nth-child(even) {
    border-radius: 2px;
}


/* ═══════════════════════════════════════════════
   FILTER TRANSITION ANIMATION
   ═══════════════════════════════════════════════ */

.package-card,
.product-card {
    transition: opacity var(--duration-normal) var(--ease-smooth),
                transform var(--duration-normal) var(--ease-smooth),
                box-shadow var(--duration-normal) var(--ease-smooth);
}

.package-card.filter-hide {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}

.package-card.filter-show {
    animation: fadeInUp 0.4s var(--ease-out-expo) both;
}


/* UI UX Polish for Reels Carousel */
.reels-wrapper {
    position: relative;
    width: 100%;
}

.reels-floating-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--primary);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.reels-floating-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 15px 30px rgba(6, 78, 59, 0.3);
    border-color: var(--primary);
}

.reels-floating-btn.left { left: -24px; }
.reels-floating-btn.right { right: -24px; }

@media (max-width: 768px) {
    .reels-floating-btn { display: none; /* Rely on native swipe on mobile */ }
}

.scroll-progress-bar {
    width: 100%;
    max-width: 250px;
    height: 4px;
    background: #e2e8f0;
    margin: 30px auto 0;
    border-radius: 4px;
    overflow: hidden;
}

.scroll-progress-fill {
    height: 100%;
    width: 16.6%; /* Default for 6 items */
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 4px;
    transition: width 0.15s ease-out;
}
