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

/* ================================================================
   DESIGN SYSTEM — The Tulip Holiday Ultra-Premium
   Inspired by Apple, Airbnb, and luxury travel brands
   ================================================================ */

:root {
    /* Core Palette */
    --black: #050505;
    --dark: #0a0a0a;
    --dark-2: #111111;
    --dark-3: #1a1a1a;
    --dark-4: #222222;
    --white: #ffffff;
    --off-white: #f5f5f7;
    --grey-100: #e8e8ed;
    --grey-200: #d2d2d7;
    --grey-300: #a1a1a6;
    --grey-400: #86868b;
    --grey-500: #6e6e73;

    /* Brand Accents */
    --accent: #c9a96e;           /* Gold — luxury, premium */
    --accent-light: #e8d5a3;
    --accent-glow: rgba(201, 169, 110, 0.3);
    --sky: #4ecdc4;              /* Teal — trust, freshness */
    --coral: #ff6b6b;            /* Coral — urgency, energy */
    --wa-green: #25D366;

    /* Glass */
    --glass: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.08);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-pad: clamp(80px, 10vw, 140px);
    --container-max: 1280px;

    /* Motion */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --duration: 0.5s;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.4);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 40px var(--accent-glow);
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
    background: var(--black);
    color: var(--grey-300);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }

/* ================================================================
   TYPOGRAPHY
   ================================================================ */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    color: var(--white);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--grey-500); }
.text-center { text-align: center; }
.subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--grey-400);
    font-weight: 300;
    max-width: 600px;
    line-height: 1.8;
}

/* ================================================================
   LAYOUT
   ================================================================ */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 clamp(20px, 5vw, 60px); }
.section { padding: var(--section-pad) 0; }
.section-header { margin-bottom: clamp(40px, 5vw, 70px); text-align: center; }
.section-header .subtitle { margin: 20px auto 0; }
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 16px;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 36px;
    border-radius: 60px;
    font-weight: 600; font-size: 0.95rem;
    transition: all var(--duration) var(--ease-out);
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.btn-primary {
    background: var(--accent);
    color: var(--black);
}
.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}
.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
}
.btn-wa {
    background: var(--wa-green);
    color: var(--white);
}
.btn-wa:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}
.btn-sm { padding: 12px 24px; font-size: 0.85rem; }
.btn-lg { padding: 20px 48px; font-size: 1.05rem; }

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 24px 0;
    transition: all 0.4s var(--ease-smooth);
}
.navbar.scrolled {
    padding: 14px 0;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
}
.nav-container {
    max-width: var(--container-max); margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
    display: flex; justify-content: space-between; align-items: center;
}
.logo {
    font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
    color: var(--white); display: flex; align-items: center; gap: 10px;
    letter-spacing: 0.01em;
}
.logo .logo-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: var(--black);
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
    color: var(--grey-300); font-size: 0.9rem; font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--accent);
    transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after { width: 100%; }
.nav-links .btn { padding: 12px 28px; }

.mobile-menu-btn {
    display: none; color: var(--white);
    font-size: 1.4rem; cursor: pointer;
    width: 44px; height: 44px;
    display: none; align-items: center; justify-content: center;
    border-radius: 12px;
    transition: background 0.3s ease;
}
.mobile-menu-btn:hover { background: var(--glass); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
    position: relative; height: 100vh; min-height: 700px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero-media {
    position: absolute; inset: 0; z-index: 0;
}
.hero-media video, .hero-media img {
    width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        180deg,
        rgba(5,5,5,0.3) 0%,
        rgba(5,5,5,0.1) 40%,
        rgba(5,5,5,0.6) 70%,
        rgba(5,5,5,0.95) 100%
    );
    z-index: 1;
}
.hero-content {
    position: relative; z-index: 2;
    text-align: center; max-width: 900px;
    padding: 0 20px;
}
.hero-content h1 { margin-bottom: 24px; }
.hero-content h1 em {
    font-style: italic; color: var(--accent);
}
.hero-content .subtitle { margin: 0 auto 40px; font-size: 1.2rem; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Floating Stats */
.hero-stats {
    position: absolute; bottom: 60px; left: 0; width: 100%;
    z-index: 2; display: flex; justify-content: center;
    gap: clamp(20px, 3vw, 40px); padding: 0 20px;
    flex-wrap: wrap;
}
.stat-pill {
    background: var(--glass); backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 16px 28px; border-radius: 60px;
    display: flex; align-items: center; gap: 12px;
    color: var(--white); font-size: 0.9rem; font-weight: 500;
    transition: all 0.4s var(--ease-out);
}
.stat-pill:hover { background: var(--glass-hover); border-color: var(--accent); }
.stat-pill strong { color: var(--accent); font-size: 1.2rem; font-weight: 700; }

/* ================================================================
   SEARCH BAR
   ================================================================ */
.search-section { position: relative; z-index: 10; margin-top: -50px; margin-bottom: 40px; }
.search-bar {
    background: var(--glass); backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 20px; padding: 20px 28px;
    display: flex; align-items: center; gap: 0;
    max-width: 1000px; margin: 0 auto;
    box-shadow: var(--shadow-lg);
}
.search-field {
    flex: 1; padding: 0 24px;
    border-right: 1px solid var(--glass-border);
}
.search-field:last-of-type { border-right: none; }
.search-field label {
    display: block; font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--grey-500); margin-bottom: 6px;
}
.search-field input, .search-field select {
    width: 100%; border: none; background: transparent;
    color: var(--white); font-family: var(--font-body);
    font-size: 0.95rem; font-weight: 500; outline: none;
    padding: 4px 0;
}
.search-field select option { background: var(--dark-2); color: var(--white); }
.search-bar .btn { border-radius: 14px; padding: 16px 32px; flex-shrink: 0; margin-left: 12px; }

