/* ==============================================================
   styles.css – Aknarahaman Flight & Visa Booking Website
   ============================================================== */

:root {
    /* Brand Colors */
    --primary: #003ece;
    /* Main Blue – Buttons, Links, Accents */
    --primary-dark: #002bb5;
    --secondary: #2ecc71;
    /* Success Green – Deals, Visa Approved, etc. */
    --secondary-dark: #27ae60;
    --danger: #e74c3c;
    --warning: #f39c12;
    --dark: #2c3e50;
    --light: #ecf0f1;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --white: #ffffff;

    /* Typography */
    --font-family-base: 'Inter', system-ui, -apple-system, sans-serif;
    --font-family-heading: 'Poppins', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;

    /* Spacing */
    --spacing-unit: 8px;
    --container-max-width: 1280px;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* ==============================================================
   Base Styles
   ============================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden !important;
}


body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--dark);
    background-color: var(--gray-100);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 1rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* ==============================================================
   Layout & Containers
   ============================================================== */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 calc(var(--spacing-unit) * 2);
}

/* ==============================================================
   Buttons
   ============================================================== */
.btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-success {
    background-color: var(--secondary);
    color: white;
}

.btn-success:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ==============================================================
   Cards (Flight Results, Visa Packages, etc.)
   ============================================================== */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* ==============================================================
   Form Elements
   ============================================================== */
.form-control {
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    padding: 0.85rem 1rem;
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

/* ===========================================================
   BACK TO TOP – VERSION 3 (JET TRAIL) WITH VERSION 5 (NEO-TECH)
=========================================================== */

.backtop-v3v5 {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 18px;
    /* Version 5 sharp rounded */
    background: linear-gradient(145deg, var(--primary), #0044d8);
    color: #fff;
    font-size: 1.3rem;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 9999;
    cursor: pointer;

    /* Neo-tech premium glow */
    box-shadow:
        0 0 14px rgba(0, 62, 206, 0.45),
        0 10px 25px rgba(0, 0, 0, 0.35),
        inset 0 0 8px rgba(255, 255, 255, 0.15);

    /* Invisible by default */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: 0.4s ease;

    overflow: hidden;
    /* for trail animation */
    backdrop-filter: blur(4px);
    /* version 5 style */
}

/* Show state */
.backtop-v3v5.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Jet Trail Animation Element */
.backtop-v3v5 .jet-trail {
    position: absolute;
    bottom: -20px;
    width: 6px;
    height: 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.45);
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);

    opacity: 0;
    transition: height 0.25s ease, opacity 0.25s ease;
}

/* Hover – Jet Thruster + Shine */
.backtop-v3v5:hover {
    transform: translateY(-5px);
    box-shadow:
        0 0 20px rgba(0, 90, 255, 0.65),
        0 18px 35px rgba(0, 0, 0, 0.45),
        inset 0 0 12px rgba(255, 255, 255, 0.25);
}

/* Arrow Lift Animation */
.backtop-v3v5:hover i {
    animation: arrowLift 0.5s ease forwards;
}

@keyframes arrowLift {
    0% {
        transform: translateY(0);
    }

    60% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(-3px);
    }
}

/* Jet Trail Growth */
.backtop-v3v5:hover .jet-trail {
    opacity: 1;
    height: 30px;
}

/* Press */
.backtop-v3v5:active {
    transform: scale(0.95);
}


/* ==============================================================
   Utility Classes
   ============================================================== */
.text-primary {
    color: var(--primary) !important;
}

.text-success {
    color: var(--secondary) !important;
}

.bg-light {
    background-color: var(--gray-100) !important;
}

.rounded-lg {
    border-radius: var(--radius-lg) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

/* ==============================================================
   Responsive Adjustments
   ============================================================== */
@media (max-width: 768px) {
    :root {
        --font-size-base: 15px;
    }

    .container {
        padding: 0 calc(var(--spacing-unit) * 1.5);
    }

    #btn-back-to-top {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
        bottom: 20px;
        right: 20px;
    }
}

/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}

.preloader-container {
    text-align: center;
}

