/* ==========================================================================
   CSS Variables & Theme Setup
   ========================================================================== */
:root {
    /* Color Palette derived from Logo */
    --clr-primary: var(--sky-deep);
    --clr-primary-light: var(--sky-blue);
    --clr-secondary: var(--accent);
    --clr-secondary-hover: var(--accent-light);
    --clr-text: var(--white); /* Reverted to light colors for dark background basis if needed */
    --clr-text-light: var(--muted);
    --clr-bg-main: var(--sky-deep); /* Main deep background */
    --clr-white: var(--white);
    
    /* Base Colors mapping */
    --sky-deep: #020d1f;
    --sky-mid: #0a2240;
    --sky-blue: #0f4c81;
    --horizon: #1a7ac0;
    --accent: #f0a500;
    --accent-light: #ffd166;
    --white: #f5f8ff;
    --muted: #7a9bbf;
    
    /* Typography */
    --font-main: 'Poppins', sans-serif;
    
    /* Spacing & Layout */
    --container-max-width: 1200px;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
    
    /* Effects */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition-speed: 0.3s;
}

/* ==========================================================================
   Base Styles / Reset
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--clr-text);
    background-color: var(--clr-bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
h1, h2, h3, h4 {
    font-weight: 700;
    color: var(--clr-white);
    line-height: 1.2;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-xl);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--clr-secondary);
    border-radius: var(--border-radius);
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--clr-secondary);
    color: var(--clr-white);
}

.btn-primary:hover {
    background-color: var(--clr-secondary-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--clr-white);
    color: var(--clr-white);
}

.btn-secondary:hover {
    background-color: var(--clr-white);
    color: var(--clr-primary);
    transform: translateY(-3px);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.top-bar {
    background-color: #010816; /* Deepest blue */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Subtle white border instead of loud yellow */
    padding: 6px 0;
    font-size: 0.8rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    font-weight: 400; /* Normal weight for less emphasis */
}

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

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 0;
}

.top-bar-item {
    color: rgba(255, 255, 255, 0.7); /* Muted white */
    padding: 0 15px;
    display: flex;
    align-items: center;
    transition: all var(--transition-speed);
    position: relative;
    text-decoration: none;
}

.top-bar-item:not(:last-child)::after {
    content: "";
    height: 12px;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    position: absolute;
    right: 0;
}

.top-bar-item:first-child {
    padding-left: 0;
}

.top-bar-item i {
    color: rgba(255, 255, 255, 0.5); /* Very subtle icon color */
    margin-right: 8px;
    font-size: 0.85rem;
}

.top-bar-item:hover {
    color: var(--accent);
}

.top-bar-item:hover i {
    color: var(--accent);
}

.header-socials {
    display: flex;
    gap: 8px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.85rem;
    transition: all var(--transition-speed);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--accent);
    color: #010816;
    transform: scale(1.1);
    border-color: var(--accent);
}

.header {
    position: fixed;
    top: 40px; /* Height of top-bar */
    left: 0;
    width: 100%;
    background: rgba(2, 13, 31, 0.9); /* --sky-deep with opacity */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 0.8rem 0;
    transition: all var(--transition-speed);
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-icon:hover {
    background: var(--accent);
    color: var(--sky-deep);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(240, 165, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 45px;
    width: auto;
    border-radius: 8px; /* Depending on logo shape */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--white), var(--accent-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
}

.nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--clr-text);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--clr-secondary);
    transition: width var(--transition-speed) ease;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Nav CTA Button */