/* Search Results Dropdown */
.search-results {
    background: var(--dark-2); border: 1px solid var(--glass-border);
    border-radius: 16px; padding: 16px; margin-top: 12px;
    max-width: 1000px; margin-left: auto; margin-right: auto;
    box-shadow: var(--shadow-lg);
    max-height: 420px; overflow-y: auto;
}
.search-results h4 { color: var(--grey-400); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; font-family: var(--font-body); }
.search-result-item {
    display: flex; align-items: center; gap: 16px;
    padding: 14px; border-radius: 12px;
    transition: background 0.2s ease; cursor: pointer;
    text-decoration: none; color: inherit;
}
.search-result-item:hover { background: var(--glass-hover); }
.search-result-thumb {
    width: 64px; height: 48px; border-radius: 10px;
    overflow: hidden; flex-shrink: 0;
    background: linear-gradient(135deg, var(--accent), var(--sky));
}
.search-result-thumb img { width: 100%; height: 100%; object-fit: cover; }
.search-result-info { flex: 1; }
.search-result-info h5 { color: var(--white); font-size: 0.95rem; font-weight: 600; margin-bottom: 2px; font-family: var(--font-body); }
.search-result-info span { color: var(--grey-400); font-size: 0.8rem; }
.search-result-price { color: var(--accent); font-weight: 700; font-size: 0.95rem; white-space: nowrap; }
.search-no-results { color: var(--grey-400); text-align: center; padding: 20px; font-size: 0.9rem; }

/* ================================================================
   DESTINATION CARDS — Netflix-style horizontal scroll
   ================================================================ */
.scroll-row {
    display: flex; gap: 24px; overflow-x: auto;
    padding: 20px 0 40px;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none; scrollbar-width: none;
}
.scroll-row::-webkit-scrollbar { display: none; }

.dest-card {
    flex: 0 0 340px; scroll-snap-align: start;
    border-radius: 20px; overflow: hidden;
    position: relative; height: 420px;
    cursor: pointer;
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.dest-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-lg); }
.dest-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}
.dest-card:hover img { transform: scale(1.08); }
.dest-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 28px;
}
.dest-card-badge {
    position: absolute; top: 16px; left: 16px;
    background: var(--accent); color: var(--black);
    padding: 6px 14px; border-radius: 30px;
    font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
}
.dest-card-badge.trending { background: var(--coral); color: var(--white); }
.dest-card-rating {
    position: absolute; top: 16px; right: 16px;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(10px);
    padding: 6px 12px; border-radius: 30px;
    font-size: 0.8rem; color: #ffd700; font-weight: 600;
    display: flex; align-items: center; gap: 4px;
}
.dest-card h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 8px; }
.dest-card-meta {
    display: flex; justify-content: space-between; align-items: center;
    color: var(--grey-300); font-size: 0.85rem;
}
.dest-card-price { color: var(--accent); font-weight: 700; font-size: 1.1rem; }
.dest-card-cta {
    position: absolute; bottom: 28px; right: 28px;
    width: 48px; height: 48px;
    background: var(--accent); color: var(--black);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    opacity: 0; transform: translateY(10px);
    transition: all 0.4s var(--ease-out);
    font-size: 1rem;
}
.dest-card:hover .dest-card-cta { opacity: 1; transform: translateY(0); }

