/* ========================================
   DeHorizon Holidays — 3D Mega Premium Theme
   ======================================== */

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

:root {
    --primary-bg: #ffffff;
    --secondary-bg: #f8f9fa;
    --accent-blue: #008bd0;
    --accent-gold: #008bd0;
    --accent-purple: #e9ecef;
    --gold-gradient: linear-gradient(135deg, #008bd0 0%, #006b9f 100%);
    --gold-shimmer: linear-gradient(110deg, #008bd0 0%, #29a0e6 45%, #008bd0 55%, #006b9f 100%);
    --dark-bg: #ffffff;
    --text-main: #333333;
    --text-muted: #555555;
    --text-light: #ffffff;
    --glass-bg: #ffffff;
    --glass-border: rgba(0, 139, 208, 0.2);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    --shadow-3d: 0 4px 12px rgba(0, 0, 0, 0.08);
    --glow: none;
    /* Unified design tokens */
    --radius-card: 8px;
    --radius-pill: 4px;
    --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: #1a1a1a;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ========================================
   GOLDEN DUST PARTICLES
   ======================================== */
#goldenDustCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* ========================================
   ANIMATED GRADIENT MESH BACKGROUND
   ======================================== */
.gradient-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    animation: meshFloat 20s ease-in-out infinite;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: #8dc6ff;
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: #F3E5AB;
    top: 50%;
    right: -10%;
    animation-delay: -5s;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background: #C49B30;
    bottom: -5%;
    left: 30%;
    animation-delay: -10s;
}

.blob-4 {
    width: 300px;
    height: 300px;
    background: #E8D28C;
    top: 30%;
    left: 50%;
    animation-delay: -15s;
}

@keyframes meshFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(50px, -30px) scale(1.1);
    }

    50% {
        transform: translate(-30px, 50px) scale(0.95);
    }

    75% {
        transform: translate(30px, 30px) scale(1.05);
    }
}

/* ========================================
   SCROLL PROGRESS BAR
   ======================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--gold-shimmer);
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
    z-index: 10001;
    transition: width 0.1s linear;
}

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

    100% {
        background-position: 200% 0;
    }
}

/* ========================================
   MOUSE GRADIENT SPOTLIGHT
   ======================================== */
.mouse-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(141, 198, 255, 0.07), transparent 40%);
    transition: background 0.3s ease;
}

/* ========================================
   CUSTOM CURSOR
   ======================================== */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-blue);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
    box-shadow: 0 0 10px rgba(141, 198, 255, 0.5);
}

.cursor-ring {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(141, 198, 255, 0.4);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s, border-color 0.4s, background 0.4s;
}

.cursor-dot.hovering {
    width: 60px;
    height: 60px;
    background: rgba(141, 198, 255, 0.08);
    mix-blend-mode: difference;
    box-shadow: 0 0 30px rgba(141, 198, 255, 0.3);
}

.cursor-ring.hovering {
    width: 70px;
    height: 70px;
    border-color: var(--accent-blue);
    background: rgba(141, 198, 255, 0.03);
}

/* ========================================
   PRELOADER
   ======================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease, visibility 1s ease;
    overflow: hidden;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#preloaderCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.preloader-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.loader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: #fff;
    margin-bottom: 10px;
}

.logo-3d {
    display: inline-block;
    position: relative;
    text-shadow:
        0 1px 0 #c9b180,
        0 2px 0 #c0a870,
        0 3px 0 #b89f60,
        0 4px 0 #ae9550,
        0 5px 0 #a58b40,
        0 6px 10px rgba(0, 0, 0, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.3);
    animation: preloaderFloat 3s ease-in-out infinite;
}

.logo-dot {
    color: var(--accent-blue);
    text-shadow: 0 0 20px rgba(141, 198, 255, 0.8);
}

.preloader-tagline {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease 0.5s backwards;
}

.preloader-bar {
    width: 250px;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
}

.preloader-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--gold-gradient);
    border-radius: 10px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(141, 198, 255, 0.5);
}

@keyframes preloaderFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ========================================
   UTILITIES
   ======================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section-tag {
    display: none !important;
    /* Removed as requested */
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-title h2 {
    font-size: 3.5rem;
    color: var(--accent-blue);
    margin-bottom: 20px;
    position: relative;
    display: block;
}

.section-title h2::after {
    display: none;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.btn-primary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--gold-gradient);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(141, 198, 255, 0.3);
    border: none;

    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--glow), var(--shadow-lg);
}

.btn-glow {
    animation: btnGlow 3s ease-in-out infinite;
}

@keyframes btnGlow {

    0%,
    100% {
        box-shadow: 0 10px 20px rgba(141, 198, 255, 0.3);
    }

    50% {
        box-shadow: 0 10px 40px rgba(141, 198, 255, 0.6), 0 0 60px rgba(141, 198, 255, 0.2);
    }
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: transparent;
    color: white;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);

    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    transition: all 0.4s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.05rem;
}

/* ========================================
   HEADER — Floating Pill Navbar
   ======================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    background: transparent;
}

/* --- Premium Top Contact Bar --- */
.top-bar {
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    padding: 10px 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Subtle moving light reflection */
.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(141, 198, 255, 0.03), transparent);
    animation: lightBeam 8s infinite linear;
}

@keyframes lightBeam {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.top-logo {
    display: flex;
    align-items: center;
}

.top-logo img {
    height: 70px;
    /* Increased from 40px */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.top-logo img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .top-logo img {
        height: 50px;
        /* Increased from 35px */
    }
}

.top-socials {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Highlight primary phone number in top bar */
.top-contact a[href^="tel"] {
    color: #1a1a1a;
    font-weight: 600;
}

.top-contact a[href^="tel"] i {
    background: var(--accent-blue);
    color: #ffffff;
}

/* Desktop: create clear gap between nav pill and phone block */
@media (min-width: 769px) {
    .top-contact {
        margin-left: 40px;
    }

    .top-contact a[href^="tel"] {
        background: rgba(0, 139, 208, 0.05);
        padding: 6px 14px;
        border-radius: 999px;
    }
}

.top-socials a,
.top-contact a {
    color: #1a1a1a !important;
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.top-contact a i,
.top-socials a i {
    margin-right: 8px;
    color: var(--accent-blue);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 139, 208, 0.08); /* Light blue tint instead of white */
    border: 1px solid rgba(0, 139, 208, 0.15); /* Blue border instead of white */
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.top-socials a i {
    margin-right: 0;
    /* Socials don't have text */
}

.top-socials a:hover,
.top-contact a:hover {
    color: #fff;
}

.top-socials a:hover i,
.top-contact a:hover i {
    background: var(--accent-blue);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 139, 208, 0.2);
    transform: translateY(-2px) scale(1.1);
    border-color: var(--accent-blue);
}

/* Keep top bar visible on scroll */
header.scrolled .top-bar {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

/* --- Nav Container adjustments --- */
.nav-container {
    padding-top: 16px;
    padding-bottom: 16px;
    transition: all 0.5s ease;
}

header.scrolled .nav-container {
    padding-top: 10px;
    padding-bottom: 10px;
}

header.scrolled {
    padding: 0;
}

/* --- Scrolled state: pill gets lighter border --- */
header.scrolled .nav-links {
    background: rgba(8, 8, 12, 0.92);
    border-color: rgba(141, 198, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(141, 198, 255, 0.1);
}

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

@media (min-width: 769px) {

    /* Add clear vertical gap between top bar (with phone) and nav pill */
    .nav-container {
        margin-top: 18px;
    }
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8dc6ff 0%, #e4f1fe 50%, #8dc6ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    text-shadow: none;
}

.logo span {
    -webkit-text-fill-color: transparent;
    background: linear-gradient(135deg, #e4f1fe, #8dc6ff);
    -webkit-background-clip: text;
    background-clip: text;
}

/* --- The Pill Container --- */
.nav-links {
    display: flex;
    gap: 8px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    padding: 6px 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}

.nav-links li {
    position: relative;
    z-index: 2;
}

.nav-links li a {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-main);
    letter-spacing: 0.3px;
    position: relative;
    z-index: 2;

    padding: 10px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-links li a:hover {
    color: var(--accent-blue);
    background: rgba(0, 86, 179, 0.05);
}

/* --- Golden Active Underline Glow --- */
.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #8dc6ff, #8dc6ff, #8dc6ff);
    border-radius: 3px;
    transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 0 8px rgba(141, 198, 255, 0.5);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 60%;
}

.nav-icon {
    font-size: 1.4rem;

}

/* ========================================
   DESKTOP NAV INSIDE TOP BAR (FLAT)
   ======================================== */
@media (min-width: 769px) {

    /* Use the top bar as the main nav background */
    .top-bar {
        position: relative;
        padding: 14px 0;
    }

    /* Center nav links over the bar */
    .nav-container {
        position: absolute;
        inset: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0;
        pointer-events: none;
    }

    .nav-container .nav-links {
        background: transparent;
        border: none;
        box-shadow: none;
        gap: 28px;
        padding: 0;
        pointer-events: auto;
    }

    .nav-container .logo,
    .nav-container .nav-icon {
        display: none;
    }

    .nav-links li a {
        padding: 0;
        border-radius: 0;
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
        color: #1a1a1a !important;
    }

    .nav-links li a:hover {
        background: transparent;
        color: var(--accent-blue);
    }

    .nav-links li a::after {
        bottom: -4px;
    }
}

/* Desktop-only: visually place nav pill inside top bar */
@media (min-width: 769px) {
    .top-bar {
        padding: 12px 0;
    }
}

/* ========================================
   HERO SECTION — 3D IMMERSIVE
   ======================================== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* --- Cinematic Hero Logo --- */
.hero-logo-container {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 380px;
    /* Much more elegant and refined size */
    height: auto;
    z-index: 5;
    pointer-events: none;
}

.hero-animated-logo {
    width: 100%;
    height: auto;
    animation: majesticFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 30px rgba(141, 198, 255, 0.5));
}

@keyframes majesticFloat {
    0% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 30px rgba(141, 198, 255, 0.5));
    }

    50% {
        transform: translateY(-15px) scale(1.02);
        filter: drop-shadow(0 40px 45px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 45px rgba(141, 198, 255, 0.7));
    }

    100% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 30px rgba(141, 198, 255, 0.5));
    }
}

