/* ================================================================
   NORWEGIAN CRUISE LINE — UNIFIED STYLESHEET
   ================================================================

   TABLE OF CONTENTS
   -----------------
   1.  CSS Custom Properties (Variables)
   2.  Reset & Base Styles
   3.  Utility Classes
       3.1  Layout
       3.2  Typography
       3.3  Colors
       3.4  Spacing
       3.5  Flexbox & Grid
       3.6  Borders & Radius
       3.7  Shadows & Effects
   4.  Shared Components
       4.1  Buttons
       4.2  Cards
       4.3  Badges
       4.4  Image Container
       4.5  Info & Highlights
       4.6  Icons
   5.  Animations & Keyframes
   6.  Navbar
   7.  Hero Section
   8.  Ship Section
   9.  Travel / Cruises Section
   10. Search Section
   11. FAQ Section
   12. Footer
   13. Responsive Design
   14. Scrollbar & Selection
   15. Accessibility & Print

   ================================================================ */


/* ================================================================
   1. CSS CUSTOM PROPERTIES
   ================================================================ */
:root {
    /* Brand Colors */
    --color-primary: #194f94;
    --color-accent: #0090d0;
    --color-accent-light: #00b4ff;
    --color-accent-cyan: #00c9ff;
    --color-gold: #fcd34d;
    --color-star: #fbbf24;

    /* Background Colors */
    --bg-dark: #071041;
    --bg-light: #f0f5ff;
    --bg-white: #ffffff;

    /* Text Colors */
    --text-dark: #1a1a2e;
    --text-gray-500: #6b7280;
    --text-gray-600: #4b5563;
    --text-gray-700: #374151;
    --text-gray-800: #1f2937;

    /* Borders */
    --border-light: #f3f4f6;
    --border-gray: #e5e7eb;

    /* Shadows — enhanced with colored tints */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px -2px rgba(0, 90, 160, 0.08),
        0 2px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 25px -5px rgba(0, 90, 160, 0.1),
        0 4px 10px -2px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 40px -8px rgba(0, 90, 160, 0.12),
        0 10px 15px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 60px -15px rgba(0, 90, 160, 0.2);

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-blur: blur(12px);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}


/* ================================================================
   2. RESET & BASE STYLES
   ================================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Cairo", sans-serif;
    direction: rtl;
    line-height: 1.6;
    color: var(--text-dark);
    min-height: 100vh;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
}

ul,
ol {
    list-style: none;
}


/* ================================================================
   3. UTILITY CLASSES
   ================================================================ */

/* --- 3.1 Layout --- */
.min-h-screen {
    min-height: 100vh;
}