.preloader-container::after {
    content: "Loading Aknarahaman...";
    display: block;
    margin-top: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 500;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* Hide page content until loaded */
.preloader-active {
    overflow: hidden;
}

/* ===== ENHANCED TOPBAR STYLES ===== */
.topbar {
    background: linear-gradient(90deg, #0a0f2b 0%, #1a237e 100%);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    position: relative;
    z-index: 1050;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar-link {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;

    &:hover {
        color: #fff !important;
        background: rgba(255, 255, 255, 0.1);
    }
}

/* Promo Rotator */
.promo-rotator {
    position: relative;
    min-height: 24px;
}

.promo-badge {
    background: linear-gradient(135deg, #ff6b6b, #ff4444);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    animation: pulse 2s infinite;
}

.promo-track {
    flex: 1;
    overflow: hidden;
    height: 24px;
}

.promo-item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;

    &.active {
        opacity: 1;
        transform: translateY(0);
    }
}

.promo-text {
    font-weight: 500;
}

.promo-highlight {
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.promo-nav-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.25rem;
    border-radius: 3px;
    transition: all 0.2s ease;

    &:hover {
        color: white;
        background: rgba(255, 255, 255, 0.1);
    }

    &:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }
}

/* Dropdowns */
.topbar-dropdown .dropdown-menu {
    border: none;
    border-radius: 8px;
    min-width: 200px;
    margin-top: 8px;
    animation: dropdownSlide 0.2s ease;
}

.small-menu .dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    transition: all 0.2s ease;

    &:hover {
        background: #f8f9fa;
    }

    &.active {
        background: linear-gradient(135deg, #0066FF, #00C6FF);
        color: white;
    }
}

.currency-flag,
.country-flag {
    font-size: 1.1rem;
    line-height: 1;
}

.topbar-divider {
    color: rgba(255, 255, 255, 0.3);
}

/* ===== ENHANCED HEADER STYLES ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1040;
    background: white;
}

/* Notification Bar */
.notification-bar {
    background: linear-gradient(90deg, #0066FF, #00C6FF);
    font-size: 0.8rem;
    animation: slideDown 0.3s ease;

    a {
        color: inherit !important;
        text-decoration: underline !important;

        &:hover {
            opacity: 0.9;
        }
    }
}

/* Main Navigation */
.main-nav {
    border-bottom: 1px solid #f0f0f0;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-brand:hover .logo-img {
    transform: rotate(-5deg) scale(1.05);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #0066FF, #00C6FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-dot {
    color: #ff4444;
}

/* Enhanced Navigation Links */
.nav-link {
    color: #333 !important;
    font-weight: 500;
    padding: 0.75rem 1rem !important;
    position: relative;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;

    &:hover {
        background: #f8f9fa;
        color: #0066FF !important;
    }

    &.active {
        color: #0066FF !important;
        background: rgba(0, 102, 255, 0.1);

        &:before {
            width: 100%;
        }
    }

    &:before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, #0066FF, #00C6FF);
        border-radius: 2px 2px 0 0;
        transition: width 0.3s ease;
    }
}

.nav-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ff4444, #ff6b6b);
    color: white;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 600;
    animation: badgePulse 2s infinite;
}

.badge-discount {
    background: linear-gradient(135deg, #00b894, #00d4b2);
}

/* Mega Dropdown */
.mega-dropdown {
    position: static !important;
}

.mega-menu {
    width: 100%;
    max-width: 1000px;
    left: 50% !important;
    transform: translateX(-50%) !important;
    border: none;
    border-radius: 12px;
    margin-top: 8px !important;
    animation: megaMenuSlide 0.3s ease;

    .dropdown-header {
        color: #666;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .dropdown-item {
        padding: 0.75rem 1rem;
        border-radius: 6px;
        margin-bottom: 0.25rem;
        transition: all 0.2s ease;
        position: relative;

        &:hover {
            background: #f8f9fa;
            transform: translateX(5px);
        }

        .dropdown-badge {
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, #0066FF, #00C6FF);
            color: white;
            font-size: 0.7rem;
            padding: 2px 8px;
            border-radius: 10px;
        }
    }
}

/* Search */
.search-wrapper {
    position: relative;
    width: 280px;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    z-index: 1;
}

.search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: #f8f9fa;

    &:focus {
        outline: none;
        border-color: #0066FF;
        background: white;
        box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
    }
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-top: 8px;
    padding: 1rem;
    display: none;
    z-index: 1000;

    .search-input:focus~& {
        display: block;
        animation: fadeInUp 0.3s ease;
    }
}

/* User Actions */
.nav-action-btn {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;

    &:hover {
        background: #0066FF;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
    }
}

.action-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: linear-gradient(135deg, #ff4444, #ff6b6b);
    color: white;
    font-size: 0.7rem;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    animation: badgePop 0.3s ease;
}

.auth-buttons .btn {
    font-weight: 500;
    transition: all 0.3s ease;

    &:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
}

/* Mobile Styles */
.mobile-search {
    .btn-search-mobile {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #f8f9fa;
        border: none;
        color: #666;
        transition: all 0.3s ease;

        &:hover {
            background: #0066FF;
            color: white;
        }
    }
}

@media (max-width: 991px) {
    .topbar {
        .promo-rotator {
            margin-bottom: 0.5rem;
        }

        .topbar-right {
            justify-content: flex-start !important;
        }
    }

    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 8px;
        animation: slideDown 0.3s ease;
    }

    .nav-link {
        padding: 0.75rem !important;
        border-radius: 8px;
        margin-bottom: 0.25rem;
    }

    .mega-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
        border: 1px solid #e9ecef;
        box-shadow: none;
        margin-top: 0.5rem !important;
        animation: none;
    }

    .navbar-actions {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #e9ecef;
    }

    .search-wrapper {
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes megaMenuSlide {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 6px rgba(255, 68, 68, 0);
    }
}

