/**
 * ============================================================
 * FILE: style.css
 * PROJECT: Rudra Holidays
 * ============================================================
 * Purpose:  Main home page stylesheet. Defines CSS custom
 *           properties (--primary-color, --font-main, etc.),
 *           global resets, typography, and all home page
 *           section styles.
 *
 * Used By:  index.html (home page)
 *
 * Depends On:
 *   theme.css       → dark mode overrides loaded after this
 *   responsive.css  → media queries loaded after this
 *
 * Contains:
 *   - CSS variables (:root)
 *   - Global reset and base elements
 *   - Header & navigation
 *   - Hero section (with responsive background-image)
 *   - Booking form
 *   - Features strip
 *   - Info cards
 *   - Destination grid (horizontal scroll)
 *   - Fleet preview grid
 *   - Packages grid
 *   - Gallery preview
 *   - CTA sections
 *   - Footer
 *   - Booking details form (Step 2)
 *   - Availability status messages
 * ============================================================
 */
/* 
===========================================
  Rudra Holidays - Main Stylesheet
=========================================== 
*/

:root {
    --primary-color: #b91c1c;
    --primary-hover: #991b1b;
    --primary-dark: #7f1d1d;
    --accent-color: #f59e0b;

    --bg-main: #faf7f0;
    --bg-alt: #f5efe3;
    --bg-card: #ffffff;
    --bg-soft: #fffaf1;

    --text-color: #1f2937;
    --text-muted: #6b7280;
    --text-light: #ffffff;

    --border-color: rgba(127, 29, 29, 0.12);
    --border-strong: rgba(127, 29, 29, 0.2);

    --shadow-sm: 0 6px 18px rgba(31, 41, 55, 0.06);
    --shadow-md: 0 14px 34px rgba(31, 41, 55, 0.10);
    --shadow-lg: 0 24px 60px rgba(31, 41, 55, 0.14);

    --glass-bg: rgba(255, 255, 255, 0.70);
    --glass-border: rgba(127, 29, 29, 0.12);

    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background:
        radial-gradient(circle at top left, rgba(185, 28, 28, 0.04), transparent 28%),
        linear-gradient(180deg, #fffdf8 0%, var(--bg-main) 100%);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}



a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button,
input,
select {
    font: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

/* =========================
   Buttons
========================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 14px;
    font-weight: 600;
    font-family: var(--font-main);
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
    gap: 8px;
    border: 1px solid transparent;
    white-space: nowrap;
}

.btn i {
    font-size: 1.15rem;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    box-shadow: 0 10px 24px rgba(185, 28, 28, 0.18);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-hover), var(--primary-dark));
    box-shadow: 0 14px 28px rgba(185, 28, 28, 0.24);
    transform: translateY(-1px);
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.7);
    color: var(--primary-dark);
    border-color: var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background-color: #ffffff;
    border-color: rgba(185, 28, 28, 0.22);
    box-shadow: var(--shadow-sm);
}

.btn-nav {
    padding: 10px 18px;
    border-radius: 12px;
}

/* =========================
   Header
========================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(250, 247, 240, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(127, 29, 29, 0.08);
    box-shadow: 0 8px 22px rgba(31, 41, 55, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.logo img {
    height: 76px;
    width: auto;
}

.nav-list {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-link {
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--text-color);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary-dark);
    font-size: 1.7rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 900;
}

.mobile-nav-backdrop.show {
    opacity: 1;
    pointer-events: auto;
}

/* =========================
   Hero Section
========================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 70px;
    overflow: hidden;
}

.hero-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url("../assets/images/background-laptop.png");
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1199px) {
    .hero-bg {
        background-image: url("../assets/images/background-tablet.png");
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hero-bg {
        background-image: url("../assets/images/background-mobile.png");
    }
}

.hero-bg-image {
    display: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(250, 247, 240, 0.96) 0%, rgba(250, 247, 240, 0.88) 42%, rgba(250, 247, 240, 0.60) 68%, rgba(250, 247, 240, 0.35) 100%),
        radial-gradient(circle at left center, rgba(185, 28, 28, 0.06), transparent 36%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: block;
}

.hero-copy {
    max-width: 720px;
}

.subtitle {
    color: var(--primary-color);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.subtitle::before,
.subtitle::after {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 999px;
}

.title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5vw, 4.9rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
    color: #1f2937;
}

.title span {
    color: var(--primary-color);
}

.description {
    font-size: 1.04rem;
    color: var(--text-muted);
    margin-bottom: 26px;
    max-width: 560px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-points {
    margin-top: 26px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(127, 29, 29, 0.10);
    color: var(--primary-dark);
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}


/* =========================
   Shared Section Styles
========================= */
.section-heading {
    margin-bottom: 28px;
}

.section-kicker {
    color: var(--primary-color);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #1f2937;
}

.booking-section,
.features-section,
.info-section,
.destinations-section,
.fleet-section,
.packages-section,
.gallery-section,
.cta-section {
    position: relative;
    z-index: 2;
    padding: 26px 0 42px;
}

.booking-section {
    margin-top: -26px;
}

/* =========================
   Booking Form
========================= */
.booking-glass-container {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 18px 20px;
    box-shadow: var(--shadow-lg);
}

.booking-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.form-group {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex: 1;
    padding: 6px 10px;
    min-width: 0;
}

.pin-icon,
.calendar-icon,
.bus-icon {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 8px;
    flex-shrink: 0;
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.input-wrapper label {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 8px;
    letter-spacing: 0.8px;
}

.select-box {
    position: relative;
    width: 100%;
}

.form-control {
    width: 100%;
    background: #fff;
    border: 1px solid rgba(127, 29, 29, 0.14);
    border-radius: 14px;
    color: #111827;
    font-family: var(--font-main);
    font-size: 0.96rem;
    outline: none;
    padding: 13px 42px 13px 14px;
    transition: all 0.25s ease;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

.form-control::placeholder {
    color: #9ca3af;
}

.form-control:focus {
    border-color: rgba(185, 28, 28, 0.35);
    box-shadow: 0 0 0 4px rgba(185, 28, 28, 0.07);
}

.native-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.native-select option {
    background: #fff;
    color: #111827;
}

.dropdown-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
    font-size: 1.1rem;
}

.form-divider {
    width: 1px;
    height: 54px;
    background-color: rgba(127, 29, 29, 0.12);
}

.btn-submit {
    padding: 14px 24px;
    border-radius: 14px;
    white-space: nowrap;
    margin-left: 8px;
}

/* =========================
   Features
========================= */
.features-glass-container {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 22px 24px;
    box-shadow: var(--shadow-lg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding-right: 18px;
    border-right: 1px solid rgba(127, 29, 29, 0.12);
    min-width: 0;
}

.feature-item:last-child {
    border-right: none;
    padding-right: 0;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(185, 28, 28, 0.10), rgba(185, 28, 28, 0.04));
    color: var(--primary-color);
    font-size: 1.45rem;
    flex-shrink: 0;
    border: 1px solid rgba(185, 28, 28, 0.10);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    background: linear-gradient(135deg, rgba(185, 28, 28, 0.14), rgba(185, 28, 28, 0.06));
}

.feature-text h4 {
    font-size: 0.92rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: #111827;
}

.feature-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.35;
}

/* =========================
   Info Cards
========================= */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.info-card {
    background: #fff;
    border: 1px solid rgba(127, 29, 29, 0.10);
    border-radius: 24px;
    padding: 28px 24px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.info-card i {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(185, 28, 28, 0.12), rgba(185, 28, 28, 0.05));
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 18px;
}

.info-card h3 {
    font-size: 1.1rem;
    color: #111827;
    margin-bottom: 10px;
    font-weight: 800;
}

.info-card p {
    color: var(--text-muted);
    line-height: 1.65;
    font-size: 0.96rem;
}

/* =========================
   Destinations
========================= */
.destination-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 24px;
    /* Custom scrollbar for webkit */
    -webkit-overflow-scrolling: touch;
}

.destination-grid::-webkit-scrollbar {
    height: 8px;
}
.destination-grid::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
    border-radius: 8px;
}
.destination-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 8px;
}