.bg-white {
    background-color: var(--bg-white);
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-light-blue {
    background-color: var(--bg-light);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.max-w-7xl {
    max-width: 1280px;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-3xl {
    max-width: 768px;
}

.max-w-2xl {
    max-width: 42rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.w-full {
    width: 100%;
}

.h-400 {
    height: 400px;
}

.h-500 {
    height: 500px;
}

.overflow-hidden {
    overflow: hidden;
}

.object-cover {
    object-fit: cover;
}

.section-padding {
    padding: 4rem 1rem;
}


/* --- 3.2 Typography --- */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-5xl {
    font-size: 3rem;
}

.font-light {
    font-weight: 300;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.leading-relaxed {
    line-height: 1.625;
}


/* --- 3.3 Color Utilities --- */
.text-white {
    color: #ffffff;
}

.text-primary {
    color: var(--color-primary);
}

.text-gray-600 {
    color: var(--text-gray-500);
}

.text-gray-700 {
    color: var(--text-gray-700);
}

.text-gray-800 {
    color: var(--text-gray-800);
}

.text-green-500 {
    color: #10b981;
}

.text-yellow-400 {
    color: var(--color-star);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 50%, var(--color-accent-cyan) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

.bg-gradient {
    background: linear-gradient(to right, var(--color-primary), var(--color-accent));
}

.opacity-90 {
    opacity: 0.9;
}


/* --- 3.4 Spacing --- */
.p-3 {
    padding: 12px;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.pt-2 {
    padding-top: 0.5rem;
}

.pt-6 {
    padding-top: 1.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.pb-6 {
    padding-bottom: 1.5rem;
}

.pr-4 {
    padding-right: 1rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 12px;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mt-16 {
    margin-top: 4rem;
}

.mr-4 {
    margin-right: 1rem;
}

.mr-auto {
    margin-right: auto;
}

.space-x-3>*+* {
    margin-right: 0.75rem;
}

.space-x-4>*+* {
    margin-right: 1rem;
}

.space-x-reverse {
    flex-direction: row-reverse;
}

.space-y-2>*+* {
    margin-top: 0.5rem;
}

.space-y-4>*+* {
    margin-top: 1rem;
}

.space-y-8>*+* {
    margin-top: 2rem;
}


/* --- 3.5 Flexbox & Grid --- */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.inline-flex {
    display: inline-flex;
}

.items-center {
    align-items: center;
}

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

.justify-between {
    justify-content: space-between;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

.gap-16 {
    gap: 4rem;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}


/* --- 3.6 Borders & Radius --- */
.rounded-lg {
    border-radius: 8px;
}

.rounded-xl {
    border-radius: 12px;
}

.rounded-2xl {
    border-radius: 16px;
}

.rounded-full {
    border-radius: 9999px;
}

.border-r-4 {
    border-right: 4px solid var(--color-accent);
}

.border {
    border: 1px solid #dee2e6;
}

.border-top-0 {
    border-top: 0 !important;
}


/* --- 3.7 Shadows & Effects --- */
.shadow-sm {
    box-shadow: var(--shadow-sm);
}

.shadow-md {
    box-shadow: var(--shadow-md);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.shadow-xl {
    box-shadow: var(--shadow-xl);
}

.shadow-2xl {
    box-shadow: var(--shadow-2xl);
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

.bg-white-90 {
    background-color: rgba(255, 255, 255, 0.9);
}

.bg-accent-10 {
    background-color: rgba(0, 144, 208, 0.1);
}

.transition-all {
    transition: var(--transition);
}

.transition-transform {
    transition: transform 0.5s ease;
}

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

.hover-shadow:hover {
    box-shadow: var(--shadow-xl);
}


/* ================================================================
   4. SHARED COMPONENTS
   ================================================================ */

/* --- 4.1 Buttons --- */
.btn-primary {
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
    background-size: 200% 200%;
    color: white;
    border: none;
    padding: 0.85rem 2.2rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 144, 208, 0.25);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

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

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 144, 208, 0.4);
    background-position: right center;
}

.btn-primary.full-width {
    width: 100%;
}

.btn-secondary {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    background-color: transparent;
    font-weight: 600;
    padding: 0.85rem 2.2rem;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(25, 79, 148, 0.3);
}


/* --- 4.2 Cards --- */
.card {
    background-color: var(--bg-white);
    border-radius: 1.25rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid rgba(0, 144, 208, 0.06);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    position: relative;
}

.card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.25rem;
    padding: 1px;
    background: linear-gradient(135deg, transparent 40%, rgba(0, 144, 208, 0.15));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px -12px rgba(0, 90, 160, 0.18);
}

.card:hover::after {
    opacity: 1;
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

/* Full-width buttons inside cards */
.card .btn-primary {
    width: 100%;
}


/* --- 4.3 Badges --- */
.rating-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-radius: 50px;
    padding: 0.35rem 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.price-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
    color: white;
    border-radius: 0.6rem;
    padding: 0.35rem 0.85rem;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 4px 15px rgba(0, 144, 208, 0.3);
}

.star-filled {
    color: var(--color-star);
}


/* --- 4.4 Image Container --- */
.image-container {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.image-container:hover img {
    transform: scale(1.08);
}

.image-container:hover::after {
    opacity: 1;
}


/* --- 4.5 Info & Highlights --- */
.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray-500);
    margin-bottom: 0.5rem;
}

.info-item i {
    width: 1rem;
    height: 1rem;
    font-size: 14px;
}

.highlights-container {
    margin-bottom: 1.5rem;
}

.highlights-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.highlights-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.highlight-tag {
    font-size: 0.75rem;
    background: linear-gradient(135deg, rgba(0, 144, 208, 0.08), rgba(25, 79, 148, 0.08));
    color: var(--color-primary);
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
    border: 1px solid rgba(0, 144, 208, 0.12);
    transition: var(--transition);
}

.highlight-tag:hover {
    background: linear-gradient(135deg, rgba(0, 144, 208, 0.15), rgba(25, 79, 148, 0.15));
    transform: translateY(-1px);
}


/* --- 4.6 Icons --- */
.icon {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-accent);
}

.icon-sm {
    width: 1.25rem;
    height: 1.25rem;
}

/* Search form tab content (OVExplore plugin) */
.custom-tab-content {
    border: none !important;
    background: transparent;
}

.tab-content>.tab-pane {
    display: none;
}

.tab-content>.active {
    display: block;
}


/* ================================================================
   5. ANIMATIONS & KEYFRAMES
   ================================================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes bounce {

    0%,
    20%,
    53%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40%,
    43% {
        transform: translateX(-50%) translateY(-10px);
    }

    70% {
        transform: translateX(-50%) translateY(-5px);
    }

    90% {
        transform: translateX(-50%) translateY(-2px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 144, 208, 0.15); }
    50% { box-shadow: 0 0 35px rgba(0, 144, 208, 0.3); }
}

.animate-fade-in {
    animation: fadeIn 1s ease-in-out;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.6s ease forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}


/* ================================================================
   6. NAVBAR
   ================================================================ */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 50;
    transition: var(--transition-slow);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 40px rgba(0, 90, 160, 0.08);
    border-bottom: 1px solid rgba(0, 144, 208, 0.08);
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

/* -- Logo -- */
.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-img {
    height: 2.5rem;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    transition: var(--transition);
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    transition: color 0.3s ease;
}

.navbar.scrolled .logo-text h1 {
    color: var(--color-primary);
}

.logo-text p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.navbar.scrolled .logo-text p {
    color: var(--text-gray-500);
}

/* -- Desktop Navigation -- */
.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
}

.nav-link:hover {
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 144, 208, 0.35);
    border-radius: 0.5rem;
}

.navbar.scrolled .nav-link {
    color: var(--color-primary);
}

.navbar.scrolled .nav-link:hover {
    color: white;
}

.navv-btn {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    background-size: 200% 200%;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

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

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

.navv-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 144, 208, 0.4);
}

/* -- Mobile Menu Button -- */
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    color: white;
}

.mobile-menu-btn:hover {
    color: var(--color-accent);
}

.mobile-menu-btn:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.navbar.scrolled .mobile-menu-btn {
    color: var(--color-primary);
}

.menu-icon {
    width: 1.5rem;
    height: 1.5rem;
}

/* -- Mobile Navigation -- */
.mobile-nav {
    display: none;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav-content {
    padding: 0.5rem;
    padding-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 0 0 0.5rem 0.5rem;
    box-shadow: var(--shadow-lg);
}

.mobile-nav-link {
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--color-primary);
    font-weight: 500;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    margin-bottom: 0.25rem;
}

.mobile-nav-link:hover {
    color: var(--color-accent);
    background-color: #f9fafb;
}

.mobile-btn-container {
    padding: 0.5rem 0.75rem;
}


/* ================================================================
   7. HERO SECTION
   ================================================================ */
.hero-section {
    position: relative;
    min-height: 115vh;
    display: flex;
    align-items: center;
}

/* -- Background -- */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px);
    transform: scale(1.02);
    /* Prevents blur white edges */
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(0, 144, 208, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(25, 79, 148, 0.3) 0%, transparent 50%),
        linear-gradient(45deg, rgba(7, 16, 65, 0.85), rgba(25, 79, 148, 0.7), rgba(0, 144, 208, 0.55));
}

/* -- Hero Content -- */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

/* -- Hero Stats -- */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-section .stat-item {
    color: rgba(255, 255, 255, 0.9);
}

.stat-text {
    font-size: 0.875rem;
    font-weight: 500;
}

/* -- Hero Title -- */
.main-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-gold) 0%, #ffe082 50%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    background-size: 200% 200%;
    font-weight: 700;
    animation: gradientShift 3s ease infinite;
    filter: drop-shadow(0 2px 4px rgba(252, 211, 77, 0.3));
}