/* 3D Depth Layers */
.hero-depth-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.depth-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(141, 198, 255, 0.1);
    border-radius: 50%;
    top: 15%;
    right: 10%;
    animation: depthRotate 25s linear infinite;
}

.depth-ring {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(141, 198, 255, 0.08);
    border-radius: 50%;
    bottom: 20%;
    left: 10%;
    animation: depthRotate 30s linear infinite reverse;
}

.depth-diamond {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(141, 198, 255, 0.12);
    top: 40%;
    left: 50%;
    animation: depthRotate 20s linear infinite;
    transform: rotate(45deg);
}

@keyframes depthRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero-content {
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

/* Hero badge overlay — small, cinematic-friendly */
.hero-badge-overlay {
    position: absolute;
    top: 18%;
    left: 7%;
    max-width: 540px;
    background: rgba(8, 8, 12, 0.76);
    border-radius: 20px;
    padding: 20px 26px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
    color: #ffffff;
    text-align: left;
}

.hero-kicker {
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.78rem;
    color: var(--accent-blue);
    margin-bottom: 6px;
}

.hero-main-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 6px;
    color: #ffffff;
}

.hero-subcopy {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 14px;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-cta-row .btn-primary,
.hero-cta-row .btn-outline {
    padding: 10px 22px;
    font-size: 0.85rem;
}

/* ========================================
   TRUST STRIP
   ======================================== */
.trust-strip {
    background: #ffffff;
    padding: 40px 0;
}

.trust-strip-inner {
    display: grid;
    grid-template-columns: 2fr 1.1fr;
    gap: 40px;
    align-items: center;
}

.trust-main h2 {
    font-size: 1.9rem;
    margin-bottom: 10px;
}

.trust-main p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-badges span {
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(141, 198, 255, 0.09);
    color: #1a1a1a;
}

.trust-contact {
    background: var(--glass-bg);
    border-radius: 18px;
    padding: 22px 24px;
    border: 1px solid var(--glass-border);
}

.trust-contact h3 {
    margin-bottom: 6px;
    font-size: 1.2rem;
}

.trust-contact p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.btn-small {
    padding: 10px 22px;
    font-size: 0.85rem;
}

.trust-phone {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
}

.trust-phone a {
    color: var(--accent-blue);
    font-weight: 600;
}

/* ========================================
   JOURNEY PATHS
   ======================================== */
.journey-paths {
    padding: 70px 0 40px;
    background: var(--primary-bg);
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.journey-card {
    padding: 26px 26px 22px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
}

.journey-card h3 {
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.journey-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.journey-card ul {
    margin: 0 0 16px;
    padding-left: 18px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.journey-card ul li {
    margin-bottom: 6px;
}

/* ========================================
   QUICK ENQUIRY
   ======================================== */
.quick-enquiry {
    padding: 80px 0;
    background: var(--secondary-bg);
}

.quick-enquiry-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.1fr;
    gap: 40px;
    align-items: start;
    background: rgba(10, 30, 70, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 48px 50px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Copy text should be white on dark card */
.quick-enquiry-copy h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 14px;
}

.quick-enquiry-copy p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
}

.quick-enquiry-points {
    margin-top: 16px;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.quick-enquiry-points li {
    margin-bottom: 8px;
}

.quick-enquiry-points li::marker {
    color: #8dc6ff;
}

.quick-enquiry-form-wrapper {
    padding: 0;
    background: #ffffff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.quick-enquiry-form .form-row {
    margin-bottom: 12px;
}

.quick-enquiry-form input,
.quick-enquiry-form select,
.quick-enquiry-form textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
}

.quick-enquiry-form input:focus,
.quick-enquiry-form select:focus,
.quick-enquiry-form textarea:focus {
    border-color: var(--accent-blue);
}

.quick-enquiry-note {
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.hero-badge {
    display: inline-block;
    background: rgba(141, 198, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(141, 198, 255, 0.3);
    color: var(--accent-blue);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 25px;
    animation: fadeInDown 1s ease backwards;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 15px;
    display: block;
    min-height: 1.5em;
}

.hero-title-3d {
    font-size: 5.5rem;
    line-height: 1.05;
    margin-bottom: 25px;
    color: #fff;
}

.title-line {
    display: block;
}

.title-accent {
    background: var(--gold-shimmer);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
    text-shadow: none;
    position: relative;
}

.hero-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 25px 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: inline-flex;
}

.hero-stat strong {
    display: block;
    font-size: 1.8rem;
    color: var(--accent-blue);
    font-family: 'Playfair Display', serif;
}

.hero-stat span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* Floating Elements */
.hero-float {
    position: absolute;
    font-size: 2rem;
    opacity: 0.25;
    animation: floatBob 6s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.float-1 {
    top: 18%;
    left: 8%;
    animation-delay: 0s;
}

.float-2 {
    top: 28%;
    right: 12%;
    animation-delay: 1.5s;
    font-size: 2.5rem;
}

.float-3 {
    bottom: 30%;
    left: 15%;
    animation-delay: 3s;
    font-size: 1.5rem;
}

.float-4 {
    top: 60%;
    right: 8%;
    animation-delay: 2s;
    font-size: 2rem;
}

.float-5 {
    bottom: 15%;
    right: 25%;
    animation-delay: 4s;
    font-size: 1.8rem;
}

@keyframes floatBob {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-15px) rotate(3deg);
    }

    66% {
        transform: translateY(-25px) rotate(-3deg);
    }
}

/* Scroll Indicator — Premium refined */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 5;
    animation: fadeInUp 1s ease 2s backwards;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-blue);
    border-radius: 4px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s ease-in-out infinite;
    box-shadow: 0 0 8px var(--accent-blue);
}

.scroll-indicator span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Hero category boxes (desktop) — WOW DESIGN */
.hero-category-row {
    position: absolute;
    bottom: 15vh;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
    z-index: 10;
}

.hero-category-box {
    min-width: 200px;
    padding: 24px 30px;
    border-radius: 28px;
    background: rgba(15, 15, 25, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.hero-category-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.hero-category-box:hover::before {
    left: 100%;
}

.hero-category-box i {
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: #ffffff;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.hero-category-box:hover {
    transform: translateY(-12px) scale(1.05);
    background: rgba(15, 15, 25, 0.6);
    border-color: rgba(141, 198, 255, 0.8);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(141, 198, 255, 0.2);
}

.hero-category-box:hover i {
    transform: translateY(-5px) scale(1.1) rotate(-5deg);
    color: var(--accent-blue);
    filter: drop-shadow(0 0 15px rgba(141, 198, 255, 0.6));
}

.hero-category-box span {
    position: relative;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero-category-row {
        bottom: 80px;
        gap: 15px;
        padding: 0 20px;
        width: 100%;
        justify-content: center;
    }

    .hero-category-box {
        min-width: 140px;
        padding: 16px 20px;
        border-radius: 20px;
        font-size: 0.7rem;
    }

    .hero-category-box i {
        font-size: 1.6rem;
    }
}

/* Search Box */
.search-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 12px;
    border-radius: 100px;
    display: flex;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    display: none;
    /* Hidden in new hero design */
}

/* ========================================
   WAVE DIVIDERS
   ======================================== */
.wave-divider {
    width: 100%;
    line-height: 0;
    margin-top: -1px;
    position: relative;
    z-index: 3;
}

.wave-divider svg {
    width: 100%;
    height: 70px;
    display: block;
}

.wave-divider.wave-flip {
    transform: scaleY(-1);
    margin-top: 0;
    margin-bottom: -1px;
}

/* ========================================
   INFINITE MARQUEE
   ======================================== */
.marquee-section {
    padding: 25px 0;
    background: var(--secondary-bg);
    overflow: hidden;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    z-index: 3;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-track:hover {
    animation-duration: 50s;
}

/* Airlines strip has ~2x the width, so 2x duration for same speed */
#marqueeAirlines {
    animation-duration: 65s;
}

#marqueeAirlines:hover {
    animation-duration: 90s;
}

/* Hotels strip has ~2.5x the width, so 2.5x duration */
#marqueeHotels {
    animation-duration: 80s;
}