/* ================================================================
   REELS / VIDEO SECTION
   ================================================================ */
.reels-row {
    display: flex; gap: 20px; overflow-x: auto;
    padding: 20px 0 40px;
    -ms-overflow-style: none; scrollbar-width: none;
}
.reels-row::-webkit-scrollbar { display: none; }
.reel-card {
    flex: 0 0 220px; height: 380px;
    border-radius: 20px; overflow: hidden;
    position: relative; cursor: pointer;
    transition: transform 0.4s var(--ease-out);
}
.reel-card:hover { transform: scale(1.03); }
.reel-card img, .reel-card video {
    width: 100%; height: 100%; object-fit: cover;
}
.reel-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 50%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 20px;
}
.reel-play {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 56px; height: 56px;
    background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.1rem;
    transition: all 0.3s ease;
}
.reel-card:hover .reel-play { background: var(--white); color: var(--black); transform: translate(-50%, -50%) scale(1.1); }
.reel-info h4 { font-size: 0.95rem; color: var(--white); margin-top: 6px; font-family: var(--font-body); font-weight: 600; }
.reel-views { font-size: 0.75rem; color: var(--grey-300); display: flex; align-items: center; gap: 4px; }

/* ================================================================
   FEATURE / WHY US GRID
   ================================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.feature-card {
    background: var(--glass); border: 1px solid var(--glass-border);
    border-radius: 20px; padding: 40px 32px;
    transition: all 0.4s var(--ease-out);
    position: relative; overflow: hidden;
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0; transition: opacity 0.4s ease;
}
.feature-card:hover { background: var(--glass-hover); border-color: rgba(201,169,110,0.2); transform: translateY(-4px); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
    width: 56px; height: 56px; border-radius: 16px;
    background: rgba(201, 169, 110, 0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--accent);
    margin-bottom: 24px;
}
.feature-card h3 { font-size: 1.2rem; margin-bottom: 12px; font-family: var(--font-body); font-weight: 600; }
.feature-card p { color: var(--grey-400); font-size: 0.9rem; line-height: 1.7; }

/* ================================================================
   TESTIMONIAL CAROUSEL
   ================================================================ */
.testimonial-track {
    display: flex; gap: 24px; overflow-x: auto;
    padding: 20px 0 40px;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none; scrollbar-width: none;
}
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-card {
    flex: 0 0 400px; scroll-snap-align: start;
    background: var(--glass); border: 1px solid var(--glass-border);
    border-radius: 20px; padding: 36px;
    transition: all 0.4s var(--ease-out);
}
.testimonial-card:hover { border-color: rgba(201,169,110,0.2); }
.testimonial-stars { color: #ffd700; font-size: 0.9rem; margin-bottom: 20px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; color: var(--grey-300); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--sky));
    display: flex; align-items: center; justify-content: center;
    color: var(--black); font-weight: 700; font-size: 1.1rem;
}
.testimonial-name { font-weight: 600; color: var(--white); font-size: 0.95rem; }
.testimonial-trip { font-size: 0.8rem; color: var(--grey-500); }

/* ================================================================
   PACKAGE CARDS (Grid)
   ================================================================ */