.nav-cta-btn {
    display: inline-block;
    padding: 10px 22px;
    background: var(--accent, #f0a500);
    color: var(--sky-deep, #020d1f) !important;
    font-weight: 700;
    font-size: 0.88rem;
    border-radius: 6px;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
    margin-left: 16px;
    flex-shrink: 0;
}
.nav-cta-btn:hover {
    background: var(--accent-light, #ffd166);
    color: var(--sky-deep, #020d1f) !important;
    transform: translateY(-1px);
}

/* Mobile Menu Button - Hidden by default */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--clr-white);
    border-radius: 3px;
    transition: all 0.3s;
}

.mobile-menu-btn span:nth-child(1) { top: 0; }
.mobile-menu-btn span:nth-child(2) { top: 10px; }
.mobile-menu-btn span:nth-child(3) { top: 20px; }

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 110vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px; /* Accounts for fixed header */
    background: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    background-color: var(--clr-primary); /* fallback */
    color: var(--clr-white);
    overflow: hidden;
}

/* Animated subtle background blobs */
.hero::before, .hero::after {
    content: '';
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.hero::before {
    top: -20vw;
    left: -20vw;
    animation: drift 20s infinite alternate linear;
}

.hero::after {
    bottom: -20vw;
    right: -20vw;
    animation: drift 25s infinite alternate-reverse linear;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(5vw, 5vw) scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 13, 31, 0.6); /* Darker overlay for text readability */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1100px;
    animation: fadeInUp 1s ease-out forwards;
    padding-top: 60px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--clr-white);
    margin-bottom: var(--spacing-md);
    text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.hero-title .highlight {
    color: var(--clr-secondary);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

.booking-widget {
    background: transparent;
    padding: 0;
    margin-top: var(--spacing-md);
    text-align: left;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out forwards;
}

.category-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.category-tab {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.category-tab:hover {
    background: rgba(255, 255, 255, 0.25);
}

.category-tab.active {
    background: var(--accent);
    color: var(--sky-deep);
    box-shadow: 0 4px 15px rgba(240, 165, 0, 0.4);
}

.trip-type-selector {
    display: inline-flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    align-items: center;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    transition: color var(--transition-speed);
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 18px;
    height: 18px;
    border: 2px solid var(--white);
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
    transition: all var(--transition-speed);
    display: inline-block;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: var(--accent);
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: var(--accent);
    border-radius: 50%;
}

.radio-label:has(input[type="radio"]:checked) {
    color: var(--accent);
}

.search-fields {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    background: var(--white);
    border-radius: 60px;
    padding: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.search-group {
    flex: 1;
    position: relative;
    padding: 12px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: background-color var(--transition-speed);
    border-radius: 40px;
    cursor: pointer;
}

.search-group:hover, .search-group:focus-within {
    background-color: rgba(0,0,0,0.03);
}

/* Vertical Dividers */
.search-group:not(:last-child):not(.submit-group)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: rgba(0,0,0,0.1);
}

.search-group label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--sky-blue);
    margin-bottom: 2px;
    cursor: pointer;
}

.input-wrapper {
    display: flex;
    align-items: center;
}

.input-wrapper input {
    width: 100%;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--sky-deep);
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    outline: none;
}

.input-wrapper input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}
.input-wrapper input[type="number"]::-webkit-outer-spin-button,
.input-wrapper input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.input-wrapper input::placeholder {
    color: var(--muted);
    font-weight: 400;
}

/* Remove default date input icons/styling */
.input-wrapper input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.input-wrapper input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.input-wrapper .icon {
    display: none; /* Hide icons in pro layout, rely on clean typography */
}

.submit-group {
    flex: 0 0 auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
}

.search-btn {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(240, 165, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

.hidden {
    display: none !important;
}

/* ==========================================================================
   Packages Section
   ========================================================================== */
.packages-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--white);
    color: var(--sky-deep);
}

.packages-section .section-title {
    color: var(--sky-deep);
}

