/* =========================================
   GATEWAY TRAVELS — FULL STYLESHEET
   ========================================= */

/* --- 1. CSS VARIABLES --- */
:root {
    --primary: #005b95;
    --primary-light: #0077c2;
    --accent: #000000;
    --accent-hover: #111111;
    --text: #111111;
    --text-muted: #555555;
    --bg-white: #ffffff;
    --bg-light: #f4f7f9;
    --bg-dark: #111111;
    --bg-darker: #000000;
    --radius-sm: 10px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --shadow-sm: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 15px 40px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.18);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --container: 1200px;
    --header-h: 80px;
}

/* --- 2. RESET & BASE --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 88px;
    /* 72px bar + 16px top gap */
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--bg-white);
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
}

/* --- 3. UTILITIES --- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 110px 0;
}

.bg-light {
    background: var(--bg-light);
}

.bg-dark {
    background: var(--bg-dark);
}

.text-center {
    text-align: center;
}

.w-100 {
    width: 100%;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-header {
    margin-bottom: 65px;
}

.section-header.text-center .section-title {
    margin: 0 auto;
}

.section-subtitle {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}

.section-subtitle.light {
    opacity: 0.7;
}

.section-title {
    font-size: 46px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    letter-spacing: -1.5px;
    max-width: 600px;
}

.section-title.light {
    color: #fff;
}

.section-desc {
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 16px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.text-primary {
    color: var(--primary);
}

/* --- 4. BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 91, 149, .3);
}

.btn-primary:hover {
    background: #004d7c;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 91, 149, .4);
}

.btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    margin-top: 28px;
    box-shadow: 0 8px 20px rgba(37, 211, 102, .3);
}

.btn-whatsapp:hover {
    background: #1ebe57;
    transform: translateY(-3px);
}

.btn-text {
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-text:hover {
    gap: 14px;
}

/* =============================================
   5. HEADER / NAVBAR
   ============================================= */
header {
    position: fixed;
    top: 0;
    left: 24px; /* Perfectly aligned with the hero card left margin */
    right: 24px; /* Perfectly aligned with the hero card right margin */
    width: calc(100% - 48px); /* Account for 24px margins on both sides */
    z-index: 999;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 24px 0 0 0; /* Proper top padding to align perfectly with the hero card top margin */
}

header.scrolled {
    left: 0; /* Reverts to full width sticky bar when scrolled */
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: none;
    /* Separating shadows completely removed as requested */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0; /* Flush with top when scrolled sticky */
}

/* Navbar wrapper layout */
.navbar {
    width: 100%;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px; /* Symmetrical, refined initial header height */
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled .nav-container {
    height: 75px; /* Compact sticky scrolled header height */
}

/* ---- Logo (left alignment) ---- */
.logo {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    z-index: 1001;
    height: 100% !important;
    flex-shrink: 0 !important; /* Forces the browser to NEVER shrink or squish the logo! */
}

.logo-img {
    height: 70px !important; /* Perfect brand prominence, not oversized */
    width: auto !important;
    max-height: none !important;
    max-width: 100% !important;
    object-fit: contain !important;
    filter: brightness(0) invert(1) !important; /* Crisp white logo over dark sunset background */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: block !important;
}

header.scrolled .logo-img {
    height: 52px !important; /* Elegant smaller logo size when scrolled sticky */
    filter: none !important; /* Restores exact brand colors on solid white background */
}

/* ---- Center Navigation Links (seamless inline alignment) ---- */
.nav-center-tab {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled .nav-center-tab {
    background: transparent;
    box-shadow: none !important;
    transform: none;
}

/* Concave Curve Corner items removed completely to prevent separate hanging appearance */
.nav-center-tab::before,
.nav-center-tab::after {
    display: none !important;
    content: none !important;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px; /* Optimized layout gap to prevent horizontal overflow */
    list-style: none;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    /* Unified white text over transparent hero overlay */
    text-transform: none;
    letter-spacing: 0.2px;
    padding: 8px 15px; /* Compact padding to keep header perfectly inline */
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    font-weight: 700;
}

/* Scrolled Sticky link color states */
header.scrolled .nav-link {
    color: #333333;
}

header.scrolled .nav-link:hover {
    color: var(--primary);
    background: rgba(0, 91, 149, 0.05);
}

header.scrolled .nav-link.active {
    color: var(--primary);
    background: rgba(0, 91, 149, 0.08);
}

/* ---- Right Actions (right alignment) ---- */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 1001;
}

.nav-lang-dropdown {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.nav-lang-dropdown:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-nav-glass {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-nav-glass:hover {
    background: #ffffff;
    color: #111111;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ---- Hamburger Toggle Button ---- */
.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

.menu-btn:hover {
    background: rgba(255, 255, 255, 0.22);
}

.menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 4px;
    transition: var(--transition);
    transform-origin: center;
}

.menu-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: #ffffff;
}

.menu-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: #ffffff;
}

.menu-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: #ffffff;
}

