/* ==========================================================================
   REVIVE TOURISM NETWORK - MASTER CSS STYLESHEET
   100% Faithful Replica, Ultra-Fast, Responsive, and Pixel Perfect
   ========================================================================== */

:root {
    /* Brand Palette */
    --revive-primary: #0a667b;
    --revive-primary-hover: #074e5e;
    --revive-primary-light: #e0f2f5;
    --revive-teal: #12879e;
    --revive-sky: #0ea5e9;
    --revive-ocean-dark: #073b4c;
    --revive-accent-orange: #f97316;
    --revive-accent-yellow: #f59e0b;
    --revive-accent-pink: #ec4899;
    --revive-accent-purple: #8b5cf6;
    --revive-accent-green: #10b981;

    /* Neutrals */
    --revive-bg: #fbfdfe;
    --revive-surface: #ffffff;
    --revive-card-bg: #ffffff;
    --revive-border: #e2e8f0;
    --revive-border-subtle: #edf2f7;
    --revive-text-dark: #1e293b;
    --revive-text-muted: #64748b;
    --revive-text-light: #94a3b8;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-script: 'Caveat', cursive;

    /* Shadows & Transitions */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.03);
    --shadow-md: 0 4px 14px rgba(10, 102, 123, 0.08);
    --shadow-lg: 0 12px 28px rgba(10, 102, 123, 0.12);
    --shadow-hover: 0 16px 36px rgba(10, 102, 123, 0.16);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-sans);
    background-color: var(--revive-bg);
    color: var(--revive-text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

button {
    cursor: pointer;
}

.site-container {
    width: 100%;
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ================= 1. TOP ANNOUNCEMENT BAR (AURORA STYLE) ================= */
.top-announcement-bar.aurora-top-bar {
    background: #0b2230;
    border-bottom: none;
    padding: 9px 0;
    font-size: 0.8125rem;
    color: #e2e8f0;
    font-weight: 500;
    width: 100%;
}

.aurora-top-bar .top-bar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
}

.aurora-top-bar .top-bar-container::-webkit-scrollbar {
    display: none;
}

.aurora-top-bar .top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .top-announcement-bar.aurora-top-bar {
        display: none;
    }
}

/* ================= 13. FLOATING QUICK ACTIONS BAR (STICKY RIGHT) ================= */
.floating-quick-actions {
    position: fixed;
    right: 28px;
    bottom: 35px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}

.quick-action-btn {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.45rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
}

.quick-action-btn:hover {
    transform: scale(1.15) translateY(-3px);
    color: #ffffff;
}

/* 1. Messenger Button */
.btn-messenger {
    background: linear-gradient(135deg, #00B2FF 0%, #006AFF 50%, #A033FF 100%);
    box-shadow: 0 8px 24px rgba(0, 106, 255, 0.35);
}

.btn-messenger:hover {
    box-shadow: 0 12px 28px rgba(0, 106, 255, 0.55);
}

/* 2. WhatsApp Button with Pulse */
.btn-whatsapp-float {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    animation: pulseWaGlow 2.5s infinite;
}

@keyframes pulseWaGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6), 0 8px 24px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0), 0 12px 30px rgba(37, 211, 102, 0.6);
    }
}

/* 3. Scroll to Hero Top Button */
.btn-scroll-hero {
    background: #0ea5b7;
    color: #ffffff;
    font-size: 1.25rem;
    box-shadow: 0 8px 24px rgba(14, 165, 183, 0.35);
    opacity: 0.92;
}

.btn-scroll-hero:hover {
    background: #0891b2;
    opacity: 1;
    box-shadow: 0 12px 28px rgba(14, 165, 183, 0.55);
}

/* Tooltip on hover */
.quick-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    background: #1e293b;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

.quick-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    border-width: 5px 0 5px 5px;
    border-style: solid;
    border-color: transparent transparent transparent #1e293b;
}

.quick-action-btn:hover .quick-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

@media (max-width: 768px) {
    .floating-quick-actions {
        right: 18px;
        bottom: 24px;
        gap: 10px;
    }
    .quick-action-btn {
        width: 46px;
        height: 46px;
        font-size: 1.25rem;
    }
    .quick-tooltip {
        display: none;
    }
}

.aurora-top-bar .top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
}

.aurora-top-bar .top-bar-item i {
    color: #94a3b8;
    font-size: 0.875rem;
}

.aurora-top-bar .top-bar-item .star-filled {
    color: #ffffff;
}

/* ================= 2. SITE HEADER & NAVIGATION (AURORA STYLE) ================= */
.site-header.aurora-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    padding: 12px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Logo */
.revive-logo-wrap {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.revive-brand-img {
    height: 64px;
    width: auto;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.revive-logo-wrap:hover .revive-brand-img {
    transform: scale(1.03);
}

.footer-brand-img {
    height: 58px;
    width: auto;
    object-fit: contain;
    margin-bottom: 14px;
}

/* Aurora Navigation */
.aurora-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.aurora-nav .nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.aurora-nav .nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
    padding: 8px 0;
    position: relative;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.aurora-nav .nav-link:hover {
    color: #0ea5b7;
}

.aurora-nav .nav-link.active {
    color: #0ea5b7;
}

.aurora-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 2.5px;
    background-color: #0ea5b7;
    border-radius: 2px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

/* Aurora CTA Button with Smooth Blinking Pulse Animation */
.btn-plan-trip-aurora {
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    animation: smoothBlinkPulse 2.4s infinite ease-in-out;
}

@keyframes smoothBlinkPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7), 0 4px 15px rgba(255, 71, 87, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(255, 71, 87, 0), 0 6px 22px rgba(255, 71, 87, 0.6);
        transform: scale(1.04);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0), 0 4px 15px rgba(255, 71, 87, 0.4);
        transform: scale(1);
    }
}

/* Shimmer light sweep on button */
.btn-plan-trip-aurora::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(
        60deg,
        rgba(255, 255, 255, 0) 20%,
        rgba(255, 255, 255, 0.45) 50%,
        rgba(255, 255, 255, 0) 80%
    );
    transform: rotate(25deg);
    animation: buttonShimmer 3.2s infinite ease-in-out;
}

@keyframes buttonShimmer {
    0% { left: -60%; }
    30%, 100% { left: 140%; }
}

.btn-plan-trip-aurora:hover {
    background: linear-gradient(135deg, #ff4757, #ee3344);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.6);
    transform: translateY(-2px) scale(1.05);
}

/* Dropdown */
.dropdown-panel {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 10px 0;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--revive-border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 100;
}

.has-dropdown:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    font-size: 0.875rem;
    color: #475569;
}

.dropdown-link:hover {
    background: #f1f9fa;
    color: var(--revive-teal);
}

.dropdown-link i {
    width: 18px;
    color: var(--revive-teal);
}

/* Header Buttons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #0a667b, #0d7c94);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(10, 102, 123, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #074e5e, #0a667b);
    box-shadow: 0 6px 20px rgba(10, 102, 123, 0.35);
    transform: translateY(-1px);
}

.btn-icon-bubble {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 0.75rem;
}

.mobile-toggle-btn {
    display: none;
    background: transparent;
    font-size: 1.4rem;
    color: var(--revive-text-dark);
    padding: 6px;
}

/* ================= 3. FULL SCREEN HERO SLIDER ================= */
.hero-fullscreen-slider {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    height: 750px;
    min-height: 750px;
    max-height: 750px;
    overflow: hidden;
    background: #0b1a20;
}

.hero-slides-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-bg-slide {
    position: absolute;
    inset: -5%;
    width: 110%;
    height: 110%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1);
    transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1), transform 9s ease-out;
}

.hero-bg-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1.08); /* Slow Animated Ken Burns Zoom Effect */
    z-index: 1;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 28, 38, 0.78) 0%, rgba(8, 28, 38, 0.48) 55%, rgba(8, 28, 38, 0.2) 100%);
    z-index: 2;
}

