/* ==========================================================================
   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);
    --radius-sm: 8px;
    --radius-md: 8px;
    --radius-lg: 8px;
    --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;
    width: min(1550px, calc(100% - 48px));
    margin-left: auto;
    margin-right: auto;
    border-radius: 0 0 24px 24px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(226, 232, 240, 0.85);
    border-top: none;
    box-shadow: 0 8px 30px rgba(10, 102, 123, 0.08);
    padding: 12px 0;
    /* Pure symmetrical horizontal expand transition */
    transition: 
        width 0.5s cubic-bezier(0.25, 1, 0.5, 1),
        border-radius 0.5s cubic-bezier(0.25, 1, 0.5, 1),
        border-color 0.4s ease,
        box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1),
        background-color 0.4s ease;
    will-change: width, border-radius;
}

/* On scroll, header expands symmetrically from center towards left & right */
.site-header.aurora-header.is-scrolled {
    width: 100%;
    border-radius: 0;
    border-color: transparent;
    border-bottom: 1px solid #f1f5f9;
    background: #ffffff;
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.06);
    padding: 12px 0;
}

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

/* 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;
}

/* WhatsApp Header CTA Button with Smooth Pulse Glow */
.btn-whatsapp-header {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.38);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    animation: smoothWaBlinkPulse 2.4s infinite ease-in-out;
}

.btn-whatsapp-header i {
    font-size: 1.2rem;
}

@keyframes smoothWaBlinkPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.65), 0 4px 16px rgba(37, 211, 102, 0.38);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0), 0 6px 20px rgba(37, 211, 102, 0.55);
        transform: scale(1.03);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 4px 16px rgba(37, 211, 102, 0.38);
        transform: scale(1);
    }
}

/* Shimmer light sweep on button */
.btn-whatsapp-header::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;
}

.btn-whatsapp-header:hover {
    background: linear-gradient(135deg, #20ba5a, #0e7064);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    transform: translateY(-2px) scale(1.05);
    color: #ffffff !important;
}

/* 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: 100%;
    max-width: 1550px;
    margin: 20px auto 0;
    padding: 0;
    border-radius: 6px;
    height: 650px;
    min-height: 650px;
    max-height: 650px;
    overflow: hidden;
    background: #0b1a20;
    box-shadow: 0 16px 40px rgba(8, 28, 38, 0.15);
}

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

.hero-bg-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    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-bg-slide.is-promo-banner {
    background-size: cover;
    background-position: center center;
    background-color: #ffffff;
}

.hero-bg-slide.is-promo-banner.active {
    transform: scale(1.02); /* Subtle zoom for high-detail promo banner */
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    /* Soft cinematic vignette: dark enough on left for 100% crisp readable text, fading to 0% at middle (55%) */
    background: linear-gradient(90deg, rgba(8, 20, 26, 0.68) 0%, rgba(8, 20, 26, 0.42) 36%, rgba(8, 20, 26, 0.1) 52%, rgba(0, 0, 0, 0) 65%);
    pointer-events: none;
    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: 1.85rem;
    color: #ffffff;
    display: block;
    margin-bottom: 8px;
    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: 3.25rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    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 Get a Quote Button */
.btn-hero-quote {
    background: rgba(15, 23, 42, 0.7);
    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.35);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.quote-icon-bubble {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #0ea5b7 0%, #0284c7 100%);
    color: #ffffff;
    border-radius: 50%;
    font-size: 1rem;
    box-shadow: 0 0 12px rgba(14, 165, 183, 0.6);
    transition: transform 0.3s ease;
}

.btn-hero-quote:hover {
    background: linear-gradient(135deg, #0ea5b7 0%, #0284c7 100%);
    border-color: #0ea5b7;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 183, 0.5);
}

.btn-hero-quote:hover .quote-icon-bubble {
    background: #ffffff;
    color: #0ea5b7;
    transform: scale(1.1) rotate(15deg);
}

/* Contrasting WhatsApp Button (kept for backward compatibility if needed) */
.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;
}

/* Slider Navigation Dots Below Hero Banner */
.hero-slider-dots {
    position: relative;
    margin: 14px auto 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0;
    background: transparent;
    border: none;
}

.hero-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 0;
}

.hero-slider-dot:hover {
    background: #94a3b8;
    transform: scale(1.2);
}

.hero-slider-dot.active {
    width: 22px;
    height: 8px;
    border-radius: 8px;
    background: #0ea5b7;
    box-shadow: 0 2px 8px rgba(14, 165, 183, 0.4);
}

/* ================= HERO LAYOUT TOGGLE BUTTON & SPLIT VIEW MODE ================= */
.hero-layout-toggle-btn {
    position: absolute;
    top: 24px;
    right: 28px;
    z-index: 25;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px 7px 10px;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 9999px;
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}

.hero-layout-toggle-btn:hover {
    background: rgba(15, 23, 42, 0.92);
    border-color: #0ea5b7;
    box-shadow: 0 10px 28px rgba(14, 165, 183, 0.35);
    transform: translateY(-2px);
}

.hero-layout-toggle-btn .hlt-track {
    width: 44px;
    height: 24px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 9999px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 2px;
    transition: background 0.35s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-layout-toggle-btn .hlt-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, color 0.3s ease;
    transform: translateX(0);
}

.hero-layout-toggle-btn .hlt-text {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #e2e8f0;
}

.hero-layout-toggle-btn .hlt-label-split {
    display: none;
}

.hero-layout-toggle-btn.is-active {
    background: rgba(8, 30, 42, 0.92);
    border-color: #0ea5b7;
    box-shadow: 0 8px 24px rgba(14, 165, 183, 0.4);
}

.hero-layout-toggle-btn.is-active .hlt-track {
    background: #0ea5b7;
    border-color: #0ea5b7;
}

.hero-layout-toggle-btn.is-active .hlt-thumb {
    transform: translateX(20px);
    background: #ffffff;
    color: #088395;
}

.hero-layout-toggle-btn.is-active .hlt-label-fullscreen {
    display: none;
}

.hero-layout-toggle-btn.is-active .hlt-label-split {
    display: inline;
    color: #38bdf8;
}