@keyframes badgePop {
    0% {
        transform: scale(0);
    }

    70% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* Sticky Header Effect */
.header.sticky-active {
    animation: stickyHeader 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@keyframes stickyHeader {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Loading Animation for Search */
.search-input.loading {
    background-image: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ===================================================
   LUXURY FOOTER – VERSION 2 (Dark Premium)
=================================================== */

.ak-footer {
    background: linear-gradient(160deg, #0b111b 0%, #111b2b 100%);
    color: #d4d8de;
    font-size: 0.95rem;
    position: relative;
}

/* Soft diagonal glow */
.ak-footer::before {
    content: "";
    position: absolute;
    top: -25%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 94, 255, 0.15), transparent 70%);
    filter: blur(70px);
    pointer-events: none;
}

/* Titles */
.footer-title {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

/* Navigation links */
.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 0.7rem;
}

.footer-nav a {
    color: #bfc5cf;
    position: relative;
    transition: 0.3s ease;
}

.footer-nav a:hover {
    color: var(--primary);
    padding-left: 4px;
}

/* Contact list */
.footer-contact {
    0 list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 0.7rem;
    color: #cbd1d9;
}

.footer-contact i {
    color: var(--white);
    margin-right: 10px;
}

/* Tagline */
.footer-tagline {
    color: #bfc5cf;
    max-width: 320px;
}

/* Social icons */
.footer-social a {
    color: #d4d8de;
    margin-right: 18px;
    font-size: 1.3rem;
    transition: 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

/* Bottom bar */
.footer-bottom {
    background: rgba(255, 255, 255, 0.04);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #bfc5cf;
    font-size: 0.9rem;
}

/* ===== ENHANCED HERO STYLES (REDESIGN: FLIGHTS + HOTELS FOCUS) ===== */
.hero-v2 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #0a0f2b;
    position: relative;
    overflow: hidden;
}

/* Enhanced Background */
.hero-v2-bg {
    position: absolute;
    inset: 0;
}

.hero-v2-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.38) saturate(1.3) contrast(1.05);
    transform: scale(1.08);
    transition: transform 12s cubic-bezier(0.3, 0.5, 0.4, 1);
}

.hero-v2:hover .hero-v2-image {
    transform: scale(1.18);
}

.hero-v2-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(10, 15, 43, 0.88) 0%, rgba(32, 76, 255, 0.3) 100%);
}

.hero-v2-gradient-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 40% 55%, rgba(0, 239, 213, 0.2) 0%, transparent 70%);
}

.hero-v2-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 45%, rgba(8, 12, 38, 0.85) 100%);
}

/* Floating Elements (calmer but dynamic) */
.floating-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 239, 213, 0.1) 0%, rgba(63, 169, 255, 0.05) 70%);
    animation: floatSlow 25s infinite alternate ease-in-out;
}

.circle-1 {
    width: 380px;
    height: 380px;
    top: -5%;
    left: -5%;
    animation-duration: 32s;
}