/* ---- Sticky Scrolled Header State ---- */
header.scrolled {
    padding: 10px 0;
}

header.scrolled .nav-lang-dropdown {
    background: rgba(0, 91, 149, 0.06);
    border-color: rgba(0, 91, 149, 0.15);
    color: var(--primary);
}

header.scrolled .nav-lang-dropdown:hover {
    background: rgba(0, 91, 149, 0.12);
}

header.scrolled .btn-nav-glass {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

header.scrolled .btn-nav-glass:hover {
    background: #004d7c;
    border-color: #004d7c;
    box-shadow: 0 8px 20px rgba(0, 91, 149, 0.3);
}

header.scrolled .menu-btn {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.08);
}

header.scrolled .menu-btn span {
    background: #333333;
}

/* ---- Mobile Overlay ---- */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-overlay.active {
    opacity: 1;
}

/* --- 6. HERO --- */
.hero {
    height: calc(100vh - 48px);
    min-height: 650px;
    margin: 24px;
    border-radius: 28px;
    background: var(--primary);
    position: relative;
    display: flex;
    align-items: flex-end;
    /* Align content perfectly to bottom inside card */
    color: #fff;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: var(--primary) url('./assets/img/hero_mountain.png') no-repeat center center / cover; /* Premium image fallback */
    z-index: 0;
    will-change: transform;
    transform-origin: center center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 91, 149, 0.45) 50%,
            rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.hero-container-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 60px;
    padding-top: 160px;
    /* Spacious clear spacing under float nav */
}

.hero-bottom-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: flex-end;
}

.hero-bottom-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-bottom-right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 16px;
    opacity: 0.9;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.hero-desc {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    max-width: 580px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}

/* Horizontally Stacked Avatars */
.hero-trusted {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 8px 20px 8px 12px;
    border-radius: 50px;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    object-fit: cover;
    margin-right: -10px;
    transition: transform 0.3s ease;
}

.avatar-img:hover {
    transform: translateY(-4px) scale(1.1);
    z-index: 10;
}

.avatar-more {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    color: #111111;
    font-size: 12.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    z-index: 2;
}

.trusted-text {
    font-size: 13.5px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.2px;
}

/* Book Now Pill Button */
.btn-book-now {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: #ffffff;
    color: #111111;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-book-now:hover {
    background: #111111;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.arrow-up-right {
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn-book-now:hover .arrow-up-right {
    transform: translate(3px, -3px);
}

.hero-scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    animation: bounce 2s infinite;
}

