/* =============================================
   ONEWAY EXPERT - Main Stylesheet
   Theme: Charcoal + Blue + White
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Montserrat:wght@400;600;700;800&display=swap');

:root {
    --charcoal: #1e2329;
    --charcoal-dark: #141820;
    --charcoal-mid: #2a3140;
    --blue: #1565c0;
    --blue-light: #1976d2;
    --blue-bright: #2196f3;
    --blue-accent: #42a5f5;
    --white: #ffffff;
    --off-white: #f4f6f9;
    --light-gray: #e8ecf0;
    --text-muted: #8a96a3;
    --text-body: #4a5568;
    --gold: #ffc107;
    --success: #28a745;
    --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
    --radius: 10px;
    --radius-lg: 18px;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-pad { padding: 75px 0; }
.section-pad-sm { padding: 50px 0; }

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(21,101,192,0.4);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--blue-light), var(--blue-bright));
    box-shadow: 0 6px 20px rgba(21,101,192,0.5);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
}
.btn-outline:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), #ff8f00);
    color: var(--charcoal-dark);
    box-shadow: 0 4px 15px rgba(255,193,7,0.4);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,193,7,0.5);
}
.btn-lg { padding: 16px 38px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

/* ─── SECTION HEADINGS ─── */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title .eyebrow {
    display: inline-block;
    color: var(--blue);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.section-title h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 14px;
}
.section-title p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}
.title-line {
    width: 55px;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--blue-accent));
    border-radius: 2px;
    margin: 16px auto 0;
}

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
#header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--charcoal-dark);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    transition: var(--transition);
}
#header.scrolled {
    background: rgba(20,24,32,0.97);
    backdrop-filter: blur(10px);
}

.header-top {
    background: var(--blue);
    padding: 6px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.9);
}
.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.header-top a { color: inherit; }
.header-top a:hover { color: var(--gold); }
.htop-item { display: flex; align-items: center; gap: 6px; }

.header-main { padding: 14px 0; }
.header-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    object-fit: contain;
    background: var(--blue);
    padding: 4px;
}
.logo-text .brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    line-height: 1;
}
.logo-text .brand span { color: var(--blue-accent); }
.logo-text .tagline {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Nav */
nav ul { display: flex; align-items: center; gap: 4px; }
nav ul li a {
    display: block;
    padding: 8px 14px;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
}
nav ul li a:hover,
nav ul li a.active {
    color: var(--white);
    background: rgba(33,150,243,0.15);
}
nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 50%;
    width: 0; height: 2px;
    background: var(--blue-accent);
    border-radius: 1px;
    transform: translateX(-50%);
    transition: var(--transition);
}
nav ul li a.active::after,
nav ul li a:hover::after { width: 60%; }

.nav-cta { margin-left: 10px; }
.nav-cta a {
    background: var(--blue) !important;
    color: var(--white) !important;
    padding: 9px 20px !important;
    border-radius: 7px !important;
}
.nav-cta a:hover { background: var(--blue-light) !important; }
.nav-cta a::after { display: none !important; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 90px;
}

/* Slider */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(20,24,32,0.88) 0%,
        rgba(20,24,32,0.65) 50%,
        rgba(21,101,192,0.45) 100%
    );
}

/* FIX: Real photo backgrounds — gradient removed */
.hero-slide-1 {
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center top;
}
.hero-slide-2 {
    background-image: url('../images/bg.jpg');
    background-size: cover;
    background-position: center;
}
.hero-slide-3 {
    background-image: url('../images/about.jpg');
    background-size: cover;
    background-position: center;
}