.circle-2 {
    width: 280px;
    height: 280px;
    bottom: 5%;
    right: 5%;
    animation-duration: 28s;
    animation-delay: 2s;
}

.circle-3 {
    width: 220px;
    height: 220px;
    top: 40%;
    right: 15%;
    animation-duration: 35s;
    animation-delay: 5s;
}

/* Title & typography */
.hero-title {
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-title-gradient {
    background: linear-gradient(115deg, #00EFD5, #3FA9FF, #7B61FF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.title-underline {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 260px;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.5;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.92;
    font-weight: 400;
}

/* Stats modern */
.hero-stats .stat-item {
    padding: 0.9rem 1.8rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    transition: all 0.25s ease;
}

.hero-stats .stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: rgba(0, 239, 213, 0.4);
}

.stat-number {
    font-size: 1.9rem;
    font-weight: 800;
    background: linear-gradient(135deg, #EFF6FF, #00EFD5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    opacity: 0.85;
}

/* INTENT CARD REDESIGN — PRIMARY: FLIGHTS + HOTELS | SECONDARY: VISA, TOURS */
.hero-intent-card {
    max-width: 1200px;
    margin: 0 auto;
}

.card-intro h6 {
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 1rem;
}

.divider-short {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #00EFD5, #3FA9FF);
    border-radius: 4px;
    margin: 0.75rem auto;
}

/* Primary action cards (flights & hotels) - BIG & BOLD */
.intent-btn-primary {
    display: block;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 32px;
    padding: 2rem 1rem;
    text-decoration: none;
    color: white;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    height: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(4px);
}

.intent-btn-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(0, 239, 213, 0.2), transparent);
    transition: left 0.6s ease;
}

.intent-btn-primary:hover {
    background: rgba(0, 239, 213, 0.1);
    border-color: #00EFD5;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.4);
}

.intent-btn-primary:hover:before {
    left: 100%;
}

