/**
 * USA East & West Coast Tour Landing Page
 * Ultra-Modern Premium Design System 2026
 * Unique, Sophisticated UI/UX
 */

/* Import Premium Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700;800&display=swap');

/* ==================================
   DESIGN SYSTEM - CSS VARIABLES
   ================================== */
:root {
    /* Primary Brand Colors */
    --primary-900: #0a0e27;
    --primary-800: #0f172a;
    --primary-700: #1e293b;
    --primary-600: #334155;
    --primary-500: #1e40af;
    --primary-400: #3b82f6;
    --primary-300: #60a5fa;
    --primary-200: #93c5fd;
    --primary-100: #dbeafe;

    /* Accent & Highlight Colors */
    --accent-gold: #f59e0b;
    --accent-gold-light: #fbbf24;
    --accent-purple: #7c3aed;
    --accent-teal: #06b6d4;
    --accent-rose: #e11d48;
    --accent-emerald: #10b981;

    /* Gradient Definitions - Modern & Vibrant */
    --gradient-primary: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    --gradient-hero: linear-gradient(135deg, rgba(15, 23, 42, 0.97) 0%, rgba(30, 64, 175, 0.95) 50%, rgba(59, 130, 246, 0.92) 100%);
    --gradient-sunset: linear-gradient(135deg, #f59e0b 0%, #f97316 50%, #ef4444 100%);
    --gradient-ocean: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #14b8a6 100%);
    --gradient-purple: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c084fc 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);

    /* Neutral Palette */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Semantic Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;

    /* Spacing Scale (8px base) */
    --space-1: 0.25rem;
    /* 4px */
    --space-2: 0.5rem;
    /* 8px */
    --space-3: 0.75rem;
    /* 12px */
    --space-4: 1rem;
    /* 16px */
    --space-5: 1.25rem;
    /* 20px */
    --space-6: 1.5rem;
    /* 24px */
    --space-8: 2rem;
    /* 32px */
    --space-10: 2.5rem;
    /* 40px */
    --space-12: 3rem;
    /* 48px */
    --space-16: 4rem;
    /* 64px */
    --space-20: 5rem;
    /* 80px */
    --space-24: 6rem;
    /* 96px */

    /* Border Radius */
    --radius-sm: 0.5rem;
    /* 8px */
    --radius-md: 0.75rem;
    /* 12px */
    --radius-lg: 1rem;
    /* 16px */
    --radius-xl: 1.5rem;
    /* 24px */
    --radius-2xl: 2rem;
    /* 32px */
    --radius-3xl: 3rem;
    /* 48px */
    --radius-full: 9999px;

    /* Shadows - Professional Depth */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 10px 0 rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px 0 rgba(0, 0, 0, 0.12);
    --shadow-2xl: 0 30px 60px 0 rgba(0, 0, 0, 0.15);
    --shadow-glow-blue: 0 0 40px rgba(59, 130, 246, 0.4);
    --shadow-glow-gold: 0 0 40px rgba(245, 158, 11, 0.4);

    /* Typography */
    --font-display: 'Space Grotesk', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ==================================
   GLOBAL RESET & BASE STYLES
   ================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-800);
    background: var(--gray-50);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==================================
   TYPOGRAPHY SYSTEM
   ================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--gray-900);
}

h1 {
    font-size: clamp(2.5rem, 5vw + 1rem, 5rem);
}

h2 {
    font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
}

h4 {
    font-size: clamp(1.25rem, 2vw + 0.5rem, 1.875rem);
}

p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

/* ==================================
   CONTAINER & LAYOUT
   ================================== */
.container-custom {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: var(--space-6);
    padding-right: var(--space-6);
}

.section {
    padding: var(--space-20) 0;
    position: relative;
}

.section-dark {
    background: var(--gradient-dark);
    color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--white);
}

.section-dark p {
    color: var(--gray-300);
}

/* ==================================
   MODERN BUTTON SYSTEM
   ================================== */
.btn-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-xl);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform var(--transition-base);
}

.btn-custom:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), var(--shadow-glow-blue);
    color: var(--white);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-500);
    border: 2px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--white);
    border-color: var(--primary-500);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-gold {
    background: var(--gradient-sunset);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-gold:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-glow-gold);
    color: var(--white);
}

/* ==================================
   HERO SECTION WITH CAROUSEL SLIDER
   ================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background Carousel Container */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Individual Slides */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/* Dark Overlay for Text Contrast */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.92) 0%, rgba(30, 64, 175, 0.85) 50%, rgba(59, 130, 246, 0.78) 100%);
    z-index: 1;
}