.hero-slide-container {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-slide-content {
    max-width: 720px;
    color: #ffffff;
    padding: 40px 0;
}

/* In-Place Text Rotator Transitions (Fixed Position without overlap) */
.hero-text-rotator {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 36px;
    position: relative;
    width: 100%;
}

.hero-text-block {
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.hero-text-block.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    pointer-events: auto;
}

.hero-script-tag {
    font-family: var(--font-script);
    font-size: 2.3rem;
    color: #ffffff;
    display: block;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-main-title {
    font-family: var(--font-sans);
    font-size: 4.4rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.5px;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 4px 18px rgba(0,0,0,0.45);
}

.hero-action-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    position: relative;
    z-index: 6;
    margin-top: 10px;
}

.btn-hero-explore-tour {
    background: #0ea5b7;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(14, 165, 183, 0.35);
}

.btn-hero-explore-tour:hover {
    background: #0b8291;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 183, 0.5);
    color: #ffffff;
}

/* Contrasting WhatsApp Button */
.btn-hero-whatsapp {
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.wa-icon-glow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #25d366;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.15rem;
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.6);
    transition: transform 0.3s ease;
}

.btn-hero-whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.btn-hero-whatsapp:hover .wa-icon-glow {
    background: #ffffff;
    color: #25d366;
    transform: scale(1.1) rotate(10deg);
}