/* secondary cards (Visa & Tours) - elegant smaller footprint */
.intent-btn-secondary {
    display: block;
    background: rgba(10, 20, 45, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 1.2rem 1rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.intent-btn-secondary:hover {
    background: rgba(63, 169, 255, 0.25);
    border-color: #3FA9FF;
    transform: translateY(-5px);
}

.intent-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 1.2rem;
}

.intent-icon-wrapper i {
    font-size: 2.8rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(145deg, #ffffff, #a0e9ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.2s;
}

.intent-btn-primary:hover .intent-icon-wrapper i {
    transform: scale(1.08);
    background: linear-gradient(145deg, #00EFD5, #7B61FF);
    -webkit-background-clip: text;
    background-clip: text;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(0, 239, 213, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.7;
}

.intent-title {
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.intent-desc {
    font-size: 0.9rem;
    opacity: 0.9;
}

.intent-hint {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: 40px;
    margin-top: 12px;
}

/* Secondary card styling (visa/tours) */
.secondary-icon {
    font-size: 2rem;
    background: linear-gradient(125deg, #b3e5ff, #7cb8ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.secondary-title {
    font-weight: 700;
    font-size: 1.25rem;
}

/* CTA Button premium */
.btn-hover-glow {
    position: relative;
    background: linear-gradient(105deg, #0066FF, #3FAAFF);
    border: none;
    padding: 1rem 2.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.25s;
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
}

.btn-hover-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 30px -5px rgba(0, 150, 255, 0.5);
    background: linear-gradient(105deg, #1F75FF, #55C2FF);
}

/* trust badges */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.85rem;
    font-weight: 500;
    transition: 0.2s;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

/* Scroll indicator minimal */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    text-align: center;
    pointer-events: none;
}

.scroll-down {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    pointer-events: auto;
}

.mouse {
    width: 26px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 9px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    80% {
        opacity: 0.3;
        transform: translateX(-50%) translateY(14px);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Fade animations */
.fade-in {
    opacity: 0;
    animation: fadeUp 0.8s cubic-bezier(0.2, 0.9, 0.3, 1.1) forwards;
}

.fade-in-delayed {
    opacity: 0;
    animation: fadeUp 0.9s ease forwards 0.3s;
}

.fade-in-late {
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.65s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatSlow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(20px, -20px) scale(1.08);
    }
}

/* responsiveness */
@media (max-width: 992px) {
    .intent-title {
        font-size: 1.4rem;
    }

    .intent-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .intent-icon-wrapper i {
        font-size: 2.3rem;
    }

    .hero-stats .stat-item {
        padding: 0.6rem 1.2rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-v2 {
        min-height: auto;
        padding: 5rem 0 3rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .intent-btn-primary, .intent-btn-secondary {
        padding: 1.3rem 1rem;
    }

    .scroll-indicator {
        display: none;
    }

    .title-underline {
        width: 200px;
    }
}


/* ===== ENHANCED MOSAIC SLIDER STYLES ===== */

/* Background Elements */
.mosaic-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 82, 204, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 82, 204, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.mosaic-floating-dots {
    position: absolute;
    top: 50%;
    right: 5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

/* Section Header */
.live-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #ff4444, #ff6b6b);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 1rem;
    vertical-align: middle;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    margin-right: 0.5rem;
    animation: pulse 2s infinite;
}

/* Tabs */
.tabs-scrollable {
    overflow-x: auto;
    padding-bottom: 10px;

    &::-webkit-scrollbar {
        height: 4px;
    }

    &::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    &::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 10px;
    }
}

.tabs-scrollable .nav-pills {
    flex-wrap: nowrap;
    min-width: max-content;
}

.tabs-scrollable .nav-link {
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-right: 0.75rem;
    border: 2px solid transparent;
    background: #f8f9fa;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;

    &:hover {
        background: #e9ecef;
        color: #333;
    }

    &.active {
        background: linear-gradient(135deg, #0066FF, #00C6FF);
        color: white;
        border-color: rgba(255, 255, 255, 0.3);
        box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
    }
}

/* Stats Cards */
.deals-stats {
    .stat-card {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1.25rem;
        background: white;
        border-radius: 16px;
        border: 1px solid #e9ecef;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;

        &:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border-color: #dee2e6;
        }
    }

    .stat-icon {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #0066FF, #00C6FF);
        color: white;
        border-radius: 12px;
        font-size: 1.25rem;
    }

    .stat-number {
        font-size: 1.75rem;
        font-weight: 700;
        color: #333;
        line-height: 1;
    }

    .stat-label {
        font-size: 0.875rem;
        color: #666;
        margin-top: 0.25rem;
    }
}

/* Enhanced Mosaic Slider Container */
.mosaic-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 10px 30px;
    scroll-behavior: smooth;

    &::-webkit-scrollbar {
        height: 6px;
    }

    &::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
        margin: 0 60px;
    }

    &::-webkit-scrollbar-thumb {
        background: linear-gradient(90deg, #0066FF, #00C6FF);
        border-radius: 10px;
    }

    /* Hide scrollbar for Firefox */
    scrollbar-width: thin;
    scrollbar-color: #0066FF #f1f1f1;
}

/* Enhanced Gradient Fades */
.mosaic-fade-left,
.mosaic-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mosaic-slider:hover~.mosaic-fade-left,
.mosaic-slider:hover~.mosaic-fade-right,
.mosaic-fade-left:hover,
.mosaic-fade-right:hover {
    opacity: 1;
}

.mosaic-fade-left {
    left: 0;
    background: linear-gradient(90deg, white 0%, transparent 100%);
}

.mosaic-fade-right {
    right: 0;
    background: linear-gradient(270deg, white 0%, transparent 100%);
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    right: 20px;
    top: 30px;
    display: flex;
    align-items: center;
    color: #666;
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 15;
    animation: bounceRight 2s infinite;

    .scroll-text {
        opacity: 0.8;
    }
}

/* Enhanced Mosaic Cards */
.mosaic-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    scroll-snap-align: start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;

    &:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);

        .mosaic-image-wrapper img {
            transform: scale(1.05);
        }

        .book-now-btn {
            transform: translateX(5px);
            opacity: 1;
        }
    }
}

/* Image Wrapper */
.mosaic-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .image-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    }

    .deal-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: rgba(255, 255, 255, 0.95);
        color: #333;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        z-index: 2;
    }

    .badge-discount {
        background: linear-gradient(135deg, #ff4444, #ff6b6b);
        color: white;
    }

    .badge-new {
        background: linear-gradient(135deg, #00b894, #00d4b2);
        color: white;
    }
}

/* Card Information */
.mosaic-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: white;
    z-index: 2;

    .destination-meta {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 8px;

        .country-flag {
            font-size: 1.25rem;
        }

        .distance-badge {
            background: rgba(255, 255, 255, 0.2);
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 0.75rem;
            backdrop-filter: blur(10px);
        }
    }

    .destination-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .destination-details {
        margin-bottom: 15px;
    }

    .price {
        display: flex;
        align-items: baseline;
        gap: 8px;

        .price-from {
            font-size: 0.875rem;
            opacity: 0.9;
        }

        .price-amount {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(90deg, #fff, #f0f0f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
    }

    .price-subtext {
        font-size: 0.875rem;
        opacity: 0.9;
        display: flex;
        align-items: center;
    }

    .deal-features {
        display: flex;
        gap: 8px;
        margin-top: 15px;

        .feature-badge {
            background: rgba(255, 255, 255, 0.2);
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 0.75rem;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            backdrop-filter: blur(10px);
        }
    }

    .book-now-btn {
        display: inline-flex;
        align-items: center;
        background: white;
        color: #0066FF;
        padding: 10px 20px;
        border-radius: 25px;
        font-weight: 600;
        text-decoration: none;
        margin-top: 15px;
        opacity: 0.9;
        transition: all 0.3s ease;

        &:hover {
            background: #f8f9fa;
            transform: translateX(8px);
        }
    }
}

/* ====================
   RESPONSIVE CARD SIZES
==================== */

/* For Desktop - Mosaic Layout */
@media (min-width: 992px) {
    .mosaic-lg {
        width: 400px;
        height: 280px;
        grid-column: span 2;
        grid-row: span 2;
    }

    .mosaic-md {
        width: 280px;
        height: 200px;
    }

    .mosaic-sm {
        width: 220px;
        height: 160px;
    }

    .mosaic-tall {
        width: 260px;
        height: 440px;
    }

    .mosaic-wide {
        width: 360px;
        height: 200px;
        grid-column: span 2;
    }
}

/* For Tablet */
@media (max-width: 991px) {
    .mosaic-slider {
        flex-wrap: wrap;
        overflow-x: visible;
        justify-content: center;
        gap: 20px;
        padding: 0;
    }

    .mosaic-card {
        flex: 0 0 calc(50% - 20px);
        height: 250px;
        margin-bottom: 20px;
    }

    .mosaic-tall {
        height: 350px;
    }

    .mosaic-fade-left,
    .mosaic-fade-right {
        display: none;
    }
}

/* For Mobile */
@media (max-width: 767px) {
    .mosaic-card {
        flex: 0 0 100%;
        height: 280px;
        max-width: 100%;
    }

    .mosaic-tall {
        height: 300px;
    }

    .tabs-scrollable {
        margin-top: 1.5rem;
    }

    .deals-stats .stat-card {
        padding: 1rem;
    }
}

/* Controls */
.mosaic-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;

    .btn-scroll {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #dee2e6;
        background: white;
        color: #666;
        transition: all 0.3s ease;

        &:hover {
            border-color: #0066FF;
            background: #0066FF;
            color: white;
            transform: scale(1.1);
        }

        &:disabled {
            opacity: 0.5;
            cursor: not-allowed;

            &:hover {
                background: white;
                color: #666;
                border-color: #dee2e6;
                transform: none;
            }
        }
    }

    .scroll-dots {
        display: flex;
        gap: 8px;

        .scroll-dot {
            width: 8px;
            height: 8px;
            background: #dee2e6;
            border-radius: 50%;
            transition: all 0.3s ease;

            &.active {
                background: #0066FF;
                transform: scale(1.3);
            }
        }
    }
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes bounceRight {
    0%, 100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Loading Animation */
.mosaic-card {
    .loading-skeleton {
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
        background-size: 200% 100%;
        animation: loading 1.5s infinite;
        border-radius: 20px;
    }
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* JavaScript Interaction Classes */
.mosaic-card.booked {
    position: relative;

    &:after {
        content: 'Booked';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
        font-size: 1.5rem;
        border-radius: 20px;
        z-index: 10;
    }
}

.mosaic-card.expiring {
    animation: pulseWarning 2s infinite;
}

@keyframes pulseWarning {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    50% {
        box-shadow: 0 10px 30px rgba(255, 68, 68, 0.3);
    }
}

/* =============================
   VISA HERO
============================= */
.visa-hero-section {
    background: linear-gradient(135deg, #003ECE, #006BFF);
    position: relative;
    padding: 80px 0;
}

/* Background map overlay */
.visa-bg-map {
    position: absolute;
    inset: 0;
    background: url('<?= base_url("images/map-world.svg") ?>') no-repeat center;
    background-size: cover;
    opacity: 0.12;
    z-index: 1;
}

/* Gradient highlight */
.visa-gradient-text {
    background: linear-gradient(90deg, #00EFD5, #3FA9FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Points list */
.visa-list {
    list-style: none;
    padding: 0;
}

.visa-list li {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.visa-list i {
    color: #00FF9A;
    margin-right: 10px;
}

/* Buttons */
.visa-btn-main {
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(255, 255, 255, 0.25);
}

.visa-btn-main:hover {
    background: #ffffff;
    color: #003ECE !important;
}

.visa-btn-alt {
    border-width: 2px;
    font-weight: 600;
}

/* Image card */
.visa-image-card {
    background: var(--primary);
    padding: 12px;
    border-radius: 28px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(10px);
    transition: 0.3s ease;
}

.visa-image-card:hover {
    transform: translateY(0px);
}

/* Responsive spacing */
@media (max-width: 768px) {
    .visa-hero-section {
        text-align: center;
        padding: 60px 0;
    }

    .visa-image-card {
        margin-top: 30px;
    }
}


/* ================================
   HORIZONTAL TIMELINE STYLE
================================ */

/* Wrapper */
.timeline-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 30px 10px;
    gap: 30px;
}

/* Horizontal Line */
.timeline-wrapper::before {
    content: "";
    position: absolute;
    top: 58px;
    /* aligns with icon center */
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dfe7ff, #003ece25, #dfe7ff);
    z-index: 1;
    border-radius: 10px;
}

/* Individual Item */
.timeline-item {
    width: 25%;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Icon Bubble */
.timeline-icon {
    width: 95px;
    height: 95px;
    margin: 0 auto;
    border-radius: 50%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border: 4px solid #e4eaff;
    transition: 0.3s ease;
    position: relative;
}

/* Glow Ring */
.timeline-icon::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(0, 62, 206, 0.25);
    opacity: 0;
    transition: 0.3s ease;
}

/* Hover Effect */
.timeline-item:hover .timeline-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.08);
}

.timeline-item:hover .timeline-icon::after {
    opacity: 1;
    border-color: rgba(0, 62, 206, 0.45);
}

/* Text */
.timeline-item h5 {
    font-weight: 700;
    margin-top: 20px;
}

.timeline-item p {
    margin-top: 5px;
    line-height: 1.45;
}

/* ================================
   Responsive – Vertical Timeline
================================ */

@media(max-width: 992px) {
    .timeline-wrapper {
        flex-direction: column;
        gap: 45px;
    }

    .timeline-wrapper::before {
        width: 4px;
        height: 100%;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }

    .timeline-item {
        width: 100%;
        text-align: center;
    }

    .timeline-item .timeline-icon {
        margin-bottom: 10px;
    }
}


/* ===========================================
   POPULAR DESTINATIONS – PREMIUM V2
=========================================== */

.destination-card-v2 .destination-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.destination-card-v2:hover .destination-wrapper {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.16);
}

.destination-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.destination-card-v2:hover .destination-img {
    transform: scale(1.10);
}

/* Overlay */
.destination-overlay-v2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.75) 95%);
    transition: background 0.3s ease;
}

.destination-card-v2:hover .destination-overlay-v2 {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 10%, rgba(0, 0, 0, 0.85) 100%);
}

/* Badge */
.destination-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    padding: 6px 14px;
    font-size: 0.8rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Info Text */
.destination-info {
    position: absolute;
    bottom: 18px;
    left: 18px;
    color: white;
    transform: translateY(10px);
    opacity: 0.95;
    transition: transform 0.35s ease;
}

.destination-card-v2:hover .destination-info {
    transform: translateY(0);
}

.destination-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
}

.destination-info .price {
    font-weight: 700;
    font-size: 1.05rem;
    color: #00ffe0;
    /* nice premium price color */
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .destination-wrapper {
        height: 180px;
    }

    .destination-info h4 {
        font-size: 1.1rem;
    }
}

/* Mobile App Section */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary), #1e70b8) !important;
}

