/* ============================================
   VIA Rail Tickets — Complete Stylesheet
   Pure CSS — No Frameworks
   ============================================ */

/* CSS Variables (Design Tokens) */
:root {
    --primary: #d4502a;
    --primary-dark: #b83f1e;
    --primary-light: #fdf1ee;
    --dark: #14110f;
    --dark-80: rgba(20, 17, 15, 0.8);
    --dark-60: rgba(20, 17, 15, 0.6);
    --dark-40: rgba(20, 17, 15, 0.4);
    --light: #f7f5f3;
    --accent-gold: #c8963e;
    --accent-teal: #2d6b6b;
    --border: #e5e0dc;
    --white: #ffffff;
    --overlay: rgba(20, 17, 15, 0.55);
    --card-shadow: 0 4px 20px rgba(20, 17, 15, 0.06);
    --card-hover-shadow: 0 8px 32px rgba(20, 17, 15, 0.1);
    --btn-shadow: 0 4px 16px rgba(212, 80, 42, 0.3);
    --section-padding: clamp(4rem, 8vw, 7rem);
    --content-max-width: 1280px;
    --grid-gap: 2rem;
    --card-padding: 2rem;
    --card-radius: 12px;
    --btn-radius: 50px;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --transition: cubic-bezier(0.25, 0.1, 0.25, 1.0);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.65;
    color: var(--dark-80);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Utility Classes */
.container {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.container.narrow {
    max-width: 800px;
}

.section-padding {
    padding: var(--section-padding) 0;
}

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

.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-overline {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
}

.section-overline.gold {
    color: var(--accent-gold);
}

.section-heading {
    font-family: var(--font-body);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin-bottom: 3rem;
}

.section-heading.light {
    color: var(--white);
}

.section-heading.centered {
    max-width: 600px;
}

.text-gold {
    color: var(--accent-gold);
}

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

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: var(--btn-radius);
    box-shadow: var(--btn-shadow);
    transition: all 0.25s var(--transition);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
    box-shadow: 0 6px 24px rgba(212, 80, 42, 0.4);
}

.cta-button.large {
    padding: 1.1rem 3rem;
    font-size: 1.15rem;
}

.cta-button i {
    font-size: 0.95em;
}

/* Outline Button */
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--btn-radius);
    transition: all 0.25s var(--transition);
    background: transparent;
    cursor: pointer;
}

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

.centered-btn {
    text-align: center;
    margin-top: 2.5rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    z-index: 100;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: 0 1px 0 var(--border), 0 2px 10px rgba(20, 17, 15, 0.05);
}

.nav-container {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    transition: filter 0.3s ease;
}

.navbar.scrolled .nav-logo-img {
    filter: brightness(0);
}

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

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.25s ease;
}

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

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

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

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.4rem;
    background: var(--primary);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--btn-radius);
    transition: all 0.25s ease;
}

.nav-cta:hover {
    background: var(--primary-dark);
}

.nav-toggle {
    display: none;
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 110;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    position: absolute;
    left: 4px;
    transition: all 0.3s ease;
}

.hamburger {
    top: 15px;
}

.hamburger::before,
.hamburger::after {
    content: '';
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

.navbar.scrolled .hamburger,
.navbar.scrolled .hamburger::before,
.navbar.scrolled .hamburger::after {
    background: var(--dark);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(20, 17, 15, 0.98);
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: var(--white);
    font-size: 1.5rem;
    padding: 0.5rem;
    z-index: 210;
    cursor: pointer;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.mobile-nav-link {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    font-weight: 500;
    color: var(--white);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s var(--transition);
}

.mobile-menu.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-nav-list li:nth-child(1) .mobile-nav-link { transition-delay: 0.06s; }
.mobile-menu.active .mobile-nav-list li:nth-child(2) .mobile-nav-link { transition-delay: 0.12s; }
.mobile-menu.active .mobile-nav-list li:nth-child(3) .mobile-nav-link { transition-delay: 0.18s; }
.mobile-menu.active .mobile-nav-list li:nth-child(4) .mobile-nav-link { transition-delay: 0.24s; }
.mobile-menu.active .mobile-nav-list li:nth-child(5) .mobile-nav-link { transition-delay: 0.30s; }
.mobile-menu.active .mobile-nav-list li:nth-child(6) .mobile-nav-link { transition-delay: 0.36s; }
.mobile-menu.active .mobile-nav-list li:nth-child(7) .mobile-nav-cta { transition-delay: 0.42s; }

.mobile-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: var(--primary);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--btn-radius);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s var(--transition);
}