/* -- Hero Subtitle -- */
.subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* -- Hero Buttons -- */
.button-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
}

.arrow-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover .arrow-icon {
    transform: translateX(0.25rem);
}

/* -- Booking Card (Hero form variant) -- */
.booking-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border-radius: 1rem;
    padding: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* -- Scroll Indicator -- */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 2s infinite;
}

.scroll-text {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 1.25rem;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
}

.scroll-dot {
    width: 0.25rem;
    height: 0.75rem;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(0, 144, 208, 0.7));
    border-radius: 0.25rem;
    animation: pulse 2s infinite;
}


/* ================================================================
   8. SHIP SECTION
   ================================================================ */

/* -- Feature Cards -- */
.feature-card {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-bounce);
    gap: 1rem;
    border: 1px solid rgba(0, 144, 208, 0.06);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--color-accent), var(--color-primary));
    transition: height 0.4s ease;
    border-radius: 0 0 4px 4px;
}

.feature-card:hover::before {
    height: 100%;
}

.feature-card:hover {
    box-shadow: 0 12px 30px rgba(0, 90, 160, 0.12);
    transform: translateY(-4px) translateX(4px);
}

.feature-icon {
    background: linear-gradient(135deg, rgba(0, 144, 208, 0.1), rgba(25, 79, 148, 0.06));
    padding: 14px;
    border-radius: 12px;
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
    transform: scale(1.05);
}