.hero-scroll-down:hover {
    color: #ffffff;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Hero Animations */
.animate-up {
    opacity: 0;
    transform: translateY(40px);
    animation: animUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-4 {
    animation-delay: 0.6s;
}

@keyframes animUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- 7. ABOUT --- */
.about-top-grid {
    align-items: center;
    gap: 80px;
}

.about-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.section-title-mockup {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.about-desc-mockup {
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 520px;
}

/* Pastel light blue pill button matching mockup */
.btn-about-learn {
    background: #e1effa !important;
    color: #005b95 !important;
    border-radius: 50px !important;
    padding: 12px 32px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    box-shadow: 0 4px 12px rgba(0, 91, 149, 0.08) !important;
    transition: var(--transition) !important;
}

.btn-about-learn:hover {
    background: #d0e4f7 !important;
    color: #004b7c !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 91, 149, 0.15) !important;
}

/* About Illustration Portrait card layout */
.about-illustration-wrap {
    position: relative;
    height: 480px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    margin-right: 40px;
}

.illustration-bg-card {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 82%;
    height: 90%;
    background: #e1effa; /* Soft pastel light blue block */
    border-radius: 36px;
    z-index: 1;
}

.illustration-main-img {
    position: relative;
    height: 100%;
    width: 82%;
    object-fit: cover;
    border-radius: 0 0 36px 36px; /* Sits flush inside the sage background card bottom */
    z-index: 2;
}

/* Floating Elements */
.floating-card {
    position: absolute;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.02);
    z-index: 3;
}

/* Floating Rating Card */
.rating-card-float {
    left: -40px;
    top: 30%;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 200px;
}

.stars-row {
    color: #00c292; /* Mint green stars just like mockup */
    font-size: 14px;
    display: flex;
    gap: 3px;
}

.rating-avatars-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar-group-mini {
    display: flex;
    align-items: center;
}

.avatar-mini-img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1.5px solid #ffffff;
    margin-left: -8px;
    object-fit: cover;
}

.avatar-mini-img:first-child {
    margin-left: 0;
}

.avatar-mini-more {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #111111;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #ffffff;
    margin-left: -8px;
}

.rating-number {
    font-size: 12px;
    font-weight: 700;
    color: #111111;
}

/* Floating Explore Badge */
.explore-badge-float {
    left: 8%;
    top: 6%;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 50px;
}

.explore-badge-float span {
    font-size: 12px;
    font-weight: 700;
    color: #111111;
}

.rocket-icon {
    color: var(--primary);
    font-size: 12px;
}

/* Floating Pill Tags Over the Image */
.floating-pill-tag {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: #111111;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    z-index: 4;
    white-space: nowrap;
}

.tag-hajj {
    top: 55%;
    right: -20px;
}

.tag-visa {
    top: 72%;
    right: -10px;
}

.tag-holiday {
    bottom: 8%;
    right: 40px;
}

/* Bottom Metrics Bar with dividers */
.about-metrics-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 80px;
    border-top: 1px solid #eeeeee;
    padding-top: 60px;
    width: 100%;
}

.metric-item {
    flex: 1;
    text-align: center;
}

.metric-value {
    font-size: 64px;
    font-weight: 800;
    color: #111111;
    line-height: 1;
    letter-spacing: -2px;
}

.metric-label {
    font-size: 13.5px;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 12px;
    letter-spacing: 0.2px;
}

.metric-divider {
    width: 1px;
    height: 70px;
    background: #e0e0e0;
    flex-shrink: 0;
}

/* --- 8. SERVICES (Futuristic, Minimalist Design) --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: #ffffff;
    padding: 44px 40px;
    border-radius: 24px;
    border: 1px solid #eef0f4;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Clean left alignment */
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none; /* Absolutely minimal, no glow */
    cursor: default;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #111111; /* Clean high-contrast solid border on hover */
    background: #ffffff;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.04);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 91, 149, 0.06); /* Soft theme background tint */
    color: var(--primary); /* Theme color icon */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 0 28px 0; /* Aligned left */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .icon-box {
    background: var(--primary); /* Theme color background on hover */
    color: #ffffff; /* White icon on hover */
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
}

/* Sequential Futuristic Numbers */
.service-num {
    position: absolute;
    top: 44px;
    right: 40px;
    font-size: 14.5px;
    font-weight: 700;
    color: #cccccc;
    font-family: monospace;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.service-card:hover .service-num {
    color: #111111;
}

/* Slide-in Arrow Indicator */
.service-arrow {
    position: absolute;
    bottom: 44px;
    right: 40px;
    font-size: 18px;
    color: #cccccc;
    opacity: 0;
    transform: translate(-10px, 10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-arrow {
    opacity: 1;
    color: #111111;
    transform: translate(0, 0);
}

/* --- 9. WHY CHOOSE US (Mockup Overhaul) --- */
.why-us {
    background: #ffffff;
}

.why-choose-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.why-choose-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    color: #111111;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.why-choose-desc {
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--text-muted);
}

/* Three columns layout with cards matching mockup exactly */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 70px;
}

.why-choose-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    height: 380px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.why-choose-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Card inside the why-choose-card */
.why-choose-card .floating-glass-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 700;
    color: #111111;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