/* Animated glow effect */
.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.2), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(245, 158, 11, 0.2), transparent 50%);
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.8;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    padding: var(--space-12) var(--space-6);
    max-width: 1200px;
    margin: 0 auto;
}

/* Explicitly force white text for all hero elements */
.hero-content h1,
.hero-content h2,
.hero-content h3,
.hero-content p,
.hero-title,
.hero-subtitle,
.hero-description,
.hero-stat-label {
    color: #ffffff !important;
}

/* Hero Badge with Glass Morphism */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-8);
    animation: fadeInDown 0.8s ease-out 0.2s both;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.3);
    color: #ffffff !important;
}

.hero-title {
    font-size: clamp(2.75rem, 7vw, 6rem);
    font-weight: 800;
    margin-bottom: var(--space-6);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6), 0 2px 10px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s ease-out 0.4s both;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #ffffff !important;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    font-weight: 500;
    margin-bottom: var(--space-4);
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    color: #ffffff !important;
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 400;
    margin-bottom: var(--space-2);
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.7s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    color: #ffffff !important;
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-12);
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Hero Stats - Bento Box Style */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: var(--space-6);
    max-width: 800px;
    margin: var(--space-16) auto 0;
    animation: fadeIn 1s ease-out 1s both;
}

.hero-stat {
    text-align: center;
    padding: var(--space-6);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-stat:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: var(--space-2);
    line-height: 1;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.hero-stat-label {
    display: block;
    font-size: 0.875rem;
    opacity: 0.9;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Carousel Indicators */
.hero-indicators {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-3);
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--white);
    width: 40px;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

/* ==================================
   SECTION HEADERS - MODERN DESIGN
   ================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(124, 58, 237, 0.1));
    color: var(--primary-500);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: var(--space-6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid rgba(30, 64, 175, 0.2);
}

.section-title {
    margin-bottom: var(--space-6);
    position: relative;
    padding-bottom: var(--space-6);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.section-header p {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.section-dark .section-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

.section-dark .section-header p {
    color: var(--gray-300);
}

/* ==================================
   MODERN CARD SYSTEM
   ================================== */
.card-custom {
    background: var(--white);
    color: var(--gray-800);
    /* Force dark text color */
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
    height: 100%;
    position: relative;
}

.card-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.card-custom:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.card-custom:hover::before {
    opacity: 1;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    font-size: 2.25rem;
    color: var(--white);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.card-custom:hover .card-icon {
    transform: rotate(-5deg) scale(1.1);
    box-shadow: var(--shadow-glow-blue);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-4);
    color: var(--gray-900);
    font-weight: 700;
}

.card-text {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.7;
}

/* ==================================
   GRID LAYOUTS - BENTO STYLE
   ================================== */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

/* ==================================
   TABLE - MODERN DESIGN
   ================================== */
.dates-table-container {
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: var(--space-12);
    border: 1px solid var(--gray-200);
}

.dates-table {
    width: 100%;
    border-collapse: collapse;
}

.dates-table thead {
    background: var(--gradient-primary);
    color: var(--white);
}

.dates-table th {
    padding: 1.5rem;
    text-align: left;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dates-table tbody tr {
    border-bottom: 1px solid var(--gray-200);
    transition: all var(--transition-fast);
}

.dates-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.03), transparent);
}

.dates-table td {
    padding: 1.5rem;
    color: var(--gray-700);
    font-size: 1rem;
}

.availability-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-available {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
}

.badge-almost-full {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
}

.badge-sold-out {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #991b1b;
}

/* ==================================
   ACCORDION - ELEGANT DESIGN
   ================================== */
.accordion-custom {
    margin-top: var(--space-12);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.accordion-item-custom {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
}

.accordion-item-custom:hover {
    box-shadow: var(--shadow-lg);
}

.accordion-header-custom {
    padding: var(--space-6);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--gray-50);
    border-left: 4px solid var(--primary-500);
    transition: all var(--transition-base);
    color: var(--gray-900);
    /* Default text color */
}

/* Force headings inside accordion header to be dark by default */
.accordion-header-custom h4 {
    color: var(--gray-900) !important;
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
}

.accordion-header-custom:hover {
    background: var(--gray-100);
}

.accordion-header-custom.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-left-color: var(--accent-gold);
}

/* Force headings inside active accordion header to be white */
.accordion-header-custom.active h4 {
    color: var(--white) !important;
}