.destination-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 24px;
    padding: 14px;
    border: 1px solid rgba(127, 29, 29, 0.10);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 768px) {
    .destination-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (min-width: 1024px) {
    .destination-card {
        flex: 0 0 calc(25% - 15px);
    }
}

.destination-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.destination-image {
    height: 220px;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.destination-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.03), rgba(0,0,0,0.14));
}

.destination-card h3 {
    margin-top: 14px;
    margin-bottom: 4px;
    font-size: 1rem;
    font-weight: 800;
    color: #111827;
    text-align: center;
}

.destination-munnar {
    background-image: linear-gradient(rgba(255,255,255,0.08), rgba(255,255,255,0.08)), url('../assets/images/destination-munnar.jpg');
}

.destination-alappuzha {
    background-image: linear-gradient(rgba(255,255,255,0.08), rgba(255,255,255,0.08)), url('../assets/images/destination-alappuzha.jpg');
}

.destination-wayanad {
    background-image: linear-gradient(rgba(255,255,255,0.08), rgba(255,255,255,0.08)), url('../assets/images/destination-wayanad.jpg');
}

.destination-vagamon {
    background-image: linear-gradient(rgba(255,255,255,0.08), rgba(255,255,255,0.08)), url('../assets/images/destination-vagamon.jpg');
}