/* Animated road lines on hero */
.hero-anim-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.road-line {
    position: absolute;
    width: 3px;
    background: linear-gradient(180deg, transparent, rgba(33,150,243,0.3), transparent);
    animation: roadMove 3s linear infinite;
}
.road-line:nth-child(1) { left: 20%; height: 200px; animation-delay: 0s; animation-duration: 2.5s; }
.road-line:nth-child(2) { left: 50%; height: 150px; animation-delay: 0.8s; animation-duration: 3s; }
.road-line:nth-child(3) { left: 75%; height: 250px; animation-delay: 1.5s; animation-duration: 2s; }
.road-line:nth-child(4) { left: 35%; height: 120px; animation-delay: 0.3s; animation-duration: 3.5s; }

@keyframes roadMove {
    from { top: -250px; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    to { top: 100vh; opacity: 0; }
}

/* Floating dots */
.float-dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(33,150,243,0.15);
    animation: floatDot 6s ease-in-out infinite;
}
.float-dot:nth-child(5) { width: 80px; height: 80px; right: 15%; top: 20%; animation-delay: 0s; }
.float-dot:nth-child(6) { width: 40px; height: 40px; right: 30%; top: 60%; animation-delay: 2s; }
.float-dot:nth-child(7) { width: 120px; height: 120px; right: 5%; bottom: 20%; animation-delay: 1s; }

@keyframes floatDot {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    flex: 1;
    max-width: 580px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(33,150,243,0.2);
    border: 1px solid rgba(33,150,243,0.4);
    border-radius: 50px;
    padding: 6px 16px;
    color: var(--blue-accent);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.hero-badge::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--blue-accent);
    border-radius: 50%;
    animation: blink 1.5s ease infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(30px, 5vw, 58px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -1px;
}
.hero h1 span { color: var(--blue-accent); }

.hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 480px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}
.hero-stat { text-align: left; }
.hero-stat .num {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}
.hero-stat .num span { color: var(--blue-accent); }
.hero-stat .label {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-top: 3px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}
.slider-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}
.slider-dot.active {
    background: var(--blue-accent);
    border-color: var(--blue-accent);
    transform: scale(1.3);
}

/* ─── BOOKING FORM (HERO RIGHT) ─── */
.hero-form-wrap {
    position: relative;
    z-index: 10;
    flex-shrink: 0;
    width: 420px;
}
.booking-card {
    background: rgba(255,255,255,0.97);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 80px rgba(0,0,0,0.4);
    overflow: hidden;
}

/* Tabs */
.book-tabs {
    display: flex;
    background: var(--charcoal);
}
.book-tab {
    flex: 1;
    padding: 14px 6px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.book-tab.active {
    color: var(--white);
    border-bottom-color: var(--blue-accent);
    background: rgba(33,150,243,0.15);
}
.book-tab:hover { color: var(--white); }

.book-form-body { padding: 24px; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 14px; }
.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: var(--charcoal);
    transition: var(--transition);
    background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(21,101,192,0.1);
}
.form-group input::placeholder { color: #b0b8c1; }

/* ═══════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════ */
.services { background: var(--off-white); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--blue-accent));
    transform: scaleX(0);
    transition: var(--transition);
}
.service-card:hover {
    border-color: rgba(21,101,192,0.15);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, rgba(21,101,192,0.1), rgba(33,150,243,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    transform: scale(1.1);
}
.service-card:hover .service-icon .si { filter: brightness(10); }

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 10px;
}
.service-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}
.service-price {
    display: inline-block;
    margin-top: 14px;
    background: rgba(21,101,192,0.08);
    color: var(--blue);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

/* ═══════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════ */
.why-us { background: var(--charcoal-dark); }
.why-us .section-title h2 { color: var(--white); }
.why-us .eyebrow { color: var(--blue-accent); }
.why-us .section-title p { color: rgba(255,255,255,0.6); }
.why-us .title-line { background: var(--blue-accent); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
}
.why-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    transition: var(--transition);
}
.why-card:hover {
    background: rgba(33,150,243,0.08);
    border-color: rgba(33,150,243,0.3);
    transform: translateY(-5px);
}
.why-icon {
    font-size: 38px;
    margin-bottom: 16px;
}
.why-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}
.why-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}