#marqueeHotels:hover {
    animation-duration: 110s;
}

.marquee-track-reverse {
    animation-direction: reverse;
}

.marquee-reverse {
    border-top: none;
    padding-top: 0;
}

.marquee-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.marquee-content span {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-main);
    padding: 0 20px;
    transition: all 0.4s ease;
}

.marquee-content span:hover {
    color: var(--accent-blue);
    transform: scale(1.1);
}

.marquee-dot {
    color: var(--accent-blue) !important;
    font-size: 0.7rem !important;
    opacity: 0.4;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ========================================
   CLEAN FLAT CARDS (Replaces 3D/Glass Styles)
   ======================================== */
.feature-card,
.journey-card,
.stat-card,
.blog-card,
.testimonial-card {
    background: #ffffff;
    border-radius: var(--radius-card);
    border: 1px solid rgba(0, 86, 179, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.feature-card::before,
.journey-card::before,
.stat-card::before,
.blog-card::before,
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.feature-card:hover,
.journey-card:hover,
.stat-card:hover,
.blog-card:hover,
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 86, 179, 0.1);
    border-color: rgba(0, 86, 179, 0.15);
}

.feature-card:hover::before,
.journey-card:hover::before,
.stat-card:hover::before,
.blog-card:hover::before,
.testimonial-card:hover::before {
    transform: scaleX(1);
}

/* ========================================
   MINIMALIST GLASS OVERLAY CARDS
   (Home Page Destinations)
   ======================================== */
.glass-overlay-card {
    height: 520px;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.glass-overlay-card .overlay-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.glass-overlay-card:hover .overlay-bg {
    transform: scale(1.1);
}

.glass-overlay-card .package-overlay-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(0, 0, 0, 0.4) 40%, 
        rgba(0, 0, 0, 0.1) 60%,
        transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 30px;
    transition: all 0.4s ease;
}

.glass-overlay-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.glass-overlay-card .category-tag {
    color: #e0b45a; /* Premium Gold */
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 8px;
    display: block;
    opacity: 0.9;
}

.glass-overlay-card h3 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.card-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: rgba(0, 86, 179, 0.05);
    /* Very subtle blue */
    font-weight: 700;
    z-index: 0;
    line-height: 1;
    transition: all 0.4s ease;
}

.feature-card:hover .card-number {
    color: rgba(0, 86, 179, 0.1);
    transform: scale(1.1);
}

/* ========================================
   DESTINATIONS CAROUSEL
   ======================================== */
.destinations {
    padding: 90px 0;
    position: relative;
    background: var(--primary-bg);
}

.bg-blur {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--accent-blue);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.06;
    top: 20%;
    left: -10%;
    z-index: 0;
}

.bg-blur.alt {
    left: auto;
    right: -10%;
    top: auto;
    bottom: 10%;
    background: var(--accent-purple);
}

.swiper-container {
    width: 100%;
    padding: 50px 0;
    z-index: 1;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 350px;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);

    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease;
}

.swiper-slide:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3), 0 0 0 2px rgba(141, 198, 255, 0.3);
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 35px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.swiper-slide:hover .slide-content {
    transform: translateY(0);
}

.slide-subtitle {
    color: var(--accent-blue);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 5px;
    display: block;
}

.slide-title {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 8px;
}

.slide-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.slide-btn {
    color: var(--accent-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.15s;

}

.swiper-slide:hover .slide-btn {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   GLASS CARD
   ======================================== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(141, 198, 255, 0.06), transparent);
    transition: left 0.8s ease;
}

.glass-card:hover::before {
    left: 150%;
}

.glass-card:hover {
    border-color: rgba(141, 198, 255, 0.45);
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

/* ========================================
   UNIFIED PACKAGE CARDS (Tours, Villas, Hajj)
   ======================================== */
.package-card.swiper-slide {
    width: 380px;
    height: auto;
    min-height: 540px;
    padding: 0;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: #ffffff;
    display: flex;
    flex-direction: column;
}

.package-img {
    height: 250px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-blue);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.2);
}

.package-content {
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-content h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--text-main);
}