/* Floating White Card inside middle card */
.why-choose-card .floating-middle-badge {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.02);
    white-space: nowrap;
    z-index: 3;
}

.why-choose-card .floating-middle-badge span {
    font-size: 13px;
    font-weight: 700;
    color: #111111;
}

/* Mission statement row at the bottom matching mockup */
.why-choose-mission {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.6;
    color: #444444;
    font-weight: 500;
    border-top: 1px solid #eeeeee;
    padding-top: 50px;
    letter-spacing: -0.2px;
}

.why-choose-mission strong {
    color: #111111;
    font-weight: 700;
}

/* --- 10. DESTINATIONS --- */
#destinations {
    background: linear-gradient(180deg, #07162c 0%, #020914 100%) !important;
    position: relative;
    overflow: hidden;
}

#destinations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(0, 91, 149, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.destination-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 440px;
    cursor: pointer;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-info {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
    color: #fff;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.destination-card:hover .destination-info {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
}

.dest-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
}

.destination-info h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 4px;
}

.destination-info>p {
    font-size: 13px;
    opacity: 0.75;
    margin-bottom: 16px;
}

/* --- 11. TESTIMONIALS --- */
.testimonial-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.testimonial-track-wrap {
    flex: 1;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.testimonial-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-item {
    min-width: 100%;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 50px 55px;
    border: 1px solid #eef0f4;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.quote-icon {
    font-size: 40px;
    color: var(--primary);
    opacity: 0.15;
    margin-bottom: 16px;
}

.stars {
    color: #f1c40f;
    /* Keeping stars yellow/gold as it is standard for reviews */
    font-size: 18px;
    margin-bottom: 20px;
    gap: 4px;
    display: flex;
    justify-content: center;
}

.testimonial-item>p {
    font-size: 17px;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 30px;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.client-info img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.client-info h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
}

.client-info span {
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
}

.slider-btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
}

.slider-btn:hover {
    background: var(--primary-light);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 10px;
}

/* --- 12. CONTACT --- */
.contact-intro {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid #eef0f4;
}

.contact-item:first-of-type {
    border-top: 1px solid #eef0f4;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 3px;
}

.contact-item p {
    color: var(--text-muted);
    font-size: 14px;
}

.contact-form-container {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 44px 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid #eef0f4;
}

.contact-form h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #e8eaf0;
    background: #fbfcfd;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 14px;
    color: var(--text);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 91, 149, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-success {
    display: none;
    margin-top: 16px;
    padding: 14px 18px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: var(--radius-sm);
    color: #1a8f42;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

/* --- 13. FOOTER --- */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.65);
    padding: 90px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.6fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.8;
    max-width: 280px;
}

.footer-logo {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    height: 48px !important; /* Visual baseline alignment matching the top h3s */
    margin-bottom: 24px !important;
}

.footer-logo .logo-img {
    height: 44px !important; /* Precise logo height for footer */
    width: auto !important;
    filter: brightness(0) invert(1) !important; /* Solid white */
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.social-links a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-4px);
}