/* =============================================
   DARK LUXURY MOBILE APP CTA (EMIRATES STYLE)
============================================= */

.app-section-luxe {
    position: relative;
    padding: 110px 0 160px;
    background: linear-gradient(135deg, #000000, #1A1A1A 40%, #0D0D0D);
    overflow: hidden;
}

/* Gold aura background */
.luxury-gold-glow {
    position: absolute;
    top: -20%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.35), rgba(0, 0, 0, 0) 70%);
    filter: blur(50px);
    opacity: 0.45;
}

/* Title style */
.luxe-title {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Gold-highlight text */
.luxe-highlight {
    background: linear-gradient(90deg, #FFD87A, #FFD24D, #FFC93C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Gold store badges */
.store-badge {
    filter: drop-shadow(0 5px 12px rgba(255, 215, 0, 0.25));
    transition: 0.3s ease;
}

.store-badge:hover {
    transform: scale(1.05);
}

/* QR glass card */
.qr-box-luxe {
    background: rgba(255, 255, 255, 0.12);
    padding: 8px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

/* Phone mockup */
.luxe-phone-wrapper {
    animation: floatLuxe 4.3s ease-in-out infinite;
}

.luxe-phone {
    width: 90%;
    max-width: 380px;
    border-radius: 24px;
    filter: drop-shadow(0 22px 48px rgba(0, 0, 0, 0.6));
}

/* Floating animation */
@keyframes floatLuxe {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Bottom gold curve */
.luxe-bottom-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 130px;
    background: white;
    border-radius: 65% 65% 0 0;
}

/* Responsive */
@media (max-width: 992px) {
    .app-section-luxe {
        text-align: center;
        padding: 80px 0 130px;
    }

    .luxe-phone-wrapper {
        margin-top: 40px;
    }
}

/* ================================
   PARTNERS – PREMIUM SCROLL STRIP
================================ */

.partners-section {
    position: relative;
}

/* Strip container */
.partners-strip {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

/* Sliding track */
.partners-track {
    animation: partnersScroll 18s linear infinite;
    white-space: nowrap;
}

/* Fade edges */
.partners-fade-left,
.partners-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 5;
    pointer-events: none;
}

.partners-fade-left {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.partners-fade-right {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

/* Logo style */
.partners-track img {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    padding: 10px 0;
}

.partners-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.12);
}

/* Infinite scroll animation */
@keyframes partnersScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .partners-track img {
        height: 45px;
    }
}


/* ===================================
   NEWSLETTER – FROSTED GLASS V2
=================================== */

.newsletter-v2 {
    background: #0f0f15;
    padding: 90px 0;
    position: relative;
}

/* Glow background */
.newsletter-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    width: 700px;
    height: 700px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(0, 118, 255, 0.45), transparent 70%);
    filter: blur(80px);
    opacity: 0.35;
}

/* Envelope icon styling */
.newsletter-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: var(--primary);
}