/* ================= HERO SPLIT VIEW STYLES (MATCHING USER REFERENCE DESIGN) ================= */
.hero-fullscreen-slider {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-split-nav-controls {
    display: none;
}

.hero-fullscreen-slider.is-split-view {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: #f8fafc !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    max-width: 1550px !important;
    margin: 20px auto 0 !important;
    padding: 30px 50px !important;
    position: relative !important;
    height: 480px !important;
    min-height: 480px !important;
    max-height: 480px !important;
    overflow: hidden !important;
}

/* Split view left content container */
.hero-fullscreen-slider.is-split-view .hero-slide-container {
    position: relative !important;
    inset: auto !important;
    width: 46% !important;
    max-width: 46% !important;
    height: 100% !important;
    padding: 0 20px 0 30px !important;
    margin: 0 !important;
    z-index: 10 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    background: transparent !important;
}

.hero-fullscreen-slider.is-split-view .hero-slide-content {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    color: #0f172a !important;
}

.hero-fullscreen-slider.is-split-view .hero-script-tag {
    font-size: 1.15rem !important;
    color: #0284c7 !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
    text-shadow: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.hero-fullscreen-slider.is-split-view .hero-main-title {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px !important;
    color: #0f172a !important;
    margin: 0 0 24px 0 !important;
    text-shadow: none !important;
}

.hero-fullscreen-slider.is-split-view .hero-text-rotator {
    margin-bottom: 24px !important;
    width: 100% !important;
}

/* Buttons in split view matching reference */
.hero-fullscreen-slider.is-split-view .hero-action-buttons {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    margin-top: 0 !important;
}

.hero-fullscreen-slider.is-split-view .btn-hero-explore-tour {
    background: #1d72b8 !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    padding: 12px 26px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 14px rgba(29, 114, 184, 0.3) !important;
    border: none !important;
}

.hero-fullscreen-slider.is-split-view .btn-hero-explore-tour:hover {
    background: #155a96 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(29, 114, 184, 0.45) !important;
}

.hero-fullscreen-slider.is-split-view .btn-hero-quote {
    background: #ffffff !important;
    color: #0f172a !important;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: 6px !important;
    padding: 11px 22px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}

.hero-fullscreen-slider.is-split-view .btn-hero-quote:hover {
    background: #0ea5b7 !important;
    border-color: #0ea5b7 !important;
    color: #ffffff !important;
}

/* Split view right image slider card (52% width, takes full card height, organic curve) */
.hero-fullscreen-slider.is-split-view .hero-slides-wrapper {
    position: relative !important;
    inset: auto !important;
    width: 52% !important;
    max-width: 52% !important;
    height: 100% !important;
    border-radius: 28px 12px 38px 12px !important; /* Organic curve matching reference image */
    overflow: hidden !important;
    box-shadow: 0 16px 36px -6px rgba(15, 23, 42, 0.16) !important;
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    flex-shrink: 0 !important;
}

.hero-fullscreen-slider.is-split-view .hero-bg-slide {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center center !important;
}

.hero-fullscreen-slider.is-split-view .hero-slide-overlay {
    display: none !important;
}

.hero-fullscreen-slider.is-split-view .hero-vertical-controls {
    display: none !important;
}

/* Floating Prev & Next Circular Arrows */
.hero-fullscreen-slider.is-split-view .hero-split-nav-controls {
    display: block !important;
    position: static !important;
}

.hero-split-arrow {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    color: #475569 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.85rem !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    cursor: pointer !important;
    z-index: 30 !important;
    transition: all 0.25s ease !important;
}

.hero-split-prev {
    left: 16px !important;
}

.hero-split-next {
    right: 16px !important;
}

.hero-split-arrow:hover {
    background: #0ea5b7 !important;
    border-color: #0ea5b7 !important;
    color: #ffffff !important;
    box-shadow: 0 6px 16px rgba(14, 165, 183, 0.35) !important;
    transform: translateY(-50%) scale(1.08) !important;
}

/* Responsive adjustment for split view on tablets / mobile */
@media (max-width: 991px) {
    .hero-fullscreen-slider.is-split-view {
        flex-direction: column !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        padding: 24px 16px !important;
        gap: 24px !important;
    }

    .hero-fullscreen-slider.is-split-view .hero-slide-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px 10px 10px !important;
    }

    .hero-fullscreen-slider.is-split-view .hero-slides-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        height: 320px !important;
        border-radius: 18px !important;
    }

    .hero-fullscreen-slider.is-split-view .hero-split-prev {
        left: 8px !important;
    }

    .hero-fullscreen-slider.is-split-view .hero-split-next {
        right: 8px !important;
    }
}

/* ================= 4. CORE SERVICES CAPSULES (6-CARD FLOATING GLASS GRID) ================= */
.services-capsules-section {
    padding: 30px 0 60px;
    position: relative;
    z-index: 10;
    margin-top: 15px; /* Sits naturally after the dots */
}

.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;
    text-decoration: none;
    color: inherit;
    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;
    }
}

/* ================= 4.5 GLOBAL DESTINATIONS & COUNTRIES QUICK CAROUSEL ================= */
.countries-quick-nav-section {
    padding: 12px 0 28px;
    position: relative;
    z-index: 5;
    background: transparent;
}

.countries-nav-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0;
    gap: 10px;
}

.countries-nav-track {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 6px 2px;
    width: 100%;
}

.countries-nav-track::-webkit-scrollbar {
    display: none;
}

.country-nav-item {
    display: inline-flex;
    flex: 0 0 auto;
    text-decoration: none;
    cursor: pointer;
    background: transparent;
    padding: 0;
}

/* Luxury Interactive Pill Chip */
.country-pill-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 10px;
    border-radius: 9999px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
    transition: all 0.28s cubic-bezier(0.25, 0.8, 0.25, 1);
    white-space: nowrap;
}

.country-nav-item:hover .country-pill-chip {
    background: #0a667b;
    border-color: #0a667b;
    box-shadow: 0 8px 22px rgba(10, 102, 123, 0.25);
    transform: translateY(-3px) scale(1.03);
}

/* National Flag Circular / Rounded Avatar */
.country-chip-flag {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    border: 1.5px solid #f1f5f9;
    background: #f8fafc;
    transition: transform 0.28s ease;
}

.country-chip-flag .fi {
    width: 100%;
    height: 100%;
    line-height: 1;
    display: block;
    background-size: cover;
    background-position: center;
}

.country-nav-item:hover .country-chip-flag {
    transform: rotate(8deg) scale(1.08);
    border-color: #ffffff;
}

/* Crisp High-Contrast Country Title */
.country-chip-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: #0f172a; /* Deep bold contrast */
    letter-spacing: -0.2px;
    transition: color 0.25s ease;
}

.country-nav-item:hover .country-chip-name {
    color: #ffffff; /* Crisp white on hover */
}

/* Landmark / Travel Glyph Icon */
.country-chip-icon {
    font-size: 0.8125rem;
    color: #0a667b;
    opacity: 0.75;
    transition: all 0.25s ease;
    margin-left: 2px;
}

.country-nav-item:hover .country-chip-icon {
    color: #ffffff;
    opacity: 1;
    transform: translateX(2px);
}

/* Creative Sleek Glass Arrow Buttons */
.country-nav-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    color: #0f172a;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.country-nav-arrow:hover {
    background: #0a667b;
    color: #ffffff;
    border-color: #0a667b;
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(10, 102, 123, 0.28);
}

.country-prev-btn {
    margin-right: 2px;
}

.country-next-btn {
    margin-left: 2px;
}

.country-nav-arrow:hover {
    background: #0a667b;
    color: #ffffff;
    border-color: #0a667b;
    transform: scale(1.15);
    box-shadow: 0 8px 20px rgba(10, 102, 123, 0.28);
}

.country-prev-btn {
    margin-right: 4px;
}

.country-next-btn {
    margin-left: 4px;
}

/* ================= 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;
}

/* View All Text Button below Best Recommended Places */
.popular-view-all-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 32px;
    position: relative;
    z-index: 3;
}

.btn-popular-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0a667b;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 9999px;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    box-shadow: 0 4px 14px rgba(10, 102, 123, 0.08);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
}

.btn-popular-view-all i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-popular-view-all:hover {
    background: #0a667b;
    color: #ffffff;
    border-color: #0a667b;
    box-shadow: 0 8px 24px rgba(10, 102, 123, 0.28);
    transform: translateY(-2px);
}

.btn-popular-view-all:hover i {
    transform: translateX(5px);
}

/* ================= 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 (3D PANORAMIC FLOW CAROUSEL) ================= */
.recent-gallery-section {
    position: relative;
    padding: 36px 0 42px;
    background: #ffffff;
    overflow: hidden;
}

/* Header Row with Chips and Navigation Arrows */
.gallery-compact-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 1.5px solid #f1f5f9;
}

.gallery-tag-pill {
    display: inline-flex;
    align-items: center;
    background: #e0f2fe;
    color: #0369a1;
    font-size: 0.76rem;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: 999px;
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}

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

.gallery-header-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.gallery-filter-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.gallery-chip {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    color: #475569;
    padding: 6px 15px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gallery-chip:hover {
    background: #e0f2fe;
    color: #0284c7;
    border-color: #0ea5b7;
}

.gallery-chip.active {
    background: #0ea5b7;
    color: #ffffff;
    border-color: #0ea5b7;
    box-shadow: 0 4px 12px rgba(14, 165, 183, 0.3);
}

.gallery-nav-arrows-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gallery-arrow-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1.5px solid #cbd5e1;
    color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.gallery-arrow-btn:hover {
    background: #0ea5b7;
    border-color: #0ea5b7;
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(14, 165, 183, 0.35);
}

/* Panoramic Container */
.gallery-panoramic-container {
    position: relative;
    width: 100%;
    perspective: 1100px;
}

/* Smooth Horizontal Scroll Track */
.gallery-panoramic-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 10px 4px 18px;
    scrollbar-width: none; /* Hide default scrollbar */
}

.gallery-panoramic-track::-webkit-scrollbar {
    display: none;
}