/* Right Vertical Slider Controls */
.hero-vertical-controls {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.hero-v-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-v-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.hero-v-indicators {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-v-dash {
    width: 3px;
    height: 22px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.hero-v-dash.active {
    height: 38px;
    background: #0ea5b7;
    box-shadow: 0 0 10px #0ea5b7;
}

/* ================= 4. CORE SERVICES CAPSULES (6-CARD FLOATING GLASS GRID) ================= */
.services-capsules-section {
    padding: 0 0 50px;
    position: relative;
    z-index: 10;
    margin-top: -55px; /* Overlaps hero seamlessly */
}

.services-capsules-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.service-capsule-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 22px 14px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 28px rgba(10, 102, 123, 0.08), 0 2px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-capsule-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(14, 165, 183, 0.18);
    border-color: #0ea5b7;
}

.service-capsule-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 14px;
    transition: transform 0.35s ease;
}

.service-capsule-card:hover .service-capsule-icon-wrap {
    transform: scale(1.12);
}

.color-light-blue { background: #e0f2fe; color: #0284c7; }
.color-light-green { background: #dcfce7; color: #16a34a; }
.color-light-orange { background: #ffedd5; color: #ea580c; }
.color-light-purple { background: #ede9fe; color: #7c3aed; }
.color-light-cyan { background: #e0f7fa; color: #00838f; }
.color-light-teal { background: #ccfbf1; color: #0f766e; }

.service-capsule-title {
    font-size: 0.96rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
    line-height: 1.25;
}

.service-capsule-desc {
    font-size: 0.76rem;
    color: #64748b;
    line-height: 1.45;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .services-capsules-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 650px) {
    .services-capsules-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 6px 12px 16px;
        gap: 14px;
        scrollbar-width: none;
    }
    .services-capsules-grid::-webkit-scrollbar {
        display: none;
    }
    .service-capsule-card {
        flex: 0 0 175px;
        scroll-snap-align: start;
    }
}

/* ================= 5. POPULAR DESTINATION WE OFFER FOR ALL (CAROUSEL) ================= */
.popular-offers-section {
    position: relative;
    padding: 65px 0 45px;
    background: #f4fbfd;
    overflow: hidden;
}

.popular-offers-pattern-bg {
    position: absolute;
    inset: 0;
    opacity: 0.045;
    background-image: radial-gradient(#0a667b 1.5px, transparent 1.5px), radial-gradient(#0a667b 1.5px, #f4fbfd 1.5px);
    background-size: 36px 36px;
    background-position: 0 0, 18px 18px;
    pointer-events: none;
}

.popular-offers-container {
    position: relative;
    z-index: 2;
}

.popular-offers-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 30px;
}

.popular-offers-header-left {
    max-width: 720px;
}

.popular-slider-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.popular-slider-controls .slider-arrow-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    color: #103b4d;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.popular-slider-controls .slider-arrow-btn:hover {
    background: #0ea5b7;
    border-color: #0ea5b7;
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(14, 165, 183, 0.35);
}

.popular-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 4px 20px;
}

.popular-cards-slider-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Hide scrollbar Firefox */
    -ms-overflow-style: none; /* IE */
    padding-bottom: 10px;
}

.popular-cards-slider-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.popular-tour-card-slide {
    flex: 0 0 calc(25% - 18px);
    min-width: 290px;
}

@media (max-width: 1200px) {
    .popular-tour-card-slide {
        flex: 0 0 calc(33.333% - 16px);
    }
}

@media (max-width: 900px) {
    .popular-offers-header-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .popular-tour-card-slide {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 600px) {
    .popular-tour-card-slide {
        flex: 0 0 85%;
    }
}

.offers-script-subtitle {
    font-family: var(--font-script);
    font-size: 2.1rem;
    color: #475569;
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

/* ================= 5.5 BEGIN YOUR TRAVEL STORY WITH US ================= */
.begin-story-section {
    position: relative;
    padding: 80px 0 90px;
    background: #f7fcfe;
    overflow: hidden;
}

.begin-story-pattern-bg {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: radial-gradient(#0a667b 1.5px, transparent 1.5px), radial-gradient(#0a667b 1.5px, #f7fcfe 1.5px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    pointer-events: none;
}

.begin-story-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Bento Gallery Mosaic */
.story-bento-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: center;
}

.bento-tall-card {
    height: 420px;
    border-radius: 120px 24px 24px 24px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(10, 102, 123, 0.12);
    border: 4px solid #ffffff;
}

.bento-stacked-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bento-small-card {
    height: 200px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(10, 102, 123, 0.1);
    border: 4px solid #ffffff;
}

.bento-small-card.top-rounded {
    border-radius: 24px 80px 24px 24px;
}

.bento-small-card.bottom-rounded {
    border-radius: 24px 24px 80px 24px;
}

.bento-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-tall-card:hover .bento-img,
.bento-small-card:hover .bento-img {
    transform: scale(1.08);
}

/* Middle Content Column */
.story-content-col {
    padding-left: 10px;
}

.story-script-subtitle {
    font-family: var(--font-script);
    font-size: 2.2rem;
    color: #0b6375;
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.story-main-heading {
    font-family: var(--font-sans);
    font-size: 2.85rem;
    font-weight: 800;
    color: #103b4d;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.8px;
}

.story-lead-desc {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 28px;
}

.story-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.story-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.story-feat-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    background: #e0f2fe;
    color: #0284c7;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.15);
    transition: transform 0.3s ease;
}

.story-feature-item:hover .story-feat-icon-circle {
    transform: scale(1.1) rotate(6deg);
}

.story-feat-icon-circle.color-cyan {
    background: #cffafe;
    color: #0891b2;
}

.story-feat-icon-circle.color-teal {
    background: #ccfbf1;
    color: #0d9488;
}

.story-feat-title {
    font-size: 1.06rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 3px;
}

.story-feat-desc {
    font-size: 0.8125rem;
    color: #64748b;
    line-height: 1.45;
}

.btn-story-learn-more {
    background: #103b4d;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(16, 59, 77, 0.25);
}

.btn-story-learn-more:hover {
    background: #0ea5b7;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 183, 0.4);
}

/* Right Relaxing Traveler */
.story-traveler-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Floating Metrics Counter Bar */
.story-metrics-container {
    position: relative;
    z-index: 5;
    margin-top: 50px;
}

.story-metrics-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 24px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 16px 40px rgba(10, 102, 123, 0.08), 0 2px 6px rgba(0, 0, 0, 0.03);
    border: 1px solid #edf6f9;
}

.story-metric-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.metric-icon-squircle {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.story-metric-item:hover .metric-icon-squircle {
    transform: scale(1.1) rotate(5deg);
}

.icon-purple { background: #f3e8ff; color: #7c3aed; }
.icon-green { background: #dcfce7; color: #16a34a; }
.icon-orange { background: #ffedd5; color: #ea580c; }
.icon-blue { background: #e0f2fe; color: #0284c7; }
.icon-violet { background: #fae8ff; color: #a855f7; }

.metric-text-group {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 1.45rem;
    font-weight: 800;
    color: #103b4d;
    line-height: 1.1;
    margin-bottom: 2px;
}

.metric-title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #334155;
    line-height: 1.2;
}

.metric-sub {
    font-size: 0.6875rem;
    color: #94a3b8;
    font-weight: 500;
    margin-top: 1px;
}

.metric-v-divider {
    width: 1px;
    height: 44px;
    background: #e2e8f0;
    margin: 0 16px;
}

/* ================= 6.5 RECENT GALLERY (SLOW MOVING ORGANIC SHAPES & LIGHTBOX) ================= */
.recent-gallery-section {
    position: relative;
    padding: 80px 0 100px;
    background: #fbfdfe;
    overflow: hidden;
}

.gallery-doodle-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.12;
    z-index: 1;
}

.gallery-doodle-plane {
    position: absolute;
    top: 25%;
    left: 4%;
    font-size: 2.2rem;
    color: #0ea5b7;
    transform: rotate(-25deg);
    animation: flightBob 6s infinite ease-in-out;
}

.gallery-doodle-anchor {
    position: absolute;
    bottom: 12%;
    right: 4%;
    font-size: 2.4rem;
    color: #0ea5b7;
    transform: rotate(15deg);
}

.gallery-doodle-balloon {
    position: absolute;
    bottom: 18%;
    left: 8%;
    font-size: 1.8rem;
    color: #0ea5b7;
}

.recent-gallery-header {
    margin-bottom: 45px;
    position: relative;
    z-index: 2;
}

.gallery-script-subtitle {
    font-family: var(--font-script);
    font-size: 2.2rem;
    color: #0b6375;
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.gallery-main-heading {
    font-family: var(--font-sans);
    font-size: 2.85rem;
    font-weight: 900;
    color: #103b4d;
    letter-spacing: -0.8px;
}

/* Continuous Infinite Moving Viewport */
.gallery-marquee-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 2;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.gallery-marquee-track {
    display: flex;
    align-items: center;
    gap: 22px;
    width: max-content;
}

.gallery-marquee-group {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-shrink: 0;
    animation: infiniteMarqueeLoop 32s linear infinite;
}

.gallery-marquee-viewport:hover .gallery-marquee-group {
    animation-play-state: paused;
}

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

/* Gallery Distinct Custom Shapes with 16px Radius */
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 16px; /* Exactly 16px radius */
    box-shadow: 0 10px 24px rgba(10, 102, 123, 0.1);
    border: 3.5px solid #ffffff;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

.gallery-item:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 16px 36px rgba(14, 165, 183, 0.25);
    border-color: #0ea5b7;
    z-index: 10;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.6s ease;
}

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

/* Shape 1: Squircle Rounded Box */
.shape-squircle {
    width: 270px;
    height: 270px;
    border-radius: 16px;
}

/* Shape 2: Stacked Column */
.gallery-stacked-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-shrink: 0;
}

.shape-rounded-small {
    width: 230px;
    height: 127px;
    border-radius: 16px;
}

/* Shape 3: Tall Centerpiece Pill */
.shape-pill-tall {
    width: 230px;
    height: 360px;
    border-radius: 16px;
}

/* Hover Magnifier Overlay */
.gallery-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 165, 183, 0.35);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* ================= ANIMATED CRUISING RETRO TRAVEL CAMPER BUS (SLOW SMOOTH JOURNEY) ================= */
.gallery-bus-highway-track {
    width: 100%;
    height: 90px;
    position: relative;
    overflow: hidden;
    margin-bottom: 8px;
    border-bottom: none;
    background: transparent;
    pointer-events: none;
}

/* Outer Mover: Drives slowly Left-to-Right in recurring short intervals */
.gallery-retro-bus-mover {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 140px;
    height: auto;
    z-index: 10;
    animation: busDriveLeftToRight 28s linear infinite;
    will-change: transform, left;
}

/* Inner Body: Subtle road engine vibration */
.gallery-retro-bus-body {
    position: relative;
    width: 100%;
    height: auto;
    animation: busEngineVibe 0.7s ease-in-out infinite alternate;
}

.travel-van-vector {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 6px rgba(15, 23, 42, 0.25));
}

/* Wheel rotation animation */
.bus-wheel {
    transform-origin: center;
    animation: rotateBusWheels 2s linear infinite;
}

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

/* Engine Vibration & subtle road bounce */
@keyframes busEngineVibe {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-2.5px); }
}

/* Left to Right Forward Cruise: Slow & Smooth with very short delay before next trip */
@keyframes busDriveLeftToRight {
    0% {
        left: -180px;
        opacity: 0;
    }
    1% {
        left: -180px;
        opacity: 1;
    }
    /* 1% to 94%: Smooth, slow steady drive across the entire width */
    94% {
        left: calc(100% + 60px);
        opacity: 1;
    }
    95% {
        left: calc(100% + 60px);
        opacity: 0;
    }
    /* 95% to 100%: Brief 1.4s rest before the next bus immediately starts from left */
    96% {
        left: -180px;
        opacity: 0;
    }
    100% {
        left: -180px;
        opacity: 0;
    }
}

/* Smoke Puffs from Exhaust */
.bus-exhaust-puff {
    position: absolute;
    bottom: 8px;
    left: -8px;
    width: 8px;
    height: 8px;
    background: rgba(148, 163, 184, 0.5);
    border-radius: 50%;
    opacity: 0;
    animation: exhaustSmoke 1.8s infinite;
}

.puff-2 {
    left: -16px;
    animation-delay: 0.8s;
}

@keyframes exhaustSmoke {
    0% {
        transform: scale(0.6) translate(0, 0);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.2) translate(-16px, -10px);
        opacity: 0;
    }
}

/* Lightbox Modal */
.gallery-lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(11, 26, 32, 0.92);
    backdrop-filter: blur(12px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

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

.lightbox-content-box {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    border: 4px solid rgba(255, 255, 255, 0.9);
    transform: scale(0.9);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-lightbox-modal.active .lightbox-content-box {
    transform: scale(1);
}

.lightbox-active-img {
    max-width: 100%;
    max-height: 85vh;
    display: block;
    object-fit: contain;
}

.lightbox-close-btn {
    position: absolute;
    top: 24px;
    right: 32px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    font-size: 2.2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

/* ================= 6.8 CREATIVE BOOKING & VISA HUB (PREMIUM MODERN CONCIERGE REDESIGN) ================= */
.booking-hub-section {
    position: relative;
    padding: 40px 0 85px;
    background: #f8fafc;
    overflow: hidden;
}

/* Ambient Background Glows */
.hub-ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.hub-ambient-glow.glow-1 {
    top: 0%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(14, 165, 183, 0.12) 0%, transparent 70%);
}

.hub-ambient-glow.glow-2 {
    bottom: 5%;
    right: -5%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
}

.hub-header-badge-row {
    position: relative;
    z-index: 2;
    max-width: 950px;
    margin: 0 auto 28px;
}

.hub-pill-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #e0f2fe 0%, #f0fdfa 100%);
    border: 1px solid rgba(14, 165, 183, 0.25);
    color: #0891b2;
    font-size: 0.76rem;
    font-weight: 800;
    padding: 6px 18px;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(14, 165, 183, 0.12);
    margin-bottom: 12px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.hub-master-heading {
    font-size: 2.35rem;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    line-height: 1.25;
}

@media (max-width: 900px) {
    .hub-master-heading {
        white-space: normal;
        font-size: 1.85rem;
    }
}

.hub-master-sub {
    font-size: 0.92rem;
    color: #64748b;
    font-weight: 500;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Master Concierge Outer Frame */
.hub-concierge-master-wrapper {
    position: relative;
    z-index: 2;
}

/* Segmented Capsule Switcher Bar */
.hub-capsule-switcher {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.hub-capsule-tab {
    background: #ffffff;
    border: 1.5px solid #edf2f7;
    border-radius: 20px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: left;
    position: relative;
}

.hub-capsule-tab:hover {
    transform: translateY(-3px);
    border-color: #0ea5b7;
    box-shadow: 0 10px 24px rgba(14, 165, 183, 0.15);
}

.hub-capsule-tab.active {
    background: linear-gradient(135deg, #103b4d 0%, #0c4a6e 100%);
    border-color: #0284c7;
    box-shadow: 0 12px 30px rgba(16, 59, 77, 0.25);
}

.capsule-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #f0fdfa;
    color: #0ea5b7;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.hub-capsule-tab.active .capsule-icon-wrap {
    background: rgba(255, 255, 255, 0.18);
    color: #38bdf8;
}

.capsule-text-wrap {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.capsule-text-wrap strong {
    font-size: 0.95rem;
    color: #1e293b;
    font-weight: 800;
}

.capsule-text-wrap small {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 2px;
}

.hub-capsule-tab.active .capsule-text-wrap strong {
    color: #ffffff;
}

.hub-capsule-tab.active .capsule-text-wrap small {
    color: #94a3b8;
}

.capsule-mini-tag {
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.tag-green { background: #dcfce7; color: #166534; }
.tag-purple { background: #f3e8ff; color: #6b21a8; }
.tag-orange { background: #ffedd5; color: #c2410c; }

.hub-capsule-tab.active .capsule-mini-tag {
    background: #facc15;
    color: #1e1b4b;
}

/* Main Interactive Booking Workspace */
.hub-workspace-grid {
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid #edf2f7;
    box-shadow: 0 20px 50px rgba(10, 102, 123, 0.07);
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    overflow: hidden;
}

/* Tab Panes Visibility */
.hub-tab-pane {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.hub-tab-pane.active {
    display: block !important;
}

/* Support Views Visibility */
.support-tab-view {
    display: none;
    width: 100%;
    animation: fadeIn 0.4s ease-out;
}

.support-tab-view.active {
    display: block !important;
}

/* Form Workspace */
.hub-form-workspace {
    padding: 40px 44px;
}

.workspace-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f1f5f9;
}

.workspace-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    color: #0ea5b7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.workspace-title {
    font-size: 1.65rem;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.4px;
}

.workspace-trust-badge {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Forms Elements */
.hub-modern-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-full-row {
    display: grid;
    grid-template-columns: 1fr;
}

.modern-field-box {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.modern-label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 6px;
}

.modern-label i {
    color: #0ea5b7;
    font-size: 0.85rem;
}

.modern-input {
    width: 100%;
    padding: 13px 16px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: #1e293b;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    outline: none;
    transition: all 0.25s ease;
}

.modern-input:focus {
    background: #ffffff;
    border-color: #0ea5b7;
    box-shadow: 0 0 0 3.5px rgba(14, 165, 183, 0.15);
}

.modern-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230ea5b7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    cursor: pointer;
}

.modern-input-addon-group {
    position: relative;
    display: flex;
    align-items: center;
}

.addon-wa-pill {
    position: absolute;
    left: 10px;
    background: #22c55e;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    pointer-events: none;
}

.modern-input.has-addon {
    padding-left: 135px;
}

.form-submit-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 8px;
}

.btn-concierge-action {
    background: linear-gradient(135deg, #0ea5b7 0%, #0284c7 100%);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    padding: 15px 32px;
    border-radius: 16px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(14, 165, 183, 0.35);
    transition: all 0.3s ease;
}

.btn-concierge-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(14, 165, 183, 0.5);
    background: linear-gradient(135deg, #0891b2 0%, #0369a1 100%);
}

.submit-note-text {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Right Concierge Column */
.hub-concierge-column {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-left: 1.5px solid #edf2f7;
    padding: 40px 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.concierge-card-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.concierge-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    color: #1e293b;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin-bottom: 20px;
}

.pulse-green-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulseGreenDot 1.8s infinite;
}

.concierge-avatar-hero {
    position: relative;
    margin-bottom: 16px;
}

.concierge-icon-orb {
    width: 80px;
    height: 80px;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.orb-purple { background: #ede9fe; color: #7c3aed; }
.orb-teal { background: #ccfbf1; color: #0d9488; }
.orb-pink { background: #fce7f3; color: #db2777; }

.concierge-verified-tag {
    position: absolute;
    bottom: -6px;
    right: -10px;
    background: #103b4d;
    color: #ffffff;
    font-size: 0.6875rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.concierge-title {
    font-size: 1.45rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 8px;
}

.concierge-sub {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 22px;
    max-width: 290px;
}

/* 3 Step Process */
.concierge-process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 12px 16px;
    margin-bottom: 24px;
    width: 100%;
}

.mini-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #475569;
}

.step-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #0ea5b7;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-arrow {
    font-size: 0.65rem;
    color: #94a3b8;
}

/* Feature List */
.concierge-feature-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
    margin-bottom: 22px;
    width: 100%;
}

.feature-item {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #334155;
    background: #ffffff;
    border: 1px solid #edf2f7;
    padding: 8px 14px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-item i {
    color: #22c55e;
}

.btn-concierge-wa-direct {
    width: 100%;
    background: #22c55e;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 800;
    padding: 13px 20px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(34, 197, 94, 0.35);
    transition: all 0.25s ease;
}

.btn-concierge-wa-direct:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(34, 197, 94, 0.5);
    color: #ffffff;
}

@media (max-width: 992px) {
    .hub-capsule-switcher {
        grid-template-columns: 1fr;
    }
    .hub-workspace-grid {
        grid-template-columns: 1fr;
    }
    .hub-form-workspace {
        padding: 30px 20px;
    }
    .form-dual-grid {
        grid-template-columns: 1fr;
    }
    .modern-input.has-addon {
        padding-left: 125px;
    }
    .form-submit-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 992px) {
    .hub-body-grid {
        grid-template-columns: 1fr;
    }
    .hub-support-column {
        border-left: none;
        border-top: 1px solid #f3e8ff;
    }
    .hub-form-column {
        padding: 32px 24px;
    }
    .hub-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .story-metric-item {
        flex: 0 0 100%;
    }
}

@media (max-width: 1100px) {
    .begin-story-container {
        grid-template-columns: 1fr 1fr;
    }
    .story-traveler-col {
        grid-column: span 2;
        margin-top: 20px;
    }
    .story-traveler-frame {
        max-width: 450px;
        height: 320px;
    }
}

@media (max-width: 768px) {
    .begin-story-container {
        grid-template-columns: 1fr;
    }
    .story-traveler-col {
        grid-column: span 1;
    }
    .story-bento-gallery {
        grid-template-columns: 1fr;
    }
    .bento-tall-card {
        height: 280px;
    }
}

.offers-main-title {
    font-size: 2.85rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.15;
    letter-spacing: -0.8px;
    margin-bottom: 12px;
}

.offers-script-subtitle {
    font-family: var(--font-script);
    font-size: 2.3rem;
    color: #0ea5b7;
    display: block;
    line-height: 1.1;
    margin-bottom: 4px;
}

.offers-main-title.single-line-title {
    white-space: nowrap;
}

@media (max-width: 1200px) {
    .offers-main-title {
        font-size: 2.45rem;
    }
}

@media (max-width: 900px) {
    .offers-main-title.single-line-title {
        white-space: normal;
        font-size: 2.05rem;
    }
}

/* ================= 6. TOUR CATEGORIES CURVED ARC ================= */
.tour-categories-arc-section {
    padding: 70px 0 90px;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

.arc-header {
    margin-bottom: 50px;
}

.arc-script-title {
    font-family: var(--font-script);
    font-size: 2.2rem;
    color: #475569;
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.arc-main-heading {
    font-family: var(--font-sans);
    font-size: 2.75rem;
    font-weight: 800;
    color: #103b4d;
    letter-spacing: -0.5px;
}

.arc-cards-track {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 24px;
    padding: 30px 10px 40px;
    perspective: 1000px;
}

.arc-category-card {
    flex: 1;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transform: rotate(var(--card-tilt, 0deg));
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: sequentialArcFloat 4.8s infinite ease-in-out;
    animation-delay: var(--anim-delay, 0s);
}

@keyframes sequentialArcFloat {
    0%, 100% {
        transform: translateY(0px) rotate(var(--card-tilt, 0deg));
    }
    50% {
        transform: translateY(-16px) rotate(calc(var(--card-tilt, 0deg) * 0.4)) scale(1.03);
        box-shadow: 0 20px 40px rgba(10, 102, 123, 0.18);
    }
}

.arc-category-card:hover {
    transform: translateY(-24px) rotate(0deg) scale(1.06) !important;
    animation-play-state: paused;
    z-index: 10;
}

.arc-card-image-box {
    width: 100%;
    height: 250px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 3px solid #ffffff;
    margin-bottom: 16px;
    transition: transform 0.5s ease, box-shadow 0.4s ease;
}

.arc-category-card:hover .arc-card-image-box {
    box-shadow: 0 18px 36px rgba(14, 165, 183, 0.25);
    border-color: #0ea5b7;
}

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

.arc-category-card:hover .arc-cat-img {
    transform: scale(1.12);
}

.arc-card-meta {
    text-align: center;
}

.arc-cat-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #103b4d;
    margin-bottom: 2px;
}

.arc-see-more {
    font-size: 0.8125rem;
    color: #64748b;
    font-weight: 600;
    transition: color 0.2s ease;
}

.arc-category-card:hover .arc-see-more {
    color: #0ea5b7;
}

@media (max-width: 1000px) {
    .arc-cards-track {
        flex-wrap: wrap;
        gap: 20px;
    }
    .arc-category-card {
        transform: none !important;
        animation: none !important;
        max-width: calc(50% - 10px);
    }
}

.offers-desc {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
}

.popular-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.popular-tour-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(10, 102, 123, 0.06);
    border: 1px solid #eef6f8;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.popular-tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(10, 102, 123, 0.14);
    border-color: #cbd5e1;
}

.popular-card-thumb {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

.popular-tour-card:hover .tour-thumb-img {
    transform: scale(1.08);
}

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

.tour-card-title {
    font-size: 1.06rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 6px;
    line-height: 1.3;
}

.tour-card-locations {
    font-size: 0.8125rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.tour-flag-icon {
    width: 22px;
    height: 16px;
    border-radius: 3px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    display: inline-block;
    flex-shrink: 0;
}

.tour-card-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.tour-from-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 600;
    text-transform: capitalize;
}

.tour-price {
    font-size: 1.55rem;
    font-weight: 800;
    color: #0b6375;
    line-height: 1;
}

.tour-per-person {
    font-size: 0.8125rem;
    color: #94a3b8;
    font-weight: 500;
}

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

.card-footer-centered {
    justify-content: center;
}

.btn-tour-book-now {
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    color: #334155;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.25s ease;
    width: 100%;
}

.btn-tour-book-now:hover {
    background: #0ea5b7;
    border-color: #0ea5b7;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(14, 165, 183, 0.35);
    transform: translateY(-1px);
}

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

@media (max-width: 600px) {
    .popular-cards-grid {
        grid-template-columns: 1fr;
    }
}
.featured-destinations-section {
    padding: 40px 0;
}

.section-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: 2.125rem;
    font-weight: 700;
    color: #1a2e35;
}

.section-actions-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.view-all-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--revive-teal);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.view-all-link:hover {
    color: #074e5e;
}

.slider-arrows {
    display: flex;
    align-items: center;
    gap: 8px;
}

.slider-arrow-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--revive-text-dark);
    transition: var(--transition-smooth);
}

.slider-arrow-btn:hover {
    background: var(--revive-teal);
    color: #ffffff;
    border-color: var(--revive-teal);
}

.destinations-track {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}

.destinations-track::-webkit-scrollbar {
    height: 6px;
}
.destinations-track::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.destination-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.destination-image-box {
    position: relative;
    width: 100%;
    height: 230px;
}

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

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

.dest-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.75) 100%);
}

.dest-card-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: #ffffff;
}

.dest-name {
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.2;
}

.dest-country {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.dest-rating-pill {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #ffffff;
}

.dest-rating-pill i {
    color: #f59e0b;
    font-size: 0.75rem;
}

/* ================= 6. OUR SERVICES & WHY CHOOSE ================= */
.services-why-section {
    padding: 50px 0;
}

.services-why-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 48px;
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid #edf2f7;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

/* Left: Services */
.services-title {
    margin-bottom: 24px;
}

.services-items-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
}

.service-item-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.service-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--icon-accent, #0a667b);
    font-size: 1.125rem;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.service-item-card:hover .service-icon-box {
    background: var(--icon-accent, #0a667b);
    color: #ffffff;
    border-color: transparent;
}

.service-item-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
    line-height: 1.25;
}

.service-item-desc {
    font-size: 0.75rem;
    color: var(--revive-text-muted);
    line-height: 1.35;
}

/* Right: Why Choose */
.why-title {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 12px;
}

.why-highlight {
    color: #0a667b;
    font-style: italic;
}

.why-desc {
    font-size: 0.875rem;
    color: var(--revive-text-muted);
    margin-bottom: 20px;
    max-width: 540px;
}

.btn-our-promise {
    padding: 10px 22px;
    font-size: 0.875rem;
    margin-bottom: 28px;
}

.why-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}

.why-metric-card {
    background: #f8fafc;
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
    border: 1px solid #eef2f6;
    transition: var(--transition-smooth);
}

.why-metric-card:hover {
    background: #f0f9fa;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.metric-icon-box {
    font-size: 1.25rem;
    color: var(--revive-teal);
    margin-bottom: 6px;
}

.metric-number {
    display: block;
    font-size: 1.375rem;
    font-weight: 800;
    color: #073b4c;
    line-height: 1.1;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--revive-text-muted);
    font-weight: 500;
}

.why-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 24px;
}

.why-feature-item {
    display: flex;
    flex-direction: column;
}

.why-feat-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.why-feat-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}

