/* ===== General Styles ===== */
:root {
    --primary-color: #ffb347;
    --secondary-color: #7fd4df;
    --accent-color: #ff8a3d;
    --dark-color: #08111f;
    --light-color: #f5f8fb;
    --surface-color: #ffffff;
    --muted-color: #61768d;
    --glow-color: rgba(255, 179, 71, 0.28);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', 'Segoe UI', sans-serif;
    color: #112033;
    line-height: 1.6;
    background: #f5f8fb;
}

/* ===== Navigation ===== */
.navbar {
    background: rgba(6, 13, 24, 0.9) !important;
    box-shadow: 0 12px 40px rgba(5, 10, 20, 0.18);
    backdrop-filter: blur(14px);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: 0.02em;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.logo-nav {
    width: 52px;
    height: 52px;
    filter: drop-shadow(0 12px 22px rgba(255, 179, 71, 0.25));
}

.brand-text {
    background: linear-gradient(135deg, #fff8da, #ffb347 45%, #7fd4df 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    transition: color 0.3s ease;
    margin: 0 10px;
    font-weight: 500;
}

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

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 78% 24%, rgba(255, 179, 71, 0.34), transparent 18%),
        radial-gradient(circle at 18% 78%, rgba(127, 212, 223, 0.18), transparent 24%),
        linear-gradient(135deg, #07111d 0%, #0d2135 45%, #173a55 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(255,179,71,0.22) 0%, rgba(255,179,71,0.02) 60%, transparent 70%);
    border-radius: 50%;
    top: -70px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(127,212,223,0.16) 0%, rgba(127,212,223,0.02) 65%, transparent 72%);
    border-radius: 50%;
    bottom: -100px;
    left: 10%;
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(4, 8, 16, 0.56) 0%, rgba(4, 8, 16, 0.22) 55%, rgba(4, 8, 16, 0.12) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -0.03em;
    animation: slideInUp 0.8s ease;
}

.hero-content p {
    font-size: 1.25rem;
    animation: slideInUp 0.8s ease 0.2s both;
}

.btn-group {
    animation: slideInUp 0.8s ease 0.4s both;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    color: #08111f;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffc86f, #ff944d);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 179, 71, 0.35);
}