/* Individual Panoramic Cards */
.panoramic-card {
    flex: 0 0 280px;
    height: 320px;
    border-radius: 18px;
    position: relative;
    cursor: pointer;
    scroll-snap-align: start;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, filter 0.3s ease;
    user-select: none;
}

@media (min-width: 768px) {
    .panoramic-card {
        flex: 0 0 300px;
        height: 330px;
    }
}

@media (min-width: 1200px) {
    .panoramic-card {
        flex: 0 0 310px;
        height: 340px;
    }
}

.panoramic-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}

.panoramic-card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.panoramic-card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.05) 0%,
        rgba(15, 23, 42, 0.25) 45%,
        rgba(15, 23, 42, 0.88) 100%
    );
    transition: background 0.3s ease;
}

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

.panoramic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(14, 165, 183, 0.2);
}

.panoramic-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.3px;
    z-index: 2;
}

.panoramic-zoom-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.25s ease;
    z-index: 2;
    cursor: pointer;
}

.panoramic-card:hover .panoramic-zoom-btn {
    opacity: 1;
    transform: scale(1);
}

.panoramic-zoom-btn:hover {
    background: #0ea5b7;
    border-color: #0ea5b7;
}

.panoramic-info {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 2;
}

.panoramic-loc {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #38bdf8;
    margin-bottom: 3px;
    letter-spacing: 0.2px;
}

.panoramic-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Footer Indicator & Counter */
.gallery-panoramic-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
    padding: 0 4px;
}

.panoramic-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}

.panoramic-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #cbd5e1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.panoramic-dot.active {
    width: 24px;
    background: #0ea5b7;
    box-shadow: 0 2px 8px rgba(14, 165, 183, 0.4);
}

.panoramic-counter {
    font-size: 0.8rem;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.5px;
}

.panoramic-counter .curr-index {
    color: #0ea5b7;
    font-size: 0.95rem;
}

.panoramic-card.is-hidden {
    display: none !important;
}

.filmstrip-thumb.is-hidden {
    display: none !important;
}

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

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

.lightbox-content-box {
    max-width: 85vw;
    max-height: 82vh;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.85);
    background: #000;
    display: flex;
    flex-direction: column;
}

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

.lightbox-caption-bar {
    padding: 10px 18px;
    background: rgba(15, 23, 42, 0.95);
    color: #f1f5f9;
    font-size: 0.92rem;
    font-weight: 600;
    text-align: center;
}

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

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

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.lightbox-nav-btn:hover {
    background: #0ea5b7;
    border-color: #0ea5b7;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

@media (max-width: 992px) {
    .gallery-compact-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 155px;
    }
}

@media (max-width: 580px) {
    .gallery-compact-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    .gallery-card.card-hero-spot {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* ================= 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;
}

/* ================= 8.5 MEET OUR DEDICATED TEAM ================= */
.team-section {
    position: relative;
    padding: 75px 0 85px;
    background: #ffffff;
    overflow: hidden;
}

.team-header-box {
    max-width: 680px;
    margin: 0 auto 46px;
    text-align: center;
}

.team-badge-lead {
    display: inline-flex;
    align-items: center;
    background: #e0f2fe;
    color: #0284c7;
    font-size: 0.76rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 999px;
    margin-bottom: 10px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.team-main-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.7px;
    margin-bottom: 12px;
    line-height: 1.2;
}

.team-lead-sub {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0 auto;
}

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

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

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

/* Modern Executive Team Card */
.team-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px; /* 8px normalized */
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: #0ea5b7;
    box-shadow: 0 16px 36px rgba(14, 165, 183, 0.16);
}

.team-card-media {
    position: relative;
    width: 100%;
    height: 290px;
    overflow: hidden;
    background: #0f172a;
}

.team-member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
}

.team-card:hover .team-member-img {
    transform: scale(1.06);
}

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

/* Experience Tag */
.team-exp-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.team-exp-badge i {
    color: #38bdf8;
}

/* Hover Quick Connect Buttons */
.team-quick-connect {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 3;
}

.team-card:hover .team-quick-connect {
    bottom: 14px;
}

.team-connect-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.25s ease;
}

.team-connect-btn.wa {
    background: #22c55e;
}
.team-connect-btn.mail {
    background: #0ea5b7;
}
.team-connect-btn.in {
    background: #0077b5;
}

.team-connect-btn:hover {
    transform: scale(1.15);
}

/* Card Information Body */
.team-card-info {
    padding: 18px 16px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: left;
    background: #ffffff;
}

.team-role-pill {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.68rem;
    font-weight: 800;
    color: #0ea5b7;
    background: #f0fdfa;
    border: 1px solid #ccfbf1;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.team-member-name {
    font-size: 1.12rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin: 0 0 3px;
    transition: color 0.2s ease;
}

.team-card:hover .team-member-name {
    color: #0ea5b7;
}

.team-member-designation {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 10px;
    display: block;
}

.team-specialty-box {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px dashed #f1f5f9;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.team-spec-icon {
    color: #f59e0b;
    font-size: 0.72rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.team-member-specialty {
    font-size: 0.76rem;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
}

/* ================= 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: 8px !important;
    overflow: hidden;
    border: 1.5px solid #eef4f7;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    min-width: 0;
}

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

.blog-card-media-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
    width: 100%;
    background: #0f172a;
}

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

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

.blog-media-glass-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.04) 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: 4px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    color: #0f172a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* Floating Bookmark Button */
.blog-bookmark-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 2;
}

.blog-bookmark-btn:hover {
    background: #0ea5b7;
    border-color: #0ea5b7;
    transform: scale(1.1);
}

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

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

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

.creative-blog-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.35;
    margin-bottom: 10px;
    letter-spacing: -0.4px;
}

.creative-blog-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

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

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

.blog-author-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.author-dot-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #e0f2fe;
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.author-name-label {
    font-size: 0.76rem;
    font-weight: 700;
    color: #475569;
}

.btn-read-article-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 800;
    color: #0ea5b7;
    background: #f0fdfa;
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid #ccfbf1;
    text-decoration: none;
    transition: all 0.25s ease;
}

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

/* ================= 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-badge-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.faq-art-circle-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: contain;
    filter: drop-shadow(0 6px 14px rgba(14, 165, 183, 0.22));
    animation: gentleRotatePulse 12s ease-in-out infinite alternate;
}

@keyframes gentleRotatePulse {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.06) rotate(12deg); }
}

.faq-badge-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-pill-tag {
    display: inline-flex;
    align-items: center;
    background: #e0f2fe;
    color: #0369a1;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 6px;
    letter-spacing: 0.3px;
    width: fit-content;
}

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

.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: 18px;
    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: 44px;
    height: 44px;
    border-radius: 8px; /* Reduced radius */
    background: #e0f2fe;
    color: #0284c7;
    font-size: 1.15rem;
    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: 10px; /* Crisp reduced radius */
    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: 14px; /* Reduced crisp radius */
    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 10px 26px rgba(14, 165, 183, 0.12);
}

.faq-accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 18px 22px;
    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 - Reduced Radius (crisp modern shape) */
.faq-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 7px; /* Reduced crisp radius instead of rounded circle */
    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 - Reduced Radius */
.faq-toggle-icon {
    width: 30px;
    height: 30px;
    border-radius: 6px; /* Reduced crisp radius instead of 50% circle */
    background: #f1f5f9;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    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(180deg);
}

/* 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 {
        width: calc(100% - 24px);
        margin-left: auto;
        margin-right: auto;
        border-radius: 0 0 18px 18px;
        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 4px 18px rgba(0,0,0,0.06);
        transition: 
            width 0.5s cubic-bezier(0.25, 1, 0.5, 1),
            border-radius 0.5s cubic-bezier(0.25, 1, 0.5, 1),
            box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .aurora-header.is-scrolled {
        width: 100%;
        border-radius: 0;
        border-bottom: 1px solid #f1f5f9;
        box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    }

    .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 {
        width: calc(100% - 24px);
        margin: 12px auto 0;
        border-radius: 20px;
        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;
    }
}

/* ==========================================================================
   SMOOTH SCROLL REVEAL ANIMATIONS (PREMIUM LUXURY INTERACTION)
   ========================================================================== */

/* Base animation states */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