.accordion-day {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-500);
    margin-bottom: var(--space-2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.accordion-header-custom.active .accordion-day {
    color: var(--accent-gold);
}

.accordion-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.accordion-icon {
    font-size: 1.5rem;
    transition: transform var(--transition-base);
}

.accordion-header-custom.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-body-custom {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-body-custom.active {
    max-height: 1200px;
}

.accordion-content {
    padding: var(--space-8);
    border-top: 1px solid var(--gray-200);
    color: var(--gray-600) !important;
    /* Force dark text */
    text-align: left;
}

.accordion-content p {
    color: var(--gray-600) !important;
}



.itinerary-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.itinerary-detail-item {
    display: flex;
    align-items: start;
    gap: var(--space-4);
}

.itinerary-detail-icon {
    color: var(--primary-500);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.itinerary-detail-content h4 {
    font-size: 1rem;
    margin-bottom: var(--space-2);
    color: var(--gray-900);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
}

.itinerary-detail-content p {
    font-size: 1rem;
    margin: 0;
    color: var(--gray-600);
}

/* ==================================
   ADDON CARDS - PREMIUM DESIGN
   ================================== */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.addon-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
}

.addon-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
    border-color: transparent;
}

.addon-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.addon-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-sunset);
    color: var(--white);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 1.125rem;
    box-shadow: var(--shadow-md);
}

.addon-content {
    padding: var(--space-8);
}

.addon-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-4);
    font-weight: 700;
}

.addon-description {
    color: var(--gray-600);
    margin-bottom: var(--space-4);
    line-height: 1.7;
}

/* ==================================
   INCLUSIONS GRID
   ================================== */
.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.inclusion-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.inclusion-card h3 {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
    font-size: 1.75rem;
}

.inclusion-icon {
    font-size: 2.5rem;
}

.icon-included {
    color: var(--accent-emerald);
}

.icon-excluded {
    color: var(--error);
}

.inclusion-list {
    list-style: none;
    padding: 0;
}

.inclusion-list li {
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: start;
    gap: var(--space-3);
}

.inclusion-list li:last-child {
    border-bottom: none;
}

.inclusion-list-icon {
    margin-top: 0.25rem;
    font-size: 1.25rem;
}

/* ==================================
   LEAD FORM - MODERN & ACCESSIBLE
   ================================== */
.lead-form-container {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-12);
    box-shadow: var(--shadow-2xl);
    max-width: 900px;
    margin: var(--space-12) auto;
    border: 1px solid var(--gray-200);
}

.form-group {
    margin-bottom: var(--space-6);
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-3);
    color: var(--gray-900);
    font-size: 0.9375rem;
}

.form-label.required::after {
    content: ' *';
    color: var(--error);
}

.form-control-custom {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-base);
    background: var(--white);
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
}

.form-checkbox-group {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
}

.form-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-500);
}

.form-submit {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.125rem;
    margin-top: var(--space-6);
}

/* ==================================
   INCLUSIONS & EXCLUSIONS
   ================================== */
.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.inclusion-card {
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
}

.inclusion-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.inclusion-card h3 {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: 1.5rem;
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-4);
    border-bottom: 2px solid var(--gray-100);
    color: var(--gray-900) !important;
    /* Force dark title */
}

.inclusion-icon {
    font-size: 1.75rem;
}

.icon-included {
    color: var(--success);
}

.icon-excluded {
    color: var(--error);
}

.inclusion-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inclusion-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--gray-800) !important;
    /* Force dark text */
}

.inclusion-list li:last-child {
    margin-bottom: 0;
}

.inclusion-list-icon {
    font-size: 1.125rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ==================================
   DATES TABLE
   ================================== */
.dates-table-container {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    margin-top: var(--space-8);
}

.dates-table {
    width: 100%;
    border-collapse: collapse;
}

.dates-table th,
.dates-table td {
    padding: var(--space-4) var(--space-6);
    text-align: left;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-800);
}

.dates-table th {
    background: var(--gray-50);
    font-weight: 700;
    color: var(--primary-800);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.dates-table tr:last-child td {
    border-bottom: none;
}

.dates-table tr:hover {
    background: var(--gray-50);
}

.availability-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-available {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-almost-full {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-gold);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.badge-sold-out {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ==================================
   THINGS TO CARRY GRID
   ================================== */
.carry-items-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-12);
}

.carry-item {
    text-align: center;
    padding: var(--space-8);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
}

.carry-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-300);
}

.carry-item-icon {
    font-size: 3rem;
    margin-bottom: var(--space-4);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.carry-item-name {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 1rem;
}

/* ==================================
   FOOTER
================================== */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: var(--space-20) 0 var(--space-8);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: var(--space-6);
    font-size: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: var(--space-3);
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: var(--space-8);
    text-align: center;
    color: var(--gray-500);
    font-size: 0.9375rem;
}