.btn-outline-light {
    padding: 12px 30px;
    font-weight: 600;
    border-width: 2px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.hero-image {
    animation: slideInRight 0.8s ease;
    position: relative;
}

.animated-float {
    animation: floatImage 5s ease-in-out infinite;
}

.hero-photo {
    width: 100%;
    min-height: 320px;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 28px 70px rgba(0,0,0,0.34);
    border: 4px solid rgba(255,255,255,0.12);
    transform-origin: center center;

}

.hero-badge {
    position: absolute;
    right: 24px;
    bottom: 24px;
    max-width: 280px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(8, 17, 31, 0.8);
    color: white;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 40px rgba(0,0,0,0.28);
    backdrop-filter: blur(12px);
}

.badge-label {
    display: block;
    margin-bottom: 6px;
    color: #ffd67a;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ===== Services Section ===== */
.services-section {
    background:
        radial-gradient(circle at top left, rgba(255, 179, 71, 0.09), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.service-card {
    background: rgba(255,255,255,0.92);
    border-radius: 22px;
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 18px 40px rgba(8,17,31,0.08);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 179, 71, 0.45);
    box-shadow: 0 24px 54px rgba(8,17,31,0.14);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
    transition: transform 0.3s ease;
}

.service-card:hover .icon-box {
    transform: scale(1.1) rotateZ(5deg);
}

.service-card h5 {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
}

/* ===== Coverage Section ===== */
.route-section {
    background:
        radial-gradient(circle at right top, rgba(255, 179, 71, 0.12), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, #f3f8fb 100%);
}

.route-kicker {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 179, 71, 0.12);
    color: #b56d12;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.coverage-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.coverage-chips span {
    padding: 10px 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(8,17,31,0.08);
    box-shadow: 0 10px 24px rgba(8,17,31,0.05);
    color: var(--dark-color);
    font-size: 0.9rem;
    font-weight: 600;
}

.route-stops {
    display: grid;
    gap: 14px;
}

.route-stop-card {
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(8,17,31,0.08);
    box-shadow: 0 12px 28px rgba(8,17,31,0.06);
}

.route-stop-card strong {
    display: block;
    margin-bottom: 6px;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--dark-color);
}

.route-stop-card p {
    margin: 0;
    color: var(--muted-color);
}

.route-map-card {
    position: relative;
    padding: 26px;
    border-radius: 28px;
    background: linear-gradient(160deg, #08111f 0%, #102740 52%, #173a55 100%);
    box-shadow: 0 28px 70px rgba(8,17,31,0.22);
    overflow: hidden;
}

.route-map-card::before {
    content: '';
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    pointer-events: none;
}

.map-caption {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    color: white;
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.map-caption span {
    color: #ffe0a5;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    font-weight: 700;
}

.map-caption strong {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

.route-map {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 700 / 520;
}

.map-water {
    fill: rgba(127, 212, 223, 0.1);
    stroke: rgba(255,255,255,0.06);
    stroke-width: 2;
}

.map-land-shadow {
    fill: rgba(0,0,0,0.18);
    transform: translate(10px, 12px);
}

.map-land {
    fill: rgba(246, 237, 209, 0.96);
    stroke: rgba(255,255,255,0.18);
    stroke-width: 3;
}

.map-ridge {
    fill: none;
    stroke: rgba(8,17,31,0.18);
    stroke-width: 8;
    stroke-linecap: round;
}

.map-ridge.secondary {
    stroke-width: 5;
    opacity: 0.6;
}

.map-bay {
    fill: rgba(127, 212, 223, 0.3);
    stroke: rgba(255,255,255,0.08);
    stroke-width: 2;
}

.map-city-grid rect {
    fill: rgba(8,17,31,0.28);
}

.travel-route-base {
    fill: none;
    stroke: rgba(255,255,255,0.2);
    stroke-width: 10;
    stroke-linecap: round;
}

.travel-route-glow {
    fill: none;
    stroke: url(#routeGlow);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 14 16;
    animation: routeDash 14s linear infinite;
}

.route-stop {
    fill: #fff4d0;
    stroke: #ffb347;
    stroke-width: 6;
    filter: drop-shadow(0 0 18px rgba(255, 179, 71, 0.22));
}

.map-pin text {
    fill: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
}

.map-pin .map-subtext {
    fill: rgba(255,255,255,0.78);
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
}

.map-label-badge rect {
    fill: rgba(8,17,31,0.8);
    stroke: rgba(255,255,255,0.1);
}

.map-label-badge text {
    fill: #ffffff;
    text-anchor: middle;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
}

.map-label-badge .map-subtext {
    fill: rgba(255,255,255,0.72);
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
}

.map-note rect {
    fill: rgba(255,255,255,0.08);
    stroke: rgba(255,255,255,0.14);
}

.map-note text {
    fill: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
}

.map-note .map-subtext {
    fill: rgba(255,255,255,0.76);
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
}

.route-mobile-legend {
    display: none;
    position: relative;
    z-index: 1;
    margin-top: 18px;
    gap: 12px;
}

.route-legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
}

.route-legend-item strong {
    display: block;
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.2;
}

.route-legend-item small {
    color: rgba(255,255,255,0.72);
    line-height: 1.35;
}

.legend-dot {
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
    border-radius: 50%;
    background: #fff4d0;
    box-shadow: 0 0 0 5px rgba(255,255,255,0.08);
}

.legend-dot.airport {
    background: #7fd4df;
}

.legend-dot.city {
    background: #ffb347;
}

.legend-dot.point {
    background: #ff8a3d;
}

/* ===== Scenic Section ===== */
.scenic-section {
    background:
        radial-gradient(circle at top center, rgba(127, 212, 223, 0.12), transparent 24%),
        linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
}

.scenic-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    min-height: 320px;
    box-shadow: 0 22px 56px rgba(8,17,31,0.12);
    background: #0f1d2d;
}

.scenic-card-large,
.scenic-card-tall {
    min-height: 520px;
}

.scenic-card-wide {
    min-height: 340px;
}

.scenic-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
    transition: transform 0.5s ease;
    transform-origin: center center;
    animation: cinematicZoom 8s ease-in-out infinite alternate;
}

.scenic-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,17,29,0.08) 0%, rgba(7,17,29,0.7) 100%);
}