/* Directional variants */
.reveal-from-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-from-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-zoom-in {
    opacity: 0;
    transform: scale(0.93) translateY(25px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

/* Active state when element enters viewport */
.reveal-on-scroll.is-revealed,
.reveal-from-left.is-revealed,
.reveal-from-right.is-revealed,
.reveal-zoom-in.is-revealed {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) !important;
}

/* Stagger delay utilities for grid items / child elements */
.stagger-item {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.stagger-item.is-revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/* Graceful degradation for users who prefer reduced motion */
/* ================= 20. VISA ASSISTANCE DEDICATED PAGE ================= */
.visa-hero-section {
    position: relative;
    padding: 100px 0 75px;
    background: linear-gradient(135deg, #09202a 0%, #0d3846 50%, #0a667b 100%);
    color: #ffffff;
    overflow: hidden;
}

.visa-hero-bg-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image: radial-gradient(#ffffff 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    pointer-events: none;
}

.visa-hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.visa-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.8125rem;
    font-weight: 700;
    color: #38bdf8;
    margin-bottom: 20px;
}

.visa-hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 18px;
    color: #ffffff;
}

.visa-hero-sub {
    font-size: 1.125rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 45px;
}

.visa-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: left;
}

.visa-stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: transform 0.3s ease;
}

.visa-stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.14);
}

.visa-stat-number {
    font-size: 1.65rem;
    font-weight: 900;
    color: #38bdf8;
    line-height: 1;
}

.visa-stat-label {
    font-size: 0.775rem;
    color: #e2e8f0;
    font-weight: 600;
}

/* 3-Step Process Section */
.visa-process-section {
    padding: 85px 0;
    background: #ffffff;
}

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

.visa-step-card {
    position: relative;
    background: #f8fafc;
    border: 1.5px solid #edf2f7;
    border-radius: 24px;
    padding: 36px 26px 30px;
    transition: all 0.35s ease;
}

.visa-step-card:hover {
    transform: translateY(-8px);
    border-color: #0ea5b7;
    box-shadow: 0 16px 36px rgba(10, 102, 123, 0.1);
    background: #ffffff;
}

.visa-step-num-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 2.2rem;
    font-weight: 900;
    color: #e2e8f0;
    line-height: 1;
}

.visa-step-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.bg-blue-glow { background: #e0f2fe; color: #0284c7; }
.bg-teal-glow { background: #ccfbf1; color: #0f766e; }
.bg-green-glow { background: #dcfce7; color: #16a34a; }

.visa-step-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.visa-step-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

/* Visa Catalog Grid */
.visa-catalog-section {
    padding: 85px 0 95px;
    background: #f4fbfd;
}

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

.visa-country-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.visa-country-card:hover {
    transform: translateY(-8px);
    border-color: #0a667b;
    box-shadow: 0 18px 40px rgba(10, 102, 123, 0.14);
}

.visa-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f1f5f9;
}

.visa-country-identity {
    display: flex;
    align-items: center;
    gap: 12px;
}

.visa-country-flag {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    border: 1.5px solid #ffffff;
    flex-shrink: 0;
}

.visa-country-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
}

.visa-type-pill {
    font-size: 0.75rem;
    font-weight: 600;
    color: #0ea5b7;
}

.visa-status-tag {
    padding: 4px 10px;
    border-radius: 9999px;
    background: #e0f2fe;
    color: #0369a1;
    font-size: 0.6875rem;
    font-weight: 700;
    white-space: nowrap;
}

.visa-card-meta-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8125rem;
}

.meta-key {
    color: #64748b;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.meta-val {
    color: #1e293b;
    font-weight: 700;
}

.meta-val.price-accent {
    color: #0a667b;
    font-size: 0.95rem;
}

.visa-requirements-box {
    background: #f8fafc;
    border-radius: 14px;
    padding: 12px 14px;
    margin-bottom: 20px;
}

.req-title {
    display: block;
    font-size: 0.775rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 8px;
}

.req-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.req-list li {
    font-size: 0.75rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.req-list li i {
    color: #10b981;
    font-size: 0.7rem;
}

.btn-visa-apply-card {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 18px;
    border-radius: 9999px;
    background: #0a667b;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-visa-apply-card:hover {
    background: #074e5e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 102, 123, 0.35);
}

/* Quick Form Section */
.visa-quick-form-section {
    padding: 85px 0 100px;
    background: #ffffff;
}

.visa-form-wrapper {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 40px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 32px;
    padding: 45px;
    box-shadow: 0 16px 45px rgba(10, 102, 123, 0.08);
}

.visa-form-main-title {
    font-size: 2.25rem;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.6px;
    margin-bottom: 8px;
}

.visa-form-desc {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 28px;
    line-height: 1.55;
}

.btn-visa-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 9999px;
    background: linear-gradient(135deg, #0a667b, #0d7c94);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(10, 102, 123, 0.3);
}

.btn-visa-submit:hover {
    background: linear-gradient(135deg, #074e5e, #0a667b);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10, 102, 123, 0.4);
}

.visa-support-box {
    background: linear-gradient(145deg, #0a667b, #074554);
    border-radius: 24px;
    padding: 38px 28px;
    color: #ffffff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.support-avatar-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 18px;
}

.support-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.25;
}

.support-desc {
    font-size: 0.9rem;
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 24px;
}

.support-perks-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.perk-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #f0fdf4;
}

.perk-row i {
    color: #4ade80;
}

.btn-visa-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    border-radius: 9999px;
    background: #25d366;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.btn-visa-wa:hover {
    background: #20ba59;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
}

@media (max-width: 1024px) {
    .visa-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .visa-country-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .visa-form-wrapper {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
}

@media (max-width: 640px) {
    .visa-hero-title {
        font-size: 2.1rem;
    }
    .visa-steps-grid {
        grid-template-columns: 1fr;
    }
    .visa-country-grid {
        grid-template-columns: 1fr;
    }
    .visa-stats-row {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   GLOBAL CARD BORDER-RADIUS NORMALIZATION (8px as requested by user)
   Ensures all cards across the entire website have a clean, crisp 8px radius
   ========================================================================== */
.service-capsule-card,
.popular-tour-card,
.bento-tall-card,
.bento-small-card,
.bento-small-card.top-rounded,
.bento-small-card.bottom-rounded,
.panoramic-card,
.panoramic-card-inner,
.testimonial-card,
.team-card,
.team-card-media,
.creative-blog-card,
.why-metric-card,
.travel-way-thumb,
.ai-planner-wrapper,
.story-metrics-card,
.faq-direct-help-box,
.faq-accordion-item,
.help-planning-bar,
.newsletter-card,
.visa-step-card,
.visa-country-card,
.visa-support-box,
.hub-capsule-tab,
.hub-workspace-grid,
.hub-form-workspace,
.arc-card-image-box,
.promo-card,
.destination-card {
    border-radius: 8px !important;
}

/* Internal card thumbnails and media wrappers */
.popular-card-thumb,
.team-card-media,
.blog-card-media-wrap,
.bento-tall-card img,
.bento-small-card img,
.panoramic-card-inner img,
.arc-card-image-box img {
    border-top-left-radius: 8px !important;
    border-top-right-radius: 8px !important;
}

/* ========================================================================= */
/* PACKAGE DETAILS PAGE & GET A QUOTE SECTION (USER MOCKUP DESIGN)           */
/* ========================================================================= */

.package-details-hero {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 32px 0 40px;
    border-bottom: 1px solid #e2e8f0;
}

.package-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: #64748b;
    margin-bottom: 24px;
}

.package-breadcrumb a {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.package-breadcrumb a:hover {
    color: #dc2626;
}

.package-breadcrumb .bc-sep {
    color: #cbd5e1;
}

.package-breadcrumb .bc-current {
    color: #0f172a;
    font-weight: 600;
}

.package-hero-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.pkg-header-main {
    flex: 1;
    min-width: 320px;
}

.pkg-header-badge-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.pkg-dest-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.pkg-duration-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eef2ff;
    color: #4f46e5;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 600;
}

.pkg-rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fefce8;
    border: 1px solid #fef08a;
    color: #854d0e;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 600;
}

.pkg-featured-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fef3c7;
    border: 1px solid #fde68a;
    color: #92400e;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 700;
}