/* Fallback in case images are missing */
.destination-munnar,
.destination-alappuzha,
.destination-wayanad,
.destination-vagamon {
    background-color: #f8e9d7;
}

/* =========================
   Fleet
========================= */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.fleet-card {
    background: linear-gradient(180deg, #fff 0%, #fffaf5 100%);
    border: 1px solid rgba(127, 29, 29, 0.10);
    border-radius: 24px;
    padding: 30px 24px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fleet-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.fleet-card i {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(185, 28, 28, 0.12), rgba(185, 28, 28, 0.05));
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.fleet-card h3 {
    font-size: 1.08rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
}

.fleet-card p {
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.65;
}

/* =========================
   Packages
========================= */
.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.package-card {
    background: linear-gradient(180deg, #fff 0%, #fffdf8 100%);
    border-radius: 24px;
    padding: 28px 24px;
    border: 1px solid rgba(127, 29, 29, 0.10);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.package-card h3 {
    font-size: 1.06rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
}

.package-card p {
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.65;
}

/* =========================
   Gallery
========================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.gallery-item {
    min-height: 220px;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(127, 29, 29, 0.10);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.12));
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.gallery-bus-1 {
    background-color: #f7eadf;
    background-image: url('../assets/images/gallery-1.jpg');
}

.gallery-bus-2 {
    background-color: #f7eadf;
    background-image: url('../assets/images/gallery-2.jpg');
}

.gallery-bus-3 {
    background-color: #f7eadf;
    background-image: url('../assets/images/gallery-3.jpg');
}

.gallery-bus-4 {
    background-color: #f7eadf;
    background-image: url('../assets/images/gallery-4.jpg');
}

/* =========================
   CTA
========================= */
.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 30px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(185, 28, 28, 0.96), rgba(127, 29, 29, 0.98)),
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    color: #fff;
    box-shadow: 0 24px 60px rgba(127, 29, 29, 0.24);
}

.cta-box .section-title {
    color: #fff;
}

.cta-description {
    color: rgba(255, 255, 255, 0.84);
    max-width: 700px;
    margin-bottom: 0;
}

.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-actions .btn-outline {
    background-color: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.22);
}

.cta-actions .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.34);
}

/* =========================
   Footer
========================= */
.footer {
    margin-top: auto;
    background: linear-gradient(180deg, #7f1d1d 0%, #611313 100%);
    color: rgba(255, 255, 255, 0.92);
}

.footer-content {
    padding: 44px 2rem 28px;
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 0.9fr;
    gap: 28px;
}

.footer-brand p {
    margin-top: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
    max-width: 520px;
}

.footer-logo img {
    height: 72px;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.80);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.82);
}

.footer-contact i {
    color: #fbbf24;
    font-size: 1.05rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.92rem;
}