.pkg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 28px;
}
.pkg-card {
    background: var(--glass); backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px; overflow: hidden;
    transition: all 0.5s var(--ease-out);
    display: flex; flex-direction: column;
}
.pkg-card:hover { transform: translateY(-8px); border-color: rgba(201,169,110,0.3); box-shadow: var(--shadow-glow); }
.pkg-img { position: relative; height: 240px; overflow: hidden; }
.pkg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.pkg-card:hover .pkg-img img { transform: scale(1.06); }
.pkg-badge {
    position: absolute; top: 14px; left: 14px;
    background: var(--accent); color: var(--black);
    padding: 5px 14px; border-radius: 30px;
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
}
.pkg-badge.urgent { background: var(--coral); color: var(--white); }
.pkg-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.pkg-meta {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 14px; font-size: 0.8rem; color: var(--grey-500);
}
.pkg-meta i { color: var(--accent); margin-right: 5px; }
.pkg-rating { color: #ffd700; }
.pkg-body h3 { margin-bottom: 10px; font-size: 1.3rem; }
.pkg-price { color: var(--accent); font-weight: 700; font-size: 1.2rem; margin-bottom: 12px; }
.pkg-desc { color: var(--grey-400); font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; flex: 1; }
.pkg-highlights {
    margin-bottom: 20px; font-size: 0.85rem;
}
.pkg-highlights li {
    padding: 4px 0; color: var(--grey-400);
    display: flex; align-items: center; gap: 8px;
}
.pkg-highlights li i { color: var(--sky); font-size: 0.75rem; }
.pkg-actions { display: flex; gap: 10px; }
.pkg-actions .btn { flex: 1; justify-content: center; padding: 14px 0; font-size: 0.85rem; }

/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
}
.faq-question {
    width: 100%; padding: 24px 0;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 1.05rem; font-weight: 600; color: var(--white);
    text-align: left; cursor: pointer;
    transition: color 0.3s ease;
}
.faq-question:hover { color: var(--accent); }
.faq-question i { transition: transform 0.3s var(--ease-out); font-size: 0.9rem; color: var(--grey-500); }
.faq-item.active .faq-question i { transform: rotate(45deg); color: var(--accent); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
    color: var(--grey-400); font-size: 0.9rem; line-height: 1.8;
}
.faq-item.active .faq-answer { max-height: 300px; padding-bottom: 24px; }

/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
    border: 1px solid var(--glass-border);
    border-radius: 24px; padding: clamp(40px, 6vw, 80px);
    text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    opacity: 0.3;
}
.cta-banner h2 { position: relative; margin-bottom: 16px; }
.cta-banner .subtitle { position: relative; margin: 0 auto 32px; }
.cta-actions { position: relative; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
    background: var(--black);
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px; margin-bottom: 60px;
}
.footer-brand h2 { font-size: 1.6rem; margin-bottom: 16px; }
.footer-brand p { color: var(--grey-500); max-width: 280px; font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
    width: 42px; height: 42px; border-radius: 12px;
    background: var(--glass); border: 1px solid var(--glass-border);
    display: flex; align-items: center; justify-content: center;
    color: var(--grey-400); font-size: 1rem;
    transition: all 0.3s var(--ease-out);
}
.footer-socials a:hover { background: var(--accent); color: var(--black); border-color: var(--accent); transform: translateY(-3px); }
.footer-col h4 { font-size: 0.95rem; font-family: var(--font-body); font-weight: 600; color: var(--white); margin-bottom: 20px; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: var(--grey-500); font-size: 0.9rem; transition: all 0.3s ease; }
.footer-col a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; color: var(--grey-500); font-size: 0.9rem; }
.footer-contact i { color: var(--accent); margin-top: 4px; }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 24px; color: var(--grey-500); font-size: 0.8rem;
}
.footer-bottom .payments { display: flex; gap: 12px; font-size: 1.4rem; color: var(--grey-500); }

/* ================================================================
   FLOATING FABs
   ================================================================ */
.fab-whatsapp {
    position: fixed; bottom: 28px; right: 28px;
    width: 60px; height: 60px;
    background: var(--wa-green); color: var(--white);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 28px; z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s var(--ease-out);
    animation: pulse-wa 2s infinite;
}
.fab-whatsapp:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6); }
@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.back-to-top {
    position: fixed; bottom: 28px; right: 100px;
    width: 48px; height: 48px;
    background: var(--glass); backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--white); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; z-index: 998;
    opacity: 0; pointer-events: none; transform: translateY(20px);
    transition: all 0.4s var(--ease-out); cursor: pointer;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--accent); color: var(--black); border-color: var(--accent); }

/* ================================================================
   COOKIE CONSENT
   ================================================================ */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--dark-2); border-top: 1px solid var(--glass-border);
    padding: 20px; z-index: 9999;
    display: flex; align-items: center; justify-content: center; gap: 20px;
    font-size: 0.85rem; color: var(--grey-400);
    transform: translateY(100%);
    transition: transform 0.5s var(--ease-out);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner .btn { padding: 10px 24px; font-size: 0.8rem; }

/* ================================================================
   MOBILE STICKY CTA BAR
   ================================================================ */
.mobile-cta-bar {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--dark-2); border-top: 1px solid var(--glass-border);
    padding: 12px 20px; z-index: 998;
    gap: 10px;
    backdrop-filter: blur(20px);
}
.mobile-cta-bar .btn { flex: 1; justify-content: center; padding: 14px 0; font-size: 0.85rem; border-radius: 12px; }