.package-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.pkg-tab {
    background: transparent;
    border: 2px solid var(--muted);
    color: var(--sky-deep);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.pkg-tab:hover {
    border-color: var(--sky-blue);
    color: var(--sky-blue);
}

.pkg-tab.active {
    background: var(--sky-deep);
    border-color: var(--sky-deep);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.package-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.package-content.active {
    display: block;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
}

.package-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 160px;
    background: var(--sky-mid); /* Fallback color */
}

.package-img {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

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

.marquee-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(240, 165, 0, 0.95); /* Accent color */
    color: var(--sky-deep);
    padding: 4px 0;
    font-size: 0.75rem;
    font-weight: 700;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
    z-index: 2;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 15s linear infinite;
}

.marquee-content span {
    padding-right: 50px;
}

@keyframes marquee {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(2, 13, 31, 0.8);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 2;
}

.card-badge.premium {
    background: rgba(26, 122, 192, 0.9);
}

.card-badge.vip {
    background: rgba(240, 165, 0, 0.9);
    color: var(--sky-deep);
}

.package-details {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--sky-deep);
}

.package-details .duration {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--horizon);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.package-details .desc {
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    flex-grow: 1;
}

.package-features {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 1rem;
}

.package-features span {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--sky-mid);
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 600;
}

.package-footer {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 1rem;
    margin-top: auto;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-wrap {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.7rem;
    color: var(--muted);
    text-transform: uppercase;
    font-weight: 600;
}

.package-footer .price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--sky-deep);
}

.card-actions {
    display: flex;
    gap: 0.5rem;
}

.card-actions .btn {
    flex: 1;
    padding: 0.5rem;
    font-size: 0.85rem;
    text-align: center;
    border-radius: 8px;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--sky-deep);
    color: var(--sky-deep);
}