.package-location {
    color: var(--accent-blue);
    font-size: 0.95rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.package-location i {
    margin-right: 8px;
}

.package-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Info row for Villas (Price/Duration) */
.package-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.package-info-row .price {
    font-weight: 700;
    color: var(--text-main);
    font-size: 1.15rem;
}

.package-info-row .duration {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.package-info-row .duration i {
    margin-right: 4px;
}

/* List for Hajj Features */
.package-features {
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

.package-features li {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.package-features li i {
    color: var(--accent-blue);
    margin-right: 10px;
    margin-top: 4px;
    font-size: 0.85rem;
}

.package-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
    margin-top: auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.feature-card {
    padding: 50px 40px;
    text-align: center;
    background: #ffffff;
    border-radius: var(--radius-card);
    transition: all 0.4s ease;
}

.feature-card .feature-icon {
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 25px;
    display: inline-block;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) translateY(-5px);
}

.feature-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.feature-desc {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonial-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-featured {
    margin-bottom: 40px;
}

.testimonial-card {
    padding: 40px;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #444;
}

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

.testimonial-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(141, 198, 255, 0.3);
}

.testimonial-author h4 {
    margin: 0;
    font-size: 1rem;
}

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

/* ========================================
   IMAGE REVEAL (Gold Curtain)
   ======================================== */
.image-reveal {
    position: relative;
    overflow: hidden;
}

.image-reveal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    z-index: 2;
    transform-origin: left;
    transition: transform 1.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.image-reveal.revealed::after {
    transform: scaleX(0);
    transform-origin: right;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    padding: 140px 0;
    background: var(--primary-bg);
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-title-left {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.about-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.9;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature-icon {
    color: var(--accent-blue);
    font-size: 1.2rem;
}

.about-feature-item span {
    font-weight: 500;
    font-size: 1rem;
}

.about-image-wrapper {
    position: relative;
    padding-left: 30px;
    padding-bottom: 30px;
}

.about-img-container {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(2deg);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-img-container:hover {
    transform: rotate(0) scale(1.02);
}

.about-img-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.about-img-container:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 30px 40px;
    border-radius: 20px;
    border: 1px solid rgba(141, 198, 255, 0.3);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.experience-badge .years {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--accent-blue);
    margin-bottom: 5px;
}

.experience-badge .label {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   STATS
   ======================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    padding: 40px;
    text-align: center;
}

.stat-icon {
    font-size: 2.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.stat-card .counter {
    font-size: 3.5rem;
    color: var(--accent-blue);
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.stat-card p {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

/* ========================================
   BLOG CARDS
   ======================================== */
.blog-card {
    overflow: hidden;
}

.blog-img-wrapper {
    overflow: hidden;
    border-radius: 24px 24px 0 0;
    height: 220px;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.blog-content {
    padding: 30px;
}

.blog-tag {
    display: inline-block;
    color: var(--accent-blue);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-content h3 {
    color: var(--accent-blue);
}

.blog-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.read-more {
    color: var(--accent-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;

    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 15px;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    position: relative;
    padding: 140px 0;
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.92), rgba(30, 20, 0, 0.85));
    z-index: 1;
}

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

.cta-content h2 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.15rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    background: #0a0a0a;
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

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

footer .logo {
    color: #fff;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.4);
    margin: 20px 0;
    max-width: 300px;
}

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

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    transition: all 0.4s ease;
    border: 1px solid rgba(141, 198, 255, 0.15);

}

.social-link:hover {
    background: var(--accent-blue);
    color: #fff;
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--glow);
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.4);

    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-blue);
    padding-left: 8px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    outline: none;
    width: 100%;
    color: #fff;
    font-size: 0.95rem;
    transition: border 0.3s ease;
}

.newsletter-form input:focus {
    border-color: var(--accent-blue);
}

.newsletter-form .btn-primary {
    padding: 12px 18px;
    border-radius: 10px;
}

.copyright {
    text-align: center;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.9rem;
}

/* ========================================
   FLOATING BUTTONS
   ======================================== */
.float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    font-size: 28px;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;

    animation: floatBob 4s ease-in-out infinite;
}

.float-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 32px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: white;
    border: none;
    font-size: 1rem;

    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) rotate(180deg);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) rotate(0deg);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--glow);
}

/* ========================================
   3D SECTION REVEAL (perspective)
   ======================================== */