.mobile-menu.active .mobile-nav-cta {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(20, 17, 15, 0.7) 0%, rgba(20, 17, 15, 0.4) 60%, rgba(20, 17, 15, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 3rem);
    padding-top: 72px;
    width: 100%;
}

.hero-overline {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-gold);
    margin-bottom: 1.25rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--white);
    max-width: 700px;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 1.3vw, 1.2rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
    margin-top: 1.5rem;
}

.hero-trust {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.dot-sep {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: inline-block;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.avatar-group {
    display: flex;
}

.avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--white);
    border: 2px solid var(--white);
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.3; }
    50% { transform: translateY(8px); opacity: 0.8; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-on-load {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.7s var(--transition) forwards;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* Stagger delays for grids */
.routes-grid .route-card:nth-child(1) { transition-delay: 0s; }
.routes-grid .route-card:nth-child(2) { transition-delay: 0.12s; }
.routes-grid .route-card:nth-child(3) { transition-delay: 0.24s; }
.routes-grid .route-card:nth-child(4) { transition-delay: 0.36s; }

.features-grid .feature-card:nth-child(1) { transition-delay: 0s; }
.features-grid .feature-card:nth-child(2) { transition-delay: 0.1s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.2s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.3s; }

.steps .step:nth-child(1) { transition-delay: 0s; }
.steps .step:nth-child(2) { transition-delay: 0.15s; }
.steps .step:nth-child(3) { transition-delay: 0.3s; }
.steps .step:nth-child(4) { transition-delay: 0.45s; }
.steps .step:nth-child(5) { transition-delay: 0.6s; }

.destinations-grid .destination-card:nth-child(1) { transition-delay: 0s; }
.destinations-grid .destination-card:nth-child(2) { transition-delay: 0.1s; }
.destinations-grid .destination-card:nth-child(3) { transition-delay: 0.2s; }
.destinations-grid .destination-card:nth-child(4) { transition-delay: 0.3s; }
.destinations-grid .destination-card:nth-child(5) { transition-delay: 0.4s; }
.destinations-grid .destination-card:nth-child(6) { transition-delay: 0.5s; }

.testimonials-grid .testimonial-card:nth-child(1) { transition-delay: 0s; }
.testimonials-grid .testimonial-card:nth-child(2) { transition-delay: 0.12s; }
.testimonials-grid .testimonial-card:nth-child(3) { transition-delay: 0.24s; }

/* ============================================
   POPULAR ROUTES
   ============================================ */
.routes {
    background: var(--light);
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--grid-gap);
}

.route-card {
    background: var(--white);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.35s var(--transition), box-shadow 0.35s var(--transition);
}

.route-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-hover-shadow);
}

.route-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.route-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s var(--transition);
}

.route-card:hover .route-image img {
    transform: scale(1.05);
}

.route-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 0.35rem 0.8rem;
    background: var(--primary);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
}

.route-content {
    padding: var(--card-padding);
}

.route-title {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}

.route-title small {
    display: block;
    font-size: 0.85em;
    font-weight: 500;
    color: var(--dark-60);
    margin-top: 0.15rem;
}

.route-desc {
    font-size: 0.9rem;
    color: var(--dark-60);
    line-height: 1.6;
    margin-top: 0.5rem;
}

.route-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--dark-60);
    flex-wrap: wrap;
}

.route-meta i {
    margin-right: 0.3rem;
}

.route-price {
    font-weight: 600;
    color: var(--primary);
}

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */
.why-choose-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 4rem;
    align-items: center;
}

.why-choose-image {
    border-radius: var(--card-radius);
    overflow: hidden;
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 4;
}

.why-choose-content .section-heading {
    margin-bottom: 1.5rem;
}

.why-choose-body {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.why-choose-body p + p {
    margin-top: 1rem;
}

.trust-badges {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.trust-badge i {
    font-size: 1.2rem;
    color: var(--accent-gold);
}

/* ============================================
   STATISTICS
   ============================================ */
.stats {
    position: relative;
    padding: var(--section-padding) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.stats-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 80, 42, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--grid-gap);
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--white);
    display: block;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.5rem;
}

/* ============================================
   FEATURES
   ============================================ */
.features {
    background: var(--light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--grid-gap);
}

.feature-card {
    background: var(--white);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    box-shadow: var(--card-shadow);
    transition: transform 0.35s var(--transition), box-shadow 0.35s var(--transition);
}

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

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    transition: transform 0.25s var(--transition);
}