/* =========================
   Responsive
========================= */

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 22px;
    }

    .feature-item:nth-child(3) {
        border-right: none;
    }

    /* destination-grid is flex, not grid — don't set grid-template-columns */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fleet-grid,
    .package-grid,
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-grid .info-card:last-child {
        grid-column: 1 / -1;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .nav-list {
        display: none;
        position: fixed;
        top: 92px;
        right: 18px;
        left: 18px;
        flex-direction: column;
        gap: 0;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(14px);
        border: 1px solid rgba(127, 29, 29, 0.10);
        border-radius: 22px;
        padding: 12px;
        box-shadow: var(--shadow-lg);
        z-index: 950;
    }

    .nav-list.open {
        display: flex;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 14px 14px;
        border-radius: 14px;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(185, 28, 28, 0.08);
    }

    .nav-link::after {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .btn-nav {
        display: none;
    }

    .header-content {
        gap: 10px;
    }
}

@media (max-width: 900px) {
    .booking-form {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .form-divider {
        width: 100%;
        height: 1px;
    }

    .btn-submit {
        margin-left: 0;
        margin-top: 4px;
    }

    .feature-item:nth-child(2),
    .feature-item:nth-child(4) {
        border-right: none;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .header {
        padding: 12px 0;
    }

    .header.scrolled {
        padding: 10px 0;
    }

    .logo img {
        height: 62px;
    }

    .hero {
        padding-top: 104px;
        padding-bottom: 42px;
        min-height: auto;
    }



    .title {
        font-size: clamp(2.3rem, 8vw, 3.1rem);
    }

    .description {
        font-size: 0.98rem;
    }

    .hero-actions {
        gap: 12px;
    }

    .hero-points {
        gap: 10px;
    }

    .booking-section,
    .features-section,
    .info-section,
    .destinations-section,
    .fleet-section,
    .packages-section,
    .gallery-section,
    .cta-section {
        padding: 18px 0 34px;
    }

    .booking-section {
        margin-top: 0;
    }

    .booking-glass-container,
    .features-glass-container {
        padding: 16px;
        border-radius: 20px;
    }

    .form-group {
        padding: 4px 0;
    }

    .features-grid,
    .info-grid,
    .fleet-grid,
    .package-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* destination-grid is flex, not grid — don't override */

    .feature-item {
        border-right: none;
        padding-right: 0;
        padding-bottom: 14px;
        border-bottom: 1px solid rgba(127, 29, 29, 0.12);
    }

    .feature-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .destination-image,
    .gallery-item {
        min-height: 200px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        padding: 34px 1rem 22px;
    }

    .cta-box {
        padding: 22px;
        border-radius: 24px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn,
    .cta-actions .btn {
        width: 100%;
    }

    .hero-points {
        flex-direction: column;
        align-items: flex-start;
    }


    .booking-glass-container {
        padding: 14px;
    }

    .form-control {
        font-size: 0.92rem;
    }
}

/* =========================
   Dedicated Tablet Hero Layout (651px - 1100px)
========================= */
@media (min-width: 651px) and (max-width: 1100px) {
    .hero {
        padding-top: 100px;
        padding-bottom: 30px;
        min-height: auto;
    }

    .hero-copy {
        max-width: 520px;
    }

    .title {
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .description {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }

    .hero-actions {
        gap: 10px;
    }

    .hero-points {
        margin-top: 16px;
        gap: 8px;
    }

    .hero-points span {
        padding: 7px 10px;
        font-size: 0.82rem;
    }
}


/* Small tablet stacking (651px - 800px) */
@media (min-width: 651px) and (max-width: 800px) {
    .hero {
        padding-top: 96px;
        padding-bottom: 24px;
    }

    .hero-copy {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 600px;
        text-align: center;
    }

    .hero-actions, .hero-points {
        justify-content: center;
    }
}/* ------------------------------------------
   DESTINATION FULLSCREEN LIGHTBOX
   ------------------------------------------ */
.dest-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.dest-lightbox.show {
    opacity: 1;
    visibility: visible;
}

.dest-lightbox img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dest-lightbox.show img {
    transform: scale(1);
}

.dest-lightbox p {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 16px;
    text-align: center;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    transform: translateY(10px);
    opacity: 0;
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

.dest-lightbox.show p {
    opacity: 1;
    transform: translateY(0);
}

.dest-lightbox-close {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    z-index: 10;
}

.dest-lightbox-close:hover {
    background: #fff;
    color: #000;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .dest-lightbox-close {
        top: 20px;
        left: 20px;
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }
    
    .dest-lightbox img {
        max-width: 95vw;
        max-height: 75vh;
    }
    
    .dest-lightbox p {
        font-size: 1.1rem;
    }
}