.footer-bottom a {
    color: var(--accent-gold);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ==================================
   WHATSAPP FLOAT BUTTON
   ================================== */
.whatsapp-float {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    transition: all var(--transition-base);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(37, 211, 102, 0.6);
}

/* ==================================
   SCROLL TO TOP BUTTON
   ================================== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

/* Fix icon alignment explicitly */
.scroll-top i {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 0 !important;
    line-height: normal !important;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl), var(--shadow-glow-blue);
}

/* ==================================
   MODAL SYSTEM
   ================================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-out;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-12);
    max-width: 540px;
    width: 90%;
    text-align: center;
    animation: scaleIn 0.3s ease-out;
    box-shadow: var(--shadow-2xl);
}

.modal-icon {
    font-size: 5rem;
    margin-bottom: var(--space-6);
}

.modal-success {
    color: var(--success);
}

.modal-error {
    color: var(--error);
}

.modal-content h2 {
    margin-bottom: var(--space-4);
    font-size: 1.875rem;
}

.modal-content p {
    color: var(--gray-600);
    font-size: 1.125rem;
    margin-bottom: var(--space-8);
}

/* ==================================
   ANIMATIONS
   ================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-scale {
    animation: scaleIn 0.6s ease-out both;
}

/* ==================================
   LOADING SPINNER
   ================================== */
.spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid var(--white);
    border-radius: var(--radius-full);
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ==================================
   DEPARTURE DATES TABLE
   ================================== */
.dates-table-container {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    margin-top: var(--space-8);
    overflow-x: auto;
}

.dates-table {
    width: 100%;
    border-collapse: collapse;
}

.dates-table th,
.dates-table td {
    padding: var(--space-4) var(--space-6);
    text-align: left;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-800);
}

.dates-table th {
    background: var(--gray-50);
    font-weight: 600;
    color: var(--gray-900);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.dates-table tr:last-child td {
    border-bottom: none;
}

.dates-table tr:hover {
    background: var(--gray-50);
}

/* Availability Badges */
.availability-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: capitalize;
}

.badge-available {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    /* Green-600 */
}

.badge-almost-full {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
    /* Amber-600 */
}

.badge-sold-out {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    /* Red-600 */
}

/* ==================================
   HERO PRICE (NEW)
   ================================== */
.hero-price-container {
    margin: var(--space-6) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-price {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #d4af37;
    filter: drop-shadow(0 2px 0px rgba(0, 0, 0, 0.5));
    position: relative;
    display: inline-block;
    padding: 0 var(--space-2);
}

.hero-price::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.hero-price-note {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 12px 28px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-price-note:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
}

/* ==================================
   MAJOR CITIES GRID
   ================================== */
.city-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    cursor: pointer;
}

.city-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.city-card:hover img {
    transform: scale(1.1);
}

.city-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5) 50%, transparent);
    padding: var(--space-6);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 50%;
}

.city-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--space-2);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transform: translateY(10px);
    transition: transform 0.3s ease;
    color: #ffffff !important;
}

.city-card:hover .city-name {
    transform: translateY(0);
}

.city-desc {
    font-size: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    color: #f0f0f0 !important;
}

.city-card:hover .city-desc {
    opacity: 1;
    transform: translateY(0);
}

/* ==================================
   RESPONSIVE DESIGN
   ================================== */
@media (max-width: 768px) {
    :root {
        --space-20: 3rem;
        --space-16: 2.5rem;
        --space-12: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-price {
        font-size: 2.25rem;
    }

    .hero-price-note {
        font-size: 0.9rem;
    }

    .btn-custom {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlights-grid,
    .addons-grid {
        grid-template-columns: 1fr;
    }

    .carry-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .inclusions-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section {
        padding: var(--space-16) 0;
    }

    .dates-table-container {
        overflow-x: auto;
    }

    .whatsapp-float {
        bottom: 5rem;
        right: 1.5rem;
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
    }

    .scroll-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .container-custom {
        padding-left: var(--space-4);
        padding-right: var(--space-4);
    }

    .carry-items-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: var(--space-8) var(--space-4);
    }

    .modal-content {
        padding: var(--space-8);
        width: 95%;
    }
}

/* ==================================
   FORM ERROR STATES
   ================================== */
.form-control-custom.error {
    border-color: var(--error);
    animation: shake 0.3s ease;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-10px);
    }

    75% {
        transform: translateX(10px);
    }
}

/* ==================================
   UTILITY CLASSES
   ================================== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.gap-4 {
    gap: var(--space-4);
}

.mt-4 {
    margin-top: var(--space-4);
}

.mb-4 {
    margin-bottom: var(--space-4);
}

.mt-8 {
    margin-top: var(--space-8);
}

.mb-8 {
    margin-bottom: var(--space-8);
}

.hidden {
    display: none;
}

.visible {
    display: block;
}