.why-feat-desc {
    font-size: 0.75rem;
    color: var(--revive-text-muted);
}

/* ================= 7. TRAVEL YOUR WAY ================= */
.travel-way-section {
    padding: 40px 0;
}

.section-center-heading {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.125rem;
    color: #1a2e35;
    margin-bottom: 30px;
}

.travel-way-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.travel-way-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.travel-way-thumb {
    width: 100%;
    height: 110px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

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

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

.travel-way-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #334155;
}

.way-icon {
    color: var(--revive-teal);
    font-size: 0.75rem;
}

.travel-way-card:hover .travel-way-badge {
    color: var(--revive-teal);
}

/* ================= 8. SUMMER OF MEMORIES PROMO ================= */
.promo-banner-section {
    padding: 30px 0;
}

.promo-card {
    background: linear-gradient(135deg, #0d7c94 0%, #0a667b 100%);
    border-radius: var(--radius-md);
    padding: 24px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(10, 102, 123, 0.2);
}

.promo-left-badge {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sun-icon-drawn {
    font-size: 2.25rem;
    color: #fef08a;
    animation: sunSpin 20s linear infinite;
}

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

.summer-script-title span {
    font-family: var(--font-script);
    font-size: 1.5rem;
    line-height: 1;
    display: block;
    color: #e0f2fe;
}

.summer-script-title h3 {
    font-family: var(--font-heading);
    font-size: 1.625rem;
    line-height: 1;
    letter-spacing: -0.5px;
}

.promo-divider-line {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.25);
    margin: 0 20px;
}

.promo-center-text {
    flex: 1;
}

.promo-offer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.promo-offer-sub {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.85);
}