.scenic-card:hover .scenic-photo {
    transform: scale(1.05);
}

.scenic-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 28px;
    color: white;
}

.scenic-overlay h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    margin: 10px 0 10px;
}

.scenic-overlay p {
    margin: 0;
    max-width: 620px;
    color: rgba(255,255,255,0.84);
}

.scenic-tag {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.16);
    color: #ffe0a5;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.scenic-overlay-inline {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
}

/* ===== Fleet Section ===== */
.fleet-section {
    background:
        radial-gradient(circle at bottom right, rgba(127, 212, 223, 0.12), transparent 24%),
        linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
}

.fleet-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(8,17,31,0.06);
    box-shadow: 0 16px 36px rgba(8,17,31,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 54px rgba(8,17,31,0.14);
}

.vehicle-image {
    width: 100%;
    height: 260px;
    background: #dde7ee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fleet-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center center;
    animation: cinematicZoom 11s ease-in-out infinite alternate;
}

.fleet-card h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--dark-color);
    padding: 20px 20px 10px;
}

.fleet-card p {
    padding: 0 20px;
    color: #666;
    font-size: 0.9rem;
}

.fleet-copy {
    padding-top: 22px !important;
    margin-bottom: 0;
}

.fleet-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 8px 20px 22px;
}

.fleet-highlights span {
    background: #fff8e8;
    color: var(--dark-color);
    border: 1px solid rgba(255, 179, 71, 0.22);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.stars {
    padding: 10px 20px 20px;
    color: #f39c12;
}

.stars i {
    margin-right: 5px;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 179, 71, 0.2), transparent 18%),
        linear-gradient(135deg, #091320 0%, #102740 55%, #1b4c69 100%);
    color: white;
}

.testimonial-card {
    background: rgba(255,255,255,0.95);
    border-radius: 22px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
    color: #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.testimonial-card .stars {
    color: #f39c12;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: #555;
    margin: 15px 0;
    line-height: 1.6;
}

.avatar {
    font-size: 40px;
    color: var(--accent-color);
}

.testimonial-card strong {
    color: var(--dark-color);
}

/* ===== Contact Section ===== */
.contact-section {
    background:
        radial-gradient(circle at top right, rgba(255, 179, 71, 0.18), transparent 20%),
        linear-gradient(135deg, #0a1523 0%, #10263b 100%);
}

.contact-layout {
    align-items: stretch;
}

.contact-panel,
.booking-panel {
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
}

.contact-panel {
    padding: 28px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 24px 60px rgba(0,0,0,0.18);
    backdrop-filter: blur(12px);
}

.contact-kicker,
.booking-kicker {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 179, 71, 0.16);
    color: #ffd88f;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-panel h3,
.booking-panel-head h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    margin-bottom: 12px;
}

.contact-panel-copy,
.booking-panel-head p {
    color: rgba(255,255,255,0.76);
    margin-bottom: 22px;
}

.contact-quick-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.contact-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    border-radius: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.primary-action {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #08111f;
}

.secondary-action {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #ffffff;
}

.contact-action:hover {
    transform: translateY(-2px);
    color: inherit;
}

.contact-info-stack {
    display: grid;
    gap: 14px;
}

.contact-info-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-info-card:hover {
    background: rgba(255,255,255,0.13);
    transform: translateY(-4px);
}

.contact-info-card i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-info-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-info-card p {
    margin: 0;
    color: rgba(255,255,255,0.84);
}

.contact-info-card a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

/* ===== Booking Form ===== */
.booking-panel {
    padding: 30px;
    background: #ffffff;
    box-shadow: 0 28px 70px rgba(0,0,0,0.18);
}

.booking-panel-head {
    margin-bottom: 22px;
}

.booking-panel-head h3 {
    color: var(--dark-color);
}

.booking-panel-head p {
    color: var(--muted-color);
    margin-bottom: 0;
}