.feature-card:hover .feature-icon {
    transform: translateY(-2px);
}

.feature-icon.primary {
    color: var(--primary);
}

.feature-icon.teal {
    color: var(--accent-teal);
}

.feature-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--dark-60);
    line-height: 1.6;
}

/* ============================================
   HOW TO BOOK
   ============================================ */
.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.step {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 2.5rem;
    position: relative;
}

.step:last-child {
    padding-bottom: 0;
}

.step::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 48px;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.15);
}

.step:last-child::before {
    display: none;
}

.step-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    z-index: 1;
    background: var(--dark);
    animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 80, 42, 0.3); }
    50% { box-shadow: 0 0 0 8px rgba(212, 80, 42, 0); }
}

.step-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.35rem;
}

.step-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    padding: 5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 17, 15, 0.75);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.cta-subtitle {
    font-size: clamp(1.05rem, 1.3vw, 1.2rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.cta-secondary {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1rem;
}

/* ============================================
   DESTINATIONS
   ============================================ */
.destinations {
    background: var(--light);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.destination-card {
    border-radius: var(--card-radius);
    overflow: hidden;
    cursor: pointer;
}

.destination-image {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s var(--transition);
}

.destination-card:hover .destination-image img {
    transform: scale(1.05);
}

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 17, 15, 0.8) 0%, transparent 50%);
    transition: background 0.35s ease;
}

.destination-card:hover .destination-overlay {
    background: linear-gradient(to top, rgba(20, 17, 15, 0.7) 0%, transparent 55%);
}

.destination-info {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
}

.destination-highlight {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    margin-bottom: 0.25rem;
}

.destination-name {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 600;
    color: var(--white);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gap);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    box-shadow: var(--card-shadow);
    border-left: 3px solid var(--primary);
    position: relative;
    transition: transform 0.35s var(--transition), box-shadow 0.35s var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-hover-shadow);
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
}

.testimonial-quote {
    font-style: italic;
    line-height: 1.7;
    color: var(--dark-80);
    position: relative;
    z-index: 1;
    margin-top: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--dark-60);
}

.testimonial-stars {
    margin-top: 0.5rem;
    color: var(--accent-gold);
    font-size: 0.85rem;
}

.testimonial-stars i {
    margin-right: 0.1rem;
}

/* ============================================
   NEWSLETTER + FINAL CTA
   ============================================ */
.newsletter {
    background: var(--light);
}

.newsletter-box {
    background: var(--white);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    padding: 3rem;
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.newsletter-title {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 600;
    color: var(--dark);
}

.newsletter-desc {
    font-size: 0.9rem;
    color: var(--dark-60);
    margin-top: 0.5rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    height: 48px;
    padding: 0 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--btn-radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.newsletter-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.newsletter-btn {
    height: 48px;
    padding: 0 1.8rem;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--btn-radius);
    transition: background 0.25s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: var(--primary-dark);
}

.newsletter-note {
    grid-column: 1 / -1;
    font-size: 0.75rem;
    color: var(--dark-40);
    margin-top: -1rem;
}

/* Final CTA */
.final-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.final-cta-subtitle {
    font-size: clamp(1.05rem, 1.3vw, 1.2rem);
    color: var(--dark-60);
    margin-top: 0.75rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.final-cta-alt {
    font-size: 0.9rem;
    color: var(--dark-60);
    margin-top: 1rem;
}

.final-cta-alt a {
    color: var(--primary);
    font-weight: 500;
}

.final-cta-alt a:hover {
    text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--white);
}

.footer-links li + li {
    margin-top: 0.6rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-connect h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.footer-connect p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-connect a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.25s ease;
}

.footer-connect a:hover {
    color: var(--primary);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.2rem;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.25s ease;
    font-size: 0.9rem;
}

.social-icons a:hover {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.25s ease;
}

.footer-legal a:hover {
    color: var(--white);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(212, 80, 42, 0.3);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.3s var(--transition);
    z-index: 50;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .routes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .newsletter-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-image {
        order: -1;
    }

    .why-choose-image img {
        aspect-ratio: 16 / 9;
    }

    .routes-grid {
        grid-template-columns: 1fr;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-box {
        padding: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }

    .step {
        gap: 1rem;
    }

    .step::before {
        left: 20px;
    }

    .step-number {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-social-proof {
        flex-direction: column;
        text-align: center;
    }

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

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .animate-on-load,
    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}