/* Form container */
.newsletter-form-v2 {
    max-width: 600px;
}

/* Input group */
.newsletter-input-group {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    padding: 12px 20px;
    backdrop-filter: blur(12px);
    transition: 0.3s ease;
}

.newsletter-input-group:hover {
    border-color: rgba(255, 255, 255, 0.45);
}

/* Icon */
.newsletter-input-group .icon {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-right: 12px;
}

/* Input */
.newsletter-input-group input {
    flex: 1;
    border: none;
    background: transparent;
    color: white;
    font-size: 1rem;
    outline: none;
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Button */
.newsletter-input-group button {
    background: var(--primary);
    border: none;
    padding: 10px 28px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    transition: 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 62, 206, 0.35);
}

.newsletter-input-group button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 62, 206, 0.55);
}

/* Mobile */
@media (max-width: 768px) {
    .newsletter-input-group {
        flex-direction: column;
        gap: 14px;
        padding: 20px;
        border-radius: 24px;
    }

    .newsletter-input-group button {
        width: 100%;
    }
}





/* Visa */
.step-number {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    margin-right: 12px;
    font-weight: bold;
}

.upload-box {
    border: 2px dashed #ddd;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.upload-box:hover {
    border-color: var(--primary);
    background: rgba(52, 152, 219, 0.05);
}

.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.border-dashed {
    border-style: dashed !important;
}