/* ═══════════════════════════════════════
   ROUTES SECTION
═══════════════════════════════════════ */
.routes-section { background: var(--white); }

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.route-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius);
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: var(--transition);
    cursor: pointer;
}
.route-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.route-info .route-cities {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--charcoal);
    margin-bottom: 6px;
}
.route-info .route-cities .arrow {
    color: var(--blue);
    font-size: 18px;
}
.route-meta {
    display: flex;
    gap: 14px;
    font-size: 12px;
    color: var(--text-muted);
}
.route-meta span { display: flex; align-items: center; gap: 4px; }

.route-price {
    text-align: right;
    flex-shrink: 0;
}
.route-price .price {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
}
.route-price .price-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Search Routes */
.route-search-wrap {
    margin-bottom: 35px;
    display: flex;
    gap: 12px;
    align-items: center;
}
.route-search-wrap input {
    flex: 1;
    padding: 13px 18px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}
.route-search-wrap input:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(21,101,192,0.1);
}

/* ═══════════════════════════════════════
   FLEET SECTION — FIX: Real Images
═══════════════════════════════════════ */
.fleet { background: var(--off-white); }

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.fleet-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.fleet-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

/* FIX: fleet-img as image container */
.fleet-img {
    width: 100%;
    height: 210px;
    overflow: hidden;
    display: block;
    background: var(--charcoal-mid);
}
.fleet-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.fleet-card:hover .fleet-img img {
    transform: scale(1.05);
}

.fleet-info { padding: 22px; }
.fleet-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}
.fleet-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}
.fleet-feat {
    background: rgba(21,101,192,0.08);
    color: var(--blue);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
}
.fleet-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--blue);
    margin-top: 14px;
}
.fleet-price span { font-size: 12px; font-weight: 400; color: var(--text-muted); }

/* ═══════════════════════════════════════
   STATS COUNTER
═══════════════════════════════════════ */
.stats-band {
    background-image: url('../images/bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 55px 0;
}
.stats-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 55, 0.82);
}
.stats-band .container { position: relative; z-index: 1; }

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    text-align: center;
}
.stat-item .stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}
.stat-item .stat-num span { color: var(--gold); }
.stat-item .stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonials { background: var(--white); }

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.testi-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border-left: 4px solid var(--blue);
    transition: var(--transition);
}
.testi-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.testi-stars { color: var(--gold); font-size: 16px; margin-bottom: 14px; letter-spacing: 3px; }
.testi-text {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 18px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--blue-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 14px; color: var(--charcoal); }
.testi-city { font-size: 12px; color: var(--text-muted); }

/* ═══════════════════════════════════════
   CTA BAND
═══════════════════════════════════════ */
.cta-band {
    background-image: url('../images/bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 70px 0;
    text-align: center;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 60, 0.86);
}
.cta-band h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 14px;
    position: relative;
}
.cta-band p {
    color: rgba(255,255,255,0.65);
    font-size: 16px;
    margin-bottom: 35px;
    position: relative;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
#footer {
    background: #0d1117;
    color: rgba(255,255,255,0.7);
    padding-top: 65px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-text .brand { font-size: 24px; }
.footer-brand .logo-text .tagline { color: rgba(255,255,255,0.4); }
.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.5);
    margin: 18px 0 22px;
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
}
.social-btn:hover {
    background: var(--blue);
    border-color: var(--blue);
}

.footer-col h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-col ul li {
    margin-bottom: 10px;
    font-size: 14px;
}
.footer-col ul li a {
    color: rgba(255,255,255,0.55);
    transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--blue-accent); padding-left: 4px; }

.footer-contact-item {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 14px;
    line-height: 1.6;
}
.fci-icon { font-size: 16px; margin-top: 1px; flex-shrink: 0; }

.footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--blue-accent); }
.footer-credit { color: rgba(255,255,255,0.3); }
.footer-credit a { color: var(--blue-accent); }