.feature-card:hover .feature-icon svg {
    color: white !important;
}

/* -- Ship Image -- */
.ship-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 60px -15px rgba(0, 90, 160, 0.25);
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.5s ease;
}

.ship-image:hover {
    transform: scale(1.03) rotate(0.3deg);
    box-shadow: 0 35px 70px -15px rgba(0, 90, 160, 0.3);
}

/* -- Ship Stats Overlay -- */
.ship-stats {
    bottom: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 90, 160, 0.1);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.stat-icon.star {
    color: var(--color-star);
}

.stat-content {
    display: flex;
    gap: inherit;
    padding: 1rem;
    transition: var(--transition);
    flex-direction: row;
    flex-wrap: wrap;
    align-content: stretch;
    justify-content: space-around;
}

.stat-content:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-weight: 700;
}

.stat-label {
    font-size: 0.875rem;
}

.spec-card {
    text-align: center;
}

.spec-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.spec-label {
    color: var(--text-gray-500);
}

/* Ship section CTA — pill-shaped button */
#ship .btn-primary {
    border-radius: 50px;
    padding: 14px 36px;
    font-size: 1.125rem;
    box-shadow: 0 4px 20px rgba(0, 144, 208, 0.3);
    animation: glowPulse 3s ease-in-out infinite;
}

#ship .btn-primary:hover {
    box-shadow: 0 10px 35px rgba(0, 144, 208, 0.45);
    animation: none;
}


/* ================================================================
   9. TRAVEL / CRUISES SECTION
   ================================================================ */
/* Travel section uses shared components:
   .card, .image-container, .rating-badge, .price-badge,
   .card-content, .card-title, .info-item,
   .highlights-container, .highlights-tags, .highlight-tag,
   .btn-primary
   No additional unique styles needed. */


/* ================================================================
   10. SEARCH SECTION
   ================================================================ */
.search-section {
    background:
        radial-gradient(ellipse at 10% 90%, rgba(0, 201, 255, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 10%, rgba(25, 79, 148, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, var(--color-accent) 100%);
    position: relative;
    overflow: hidden;
}

.search-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 144, 208, 0.08) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.search-container {
    max-width: 1152px;
    margin: 0 auto;
}

/* -- Search Header -- */
.search-header {
    text-align: center;
    margin-bottom: 3rem;
}

.search-title {
    font-size: 2.25rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
}

.search-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 512px;
    margin: 0 auto;
    line-height: 1.6;
}

/* -- Search Form Container -- */
.search-form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* -- Form Grid -- */
.search-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* -- Form Fields -- */
.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.875rem;
    flex-direction: row-reverse;
}

.label-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* -- Form Inputs & Selects -- */
.form-input,
.form-select {
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: white;
    font-size: 1rem;
    transition: var(--transition);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(0, 144, 208, 0.2);
}