.promo-right-action {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-grab-offer {
    background: #ffffff;
    color: #0a667b;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
}

.btn-grab-offer:hover {
    background: #f0fdfa;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.palm-trees-illustration {
    font-size: 1.75rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ================= 9. AI TRIP PLANNER ================= */
.ai-planner-section {
    padding: 40px 0;
}

.ai-planner-wrapper {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid #edf2f7;
    padding: 36px 40px;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.ai-planner-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1.15;
    color: #1a2e35;
    margin-bottom: 10px;
}

.ai-badge-text {
    color: var(--revive-teal);
    font-style: italic;
}

.ai-planner-desc {
    font-size: 0.875rem;
    color: var(--revive-text-muted);
    margin-bottom: 20px;
    max-width: 360px;
}

.btn-plan-my-trip {
    padding: 10px 24px;
    font-size: 0.875rem;
}

.ai-steps-track {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ai-step-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-circle-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f1f9fa;
    border: 1.5px dashed var(--revive-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--revive-teal);
    font-size: 1.125rem;
    margin-bottom: 10px;
    transition: var(--transition-smooth);
}

.ai-step-node:hover .step-circle-icon {
    background: var(--revive-teal);
    color: #ffffff;
    border-style: solid;
    transform: scale(1.08);
}

.step-num-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}

.step-sub {
    font-size: 0.6875rem;
    color: var(--revive-text-muted);
}

.step-dashed-connector {
    flex: 1;
    height: 2px;
    border-top: 2px dashed #cbd5e1;
    margin: 0 10px 24px;
}

/* ================= 10. TESTIMONIALS (SLOW CONTINUOUS MARQUEE) ================= */
.testimonials-section {
    padding: 70px 0 80px;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

.testimonials-header-center {
    max-width: 600px;
    margin: 0 auto 20px;
    text-align: center;
}

.testimonials-script-subtitle {
    font-family: var(--font-script);
    font-size: 2.1rem;
    color: #0b6375;
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.testimonials-marquee-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0 30px;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.testimonials-marquee-track {
    display: flex;
    align-items: stretch;
    gap: 26px;
    width: max-content;
}

.testimonials-marquee-group {
    display: flex;
    align-items: stretch;
    gap: 26px;
    flex-shrink: 0;
    animation: reviewsMarqueeLoop 45s linear infinite;
    will-change: transform;
}

.testimonials-marquee-viewport:hover .testimonials-marquee-group {
    animation-play-state: paused;
}

@keyframes reviewsMarqueeLoop {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% - 26px));
    }
}