/* ═══════════════════════════════════════
   INNER PAGE HERO
═══════════════════════════════════════ */
.page-hero {
    background: linear-gradient(135deg, var(--charcoal-dark), var(--charcoal-mid), #0d2a5e);
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--blue), var(--blue-accent), transparent);
}
.page-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
}
.page-hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    max-width: 500px;
    margin: 0 auto 18px;
    line-height: 1.7;
}
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: var(--blue-accent); }

/* ═══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 450px;
    background: linear-gradient(135deg, var(--charcoal-mid), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
}
.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-badge {
    position: absolute;
    bottom: 25px; right: 25px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 15px 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
}
.about-badge .num {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
}
.about-badge .label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
}
.about-text .eyebrow {
    color: var(--blue);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}
.about-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 16px;
    line-height: 1.2;
}
.about-text p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 14px;
}
.about-checks { margin: 20px 0; }
.about-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 10px;
}
.about-check::before {
    content: '✓';
    width: 22px; height: 22px;
    background: var(--blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}
.contact-info-card {
    background: var(--charcoal-dark);
    border-radius: var(--radius-lg);
    padding: 35px;
    color: var(--white);
}
.contact-info-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--white);
}
.ci-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ci-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.ci-icon {
    width: 48px; height: 48px;
    background: rgba(33,150,243,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.ci-label { font-size: 12px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.ci-val { font-size: 15px; font-weight: 600; color: var(--white); }

.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--light-gray);
}
.contact-form-wrap h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 8px;
}
.contact-form-wrap p { font-size: 14px; color: var(--text-muted); margin-bottom: 25px; }

/* ═══════════════════════════════════════
   ROUTE DETAIL PAGE
═══════════════════════════════════════ */
.route-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}
.route-info-box {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 25px;
}
.route-info-head {
    background: var(--charcoal);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.route-info-head h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}
.route-info-body { padding: 24px; }
.route-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    font-size: 14px;
}
.route-detail-row:last-child { border-bottom: none; }
.rdr-label { color: var(--text-muted); }
.rdr-val { font-weight: 600; color: var(--charcoal); }

/* ═══════════════════════════════════════
   BOOK PAGE
═══════════════════════════════════════ */
.book-wrap {
    max-width: 650px;
    margin: 0 auto;
}
.book-confirm {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 45px;
    box-shadow: var(--shadow-md);
    border-top: 5px solid var(--blue);
    text-align: center;
}
.book-confirm .check-icon {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--blue), var(--blue-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
    animation: scaleIn 0.5s ease;
}
@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}
.book-confirm h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 10px;
}
.book-confirm p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}
.booking-summary {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 20px;
    text-align: left;
    margin: 20px 0;
}
.bs-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--light-gray);
    font-size: 14px;
}
.bs-row:last-child { border-bottom: none; }
.bs-label { color: var(--text-muted); }
.bs-val { font-weight: 600; color: var(--charcoal); }

/* ═══════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════ */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 5px 20px rgba(37,211,102,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    cursor: pointer;
    transition: var(--transition);
    animation: waPulse 2s ease infinite;
}
.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}
@keyframes waPulse {
    0%, 100% { box-shadow: 0 5px 20px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 5px 30px rgba(37,211,102,0.8); }
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1100px) {
    .hero > .container { flex-direction: column; }
    .hero-form-wrap { width: 100%; max-width: 600px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .about-split,
    .contact-grid,
    .route-detail-grid { grid-template-columns: 1fr; }
    nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--charcoal-dark); padding: 20px; }
    nav.open { display: block; }
    nav ul { flex-direction: column; gap: 0; }
    nav ul li a { padding: 12px 16px; border-radius: 0; }
    .hamburger { display: flex; }
}

@media (max-width: 600px) {
    .hero { padding: 100px 0 40px; }
    .hero-stats { gap: 20px; }
    .hero-actions { flex-direction: column; }
    .hero-form-wrap { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .book-confirm { padding: 25px 20px; }
    .contact-form-wrap { padding: 25px 20px; }
}