.package-main-title {
    font-size: 38px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.025em;
    line-height: 1.22;
    margin: 0 0 10px 0;
}

.package-subtitle {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.pkg-header-meta-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.pkg-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    background: #ffffff;
    padding: 5px 12px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.pkg-header-price-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px !important;
    padding: 22px 26px;
    text-align: right;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
    min-width: 270px;
}

.pkg-price-caption {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.pkg-price-number {
    font-size: 34px;
    font-weight: 900;
    color: #dc2626;
    line-height: 1;
    margin-bottom: 14px;
}

.pkg-price-number .pkg-per-person {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.btn-jump-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
    color: #ffffff !important;
    border: none;
    border-radius: 8px !important;
    padding: 12px 18px;
    font-weight: 700;
    font-size: 14.5px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.28);
}

.btn-jump-quote:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.38);
}

.pkg-price-micro-note {
    font-size: 11.5px;
    color: #64748b;
    font-weight: 600;
    margin-top: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Modern Luxury Split Showcase & Gallery Slider */
.pkg-showcase-split-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 16px;
    align-items: stretch;
}

.pkg-slider-viewport-card {
    position: relative;
    height: 480px;
    background: #09101f;
    border-radius: 8px !important;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 16px 36px -8px rgba(15, 23, 42, 0.12);
}

.pkg-split-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease, transform 0.6s ease;
}

.pkg-slider-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.35) 0%, transparent 40%, rgba(9, 16, 31, 0.88) 100%);
    pointer-events: none;
}

/* Slider Nav Arrows */
.pkg-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    z-index: 10;
    transition: all 0.25s ease;
}

.pkg-slider-arrow:hover {
    background: #ffffff;
    color: #0ea5b7;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.pkg-slider-arrow.prev {
    left: 20px;
}

.pkg-slider-arrow.next {
    right: 20px;
}

/* Floating Top Badges */
.pkg-slider-floating-top {
    position: absolute;
    top: 18px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
    pointer-events: none;
}