.form-input option,
.form-select option {
    color: var(--text-gray-700);
    background: white;
}

/* Date input styling */
.form-input[type="date"] {
    color-scheme: dark;
}

.form-input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* -- Advanced Filters -- */
.advanced-filters {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    margin-top: 2rem;
}

.advanced-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.advanced-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.advanced-field {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.advanced-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.advanced-select {
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    color: white;
    font-size: 1rem;
    transition: var(--transition);
}

.advanced-select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.advanced-select option {
    color: var(--text-gray-700);
    background: white;
}

/* -- Search Button -- */
.search-button-container {
    text-align: center;
    padding-top: 1rem;
}

.search-button {
    background: white;
    color: var(--color-primary);
    font-weight: bold;
    padding: 1rem 3rem;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    flex-direction: row-reverse;
}

.search-button:hover {
    background: #f9fafb;
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.search-icon {
    width: 1.5rem;
    height: 1.5rem;
}

/* -- Search Results (Demo) -- */
.results-section {
    padding: 3rem 1rem;
    background: white;
    display: none;
}

.results-section.show {
    display: block;
}

.results-container {
    max-width: 1152px;
    margin: 0 auto;
    text-align: center;
}

.results-title {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.results-content {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    border: 2px dashed #cbd5e1;
}

.results-data {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    box-shadow: var(--shadow-sm);
}

.results-data pre {
    text-align: right;
    color: var(--text-gray-700);
    font-family: monospace;
    white-space: pre-wrap;
}


/* ================================================================
   11. FAQ SECTION
   ================================================================ */
.faq-item {
    background-color: white;
    border: 1px solid rgba(0, 144, 208, 0.08);
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-accent), var(--color-primary));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0 4px 4px 0;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 90, 160, 0.1);
    border-color: rgba(0, 144, 208, 0.15);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-button {
    width: 100%;
    text-align: right;
    padding: 1.5rem;
    border: none;
    background: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-button:hover {
    background: linear-gradient(90deg, transparent, rgba(0, 144, 208, 0.03));
}

.faq-button:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 144, 208, 0.15);
}

.chevron {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                color 0.3s ease;
}

.chevron-active {
    color: var(--color-accent);
}

.chevron-inactive {
    color: #9ca3af;
}

.faq-answer {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
}

.faq-answer.active {
    max-height: 24rem;
    opacity: 1;
}

/* -- FAQ Contact Buttons -- */
.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.contact-button-primary {
    background: var(--color-accent-light);
    color: #0a1628;
    position: relative;
    overflow: hidden;
}

.contact-button-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.5s ease;
}

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

.contact-button-primary:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 180, 255, 0.35);
}

.contact-button-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}

.contact-button-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-accent-light);
    color: var(--color-accent-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 180, 255, 0.2);
}


/* ================================================================
   12. FOOTER
   ================================================================ */
footer {
    background:
        radial-gradient(ellipse at 20% 100%, rgba(0, 144, 208, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #0a1628 0%, #122240 50%, #1a2f4a 100%);
    color: #ffffff;
    padding: 3rem 0 0 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(0, 144, 208, 0.15);
    position: relative;
}

/* -- Footer Content Grid -- */
.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* -- Footer Section -- */
.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
    border-radius: 2px;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* -- Footer Logos -- */
.footer-logos {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    padding: 1rem;
    transition: var(--transition);
}

.footer-logo:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.footer-logo img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

/* -- Social Links -- */
.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0, 144, 208, 0.15);
    color: var(--color-accent-light);
    text-decoration: none;
    transition: var(--transition-bounce);
    font-size: 1rem;
    border: 1px solid rgba(0, 144, 208, 0.1);
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
    color: #ffffff;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 144, 208, 0.3);
    border-color: transparent;
}

/* -- Footer Title -- */
.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
}

/* -- Footer Contact -- */
.footer-contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.footer-contact-item:last-child {
    margin-bottom: 0;
}

.footer-contact-icon {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 144, 208, 0.15);
    border-radius: 0.5rem;
    color: var(--color-accent-light);
    font-size: 0.9rem;
}

.footer-contact-item p {
    text-align: right;
    direction: ltr;
    margin: 0;
    padding-top: 0.25rem;
}