.section-3d,
.destinations,
.marquee-section,
.wave-divider,
.about-section,
.testimonials,
.stats,
.blog,
.cta-section,
footer {
    position: relative;
    z-index: 2;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   HAMBURGER MENU
   ======================================== */
.hamburger {
    display: none;

    z-index: 1001;
}

.line {
    width: 30px;
    height: 3px;
    background: var(--text-main);
    margin: 5px;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-ring,
    .cursor-trail {
        display: none !important;
    }

    .mouse-gradient {
        display: none;
    }

    .gradient-mesh {
        opacity: 0.3;
    }

    /* Master overflow fix — prevents ANY horizontal scroll */
    html,
    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    .container {
        padding: 0 16px;
        max-width: 100% !important;
        overflow-x: hidden;
    }

    /* Hide decorative elements that overflow viewport */
    .bg-blur,
    .bg-blur.alt {
        display: none !important;
    }

    /* Force all sections to clip overflow */
    section,
    .destinations,
    .about-section,
    .testimonials,
    .stats,
    .blog,
    .cta-section,
    .section-3d,
    footer {
        overflow: hidden !important;
        max-width: 100vw;
    }

    /* ===== HEADER ===== */
    header {
        padding: 12px 0;
    }

    /* --- Top Contact Bar Mobile --- */
    .top-bar {
        padding: 4px 0;
    }

    .top-bar-container {
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        padding: 0 10px;
    }

    .top-socials {
        display: flex;
        justify-content: center;
        width: 100%;
        gap: 8px;
    }

    .top-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 2px;
    }

    .top-socials a {
        margin-right: 0;
        width: 26px;
        height: 26px;
        font-size: 0.75rem;
    }

    .top-contact a {
        margin-right: 0;
        font-size: 0.7rem;
        padding: 4px 10px;
        gap: 6px;
    }

    header.scrolled {
        padding: 0;
    }

    .logo {
        font-size: 1.4rem;
    }

    .nav-icon {
        display: none;
    }

    .hamburger {
        display: block;
        margin-right: 5px;
    }

    /* Make hamburger bars visible (dark or blue) */
    .hamburger span {
        background: var(--accent-blue) !important;
    }

    /* ===== MOBILE FULLSCREEN NAV OVERLAY ===== */
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 100%;
        background: #ffffff !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        z-index: 1000;
        display: flex;
        border-radius: 0 !important;
        border: none !important;
        padding: 0 !important;
        box-shadow: none !important;
        gap: 0 !important;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        margin: 10px 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered animation delays */
    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(6) {
        transition-delay: 0.35s;
    }

    .nav-links li a {
        font-family: 'Playfair Display', serif !important;
        font-size: 1.6rem !important;
        font-weight: 600 !important;
        color: rgba(255, 255, 255, 0.85) !important;
        letter-spacing: 1px !important;
        padding: 14px 30px !important;
        cursor: auto;
        border-radius: 12px !important;
        text-transform: none !important;
        transition: all 0.3s ease;
        display: block;
    }

    .nav-links li a:hover,
    .nav-links li a:active {
        color: #8dc6ff !important;
        background: rgba(141, 198, 255, 0.08) !important;
    }

    /* Golden underline hidden on mobile menu */
    .nav-links li a::after {
        display: none !important;
    }

    /* ===== HERO SECTION ===== */
    .hero {
        min-height: 100vh;
        height: 100vh;
        padding: 0;
        margin: 0;
    }

    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-logo-container {
        width: 85%;
        max-width: 280px;
        /* Scale down significantly for mobile */
    }

    .hero-depth-layer {
        display: none;
    }

    .hero-float {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    .hero-content {
        display: block;
    }

    .hero-category-row {
        display: none;
    }

    /* Hide desktop hero badge card on mobile */
    .hero-badge-overlay {
        display: none;
    }

    .btn-outline {
        padding: 12px 28px;
        font-size: 0.85rem;
        width: 60%;
        justify-content: center;
        cursor: auto;
    }

    .btn-large {
        padding: 14px 36px;
        font-size: 0.9rem;
    }

    .hero-stats-row {
        display: flex;
        flex-direction: row;
        gap: 0;
        padding: 16px 20px;
        border-radius: 16px;
        width: 90%;
        margin: 0 auto;
    }

    .hero-stat {
        flex: 1;
        text-align: center;
    }

    .hero-stat strong {
        font-size: 1.3rem;
    }

    .hero-stat span {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }

    .hero-stat-divider {
        width: 1px;
        height: 35px;
        margin: 0 8px;
    }

    /* ===== MARQUEE ===== */
    .marquee-section {
        padding: 16px 0;
    }

    .marquee-content span {
        font-size: 1.2rem;
        padding: 0 12px;
    }

    .marquee-dot {
        font-size: 0.5rem !important;
    }

    /* ===== WAVE DIVIDERS ===== */
    .wave-divider svg {
        height: 35px;
    }

    /* ===== SECTION TITLES ===== */
    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 1.9rem;
        margin-bottom: 12px;
    }

    .section-title p {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .section-tag {
        font-size: 0.7rem;
        padding: 5px 14px;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    .section-title-left {
        font-size: 2rem;
    }

    /* ===== DESTINATIONS ===== */
    .destinations {
        padding: 70px 0;
    }

    .bg-blur {
        display: none !important;
    }

    .swiper-container {
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
        padding: 30px 0;
    }

    .swiper-slide {
        width: 85%;
        height: 380px;
    }

    .slide-content {
        padding: 25px;
    }

    .slide-title {
        font-size: 1.5rem;
    }

    /* ===== CARDS / FEATURES ===== */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 28px;
    }

    .feature-icon {
        font-size: 2.2rem !important;
    }

    .feature-title {
        font-size: 1.2rem;
    }

    .card-number {
        font-size: 3rem;
    }

    .card-3d-shine {
        display: none;
    }

    /* ===== TESTIMONIALS ===== */
    .testimonial-stack {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonial-card {
        padding: 28px;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    /* ===== ABOUT ===== */
    .about-section {
        padding: 70px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-desc {
        font-size: 0.95rem;
    }

    .about-image-wrapper {
        padding-left: 0;
        padding-bottom: 40px;
        max-width: 100%;
        overflow: hidden;
    }

    .about-img-container {
        transform: none;
        border-radius: 20px;
        max-width: 100%;
    }

    .about-img-container img {
        width: 100%;
        max-width: 100%;
    }

    .experience-badge {
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        padding: 20px 30px;
        border-radius: 15px;
    }

    .experience-badge .years {
        font-size: 2.5rem;
    }

    /* ===== STATS ===== */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .stat-card {
        padding: 25px 15px;
    }

    .stat-icon {
        font-size: 2rem;
    }

    .stat-card .counter {
        font-size: 2.2rem;
    }

    .stat-card p {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    /* ===== BLOG ===== */
    .blog-img-wrapper {
        height: 180px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-content h3 {
        font-size: 1.15rem;
    }

    /* ===== TRUST STRIP (MOBILE) ===== */
    .trust-strip {
        padding: 36px 0 30px;
    }

    .trust-strip-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trust-main h2 {
        font-size: 1.4rem;
        text-align: center;
    }

    .trust-main p {
        text-align: center;
        font-size: 0.95rem;
    }

    .trust-badges {
        justify-content: center;
    }

    .trust-contact {
        padding: 18px 18px 16px;
    }

    /* ===== JOURNEY PATHS (MOBILE) ===== */
    .journey-paths {
        padding: 50px 0 30px;
    }

    .journey-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .journey-card {
        padding: 22px 20px 18px;
    }

    /* ===== QUICK ENQUIRY (MOBILE) ===== */
    .quick-enquiry {
        padding: 60px 0;
    }

    .quick-enquiry-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .quick-enquiry-form-wrapper {
        padding: 22px 18px 18px;
    }

    /* ===== CTA ===== */
    .cta-section {
        padding: 80px 0;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 0.95rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    /* ===== FOOTER ===== */
    footer {
        padding: 60px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }

    .footer-info p {
        margin: 15px auto;
        max-width: 100%;
    }

    .social-links {
        justify-content: center;
    }

    .newsletter-form {
        justify-content: center;
        max-width: 300px;
        margin: 0 auto;
    }

    .copyright {
        padding-top: 30px;
        font-size: 0.8rem;
    }

    /* ===== FLOATING BUTTONS ===== */
    .float-btn {
        width: 52px;
        height: 52px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }

    .back-to-top {
        width: 44px;
        height: 44px;
        bottom: 80px;
        right: 22px;
        font-size: 0.85rem;
    }

    /* ===== HAMBURGER TOGGLE ===== */
    .hamburger.toggle .line:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.toggle .line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.toggle .line:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* ===== PRELOADER ===== */
    .loader-logo {
        font-size: 3.2rem;
    }

    .logo-3d {
        text-shadow:
            0 1px 0 #c9b180,
            0 2px 0 #c0a870,
            0 3px 0 #b89f60,
            0 4px 5px rgba(0, 0, 0, 0.3),
            0 6px 15px rgba(0, 0, 0, 0.2);
    }

    .preloader-tagline {
        font-size: 0.75rem;
        letter-spacing: 3px;
        margin-bottom: 35px;
    }

    .preloader-bar {
        width: 200px;
    }
}

/* ===== EXTRA SMALL (480px) ===== */
@media (max-width: 480px) {

    /* --- Top Contact Bar --- */
    .top-socials {
        gap: 10px;
    }

    .top-contact {
        gap: 2px;
    }

    .top-socials a,
    .top-contact a {
        font-size: 0.7rem;
    }

    .hero-title-3d {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .btn-primary {
        width: 90%;
        padding: 12px 24px;
        font-size: 0.8rem;
    }

    .btn-outline {
        width: 70%;
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .hero-stats-row {
        width: 95%;
        padding: 12px 10px;
    }

    .hero-stat strong {
        font-size: 1.1rem;
    }

    .hero-stat span {
        font-size: 0.55rem;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .section-title-left {
        font-size: 1.6rem;
    }

    .marquee-content span {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .stat-card .counter {
        font-size: 1.8rem;
    }

    .loader-logo {
        font-size: 2.5rem;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .swiper-slide {
        height: 350px;
    }

    .about-img-container {
        border-radius: 16px;
    }

    .experience-badge {
        padding: 15px 22px;
    }

    .experience-badge .years {
        font-size: 2rem;
    }

    .villa-card.swiper-slide {
        width: 320px;
        height: 480px;
    }

    .hajj-card.swiper-slide {
        width: 320px;
        height: 520px;
    }
}

/* ========================================
   DESKTOP POLISH (NO OVERFLOW)
   ======================================== */
@media (min-width: 769px) {

    /* Primary buttons stand out as main actions */
    .btn-primary {
        font-size: 1rem;
        padding: 16px 44px;
        box-shadow: 0 14px 30px rgba(141, 198, 255, 0.45);
    }

    /* Secondary buttons calmer */
    .btn-outline {
        border-color: rgba(255, 255, 255, 0.4);
        color: #f5f5f5;
        box-shadow: none;
    }

    /* Calm glass cards a bit */
    .glass-card {
        animation: none !important;
    }

    /* Keep 3D cards crisp without looking too busy */
    .card-3d,
    .card-tilt-active {
        transform-style: preserve-3d;
        will-change: transform;
    }

    /* Slightly softer marquee background */
    .marquee-section {
        background: #dde9f8;
    }

    /* Clean, flat desktop header + nav inside top bar */
    .top-bar-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }

    .main-nav {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .nav-links {
        position: static;
        display: flex;
        gap: 28px;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    header.scrolled .nav-links {
        background: transparent;
        border-color: transparent;
        box-shadow: none;
    }

    .nav-links li a {
        padding: 0;
        border-radius: 0;
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.8);
    }

    .nav-links li a:hover {
        background: transparent;
        color: #ffffff;
    }

    .nav-links li a::after {
        bottom: -4px;
    }

    .top-contact {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-left: 0;
    }

    .hamburger {
        display: none;
    }
}

/* ========================================
   CTA SECTION (Quick Enquiry Background)
   ======================================== */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed;
    z-index: 0;
}

.cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5, 15, 40, 0.55);
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

/* Map embed in the contact section */
.map-embed-wrapper {
    width: 100%;
    line-height: 0;
}

.map-embed-wrapper iframe {
    display: block;
    width: 100%;
    border: none;
}

/* ========================================
   EDITORIAL & CONTENT COMPONENTS
   (Shared across Tour & Blog pages)
   ======================================== */
.tour-desc-rich>p:first-of-type::first-letter,
.blog-article-body>p:first-of-type::first-letter {
    float: left;
    font-size: 5.2rem;
    line-height: .8;
    padding: 8px 12px 0 0;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-weight: 700;
}

.auto-quote {
    position: relative;
    background: rgba(141, 198, 255, 0.06);
    border-left: 4px solid var(--gold);
    padding: 24px 34px;
    margin: 40px 0;
    border-radius: 0 16px 16px 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    line-height: 1.6;
    color: #1a1a1a;
    font-style: italic;
}

.auto-quote::before {
    content: '\u201C';
    position: absolute;
    top: -15px;
    left: 15px;
    font-size: 5.5rem;
    color: rgba(220, 180, 90, 0.15);
    font-family: Arial, sans-serif;
    z-index: 0;
}

.auto-quote span {
    position: relative;
    z-index: 1;
}

.auto-list {
    list-style: none;
    padding-left: 0;
    margin: 24px 0 32px 0;
}

.auto-list li {
    position: relative;
    margin-bottom: 14px;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
    padding-left: 32px;
}

.auto-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--gold);
    font-size: 1rem;
}

.auto-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}

.auto-highlight {
    background-color: rgba(220, 180, 90, 0.2);
    padding: 2px 4px;
    border-radius: 4px;
}

.editorial-section-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 56px 0 28px 0;
    border-left: 6px solid var(--accent-blue);
    padding-left: 24px;
    color: #135b83;
    font-family: 'Playfair Display', serif;
}

.editorial-section-title i {
    color: var(--accent-blue);
    margin-right: 12px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin: 32px 0;
}

.card {
    background: white;
    border-radius: 28px;
    padding: 28px;
    transition: all 0.3s ease;
    border: 1px solid #d9ebfc;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-blue);
    box-shadow: 0 20px 30px -12px rgba(30, 136, 229, 0.2);
}

.card-icon {
    font-size: 2.2rem;
    color: var(--accent-blue);
    margin-bottom: 16px;
}

.card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #135b83;
}

.timeline {
    background: white;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid #d9ebfc;
    margin: 32px 0;
}

.timeline-item {
    display: flex;
    flex-wrap: wrap;
    padding: 22px 30px;
    border-bottom: 1px solid #ecf5fc;
    transition: background 0.2s;
}

.timeline-item:hover {
    background: #fafdff;
}

.timeline .day {
    font-weight: 800;
    width: 140px;
    font-size: 1.1rem;
    color: var(--accent-blue);
}

.timeline .desc {
    flex: 1;
    font-weight: 500;
    color: #1f4d6b;
}

.timeline .desc small {
    display: block;
    color: #6e9bc0;
    font-weight: normal;
    margin-top: 6px;
}

.cost-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 30px 0;
}

.cost-card {
    flex: 1;
    min-width: 200px;
    background: white;
    border-radius: 28px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid #cce3fc;
    transition: all 0.2s;
}

.cost-card h4 {
    font-size: 1.9rem;
    font-weight: 800;
    color: #0f6b9e;
}

.cost-card p {
    margin-top: 8px;
    color: #437a9e;
}

.tips-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 28px 0;
}

.tip {
    background: white;
    padding: 22px;
    border-radius: 24px;
    border-left: 5px solid var(--accent-blue);
    color: #1f4d6b;
    font-size: .95rem;
    line-height: 1.6;
}

.important-block {
    background: #eef4fd;
    border-radius: 32px;
    padding: 32px;
    margin: 40px 0;
    border: 1px solid #cde0f2;
}

.important-block ul {
    margin-left: 24px;
    line-height: 1.7;
    color: #1f4d6b;
}

.conclusion {
    background: linear-gradient(125deg, #ffffff, #f0f8ff);
    border-radius: 32px;
    padding: 40px;
    margin: 48px 0;
    border: 1px solid #bed9f5;
}

.conclusion h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #04507a;
    margin-top: 0;
}

/* Tour Specifics */
.tour-hero {
    position: relative;
    height: 75vh;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.tour-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.tour-hero:hover .tour-hero-img {
    transform: scale(1.04);
}

.tour-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.25) 55%, transparent 100%);
}

.tour-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 40px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.tour-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    background: var(--accent-blue);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 16px;
}