.slider-badge-glass {
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    pointer-events: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.slider-badge-glass.verified {
    border-color: rgba(16, 185, 129, 0.4);
}

.slider-badge-glass.photo-count {
    color: #38bdf8;
    border-color: rgba(56, 189, 248, 0.4);
}

/* Floating Bottom Bar */
.pkg-slider-floating-bottom {
    position: absolute;
    bottom: 18px;
    left: 22px;
    right: 22px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 5;
    flex-wrap: wrap;
    gap: 12px;
    pointer-events: none;
}

.floating-dest-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dest-tag {
    font-size: 11px;
    color: #38bdf8;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.dest-heading {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.floating-signature-tag {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(245, 158, 11, 0.45);
    color: #fef08a;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    pointer-events: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Right Side: Stacked Thumbnails Sidebar */
.pkg-showcase-thumbs-sidebar {
    display: flex;
    flex-direction: column;
    height: 480px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px !important;
    padding: 14px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.thumbs-sidebar-header {
    font-size: 13px;
    font-weight: 800;
    color: #1e293b;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 8px;
}

.thumbs-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    overflow-y: auto;
    scrollbar-width: thin;
}

.pkg-split-thumb-card {
    position: relative;
    flex: 1;
    border-radius: 6px !important;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.25s ease;
    min-height: 90px;
}

.pkg-split-thumb-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.thumb-card-info {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 8px 10px;
    color: #ffffff;
    transition: all 0.2s ease;
}

.thumb-view-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.thumb-view-icon {
    font-size: 11px;
    opacity: 0.8;
}

.pkg-split-thumb-card:hover {
    transform: translateX(4px);
    border-color: #0ea5b7;
}

.pkg-split-thumb-card:hover img {
    transform: scale(1.08);
}

.pkg-split-thumb-card.active {
    border-color: #0ea5b7;
    box-shadow: 0 4px 14px rgba(14, 165, 183, 0.35);
}

.pkg-split-thumb-card.active .thumb-card-info {
    background: linear-gradient(180deg, rgba(14, 165, 183, 0.2) 0%, rgba(15, 23, 42, 0.85) 100%);
}

@media (max-width: 991px) {
    .pkg-showcase-split-grid {
        grid-template-columns: 1fr;
    }
    .pkg-showcase-thumbs-sidebar {
        height: auto;
    }
    .thumbs-sidebar-list {
        flex-direction: row;
        overflow-x: auto;
    }
    .pkg-split-thumb-card {
        min-width: 140px;
        height: 90px;
    }
}

/* Body & Two Columns */
.package-details-body-section {
    padding: 48px 0 80px;
    background: #f8fafc;
}

.package-layout-grid {
    display: grid;
    grid-template-columns: 2.1fr 1fr;
    gap: 36px;
    align-items: flex-start;
}

/* Quick Specs */
.package-quick-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px !important;
    padding: 20px 24px;
    margin-bottom: 28px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

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

.spec-icon {
    width: 46px;
    height: 46px;
    border-radius: 8px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.icon-spec-dur { background: #e0f2fe; color: #0284c7; }
.icon-spec-group { background: #fef3c7; color: #d97706; }
.icon-spec-loc { background: #dcfce7; color: #16a34a; }
.icon-spec-care { background: #ede9fe; color: #7c3aed; }

.spec-text {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
}

.spec-text strong {
    font-size: 14px;
    color: #0f172a;
    font-weight: 700;
}

/* Gallery verified & hover overlays */
.gallery-verified-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 6px;
}

.thumb-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.gallery-thumb-item {
    position: relative;
}

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

/* General Pkg Info Cards */
.pkg-info-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px !important;
    padding: 28px 32px;
    margin-bottom: 28px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.pkg-card-title {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 18px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.overview-quick-pills {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px dashed #e2e8f0;
}

.ov-pill {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #334155;
    font-size: 12.5px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ov-pill i {
    color: #0ea5b7;
}

.pkg-overview-p {
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
    margin: 0;
}

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

.pkg-highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #334155;
    background: #f8fafc;
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid #f1f5f9;
}

.pkg-highlight-box i {
    color: #10b981;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Inclusions & Exclusions */
.inclusions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.inclusions-box, .exclusions-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px !important;
    padding: 22px;
}

.incl-title {
    font-size: 15px;
    font-weight: 800;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.incl-list, .excl-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.incl-list li, .excl-list li {
    font-size: 13.5px;
    color: #475569;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.45;
}

.incl-list li i {
    color: #16a34a;
    margin-top: 2px;
    flex-shrink: 0;
}

.excl-list li i {
    color: #e11d48;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Itinerary Header row */
.itinerary-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.itinerary-badge {
    background: #e0f2fe;
    color: #0284c7;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
}

/* Itinerary Timeline */
.itinerary-timeline {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    padding-left: 10px;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: 45px;
    width: 2px;
    background: #e2e8f0;
    z-index: 1;
}

/* Sticky Section Navigation Tabs */
.pkg-section-nav-wrapper {
    position: sticky;
    top: 75px;
    z-index: 40;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px !important;
    padding: 8px 12px;
    margin-bottom: 24px;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
}

.pkg-section-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
}

.pkg-section-nav::-webkit-scrollbar {
    display: none;
}

.pkg-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13.5px;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.pkg-nav-link i {
    font-size: 13px;
    color: #94a3b8;
    transition: color 0.2s ease;
}

.pkg-nav-link:hover {
    color: #0f172a;
    background: #f1f5f9;
}

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

.pkg-nav-link.active {
    background: #f0fdfa;
    color: #0d9488;
}

.pkg-nav-link.active i {
    color: #0d9488;
}

.pkg-nav-link.nav-link-quote {
    margin-left: auto;
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fee2e2;
}

.pkg-nav-link.nav-link-quote:hover {
    background: #dc2626;
    color: #ffffff;
}

.pkg-nav-link.nav-link-quote:hover i {
    color: #ffffff;
}

.timeline-day-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.day-badge-col {
    flex-shrink: 0;
}

.day-badge {
    display: inline-block;
    background: #ffffff;
    border: 2px solid #0ea5b7;
    color: #0ea5b7;
    font-weight: 800;
    font-size: 12.5px;
    padding: 6px 14px;
    border-radius: 8px !important;
    box-shadow: 0 2px 6px rgba(14, 165, 183, 0.15);
    transition: all 0.25s ease;
}

.timeline-day-item.active .day-badge {
    background: linear-gradient(135deg, #0ea5b7 0%, #0284c7 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(14, 165, 183, 0.35);
}

.day-details-col {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px !important;
    padding: 18px 22px;
    flex: 1;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.timeline-day-item:hover .day-details-col {
    border-color: #cbd5e1;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.timeline-day-item.active .day-details-col {
    border-color: rgba(14, 165, 183, 0.4);
    background: #fbfdfd;
}

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

.day-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.day-toggle-icon {
    font-size: 12px;
    color: #94a3b8;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.2s ease, color 0.2s ease;
}

.timeline-day-item.active .day-toggle-icon {
    transform: rotate(180deg);
    background: #e0f2fe;
    color: #0284c7;
}

.day-body-content {
    margin-top: 10px;
    display: block;
}

.timeline-day-item:not(.active) .day-body-content {
    display: none;
}

.day-desc {
    font-size: 14px;
    color: #475569;
    line-height: 1.65;
    margin: 0 0 12px 0;
}

.day-meta-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding-top: 10px;
    border-top: 1px dashed #e2e8f0;
}

.d-meta {
    font-size: 12px;
    font-weight: 600;
    color: #334155;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.d-meta i {
    color: #0ea5b7;
    font-size: 11px;
}

/* ========================================================================= */
/* MODERN LUXURY 'GET A CUSTOM QUOTE' CARD                                   */
/* ========================================================================= */

.quote-mockup-wrapper {
    position: relative;
    margin-top: 40px;
    margin-bottom: 30px;
}

/* Red Tab on top left */
.quote-mockup-tab {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 26px;
    border-top-left-radius: 8px !important;
    border-top-right-radius: 8px !important;
    box-shadow: 0 -3px 12px rgba(220, 38, 38, 0.18);
    letter-spacing: 0.3px;
}

/* Outer Border Container */
.quote-mockup-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 0 8px 8px 8px !important;
    padding: 38px 42px;
    box-shadow: 0 12px 36px -6px rgba(15, 23, 42, 0.08);
}

/* 2 Columns: Requirement Details & Contact Details */
.quote-mockup-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    align-items: flex-start;
}

/* Heading with Icon Wrapper */
.quote-heading-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.quote-heading-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.quote-heading-icon.icon-req {
    background: #e0f2fe;
    color: #0284c7;
    border: 1px solid #bae6fd;
}

.quote-heading-icon.icon-contact {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.quote-col-heading {
    color: #0f172a;
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.02em;
}

.quote-col-sub {
    font-size: 12.5px;
    color: #64748b;
    margin: 3px 0 0 0;
}

/* Field Row: label on left, input on right */
.quote-field-row {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    gap: 16px;
}

.quote-field-row.align-start {
    align-items: flex-start;
}

.quote-field-label {
    width: 135px;
    flex-shrink: 0;
    text-align: right;
    font-size: 13.5px;
    color: #475569;
    font-weight: 700;
}

.quote-input-wrap {
    flex: 1;
}

/* Inputs & Dropdowns */
.quote-field-input,
.quote-field-select,
.quote-field-textarea {
    width: 100%;
    padding: 10px 14px;
    font-size: 13.5px;
    border: 1.5px solid #e2e8f0;
    border-radius: 6px !important;
    background-color: #f8fafc;
    color: #0f172a;
    font-family: inherit;
    box-sizing: border-box;
    transition: all 0.2s ease;
    font-weight: 500;
}

.quote-field-input:focus,
.quote-field-select:focus,
.quote-field-textarea:focus {
    outline: none;
    background-color: #ffffff;
    border-color: #0ea5b7;
    box-shadow: 0 0 0 3px rgba(14, 165, 183, 0.14);
}

.quote-field-input.pkg-name-readonly {
    background-color: #f1f5f9;
    color: #0f172a;
    font-weight: 700;
    cursor: default;
    border-color: #cbd5e1;
}

.quote-field-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%230ea5b7' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 32px;
    appearance: none;
}

.quote-field-textarea {
    resize: vertical;
    min-height: 85px;
}

/* Captcha Row */
.captcha-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.captcha-input {
    width: 120px !important;
    flex-shrink: 0;
}

.captcha-badge-box {
    background: #f1f5f9;
    background-image: repeating-linear-gradient(45deg, #e2e8f0 0, #e2e8f0 2px, #f8fafc 0, #f8fafc 6px);
    border: 1px solid #cbd5e1;
    padding: 7px 16px;
    border-radius: 6px !important;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 5px;
    color: #0f172a;
    user-select: none;
    cursor: pointer;
}

.captcha-refresh-btn {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    color: #0ea5b7;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.captcha-refresh-btn:hover {
    transform: rotate(90deg);
    color: #dc2626;
    background: #ffffff;
    border-color: #cbd5e1;
}

.quote-privacy-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #64748b;
    margin-top: 14px;
    padding: 10px 14px;
    background: #f8fafc;
    border-radius: 6px;
    border: 1px solid #f1f5f9;
}

/* Centered Red Send Button */
.quote-submit-row {
    text-align: center;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid #f1f5f9;
}

.quote-btn-send {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px !important;
    padding: 14px 48px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.4px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(220, 38, 38, 0.3);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.quote-btn-send:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(220, 38, 38, 0.4);
}

.quote-response-msg {
    margin-top: 20px;
    padding: 14px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.quote-response-msg.success {
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    color: #065f46;
}

.quote-response-msg.error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

/* Sidebar Styling */
.pkg-sidebar-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}

.sticky-sidebar {
    position: sticky;
    top: 90px;
}

.sidebar-price-header {
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 18px;
    margin-bottom: 20px;
}

.sb-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.sb-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.sb-price {
    font-size: 34px;
    font-weight: 800;
    color: #dc2626;
    line-height: 1;
}

.sb-basis {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.sb-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fef3c7;
    color: #92400e;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 9999px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sb-instant-confirm {
    margin-top: 8px;
    font-size: 12px;
    color: #059669;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sb-perks-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.sb-perk-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13.5px;
    color: #334155;
}

.sb-perk-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px !important;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.sb-perk-text {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
}

.sb-perk-text strong {
    font-size: 13px;
    color: #0f172a;
    font-weight: 700;
}

.sb-perk-text span {
    font-size: 12px;
    color: #64748b;
}

.sb-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.sb-btn-quote {
    background: #dc2626 !important;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 8px !important;
    padding: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.sb-btn-wa {
    background: #25d366 !important;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 8px !important;
    padding: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.sb-btn-call {
    border: 1px solid #cbd5e1 !important;
    color: #334155 !important;
    text-decoration: none;
    border-radius: 8px !important;
    padding: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.sb-trust-badge {
    text-align: center;
    font-size: 12px;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding-top: 10px;
    border-top: 1px solid #f8fafc;
}

/* Other Packages in Sidebar */
.other-pkg-title {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 16px 0;
}

.other-pkg-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.other-pkg-item {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.other-pkg-item:hover {
    background: #f1f5f9;
}

.other-pkg-img {
    width: 64px;
    height: 64px;
    border-radius: 8px !important;
    object-fit: cover;
    flex-shrink: 0;
}

.other-pkg-info {
    flex: 1;
}

.other-pkg-name {
    font-size: 13.5px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px 0;
    line-height: 1.35;
}

.other-pkg-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}

.other-pkg-price {
    color: #dc2626;
    font-weight: 700;
}

.other-pkg-dur {
    color: #64748b;
}

/* Responsive Styles for Details and Quote Form */
@media (max-width: 991px) {
    .package-layout-grid {
        grid-template-columns: 1fr;
    }
    .package-gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-thumbs-col {
        flex-direction: row;
        height: 100px;
    }
    .quote-mockup-columns {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .package-quick-specs {
        grid-template-columns: repeat(2, 1fr);
    }
    .quote-field-label {
        text-align: left;
        width: 120px;
    }
}

@media (max-width: 640px) {
    .quote-field-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .quote-field-label {
        text-align: left;
        width: 100%;
    }
    .quote-mockup-card {
        padding: 24px 16px;
    }
    .package-quick-specs {
        grid-template-columns: 1fr;
    }
    .inclusions-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================================================= */
/* POPULAR TOUR PACKAGE CARDS (MODERN LUXURY UI - 8PX RADIUS)                */
/* ========================================================================= */

.popular-tour-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
    position: relative;
}

.popular-tour-card:hover {
    transform: translateY(-8px);
    border-color: #0ea5b7;
    box-shadow: 0 16px 36px rgba(14, 165, 183, 0.16);
}

/* Card Thumbnail Box */
.popular-card-thumb {
    position: relative;
    height: 220px;
    width: 100%;
    overflow: hidden;
    background: #0f172a;
    border-top-left-radius: 8px !important;
    border-top-right-radius: 8px !important;
}

.tour-thumb-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.tour-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.tour-thumb-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.35) 0%, transparent 40%, rgba(15, 23, 42, 0.7) 100%);
    pointer-events: none;
}

/* Floating Badges */
.tour-floating-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    font-size: 11.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 6px;
    background: #dc2626;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.35);
}

.tour-wishlist-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 3;
}

.tour-wishlist-btn:hover {
    background: #ffffff;
    color: #dc2626;
    transform: scale(1.1);
}

.tour-duration-chip {
    position: absolute;
    bottom: 12px;
    left: 14px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(6px);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tour-duration-chip i {
    color: #38bdf8;
    font-size: 11px;
}

/* Card Body */
.popular-card-body {
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #ffffff;
}

/* Meta Header: Location + Rating */
.tour-card-meta-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
}

.tour-card-locations {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    margin: 0;
}

.tour-flag-icon {
    font-size: 15px;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.tour-card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12.5px;
}

.tour-card-rating .fa-star {
    color: #f59e0b;
    font-size: 11px;
}

.tour-card-rating .rating-val {
    font-weight: 700;
    color: #0f172a;
}

.tour-card-rating .reviews-count {
    color: #94a3b8;
    font-size: 11.5px;
}

/* Tour Title */
.tour-card-title {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.35;
    margin: 0 0 12px 0;
    letter-spacing: -0.01em;
}

.tour-title-link {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.tour-title-link:hover {
    color: #0ea5b7;
}

/* Quick Perks Row */
.tour-perks-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.tour-perk-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11.5px;
    font-weight: 600;
    color: #047857;
    background: #ecfdf5;
    border: 1px solid #d1fae5;
    padding: 3px 8px;
    border-radius: 4px;
}

.tour-perk-pill i {
    font-size: 9px;
    color: #10b981;
}

/* Price Row */
.tour-card-price-row {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
    margin-bottom: 14px;
}

.tour-price-group {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.tour-from-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-price {
    font-size: 22px;
    font-weight: 800;
    color: #dc2626;
    line-height: 1;
}

.tour-old-price {
    font-size: 13px;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 500;
}

.tour-person-basis {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

/* Card Footer CTAs */
.tour-card-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.btn-tour-view-details {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #0ea5b7;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 6px;
    border: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 6px rgba(14, 165, 183, 0.2);
}

.btn-tour-view-details:hover {
    background: #088392;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(14, 165, 183, 0.35);
}

.btn-tour-view-details i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.btn-tour-view-details:hover i {
    transform: translateX(3px);
}

.btn-tour-wa-quick {
    width: 40px;
    height: 40px;
    background: #25d366;
    color: #ffffff !important;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    flex-shrink: 0;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(37, 211, 102, 0.25);
}

.btn-tour-wa-quick:hover {
    background: #1eb954;
    transform: translateY(-1px) scale(1.05);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* ==========================================================================
   2.5 SEASONAL FLASH DEALS SECTION
   ========================================================================== */
.flash-deals-section {
    padding: 70px 0 60px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.flash-deals-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 36px;
}

.flash-header-left {
    max-width: 580px;
}

.flash-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fee2e2;
    color: #b91c1c;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    border: 1px solid #fca5a5;
}

.flash-live-dot {
    width: 8px;
    height: 8px;
    background: #dc2626;
    border-radius: 50%;
    display: inline-block;
    animation: pulseFlashDot 1.4s infinite;
}

@keyframes pulseFlashDot {
    0% { transform: scale(0.9); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.4; }
    100% { transform: scale(0.9); opacity: 1; }
}

.flash-deals-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 8px;
}

.flash-deals-subtitle {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 0;
}

.flash-countdown-box {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px !important;
    padding: 12px 20px;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(14, 165, 183, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.flash-countdown-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0ea5b7, #dc2626);
}

.countdown-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #dc2626;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.countdown-label i {
    color: #dc2626;
    font-size: 0.86rem;
    animation: rotateClockIcon 4s linear infinite;
}

@keyframes rotateClockIcon {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.countdown-digits {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cd-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 8px !important;
    padding: 7px 11px 5px;
    min-width: 54px;
    border: 1px solid #e2e8f0;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.9), 0 2px 5px rgba(15, 23, 42, 0.04);
    position: relative;
    transition: all 0.25s ease;
}

.cd-unit:hover {
    border-color: #0ea5b7;
    background: #f0fdfa;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(14, 165, 183, 0.15);
}

.cd-number {
    font-size: 1.45rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    letter-spacing: -0.5px;
    margin-bottom: 2px;
}

.cd-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: #0ea5b7;
    font-weight: 800;
    letter-spacing: 0.6px;
}

.cd-colon {
    font-size: 1.35rem;
    font-weight: 900;
    color: #dc2626;
    opacity: 0.85;
    margin-top: -8px;
    line-height: 1;
    animation: pulseColon 1s infinite alternate;
}

@keyframes pulseColon {
    0% { opacity: 0.4; transform: scale(0.92); }
    100% { opacity: 1; transform: scale(1.08); }
}

@keyframes pulseColon {
    0% { opacity: 0.4; transform: scale(0.92); }
    100% { opacity: 1; transform: scale(1.06); }
}

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

.flash-deal-card {
    background: #ffffff;
    border-radius: 8px !important;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 24px -6px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.flash-deal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 36px -8px rgba(15, 23, 42, 0.16);
    border-color: #cbd5e1;
}

.flash-deal-thumb-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.flash-deal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.flash-deal-card:hover .flash-deal-img {
    transform: scale(1.06);
}

.flash-save-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #dc2626;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.flash-seats-left {
    position: absolute;
    bottom: 10px;
    right: 12px;
    background: rgba(15, 23, 42, 0.85);
    color: #fef08a;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.flash-deal-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.flash-deal-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.flash-meta-loc {
    color: #64748b;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.flash-meta-loc i {
    color: var(--color-teal, #0ea5b7);
}

.flash-meta-rating {
    color: #d97706;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.flash-deal-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    margin-bottom: 8px;
}

.flash-deal-details {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.45;
    margin-bottom: 18px;
    flex-grow: 1;
}

.flash-deal-pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
}

.flash-pricing-block {
    display: flex;
    flex-direction: column;
}

.flash-old-price {
    font-size: 0.8rem;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 600;
}

.flash-current-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.flash-current-price small {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
}

.btn-flash-book {
    background: #0f172a;
    color: #ffffff !important;
    border-radius: 8px !important;
    padding: 9px 18px;
    font-size: 0.86rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-flash-book:hover {
    background: var(--color-teal, #0ea5b7);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(14, 165, 183, 0.35);
}

/* ==========================================================================
   3.5 HOW IT WORKS / 4 EASY STEPS
   ========================================================================== */
.how-it-works-section {
    padding: 85px 0 75px;
    background: #ffffff;
    position: relative;
}

.how-steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    margin: 48px 0 40px;
}

.how-step-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px !important;
    padding: 26px 20px;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
    transition: all 0.3s ease;
    position: relative;
}

.how-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
}

.step-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.step-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 8px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.step-color-teal { background: #e0f2fe; color: #0284c7; }
.step-color-amber { background: #fef3c7; color: #d97706; }
.step-color-emerald { background: #dcfce7; color: #16a34a; }
.step-color-blue { background: #ede9fe; color: #7c3aed; }

.step-number-badge {
    font-size: 1.6rem;
    font-weight: 800;
    color: #cbd5e1;
    font-family: monospace;
}

.step-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.3;
}

.step-card-desc {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 16px;
    min-height: 60px;
}

.step-card-footer {
    padding-top: 10px;
    border-top: 1px dashed #f1f5f9;
}

.step-pill {
    font-size: 0.74rem;
    font-weight: 700;
    color: #059669;
    background: #ecfdf5;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.step-connector-arrow {
    color: #cbd5e1;
    font-size: 1.2rem;
    text-align: center;
}

.how-steps-cta-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 8px !important;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
}

.cta-banner-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cta-banner-text strong {
    color: #ffffff;
    font-size: 1.15rem;
}

.cta-banner-text span {
    color: #94a3b8;
    font-size: 0.88rem;
}

.cta-banner-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-step-wa {
    background: #25d366;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 18px;
    border-radius: 8px !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all 0.2s ease;
}

.btn-step-wa:hover {
    background: #1eb954;
    transform: translateY(-2px);
}

.btn-step-explore {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 18px;
    border-radius: 8px !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all 0.2s ease;
}

.btn-step-explore:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   9.0 WHY CHOOSE REVIVE - MASTER LUXURY BENTO TRUST SHOWCASE
   ========================================================================== */
/* ==========================================================================
   9.0 WHY CHOOSE REVIVE - CRAFTED FOR EXCELLENCE (REVIVE THEME)
   ========================================================================== */
.why-choose-revive-section {
    padding: 100px 0 90px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.why-ambient-radial-glow {
    position: absolute;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(14, 165, 183, 0.08) 0%, transparent 70%);
    top: -120px;
    right: -80px;
    pointer-events: none;
}

.why-creative-header {
    max-width: 720px;
    margin: 0 auto 56px;
    position: relative;
    z-index: 2;
}

.why-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e0f2fe;
    color: #0284c7;
    border: 1px solid #bae6fd;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    padding: 6px 18px;
    border-radius: 9999px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.why-creative-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin-bottom: 14px;
}

.why-creative-sub {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Master Bento Grid Layout */
.why-bento-master-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 26px;
    margin-bottom: 36px;
    position: relative;
    z-index: 2;
}

/* Left Hero Bento Card */
.why-bento-hero-card {
    position: relative;
    border-radius: 8px !important;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.2);
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: #09101f;
}

.bento-hero-bg-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.bento-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    opacity: 0.9;
}

.why-bento-hero-card:hover .bento-hero-img {
    transform: scale(1.06);
}

.bento-hero-dark-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.55) 40%, rgba(11, 19, 38, 0.96) 95%);
}

.bento-hero-content {
    position: relative;
    z-index: 2;
    padding: 38px 36px;
}

.bento-hero-top-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 23, 42, 0.88);
    border: 1px solid rgba(56, 189, 248, 0.5);
    backdrop-filter: blur(10px);
    color: #38bdf8;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 9999px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.pulse-live-indicator {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    animation: pulseFlashDot 1.4s infinite;
}