.btn-outline:hover {
    background: var(--sky-deep);
    color: var(--white);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Services / Features Section
   ========================================================================== */
.features {
    padding: var(--spacing-xl) 0;
    background-color: var(--sky-mid);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: calc(var(--spacing-lg) * 2); /* Pull down below title */
}

.feature-card {
    background: var(--sky-deep);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: all var(--transition-speed) ease;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, transparent, rgba(237, 137, 54, 0.05));
    z-index: -1;
    transition: height var(--transition-speed);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

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

.feature-card h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer {
    background-color: var(--sky-deep, #020d1f);
    color: var(--clr-white);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin-bottom: 0;
}

/* Brand col */
.footer-brand .footer-logo {
    height: 48px;
    border-radius: 8px;
    margin-bottom: 14px;
    display: block;
}
.footer-brand h2 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 10px;
}
.footer-brand p {
    color: rgba(255,255,255,.6);
    font-size: .88rem;
    line-height: 1.65;
    margin-bottom: 18px;
}

/* Column headings */
.footer-col-heading {
    color: var(--accent, #f0a500);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Quick links & services */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.footer-links a {
    color: rgba(255,255,255,.65);
    font-size: .88rem;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color .2s, gap .2s;
}
.footer-links a i {
    font-size: .6rem;
    color: var(--accent, #f0a500);
}
.footer-links a:hover {
    color: #fff;
    gap: 10px;
}

/* Contact list */
.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .88rem;
    color: rgba(255,255,255,.65);
}
.footer-contact-list li i {
    color: var(--accent, #f0a500);
    margin-top: 2px;
    flex-shrink: 0;
    width: 14px;
}
.footer-contact-list a {
    color: rgba(255,255,255,.65);
    transition: color .2s;
}
.footer-contact-list a:hover { color: #fff; }

.footer-bottom {
    text-align: center;
    color: rgba(255,255,255,.35);
    font-size: .85rem;
    padding: 20px 0;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media screen and (max-width: 900px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 85vw);
        height: 100vh;
        background: var(--sky-deep);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 1000;
        padding: 5rem 0;
        overflow-y: auto;
    }

    .nav.nav-open { right: 0; }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        font-size: 1.1rem;
        display: block;
        padding: 0.85rem 1rem;
    }

    .nav-cta-btn {
        margin: 14px auto 0;
        display: block;
        text-align: center;
        width: fit-content;
    }

    .mobile-menu-btn { display: block; }

    .search-fields {
        flex-direction: column;
        border-radius: 20px;
        padding: 15px;
    }

    .search-group {
        padding: 15px;
        border-radius: 10px;
    }

    .search-group:not(:last-child):not(.submit-group)::after { display: none; }

    .search-group:not(:last-child):not(.submit-group) {
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .submit-group { margin-top: 15px; margin-left: 0; }

    .search-btn { padding: 1rem; border-radius: 10px; }
}

/* ── 768 px — tablet / large phone ─────────────────────────── */
@media screen and (max-width: 768px) {
    /* Hide top bar, bring header to very top */
    .top-bar { display: none; }
    .header  { top: 0; }

    /* Hero section */
    .hero { min-height: 100svh; min-height: 100vh; padding: 80px 0 40px; }

    /* Package grid — prevent overflow on narrow phones */
    .package-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }

    /* Footer — single column on phones */
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer { padding: 50px 0 0; }
}

@media screen and (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ── 480 px — small phones ──────────────────────────────────── */
@media screen and (max-width: 480px) {
    .hero { padding: 70px 0 30px; }
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 0.9rem; }
    .package-grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   Welcome Section
   ========================================================================= */
.welcome-section {
    background: #fff;
    padding: 60px 0;
    border-bottom: 1px solid #eef2f7;
}

.welcome-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.welcome-badge {
    display: inline-block;
    border: 2px dashed #1a3a6b;
    color: #1a3a6b;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 4px;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}

.welcome-content {
    color: #2d3748;
    font-size: 0.92rem;
    line-height: 1.85;
}

.welcome-content p {
    margin-bottom: 10px;
}

.welcome-content strong {
    color: #020d1f;
}

@media (max-width: 768px) {
    .welcome-section {
        padding: 40px 0;
    }
}

/* =========================================================================
   Support Bar
   ========================================================================= */
.support-bar {
    background: #dce8f5;
    padding: 22px 0;
    border-top: 4px solid #1a3a6b;
    border-bottom: 1px solid #c5d8ee;
}

.support-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.support-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.support-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    flex-shrink: 0;
}

.support-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #020d1f;
}

.support-text span {
    font-size: 0.82rem;
    color: #4a5568;
}

.support-contacts {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
}

.support-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1a3a6b;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.support-link:hover {
    color: #f0a500;
    text-decoration: underline;
}

.support-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.support-icon svg {
    width: 26px;
    height: 26px;
}

@media (max-width: 768px) {
    .support-bar-inner {
        justify-content: center;
        text-align: center;
    }

    .support-left {
        justify-content: center;
        width: 100%;
    }

    .support-contacts {
        justify-content: center;
        gap: 16px;
        width: 100%;
    }
}

/* ==========================================================================
   Newsletter CTA Section
   ========================================================================== */
.newsletter-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--sky-deep);
}

.newsletter-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-md);
    background-color: var(--sky-mid);
    border: 1px solid rgba(26, 122, 192, 0.25);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-lg);
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-card h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--white);
}

.newsletter-card > p {
    color: var(--muted);
    font-size: 0.95rem;
    max-width: 480px;
}

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

.newsletter-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.newsletter-icon {
    position: absolute;
    left: 1rem;
    width: 18px;
    height: 18px;
    color: var(--muted);
    pointer-events: none;
}

.newsletter-input-wrap input[type="email"] {
    padding: 0.8rem 1.2rem 0.8rem 2.8rem;
    border-radius: 30px;
    border: 1px solid rgba(122, 155, 191, 0.3);
    background-color: rgba(2, 13, 31, 0.6);
    color: var(--white);
    font-family: var(--font-main);
    font-size: 0.95rem;
    width: 280px;
    outline: none;
    transition: border-color var(--transition-speed);
}

.newsletter-input-wrap input[type="email"]::placeholder {
    color: var(--muted);
}

.newsletter-input-wrap input[type="email"]:focus {
    border-color: var(--horizon);
}

@media (max-width: 600px) {
    .newsletter-card {
        padding: 2rem 1.25rem;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-input-wrap,
    .newsletter-input-wrap input[type="email"] {
        width: 100%;
    }
}