.tour-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.6rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 14px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .4);
}

.tour-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: rgba(255, 255, 255, .85);
    font-size: .95rem;
}

.tour-hero-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tour-hero-meta i {
    color: var(--accent-blue);
}

.back-btn {
    position: absolute;
    top: 110px;
    left: 28px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    padding: 9px 20px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
}

/* Blog Specifics */
.blog-hero-v2 {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 2rem;
    margin: 40px 0 48px;
    padding: 80px 48px 56px;
    box-shadow: 0 20px 35px -12px rgba(0, 80, 120, 0.25);
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-align: left !important;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 450px;
    overflow: hidden;
    color: #fff !important;
}

.blog-hero-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.blog-hero-v2>* {
    position: relative;
    z-index: 2;
}

.blog-hero-badge {
    display: inline-block;
    background: var(--accent-blue);
    color: #fff;
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.blog-hero-v2 h1 {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff !important;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.blog-hero-v2 p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 85%;
    margin-bottom: 28px;
    line-height: 1.4;
}

.blog-hero-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.blog-hero-stat {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ========================================
   MOBILE WELCOME OVERLAY (hidden on desktop)
   ======================================== */
.mobile-welcome {
    display: none;
    /* Hidden on desktop */
}

/* ========================================
   MOBILE RESPONSIVE — max-width: 900px
   ======================================== */
@media (max-width: 900px) {
    .tour-body {
        grid-template-columns: 1fr !important;
        padding: 40px 18px 80px !important;
        gap: 32px !important;
    }

    .tour-sidebar {
        order: -1;
        /* Move enquiry form above content on mid-size if desired, or keep default */
    }
}

/* ========================================
   MOBILE RESPONSIVE — max-width: 768px
   ======================================== */
@media (max-width: 768px) {


    /* Show mobile welcome, hide normal hero content */
    .mobile-welcome {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: absolute;
        inset: 0;
        z-index: 2;
        padding: 40px 24px;
        gap: 10px;
    }

    .hero-content.hero-badge-overlay {
        display: none;
        /* Hide desktop hero content on mobile */
    }

    .mobile-welcome-badge {
        display: inline-block;
        background: rgba(5, 15, 50, 0.45);
        border: 1px solid rgba(141, 198, 255, 0.4);
        color: #cce4ff;
        font-size: 0.75rem;
        letter-spacing: 3px;
        text-transform: uppercase;
        padding: 6px 18px;
        border-radius: 50px;
        font-family: 'Inter', sans-serif;
        font-weight: 500;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    }

    .mobile-welcome-title {
        color: #ffffff;
        font-size: 2rem;
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        line-height: 1.2;
        margin: 6px 0 0;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(0, 0, 0, 0.6);
    }

    .mobile-welcome-sub {
        color: rgba(255, 255, 255, 0.95);
        font-size: 0.95rem;
        font-family: 'Inter', sans-serif;
        margin: 0 0 12px;
        text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65);
    }

    .mobile-welcome-btns {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 280px;
    }

    .mobile-welcome-btns .btn-primary,
    .mobile-welcome-btns .btn-outline {
        width: 100%;
        justify-content: center;
        text-align: center;
        font-size: 0.9rem;
    }

    /* WhatsApp green theme for the WhatsApp button */
    .mobile-welcome-btns .btn-outline {
        background: #25D366;
        border-color: #25D366;
        color: #ffffff;
    }

    .mobile-welcome-btns .btn-outline:hover {
        background: #1ebe5d;
        border-color: #1ebe5d;
        color: #ffffff;
    }

    /* --- Editorial Components --- */
    .tour-desc-rich>p:first-of-type::first-letter,
    .blog-article-body>p:first-of-type::first-letter {
        font-size: 3.5rem;
    }

    .auto-quote {
        padding: 18px 24px;
        font-size: 1.15rem;
    }

    .editorial-section-title {
        font-size: 1.5rem;
        padding-left: 16px;
        margin: 40px 0 20px;
    }

    .card-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .timeline-item {
        flex-direction: column;
        gap: 8px;
        padding: 18px 20px;
    }

    .timeline .day {
        width: auto;
        font-size: 1rem;
    }

    .cost-row {
        flex-direction: column;
        gap: 16px;
    }

    .cost-card {
        padding: 20px;
    }

    .tips-wrap {
        grid-template-columns: 1fr !important;
    }

    .important-block {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .conclusion {
        padding: 24px;
        border-radius: 20px;
    }

    .conclusion h2 {
        font-size: 1.5rem;
    }

    /* --- Tour & Blog Page UI --- */
    .tour-hero {
        height: 60vh;
        min-height: 350px;
    }

    .tour-hero-content {
        padding: 40px 20px;
    }

    .tour-hero-content h1 {
        font-size: 1.8rem !important;
    }

    .back-btn {
        top: 85px;
        left: 15px;
        padding: 7px 15px;
        font-size: 0.8rem;
    }

    .enquiry-card {
        position: static !important;
        padding: 24px 20px;
    }

    .blog-hero-v2 {
        padding: 40px 24px;
        min-height: 350px;
        border-radius: 1.2rem;
    }

    .blog-hero-v2 h1 {
        font-size: 1.8rem !important;
    }

    .blog-hero-v2 p {
        font-size: 1rem;
        max-width: 100%;
    }

    .blog-hero-stats {
        gap: 12px;
    }

    .blog-hero-stat {
        padding: 6px 14px;
        font-size: 0.8rem;
    }

    /* --- Base --- */
    html {
        font-size: 15px;
    }

    .container {
        padding: 0 16px;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .section-title p {
        font-size: 0.9rem;
    }

    /* --- Top Bar --- */
    .top-bar {
        padding: 8px 0;
    }

    .top-bar-container {
        padding: 0 16px;
        flex-wrap: wrap;
        gap: 6px;
    }

    /* Hide contact email on mobile, keep phone */
    .top-contact a[href^="mailto"] {
        display: none;
    }

    .top-contact a[href^="tel"] {
        font-size: 0.72rem;
        padding: 4px 10px;
    }

    .top-socials {
        gap: 8px;
    }

    .top-socials a i,
    .top-contact a i {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }

    /* --- Main Nav --- */
    .main-nav {
        order: 3;
        width: 100%;
    }

    .nav-links {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
        padding: 6px 0;
    }

    .nav-links li a {
        font-size: 0.75rem;
        padding: 4px 8px;
    }

    .hamburger {
        display: none;
    }

    /* --- Hero --- */
    .hero {
        min-height: 90vh;
    }

    .hero-content {
        padding: 20px 16px;
        text-align: center;
    }

    .hero-main-title {
        font-size: 1.7rem !important;
        line-height: 1.3;
    }

    .hero-subcopy {
        font-size: 0.9rem;
    }

    .hero-kicker {
        font-size: 0.75rem;
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-cta-row .btn-primary,
    .hero-cta-row .btn-outline {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }

    /* --- Marquee / Ticker --- */
    .marquee-track {
        gap: 20px;
    }

    /* --- Section padding --- */
    section,
    .destinations,
    .villas,
    .international-tours,
    .hajj-umrah,
    .services,
    .features,
    .blog,
    .cta-section {
        padding: 60px 0 !important;
    }

    /* --- Package / Tour Cards (Swiper) --- */
    .swiper-container {
        padding-bottom: 40px;
    }

    .swiper-slide.package-card {
        width: 280px !important;
    }

    .package-img img {
        height: 180px;
    }

    .package-content {
        padding: 16px;
    }

    .package-content h3 {
        font-size: 1rem;
    }

    .package-info-row .price {
        font-size: 1rem;
    }

    /* --- Features Grid --- */
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .feature-card {
        padding: 24px 20px;
    }

    /* --- Services Grid --- */
    .services-grid,
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* --- Hajj / Umrah --- */
    .hajj-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* --- Blog Grid --- */
    .blog .features-grid {
        grid-template-columns: 1fr !important;
    }

    .blog-card {
        border-radius: 14px;
    }

    .blog-img-wrapper img {
        height: 180px;
    }

    /* --- Quick Enquiry --- */
    .quick-enquiry-grid {
        grid-template-columns: 1fr !important;
        padding: 28px 20px !important;
        gap: 24px;
    }

    .quick-enquiry-copy h2 {
        font-size: 1.4rem;
    }

    .quick-enquiry-copy p,
    .quick-enquiry-points {
        font-size: 0.9rem;
    }

    .quick-enquiry-form-wrapper {
        padding: 20px !important;
    }

    /* --- Map Card --- */
    .map-card-header {
        flex-wrap: wrap;
        padding: 18px 16px;
        gap: 12px;
    }

    .map-card-header>.fas.fa-map-marker-alt {
        font-size: 1.5rem;
    }

    .map-card-header .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .map-embed-wrapper iframe {
        height: 250px;
    }

    /* --- Footer --- */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-col h4 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .footer-info .logo {
        font-size: 1.4rem;
    }

    .social-links {
        gap: 10px;
    }

    .copyright {
        text-align: center;
        padding: 16px 0;
        font-size: 0.8rem;
    }

    /* --- Buttons --- */
    .btn-primary,
    .btn-outline {
        padding: 12px 22px;
        font-size: 0.85rem;
    }

    /* --- Scroll indicator --- */
    .scroll-indicator {
        display: none;
    }

    /* --- Wave dividers --- */
    .wave-divider {
        display: none;
    }
}

/* ========================================
   SMALL PHONES — max-width: 480px
   ======================================== */
@media (max-width: 480px) {

    html {
        font-size: 14px;
    }

    .hero-main-title {
        font-size: 1.4rem !important;
    }

    .section-title h2 {
        font-size: 1.35rem;
    }

    .top-bar-container {
        justify-content: space-between;
    }

    /* Hide socials entirely on tiny screens */
    .top-socials {
        display: none;
    }

    .quick-enquiry-grid {
        padding: 20px 14px !important;
    }

    .map-card-header {
        padding: 14px 12px;
    }

    .swiper-slide.package-card {
        width: 260px !important;
    }

    .package-img img {
        height: 160px;
    }

    .btn-primary,
    .btn-outline {
        font-size: 0.8rem;
        padding: 10px 18px;
    }

    footer {
        padding: 40px 0 20px;
    }
}

/* ========================================
   TOUR PAGE — PACKAGE SELECTION CARDS
   ======================================== */
.package-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    padding: 20px 0;
}

.selection-package-card {
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(10, 30, 70, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.selection-package-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 30px 60px rgba(10, 30, 70, 0.1),
        0 0 0 1px rgba(141, 198, 255, 0.2);
    border-color: rgba(141, 198, 255, 0.3);
}

.selection-package-img {
    height: 240px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.selection-package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.selection-package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.selection-package-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.selection-package-content h3 {
    font-size: 1.45rem;
    font-weight: 800;
    color: #0a1e46;
    margin-bottom: 8px;
    line-height: 1.25;
}

.selection-package-desc {
    font-size: 0.92rem;
    color: #667085;
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.selection-price {
    font-weight: 800;
    color: var(--accent-blue);
    font-size: 1.2rem;
}

.selection-duration {
    font-size: 0.82rem;
    color: #98a2b3;
    font-weight: 500;
}

.selection-btn {
    display: block;
    text-align: center;
    margin-top: 18px;
    padding: 12px;
    background: #f8fbff;
    color: var(--accent-blue);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(141, 198, 255, 0.2);
}


.selection-package-card:hover .selection-btn {
    background: var(--accent-blue);
    color: #fff;
    box-shadow: 0 8px 20px rgba(30, 136, 229, 0.3);
}

@media (max-width: 480px) {
    .selection-package-content {
        padding: 24px;
    }

    .selection-package-content h3 {
        font-size: 1.35rem;
    }
}

/* ========================================
   TOUR PAGE — EXACT FINALE REPLICA
   ======================================== */
.finale-active header, .finale-active footer {
    display: none !important;
}

body.finale-active {
    background: #f0f4fa !important;
    margin: 0; padding: 0;
    font-family: 'Inter', sans-serif;
}

.finale-layout {
    font-family: 'Inter', sans-serif;
    background: #f0f4fa;
    color: #1e2a44;
}

.finale-layout .contact-row {
    background: #0b2b5c;
    color: white;
    padding: 0.5rem 5%;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 500;
}

.finale-layout .main-header {
    background: #ffffff;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.finale-layout .logo h1 {
    font-size: 1.5rem;
    color: #0b2b5c;
    margin: 0;
    letter-spacing: 1px;
}

.finale-layout .nav-links a {
    text-decoration: none;
    color: #334e77;
    margin-left: 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.finale-layout .hero-image {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 1;
    object-fit: cover;
    display: block;
}

.finale-layout .package-container {
    max-width: 1200px;
    margin: -60px auto 4rem; /* Lift over hero */
    position: relative;
    z-index: 10;
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 40px 100px -20px rgba(11, 43, 92, 0.15);
    overflow: visible; /* Allow floating elements */
}

.finale-layout .content {
    padding: 3rem 4rem;
}

.finale-layout .package-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f1f5f9;
}

.finale-layout .night-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #0b2b5c;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.finale-layout .price-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 1.5rem 2.5rem;
    text-align: right;
    box-shadow: 0 10px 30px -5px rgba(0,0,0,0.05);
}

.finale-layout .price-amount { 
    font-size: 2.4rem; 
    font-weight: 900; 
    color: #1a498b;
    line-height: 1;
    margin-bottom: 5px;
}

.finale-layout .price-note { 
    font-size: 0.85rem; 
    color: var(--text-muted);
    font-weight: 500;
}

/* Itinerary Timeline Design */
.itinerary-timeline {
    position: relative;
    padding-left: 40px;
    margin: 2rem 0;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(to bottom, #1a498b 0%, rgba(26, 73, 139, 0.1) 100%);
}

.finale-layout .day-card {
    margin: 2.5rem 0;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    padding: 2rem 2.5rem;
    position: relative;
    box-shadow: 0 10px 40px -15px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.finale-layout .day-card:hover { 
    transform: translateX(10px);
    box-shadow: 0 25px 50px -15px rgba(11, 43, 92, 0.1);
    border-color: #e2e8f0;
}

.finale-layout .day-card::before {
    content: '';
    position: absolute;
    left: -32.5px;
    top: 28px;
    width: 15px;
    height: 15px;
    background: #ffffff;
    border: 3px solid #1a498b;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 5px rgba(26, 73, 139, 0.05);
}

.itinerary-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #0b2b5c;
    margin: 3rem 0 1.5rem;
}

.finale-layout .form-box { 
    flex: 1; 
    background: #ffffff; 
    border-radius: 24px; 
    padding: 2.5rem; 
    border: 1px solid #e2e8f0; 
    box-shadow: 0 20px 50px -15px rgba(0,0,0,0.06); 
    min-width: 350px; 
}
.finale-layout .form-box h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; margin-bottom: 1.5rem; color: #0b2b5c; }

.finale-layout .inclusions-row {
    flex: 1.3;
    display: flex; 
    flex-direction: column; 
    gap: 2.5rem;
}

.finale-layout .inclusions-box { 
    background: #f8fafc; 
    border-radius: 20px; 
    padding: 2.5rem; 
    border: 1px solid #e2e8f0; 
}

.finale-layout .inclusions-box h3 { 
    font-size: 1.6rem; 
    font-weight: 700; 
    margin-bottom: 1.5rem; 
    color: #059669; /* Green for inclusions */
    display: flex;
    align-items: center;
    gap: 12px;
}

.finale-layout .inclusions-box ul { list-style: none; padding: 0; }
.finale-layout .inclusions-box li { 
    padding: 0.8rem 0; 
    display: flex; 
    align-items: flex-start; 
    gap: 12px; 
    font-size: 1rem; 
    line-height: 1.5;
    color: #334155;
    border-bottom: 1px dashed #e2e8f0; 
}

.finale-layout .inclusions-box li:last-child { border: none; }
.finale-layout .inclusions-box li::before { 
    content: "✓"; 
    color: #059669; 
    font-weight: 900; 
    font-size: 1.2rem;
}

.finale-layout .exclusion h3 {
    color: #dc2626 !important; /* Red for exclusions */
}

.finale-layout .exclusion li::before { 
    content: "✗" !important; 
    color: #dc2626 !important; 
    font-weight: 900;
}

.finale-layout .form-group { margin-bottom: 1.2rem; }
.finale-layout .form-group input, .finale-layout .form-group select, .finale-layout .form-group textarea { 
    width: 100%; 
    padding: 1rem 1.2rem; 
    border: 1px solid #cbd5e1; 
    border-radius: 12px; 
    font-family: inherit; 
    font-size: 0.95rem; 
    background: #f8fafc;
    transition: all 0.3s ease;
}

.finale-layout .form-group input:focus, .finale-layout .form-group select:focus, .finale-layout .form-group textarea:focus {
    outline: none;
    border-color: #0b2b5c;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(11, 43, 92, 0.08);
    transform: translateY(-2px);
}

.finale-layout .submit-btn { 
    background: #0b2b5c; 
    color: white; 
    border: none; 
    padding: 1.2rem; 
    width: 100%; 
    border-radius: 14px; 
    font-weight: 800; 
    font-size: 1rem;
    cursor: pointer; 
    transition: all 0.3s; 
    box-shadow: 0 10px 20px -5px rgba(11, 43, 92, 0.3);
}
.finale-layout .submit-btn:hover { 
    background: #1a498b; 
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(11, 43, 92, 0.4);
}

.finale-layout .day-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0b2b5c;
}

.finale-layout .meals {
    background: #f0f7ff;
    color: #1a498b;
    padding: 5px 15px;
    font-weight: 700;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    border: 1px solid rgba(26, 73, 139, 0.1);
}

.finale-layout .action-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 2rem;
    justify-content: flex-start; /* Aligned with title now to prevent collision */
}

.finale-layout .action-btn {
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 0.8rem 1.5rem;
    font-weight: 700;
    color: #0b2b5c;
}

.finale-layout .action-btn:hover {
    transform: translateY(-3px);
    background: #0b2b5c;
    color: #ffffff;
}

.finale-layout .footer { background: #0b2b5c; color: white; text-align: center; padding: 2rem; margin-top: 2rem; }
.finale-layout .footer p { font-size: 0.8rem; opacity: 0.8; }

@media (max-width: 700px) {
    .finale-layout .content { padding: 1.5rem; }
    .finale-layout .package-head { flex-direction: column; align-items: stretch; }
    .finale-layout .action-buttons { justify-content: center; }
    .finale-layout .hero-image { aspect-ratio: 16 / 9; }
    .finale-layout .main-header { flex-direction: column; gap: 1rem; text-align: center; }
    .finale-layout .nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
    .finale-layout .nav-links a { margin: 0; }
}

@media print {
    .contact-row, .main-header, .action-buttons, .form-box, .footer { display: none !important; }
    .package-container { box-shadow: none !important; margin: 0 !important; }
}

.finale-template .action-btn:hover {
    background: #dce8f5;
}

.finale-template .finale-footer {
    background: #0b2b5c;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

.finale-template .finale-footer p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

@media (max-width: 700px) {
    .finale-template .content { padding: 1.5rem; }
    .finale-template .package-head { flex-direction: column; align-items: stretch; }
    .finale-template .price-box { text-align: center; }
    .finale-template .action-buttons { justify-content: center; }
    .finale-template .finale-hero-image { aspect-ratio: 16 / 9; }
}

/* Print Overrides - DEHORIZON BRANDED PDF */
@media print {
    body::before { 
        content: 'DE HORIZON TRAVELS';
        position: fixed;
        top: 0.5cm;
        left: 1cm;
        right: 1cm;
        font-size: 24pt;
        font-weight: bold;
        color: #0b2b5c;
        text-align: center;
        padding: 10px;
        border-bottom: 2px solid #0b2b5c;
        background: white;
        font-family: 'Playfair Display', serif;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    body::after { 
        content: 'Courtesy DeHorizan Travels | Premium Kashmir Luxury Specialists | www.dehorizonholidays.com | ☎️ 9820009074 | IATA Approved';
        position: fixed;
        bottom: 0.5cm;
        left: 1cm;
        right: 1cm;
        text-align: center;
        font-size: 11pt;
        color: #666;
        padding: 10px;
        background: white;
        border-top: 1px solid #eee;
        font-weight: 600;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    body.finale-active header,
    body.finale-active .back-btn,
    body.finale-active .action-buttons,
    body.finale-active .form-box,
    body.finale-active .float-btn,
    body.finale-active .top-bar,
    body.finale-active footer,
    body.finale-active .scroll-progress {
        display: none !important;
    }
    
    body.finale-active {
        background: white !important;
    }
    
    .finale-template .package-container {
        box-shadow: none !important;
        margin: 0 !important;
        border-radius: 0 !important;
        max-width: 100% !important;
    }
    
    .finale-template .content {
        padding: 0 !important;
    }
    
    .finale-template .price-box {
        background: #0b2b5c !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
        color: white !important;
    }
    
    .finale-template .day-card {
        break-inside: avoid;
        border-color: #e2edf7 !important;
    }
    
    .finale-template .stay-badge {
        background: #eef4ff !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}