.bento-hero-heading {
    font-size: 2.1rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.bento-hero-desc {
    font-size: 0.95rem;
    color: #e2e8f0;
    line-height: 1.7;
    margin-bottom: 26px;
    max-width: 95%;
}

.bento-hero-stats-row {
    display: flex;
    align-items: center;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 8px !important;
    padding: 18px 24px;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.bento-stat-box {
    display: flex;
    flex-direction: column;
}

.bento-stat-icon-num {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bento-stat-icon-pill {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.icon-stat-satisfaction {
    background: rgba(16, 185, 129, 0.18);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.icon-stat-visa {
    background: rgba(14, 165, 183, 0.18);
    color: #38bdf8;
    border: 1px solid rgba(14, 165, 183, 0.3);
}

.icon-stat-travelers {
    background: rgba(168, 85, 247, 0.18);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.bento-stat-num {
    font-size: 1.65rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.bento-stat-lbl {
    font-size: 0.72rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.6px;
    margin-top: 4px;
}

.bento-stat-sep {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.18);
}

/* Right Side Stacked Pillar Cards (Light Luxury Theme) */
.why-bento-side-cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: space-between;
}

.why-bento-mini-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px !important;
    padding: 24px 26px;
    display: flex;
    align-items: flex-start;
    gap: 22px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.why-bento-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px -8px rgba(14, 165, 183, 0.18);
}

.bento-card-hover-teal:hover {
    border-color: #0ea5b7;
}

.bento-card-hover-emerald:hover {
    border-color: #10b981;
}

.bento-card-hover-purple:hover {
    border-color: #a855f7;
}

.mini-card-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 8px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why-bento-mini-card:hover .mini-card-icon-wrap {
    transform: scale(1.1) rotate(-3deg);
}

.icon-teal-glow {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    color: #0284c7;
    border: 1px solid #7dd3fc;
    box-shadow: 0 6px 16px rgba(2, 132, 199, 0.15);
}

.icon-emerald-glow {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #16a34a;
    border: 1px solid #86efac;
    box-shadow: 0 6px 16px rgba(22, 163, 74, 0.15);
}

.icon-purple-glow {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    color: #9333ea;
    border: 1px solid #d8b4fe;
    box-shadow: 0 6px 16px rgba(147, 51, 234, 0.15);
}

.mini-card-content {
    flex: 1;
}

.mini-card-tag-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.mini-card-tag {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.mini-card-num {
    font-size: 1.15rem;
    font-weight: 900;
    color: #cbd5e1;
    font-family: monospace;
}

.mini-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.35;
    margin-bottom: 8px;
}

.mini-card-desc {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 12px;
}

.mini-card-check-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.mini-check-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 0.76rem;
    font-weight: 700;
    color: #475569;
}

.mini-check-pill i {
    color: #0ea5b7;
    font-size: 0.7rem;
}

/* Glassmorphism Accreditation Strip */
.why-trust-footer-strip {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px !important;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.trust-strip-title {
    font-size: 0.92rem;
    font-weight: 800;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-strip-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.trust-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 7px 15px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #334155;
    transition: all 0.2s ease;
}

.trust-badge-pill:hover {
    border-color: #cbd5e1;
    background: #f1f5f9;
}

@media (max-width: 991px) {
    .why-bento-master-grid {
        grid-template-columns: 1fr;
    }
    .why-creative-title {
        font-size: 2.2rem;
    }
    .why-trust-footer-strip {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 991px) {
    .why-bento-master-grid {
        grid-template-columns: 1fr;
    }
    .why-bento-hero-card {
        min-height: 380px;
    }
}

/* ==========================================================================
   HOW IT WORKS ENHANCED CARDS (IMAGE TOPS & GLASS HOVER)
   ========================================================================== */
.how-step-card.step-card-enhanced {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.step-card-visual-top {
    position: relative;
    height: 120px;
    overflow: hidden;
    background: #0f172a;
}

.step-card-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.85;
}

.step-card-enhanced:hover .step-card-bg-img {
    transform: scale(1.08);
}

.step-card-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.6) 100%);
}

.step-card-visual-top .step-icon-wrapper {
    position: absolute;
    bottom: 12px;
    left: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.step-card-visual-top .step-number-badge {
    position: absolute;
    top: 10px;
    right: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.4rem;
}

.step-card-enhanced .step-card-body {
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.step-connector-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 1.25rem;
    position: relative;
}

.connector-pulse-dot {
    width: 6px;
    height: 6px;
    background: #0ea5b7;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
    animation: pulseFlashDot 1.6s infinite;
}

/* Enhanced CTA Banner inside How It Works */
.how-steps-cta-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 8px !important;
    padding: 28px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-banner-left-glow {
    position: absolute;
    left: -50px;
    top: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(14, 165, 183, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.74rem;
    font-weight: 800;
    color: #38bdf8;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
}

.cta-banner-heading {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.3;
}

.cta-banner-sub {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* ==========================================================================
   RESPONSIVE OVERRIDES
   ========================================================================== */
@media (max-width: 991px) {
    .how-steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-connector-arrow {
        transform: rotate(90deg);
        margin: -5px 0;
    }
}