.testimonial-card {
    width: 360px;
    background: #f8fafc;
    border: 1.5px solid #edf2f7;
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 24px rgba(10, 102, 123, 0.05);
    transition: all 0.35s ease;
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    background: #ffffff;
    border-color: #0ea5b7;
    box-shadow: 0 18px 36px rgba(14, 165, 183, 0.18);
}

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

.testimonial-stars {
    color: #f59e0b;
    font-size: 0.875rem;
    display: flex;
    gap: 4px;
}

.quote-symbol {
    font-size: 1.25rem;
    color: #cbd5e1;
}

.testimonial-body {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 22px;
    flex-grow: 1;
}

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

.author-avatar-wrap {
    position: relative;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.author-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #0ea5b7;
}

.verified-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    color: #0ea5b7;
    background: #ffffff;
    border-radius: 50%;
    font-size: 0.75rem;
    line-height: 1;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: #1e293b;
}

.author-city {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 2px;
}

/* ================= 9. TRAVEL INSPIRATION FROM OUR BLOG (CREATIVE MAGAZINE UI) ================= */
.blog-section {
    position: relative;
    padding: 85px 0 95px;
    background: #f8fafc;
}

.blog-header-box-centered {
    max-width: 780px;
    margin: 0 auto 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-script-subtitle {
    font-family: var(--font-script);
    font-size: 2.2rem;
    color: #0b6375;
    display: block;
    line-height: 1;
    margin-bottom: 6px;
    text-align: center;
}

.blog-ultra-title {
    font-size: 2.75rem;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.8px;
    margin-bottom: 12px;
    text-align: center;
    line-height: 1.2;
}

.blog-lead-sub {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

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

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

@media (max-width: 680px) {
    .creative-blog-grid {
        grid-template-columns: 1fr !important;
        gap: 22px;
    }
}

.creative-blog-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #eef4f7;
    box-shadow: 0 14px 34px rgba(10, 102, 123, 0.06), 0 2px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.creative-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(14, 165, 183, 0.2);
    border-color: #0ea5b7;
}

.blog-card-media-wrap {
    position: relative;
    height: 230px;
    overflow: hidden;
    width: 100%;
}

.creative-blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.blog-media-glass-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.65) 100%);
    pointer-events: none;
}

.creative-blog-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    color: #0f172a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.creative-blog-body {
    padding: 26px 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta-top {
    font-size: 0.78rem;
    font-weight: 700;
    color: #0ea5b7;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.blog-meta-item i {
    color: #0ea5b7;
    margin-right: 4px;
}

.blog-meta-dot {
    color: #cbd5e1;
}

.creative-blog-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #103b4d;
    line-height: 1.35;
    margin-bottom: 12px;
    letter-spacing: -0.4px;
}

.creative-blog-title a {
    color: inherit;
    transition: color 0.25s ease;
}

.creative-blog-title a:hover {
    color: #0ea5b7;
}

.creative-blog-excerpt {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.blog-card-footer-cta {
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.btn-read-article-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    font-weight: 800;
    color: #0ea5b7;
    background: #f0fdfa;
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid #ccfbf1;
    transition: all 0.3s ease;
}

.btn-read-article-pill:hover {
    background: #0ea5b7;
    color: #ffffff;
    border-color: #0ea5b7;
    transform: translateX(4px);
    box-shadow: 0 4px 14px rgba(14, 165, 183, 0.35);
}

/* ================= 12. NEED HELP PLANNING ================= */
.help-planning-section {
    padding: 30px 0;
}

.help-planning-bar {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 16px rgba(10, 102, 123, 0.05);
    gap: 24px;
}

.help-left-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.palm-drawn-icon {
    font-size: 2.25rem;
    color: var(--revive-teal);
}

.help-title {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 2px;
}

.help-sub {
    font-size: 0.75rem;
    color: var(--revive-text-muted);
}

.help-contacts-group {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.help-contact-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-full);
    padding: 8px 16px;
    transition: var(--transition-smooth);
}

.help-contact-pill:hover {
    background: #f0fdfa;
    border-color: var(--revive-teal);
}

.contact-pill-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.contact-pill-info {
    display: flex;
    flex-direction: column;
}

.contact-type {
    font-size: 0.625rem;
    color: var(--revive-text-muted);
}

.contact-val {
    font-size: 0.75rem;
    font-weight: 700;
    color: #1e293b;
}

.btn-plan-together {
    padding: 10px 22px;
    font-size: 0.875rem;
}

/* ================= 13. NEWSLETTER SECTION ================= */
.newsletter-bar-section {
    padding: 10px 0 40px;
}