.footer-contact-item a {
    color: var(--color-accent-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-contact-item a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* -- Footer Links -- */
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transition: var(--transition);
    transform: translateX(-0.5rem);
}

.footer-links a:hover {
    color: var(--color-accent-light);
    padding-right: 0.5rem;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* -- Contact Form -- */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-family: inherit;
    font-size: 0.9rem;
    transition: var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-accent-light);
    background: rgba(0, 144, 208, 0.1);
    box-shadow: 0 0 0 3px rgba(0, 144, 208, 0.1);
}

.contact-form button {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 144, 208, 0.3);
}

.contact-form button:active {
    transform: translateY(0);
}

/* -- Footer Bottom -- */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 1rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom picture {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.footer-bottom img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

.footer-bottom p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-bottom a {
    color: var(--color-accent-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-bottom a:hover {
    color: #ffffff;
    text-decoration: underline;
}


/* ================================================================
   13. RESPONSIVE DESIGN
   ================================================================ */

/* -- Small screens (≥ 640px) -- */
@media (min-width: 640px) {
    .navbar-container {
        padding: 0 1.5rem;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .main-title {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.5rem;
    }

    .button-container {
        flex-direction: row;
    }
}

/* -- Medium screens (≥ 768px) -- */
@media (min-width: 768px) {
    .grid-cols-1 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid-cols-md-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-padding {
        padding: 6rem 1.5rem;
    }

    .text-4xl {
        font-size: 3rem;
    }

    .booking-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .search-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advanced-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* -- Large screens (≥ 1024px) -- */
@media (min-width: 1024px) {

    /* Navbar */
    .mobile-menu-btn {
        display: none;
    }

    .mobile-nav {
        display: none !important;
    }

    .desktop-nav {
        display: flex;
    }

    .navbar-img {
        height: 3rem;
        max-width: 180px;
    }

    .navbar-container {
        padding: 0 2rem;
    }

    .navbar-content {
        height: 5rem;
    }

    /* Hero */
    .hero-content {
        padding: 0 2rem;
    }

    .main-title {
        font-size: 4.5rem;
    }

    /* Typography */
    .text-4xl {
        font-size: 3rem;
    }

    /* Section */
    .section-padding {
        padding: 6rem 2rem;
    }

    /* Search */
    .search-title {
        font-size: 3rem;
    }

    .search-form-container {
        padding: 3rem;
    }

    .search-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Grids */
    .grid-cols-lg-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid-cols-lg-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .grid-cols-lg-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .gap-lg-16 {
        gap: 4rem;
    }

    /* Order */
    .order-lg-1 {
        order: 1;
    }

    .order-lg-2 {
        order: 2;
    }

    /* Ship */
    .ship-image {
        height: 500px;
    }
}

/* -- Footer responsive: tablets -- */
@media (min-width: 768px) and (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* -- Footer responsive: mobile -- */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }
}

@media (max-width: 640px) {
    footer {
        padding: 2rem 0 0 0;
        margin-top: 2rem;
    }

    .footer-content {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-section h3::after {
        width: 30px;
    }

    .footer-logos {
        gap: 1rem;
    }

    .footer-logo {
        flex: 0 0 calc(50% - 0.5rem);
        padding: 0.75rem;
    }

    .footer-logo img {
        max-height: 50px;
    }

    .social-links {
        gap: 0.75rem;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding: 1.5rem 1rem;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }

    .contact-form button {
        width: 100%;
    }

    .contact-button {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
}


/* ================================================================
   14. SCROLLBAR & SELECTION
   ================================================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f8fafc;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--color-accent), var(--color-primary));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, var(--color-primary), var(--color-accent));
}

::selection {
    background: rgba(0, 144, 208, 0.2);
    color: var(--color-primary);
}


/* ================================================================
   15. ACCESSIBILITY & PRINT
   ================================================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media print {

    .navbar,
    .scroll-indicator,
    .search-section {
        display: none;
    }

    footer {
        background: white;
        color: black;
    }

    .footer-section h3,
    .footer-links a,
    .footer-contact-item p {
        color: black;
    }

    .social-links,
    .contact-form {
        display: none;
    }

    body {
        color: black;
    }
}