.booking-form .form-control,
.booking-form .form-select {
    background: rgba(255,255,255,0.95);
    border: 2px solid #d5dde5;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 179, 71, 0.2);
}

.booking-form .form-label {
    font-weight: 600;
    margin-bottom: 8px;
}

.booking-form .btn {
    font-weight: 600;
    transition: all 0.3s ease;
}

.booking-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.4);
}

/* ===== Footer ===== */
footer {
    background: linear-gradient(135deg, #060d18 0%, #0d2135 100%);
    border-top: 3px solid var(--primary-color);
}

footer p {
    margin: 0;
    font-weight: 500;
}

footer small {
    color: #bbb;
}

.social-links a {
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.display-4 {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.03em;
}

/* ===== Animations ===== */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(20px);
    }
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes cinematicZoom {
    0% {
        transform: scale(1.01);
    }
    100% {
        transform: scale(1.12);
    }
}

@keyframes routeDash {
    from {
        stroke-dashoffset: 0;
    }
    to {
        stroke-dashoffset: -300;
    }
}

.animated-in {
    animation: slideInUp 0.8s ease;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn-group {
        display: flex;
        flex-direction: column;
    }

    .btn-group .btn {
        margin-bottom: 10px;
        margin-right: 0 !important;
    }

    .hero-image {
        margin-top: 40px;
    }

    .hero-badge {
        position: static;
        margin-top: 16px;
        max-width: none;
    }

    .display-4 {
        font-size: 2rem;
    }

    .service-card,
    .scenic-card,
    .route-map-card,
    .testimonial-card,
    .fleet-card {
        margin-bottom: 20px;
    }

    .nav-link {
        margin: 5px 0;
    }

    footer .col-md-6 {
        text-align: center !important;
        margin-bottom: 15px;
    }

    .social-links {
        justify-content: center;
    }

    .map-caption {
        flex-direction: column;
    }

    .contact-panel h3,
    .booking-panel-head h3 {
        font-size: 1.7rem;
    }

    .scenic-card-large,
    .scenic-card-tall,
    .scenic-card-wide {
        min-height: 420px;
    }

    .scenic-overlay-inline {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .display-4 {
        font-size: 1.5rem;
    }

    .icon-box {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .navbar {
        padding: 10px 0;
    }

    .logo-nav {
        width: 35px;
        height: 35px;
    }

    .route-map-card {
        padding: 16px;
        border-radius: 22px;
    }

    .map-pin text,
    .map-note text,
    .map-label-badge text {
        font-size: 15px;
    }

    .map-pin .map-subtext,
    .map-note .map-subtext,
    .map-label-badge .map-subtext {
        font-size: 12px;
    }

    .route-map {
        min-height: 280px;
    }

    .map-note,
    .map-pin .map-subtext {
        display: none;
    }

    .route-mobile-legend {
        display: grid;
    }

    .coverage-chips {
        gap: 8px;
    }

    .coverage-chips span {
        font-size: 0.82rem;
        padding: 8px 12px;
    }

    .route-stop-card {
        padding: 16px;
    }

    .scenic-card,
    .scenic-card-large,
    .scenic-card-tall,
    .scenic-card-wide {
        min-height: 300px;
        border-radius: 22px;
    }

    .scenic-overlay {
        padding: 20px;
    }

    .scenic-overlay h3 {
        font-size: 1.45rem;
    }

    .contact-panel,
    .booking-panel {
        padding: 20px;
        border-radius: 22px;
    }

    .contact-quick-actions {
        flex-direction: column;
    }

    .contact-action {
        width: 100%;
        justify-content: center;
    }

    .contact-info-card {
        padding: 18px;
    }

    .contact-panel h3,
    .booking-panel-head h3 {
        font-size: 1.45rem;
    }

    .booking-form .form-control,
    .booking-form .form-select {
        font-size: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-photo,
    .fleet-photo,
    .scenic-photo {
        animation: none;
        transform: scale(1.01);
    }
}

/* ===== Utility Classes ===== */
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* ===== Hover Effects ===== */
a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ===== Scrollbar Styling ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}