.footer-col h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-col ul li a i {
    font-size: 9px;
    color: var(--accent);
    opacity: 0;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-col ul li a:hover i {
    opacity: 1;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form input {
    flex: 1;
    padding: 13px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #fff;
    outline: none;
    font-family: inherit;
    font-size: 13px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.newsletter-form button {
    padding: 13px 22px;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: #004d7c;
}

.contact-brief {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-brief p {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-brief p i {
    color: var(--primary); /* Theme primary blue */
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal a {
    margin-left: 20px;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--primary);
}

/* --- 14. BACK TO TOP --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #004d7c;
    transform: translateY(-4px);
}

/* --- 15. SCROLL REVEAL --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- 16. RESPONSIVE --- */
@media (max-width: 1200px) {
    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .destination-card {
        height: 340px;
    }
}

@media (max-width: 1250px) and (min-width: 992px) {
    .nav-container {
        padding: 0 1.25rem !important;
    }
    
    .logo-img {
        height: 58px !important;
    }
    
    .nav-links {
        gap: 3px !important;
    }
    
    .nav-link {
        font-size: 13px !important;
        padding: 6px 10px !important;
    }
    
    .nav-lang-dropdown {
        display: none !important; /* Hide non-essential dropdown to prevent overflowing laptop edge */
    }
    
    .btn-nav-glass {
        padding: 8px 16px !important;
        font-size: 13.5px !important;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 56px;
    }

    .section-title {
        font-size: 38px;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    
    .why-choose-card {
        height: 320px !important;
    }
    
    .why-choose-mission {
        font-size: 17px !important;
        padding-top: 30px !important;
    }

    .about-illustration-wrap {
        margin-top: 50px !important;
        margin-right: 0 !important;
        height: 380px !important;
        justify-content: center !important;
    }
    
    .rating-card-float {
        left: -20px !important;
        width: 180px !important;
        padding: 10px 14px !important;
    }
    
    .floating-pill-tag {
        padding: 6px 12px !important;
        font-size: 11px !important;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        grid-column: span 2;
    }

    /* Tablet and Mobile Navigation Overrides */
    .nav-center-tab {
        display: contents !important;
    }

    .nav-center-tab::before,
    .nav-center-tab::after {
        display: none !important;
    }

    .nav-lang-dropdown,
    .btn-nav-glass {
        display: none !important;
        /* Hide non-essential layout capsules on mobile */
    }

    header {
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        padding: 12px 0 0 0 !important;
    }

    header.scrolled {
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        padding: 8px 0 !important;
    }

    .nav-container {
        height: 65px !important;
        padding: 0 1.5rem !important;
    }

    header.scrolled .nav-container {
        height: 55px !important;
    }

    .logo-img {
        height: 52px !important;
        width: auto !important;
        max-height: none !important;
        max-width: 100% !important;
        display: block !important;
    }

    /* Floating drawer layout */
    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 100px 40px 40px;
        gap: 10px;
        z-index: 999;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid rgba(255, 255, 255, 0.06);
        transform: none;
        left: auto;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-overlay {
        display: block;
    }

    .nav-link {
        font-size: 15px;
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        opacity: 0.8;
        color: #ffffff !important;
        background: transparent !important;
        border-radius: 0 !important;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--accent) !important;
        opacity: 1;
    }

    .menu-btn {
        display: flex;
    }

    .btn-nav {
        display: none;
    }

    /* Framed Hero Responsive Formatting */
    .hero {
        margin: 12px !important;
        height: calc(100vh - 24px) !important;
        border-radius: 20px !important;
    }

    .hero-container-inner {
        padding-top: 110px !important;
        padding-bottom: 40px !important;
    }

    .hero-bottom-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center !important;
    }

    .hero-bottom-left {
        align-items: center !important;
    }

    .hero-bottom-right {
        justify-content: center !important;
        width: 100% !important;
    }

    .hero-title {
        font-size: 42px !important;
        letter-spacing: -1px !important;
        line-height: 1.1 !important;
    }

    .hero-desc {
        font-size: 14.5px !important;
        margin-bottom: 24px !important;
        max-width: 100% !important;
    }

    .hero-trusted {
        flex-direction: column !important;
        gap: 12px !important;
        padding: 12px 20px !important;
        border-radius: 20px !important;
        width: 100% !important;
        max-width: 320px !important;
    }

    .btn-book-now {
        padding: 14px 32px !important;
        font-size: 15px !important;
    }
}

@media (max-width: 768px) {
    :root {
        --header-h: 70px;
    }

    .section-padding {
        padding: 80px 0;
    }

    .about-metrics-bar {
        flex-direction: column !important;
        gap: 36px !important;
        padding-top: 40px !important;
        margin-top: 40px !important;
    }

    .metric-divider {
        display: none !important;
    }

    .metric-value {
        font-size: 48px !important;
    }

    .hero-title {
        font-size: 36px !important;
        letter-spacing: -1px !important;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat h3 {
        font-size: 24px;
    }

    .section-title {
        font-size: 34px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .destination-grid {
        grid-template-columns: 1fr;
    }

    .destination-card {
        height: 300px;
    }

    .testimonial-item {
        padding: 36px 28px;
    }

    .testimonial-item>p {
        font-size: 15px;
    }

    .slider-btn {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 32px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .logo-img {
        height: 48px !important;
        width: auto !important;
        max-height: none !important;
        max-width: 100% !important;
        display: block !important;
    }

    .hero-title {
        font-size: 30px !important;
        letter-spacing: -0.5px !important;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}