.newsletter-card {
    background: linear-gradient(135deg, #0c758d 0%, #0a667b 100%);
    border-radius: var(--radius-md);
    padding: 24px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    gap: 20px;
}

.newsletter-plane-icon {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
    transform: rotate(-15deg);
}

.newsletter-content {
    flex: 1;
}

.newsletter-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.newsletter-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-input-group {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: var(--radius-full);
    padding: 4px 6px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.newsletter-input {
    flex: 1;
    background: transparent;
    padding: 8px 16px;
    font-size: 0.8125rem;
    color: #1e293b;
}

.newsletter-input::placeholder {
    color: #94a3b8;
}

.btn-subscribe {
    background: #074e5e;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-subscribe:hover {
    background: #032b35;
}

.newsletter-hand-icon {
    font-size: 1.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ================= 14. FOOTER ================= */
.site-footer {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    padding: 60px 0 20px;
    font-size: 0.8125rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-tagline-text {
    font-size: 0.8125rem;
    color: var(--revive-text-muted);
    line-height: 1.5;
    margin-bottom: 18px;
}

.footer-social-links {
    display: flex;
    gap: 10px;
}

.social-icon-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    transition: var(--transition-smooth);
}

.social-icon-btn:hover {
    background: var(--revive-teal);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 14px;
}

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

.footer-links a {
    color: var(--revive-text-muted);
    font-size: 0.8125rem;
}

.footer-links a:hover {
    color: var(--revive-teal);
    padding-left: 3px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--revive-text-muted);
    margin-bottom: 18px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.contact-info-item i {
    color: var(--revive-teal);
    margin-top: 3px;
}

.contact-info-item a:hover {
    color: var(--revive-teal);
}

.payment-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 8px;
}

.payment-badges {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pay-badge {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 0.6875rem;
    font-weight: 800;
    color: #1e293b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pay-badge.visa {
    color: #1a1f71;
    font-style: italic;
}

.pay-badge.mastercard {
    display: inline-flex;
    gap: 2px;
}

.mc-red { width: 10px; height: 10px; border-radius: 50%; background: #eb001b; }
.mc-orange { width: 10px; height: 10px; border-radius: 50%; background: #f79e1b; margin-left: -5px; }

.footer-bottom {
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
    font-size: 0.75rem;
    color: var(--revive-text-muted);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-plane-flight {
    width: 140px;
    opacity: 0.6;
}

/* ================= 15. MODALS & TOASTS ================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 500px;
    padding: 32px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 18px;
    background: transparent;
    font-size: 1.5rem;
    color: #94a3b8;
    line-height: 1;
}

.modal-close-btn:hover {
    color: #1e293b;
}

.modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.modal-icon-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #f0fdfa;
    color: var(--revive-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 12px;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.625rem;
    color: #1e293b;
    margin-bottom: 4px;
}

.modal-subtitle {
    font-size: 0.8125rem;
    color: var(--revive-text-muted);
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    color: #1e293b;
    background: #ffffff;
    transition: border-color 0.2s;
}

.form-input:focus {
    border-color: var(--revive-teal);
    box-shadow: 0 0 0 3px rgba(18, 135, 158, 0.15);
}

.form-row {
    display: flex;
    gap: 14px;
}

.form-row .half {
    flex: 1;
}

.btn-block {
    width: 100%;
    padding: 12px;
}

.ai-planner-results {
    background: #f0fdfa;
    border: 1px solid #99f6e4;
    border-radius: var(--radius-sm);
    padding: 14px;
    margin-bottom: 16px;
    font-size: 0.8125rem;
    color: #0f766e;
}

.hidden {
    display: none !important;
}

/* Toast */
.toast-notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #0f172a;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    z-index: 3000;
    animation: slideInToast 0.3s ease;
}

.toast-notification .toast-icon {
    color: #10b981;
}

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

/* ================= 16. RESPONSIVE BREAKPOINTS ================= */
@media (max-width: 1100px) {
    .pill-features-row {
        grid-template-columns: repeat(3, 1fr);
    }
    .destinations-track {
        grid-template-columns: repeat(3, 1fr);
    }
    .travel-way-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-subtitle {
        margin: 0 auto 32px;
    }
    .hero-cta-group {
        justify-content: center;
    }
    .hero-stats-card {
        margin: 0 auto;
        flex-wrap: wrap;
        gap: 12px;
    }
    .stat-divider { display: none; }
    .hero-visual-col {
        justify-content: center;
    }
    .services-why-grid {
        grid-template-columns: 1fr;
        padding: 24px;
    }
    .ai-planner-wrapper {
        grid-template-columns: 1fr;
    }
    .blog-top-row {
        grid-template-columns: 1fr;
    }
    .help-planning-bar {
        flex-direction: column;
        text-align: center;
    }
    .help-left-badge {
        flex-direction: column;
    }
    .newsletter-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 20px;
        box-shadow: var(--shadow-lg);
    }
    .main-navigation.mobile-open {
        display: block;
    }
    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    .mobile-toggle-btn {
        display: block;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .pill-features-row {
        grid-template-columns: 1fr;
    }
    .destinations-track {
        grid-template-columns: repeat(2, 1fr);
    }
    .travel-way-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .blog-cards-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .promo-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .promo-divider-line {
        display: none;
    }
}

/* ================= 9.5 FREQUENTLY ASKED QUESTIONS (CREATIVE ACCORDION) ================= */
.faqs-creative-section {
    position: relative;
    padding: 85px 0 95px;
    background: #f8fafc;
    overflow: hidden;
}

.faq-ambient-glow {
    position: absolute;
    top: 20%;
    left: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 165, 183, 0.08) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.faq-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    align-items: flex-start;
}

/* Left Info Card */
.faq-info-card {
    position: sticky;
    top: 100px;
}

.faq-script-subtitle {
    font-family: var(--font-script);
    font-size: 2.2rem;
    color: #0ea5b7;
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.faq-main-heading {
    font-size: 2.35rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.2;
    letter-spacing: -0.6px;
    margin-bottom: 14px;
}

.faq-lead-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Direct Help Card */
.faq-direct-help-box {
    background: #ffffff;
    border: 1.5px solid #edf2f7;
    border-radius: 24px;
    padding: 24px 26px;
    box-shadow: 0 10px 30px rgba(10, 102, 123, 0.06);
}

.help-box-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.help-icon-bubble {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: #e0f2fe;
    color: #0284c7;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.help-box-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2px;
}

.help-box-sub {
    font-size: 0.8rem;
    color: #64748b;
}

.btn-faq-whatsapp {
    width: 100%;
    background: #22c55e;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 800;
    padding: 13px 20px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(34, 197, 94, 0.35);
    transition: all 0.3s ease;
}

.btn-faq-whatsapp:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(34, 197, 94, 0.45);
    color: #ffffff;
}

/* Right Accordion List */
.faq-accordion-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-accordion-item {
    background: #ffffff;
    border: 1.5px solid #edf2f7;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
    transition: all 0.3s ease;
}

.faq-accordion-item:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.faq-accordion-item.active {
    border-color: #0ea5b7;
    box-shadow: 0 12px 30px rgba(14, 165, 183, 0.12);
}

.faq-accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
    gap: 14px;
}

.faq-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.faq-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: #f0fdfa;
    color: #0ea5b7;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-accordion-item.active .faq-item-icon {
    background: #0ea5b7;
    color: #ffffff;
}

.faq-question-text {
    font-size: 1.02rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-accordion-item.active .faq-question-text {
    color: #0c4a6e;
}

.faq-toggle-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-accordion-item.active .faq-toggle-icon {
    background: #0ea5b7;
    color: #ffffff;
    transform: rotate(45deg);
}

/* Accordion Body */
.faq-accordion-collapse {
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 24px 22px 74px;
}

.faq-answer-inner p {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 992px) {
    .faq-layout-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .faq-info-card {
        position: static;
    }
    .faq-answer-inner {
        padding: 0 20px 20px 20px;
    }
}

/* ================= 11. NATIVE MOBILE APP EXPERIENCE & ERGONOMIC RESPONSIVE SYSTEM ================= */
.mobile-app-bottom-bar {
    display: none;
}

@media (max-width: 768px) {
    /* Base Body padding to prevent bottom bar overlapping */
    body {
        padding-bottom: 75px;
    }

    /* Native App Bottom Navigation Bar */
    .mobile-app-bottom-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 68px;
        background: rgba(255, 255, 255, 0.94);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(226, 232, 240, 0.85);
        display: flex;
        align-items: center;
        justify-content: space-around;
        z-index: 2500;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
        padding: 0 10px;
        padding-bottom: env(safe-area-inset-bottom);
    }

    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #64748b;
        flex: 1;
        height: 100%;
        transition: all 0.25s ease;
        position: relative;
    }

    .mobile-nav-icon {
        font-size: 1.25rem;
        margin-bottom: 3px;
        transition: transform 0.2s ease;
    }

    .mobile-nav-label {
        font-size: 0.6875rem;
        font-weight: 700;
        letter-spacing: 0.2px;
    }

    .mobile-nav-item.active,
    .mobile-nav-item:active {
        color: #0ea5b7;
    }

    .mobile-nav-item.active .mobile-nav-icon {
        transform: scale(1.15);
        color: #0ea5b7;
    }

    /* Floating Center Center Action Pill */
    .mobile-nav-center-action {
        top: -16px;
    }

    .mobile-center-pill {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: linear-gradient(135deg, #0ea5b7 0%, #0284c7 100%);
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        box-shadow: 0 6px 18px rgba(14, 165, 183, 0.45);
        border: 3.5px solid #ffffff;
        transition: transform 0.25s ease;
    }

    .mobile-nav-center-action:active .mobile-center-pill {
        transform: scale(0.92);
    }

    .mobile-nav-wa {
        color: #22c55e;
    }

    .mobile-nav-wa.active,
    .mobile-nav-wa:hover {
        color: #16a34a;
    }

    /* Hide floating side action buttons on mobile to keep app bottom bar clean */
    .floating-quick-actions {
        display: none !important;
    }

    /* Top Bar & Header Mobile Ergonomics */
    .top-contact-bar {
        display: none;
    }

    .aurora-header {
        padding: 10px 0;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(15px);
        position: sticky;
        top: 0;
        z-index: 2000;
        box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    }

    .revive-brand-img {
        max-height: 38px;
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .btn-plan-trip-aurora {
        padding: 8px 14px;
        font-size: 0.78rem;
        border-radius: 12px;
    }

    .mobile-toggle-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 10px;
        background: #f1f5f9;
        color: #0f172a;
        font-size: 1.15rem;
        border: none;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .mobile-toggle-btn:active {
        background: #0ea5b7;
        color: #ffffff;
        transform: scale(0.94);
    }

    /* Native Mobile Menu Dropdown */
    .main-navigation {
        display: none;
        position: fixed !important;
        top: 60px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: auto !important;
        max-height: calc(100vh - 60px) !important;
        background: #ffffff !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
        z-index: 2500 !important;
        padding: 16px 20px 24px !important;
        overflow-y: auto !important;
    }

    .main-navigation.mobile-open {
        display: block !important;
    }

    .nav-menu {
        flex-direction: column;
        gap: 6px;
        width: 100%;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 10px 14px;
        border-radius: 10px;
        font-size: 0.92rem;
        font-weight: 700;
        color: #1e293b;
    }

    .nav-link:hover,
    .nav-link.active {
        background: #f0fdfa;
        color: #0ea5b7;
    }

    /* Mobile Hero Layout & Typography */
    .hero-fullscreen-slider {
        height: 520px;
        min-height: 520px;
        max-height: 520px;
    }

    .hero-slide-container {
        padding-top: 60px;
    }

    .hero-main-title {
        font-size: 2.15rem;
        line-height: 1.18;
    }

    .hero-script-tag {
        font-size: 1rem;
        padding: 5px 14px;
    }

    .hero-action-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .btn-hero-explore-tour,
    .btn-hero-whatsapp {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    .hero-vertical-controls {
        display: none;
    }

    /* Pill Highlights Carousel Grid */
    .pill-features-section {
        margin-top: -20px;
        padding-bottom: 30px;
    }

    .pill-features-row {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 6px 16px 14px;
        gap: 12px;
        scrollbar-width: none;
    }

    .pill-features-row::-webkit-scrollbar {
        display: none;
    }

    .pill-feature-card {
        flex: 0 0 210px;
        scroll-snap-align: start;
        padding: 12px 14px;
    }

    /* Popular Destination Slider Mobile */
    .popular-offers-section {
        padding: 45px 0 55px;
    }

    .offers-main-title {
        font-size: 1.85rem;
    }

    .offers-script-subtitle {
        font-size: 1.75rem;
    }

    .popular-cards-slider-track {
        gap: 14px;
        padding: 0 16px 10px;
    }

    .popular-tour-card-slide {
        flex: 0 0 260px;
    }

    /* Booking & Visa Hub Mobile App Experience */
    .booking-hub-section {
        padding: 50px 0 60px;
    }

    .hub-master-heading {
        font-size: 1.75rem;
        white-space: normal;
    }

    .hub-capsule-switcher {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hub-capsule-tab {
        padding: 12px 14px;
    }

    .hub-workspace-grid {
        grid-template-columns: 1fr;
        border-radius: 20px;
    }

    .hub-form-workspace {
        padding: 24px 18px;
    }

    .form-dual-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .workspace-title {
        font-size: 1.35rem;
    }

    .modern-input {
        padding: 12px 14px;
        font-size: 0.85rem;
    }

    .modern-input.has-addon {
        padding-left: 120px;
    }

    .hub-concierge-column {
        border-left: none;
        border-top: 1.5px solid #edf2f7;
        padding: 30px 20px;
    }

    /* Story & Metrics Mobile Layout */
    .begin-story-section {
        padding: 50px 0;
    }

    .story-main-heading {
        font-size: 1.85rem;
    }

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

    .story-metrics-card {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 20px;
    }

    .metric-v-divider {
        display: none;
    }

    /* Gallery Bus Track Mobile */
    .gallery-bus-highway-track {
        height: 75px;
    }

    .gallery-retro-bus-mover {
        width: 105px;
    }

    /* ================= BLOG SECTION MOBILE RESPONSIVE PERFECTION ================= */
    .blog-section {
        padding: 50px 0 60px;
    }

    .blog-ultra-title {
        font-size: 1.85rem;
        line-height: 1.25;
    }

    .blog-script-subtitle {
        font-size: 1.75rem;
    }

    .blog-lead-sub {
        font-size: 0.875rem;
        padding: 0 10px;
    }

    .creative-magazine-grid {
        grid-template-columns: 1fr !important;
        gap: 22px;
        margin-top: 24px;
    }

    .creative-blog-card {
        border-radius: 20px;
        overflow: hidden;
    }

    .blog-card-media-wrap {
        height: 190px !important;
    }

    .creative-blog-body {
        padding: 20px 18px !important;
    }

    .creative-blog-title {
        font-size: 1.08rem;
        line-height: 1.35;
        margin-bottom: 8px;
    }

    .creative-blog-excerpt {
        font-size: 0.84rem;
        line-height: 1.55;
        color: #64748b;
        margin-bottom: 16px;
    }

    .btn-read-article-pill {
        padding: 9px 18px;
        font-size: 0.8rem;
    }

    /* FAQs Mobile Layout */
    .faqs-creative-section {
        padding: 50px 0 60px;
    }

    .faq-main-heading {
        font-size: 1.85rem;
    }

    .faq-script-subtitle {
        font-size: 1.75rem;
    }

    .faq-accordion-header {
        padding: 16px 18px;
    }

    .faq-question-text {
        font-size: 0.92rem;
    }

    /* Help & Footer Mobile */
    .help-planning-bar {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
        gap: 24px;
    }

    .help-left-badge {
        flex-direction: column;
        align-items: center;
    }

    .help-contacts-group {
        flex-direction: column;
        width: 100%;
    }

    .help-contact-pill {
        width: 100%;
        justify-content: center;
    }

    .btn-plan-together {
        width: 100%;
        justify-content: center;
    }

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

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