/* ================================================================
   SCROLL ANIMATIONS
   ================================================================ */
.reveal {
    opacity: 0; transform: translateY(50px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Page header for sub-pages */
.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(180deg, var(--dark-2), var(--black));
    text-align: center;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero .subtitle { margin: 0 auto; }

/* Filter sidebar for packages */
.filter-sidebar {
    background: var(--glass); backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px; padding: 32px;
    position: sticky; top: 100px;
}
.filter-group { margin-bottom: 28px; }
.filter-group h4 {
    font-size: 0.85rem; font-weight: 700; color: var(--white);
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 16px; padding-bottom: 10px;
    border-bottom: 1px solid var(--glass-border);
    font-family: var(--font-body);
}
.filter-label {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 10px; cursor: pointer;
    color: var(--grey-400); font-size: 0.9rem;
    transition: color 0.3s ease;
}
.filter-label:hover { color: var(--accent); }
.filter-label input { accent-color: var(--accent); width: 16px; height: 16px; }

/* About page */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; border-radius: 20px; overflow: hidden; }
.about-image img { width: 100%; height: auto; display: block; }
.exp-badge {
    position: absolute; bottom: -20px; right: 20px;
    background: var(--accent); color: var(--black);
    padding: 24px; border-radius: 50%; width: 120px; height: 120px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; font-family: var(--font-display);
    box-shadow: var(--shadow-md);
}
.exp-badge span { font-size: 2.2rem; font-weight: 700; line-height: 1; }
.exp-badge small { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* Contact page */
.contact-grid { display: flex; gap: 60px; }
.contact-info { flex: 1; }
.contact-form-box {
    flex: 1;
    background: var(--glass); backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px; padding: 40px;
}
.contact-card {
    display: flex; gap: 20px; align-items: flex-start;
    background: var(--glass); border: 1px solid var(--glass-border);
    border-radius: 16px; padding: 24px; margin-bottom: 16px;
    transition: all 0.3s var(--ease-out);
}
.contact-card:hover { border-color: rgba(201,169,110,0.3); transform: translateY(-3px); }
.contact-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: rgba(201, 169, 110, 0.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 1.2rem; flex-shrink: 0;
}
.contact-card h4 { color: var(--white); font-size: 1rem; margin-bottom: 4px; font-family: var(--font-body); font-weight: 600; }
.contact-card p, .contact-card a { color: var(--grey-400); font-size: 0.9rem; }
.contact-card a:hover { color: var(--accent); }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--grey-300); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-input {
    width: 100%; padding: 14px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
    border-radius: 12px; color: var(--white);
    font-family: var(--font-body); font-size: 0.95rem;
    transition: all 0.3s ease; outline: none;
}
.form-input:focus { border-color: var(--accent); background: rgba(255,255,255,0.06); box-shadow: 0 0 0 3px var(--accent-glow); }
textarea.form-input { resize: vertical; min-height: 120px; }
select.form-input option { background: var(--dark-2); color: var(--white); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { flex-direction: column; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
        background: rgba(5,5,5,0.98); backdrop-filter: blur(20px);
        flex-direction: column; justify-content: center; align-items: center;
        gap: 32px;
        transform: translateX(100%); opacity: 0;
        transition: all 0.5s var(--ease-out);
    }
    .nav-links.active { transform: translateX(0); opacity: 1; }
    .nav-links a { font-size: 1.3rem; }
    .nav-links a::after { display: none; }
    .mobile-menu-btn { display: flex; }

    .hero-stats { display: none; }

    .search-bar {
        flex-direction: column; border-radius: 16px; padding: 20px; gap: 0;
    }
    .search-field {
        border-right: none; border-bottom: 1px solid var(--glass-border);
        padding: 16px 0;
    }
    .search-field:last-of-type { border-bottom: none; }
    .search-bar .btn { margin-left: 0; margin-top: 12px; width: 100%; justify-content: center; }

    .dest-card { flex: 0 0 280px; height: 360px; }
    .reel-card { flex: 0 0 180px; height: 320px; }
    .testimonial-card { flex: 0 0 320px; }
    .pkg-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; }

    .mobile-cta-bar { display: flex; }
    .fab-whatsapp { bottom: 80px; }
    .back-to-top { bottom: 80px; right: 100px; }
}

@media (max-width: 480px) {
    .dest-card { flex: 0 0 260px; }
    .hero-content h1 { font-size: 2.4rem; }
}
