/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0A2342;
    --sky-blue: #1E90FF;
    --silver: #C0C7D1;
    --emerald: #2E8B57;
    --bg-white: #F7F9FC;
    --charcoal: #222831;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--charcoal);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--navy) 0%, #0d2d54 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    width: 72px;
    height: 72px;
    object-fit: contain;      /* show full logo, no cropping */
    border-radius: 0;         /* no circular clip — it's already circular */
    border: none;
    background: transparent;
    filter: drop-shadow(0 2px 8px rgba(30, 144, 255, 0.5));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 14px rgba(30, 144, 255, 0.8));
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-text p {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: var(--sky-blue);
}

.header-cta {
    display: flex;
    gap: 1rem;
}

/* Button Styles */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--sky-blue), #0066CC);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 144, 255, 0.4);
}

.btn-secondary {
    background: var(--emerald);
    color: white;
}

.btn-secondary:hover {
    background: #257046;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

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

/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 8rem 2rem 6rem;
    text-align: center;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 35, 66, 0.85), rgba(13, 45, 84, 0.75));
    z-index: 1;
}

/* Carousel Container */
.hero-carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}

/* Hero Slides */
.hero-slide {
    display: none;
    animation: fadeIn 1s ease-in-out;
}

.hero-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    animation: slideInDown 0.8s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subheading {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 500;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    animation: slideInUp 0.8s ease-out 0.2s both;
}

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

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 2rem;
    pointer-events: none;
    z-index: 3;
}

.carousel-btn {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 3rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
    line-height: 1;
}

.carousel-btn:hover {
    background: rgba(30, 144, 255, 0.8);
    border-color: var(--sky-blue);
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--sky-blue);
    border-color: var(--sky-blue);
    width: 40px;
    border-radius: 6px;
}

.trust-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
    animation: slideInUp 0.8s ease-out 0.6s both;
}

.badge {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s;
}

.badge:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.badge-icon {
    font-size: 1.2rem;
}

/* Pause button for autoplay */
.carousel-pause {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 3;
}

.carousel-pause:hover {
    background: rgba(30, 144, 255, 0.8);
}

/* Booking Widget */
.booking-widget {
    max-width: 1200px;
    margin: -4rem auto 4rem;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    position: relative;
    z-index: 10;
}

.booking-widget h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--navy);
    text-align: center;
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--navy);
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    padding: 0.85rem;
    border: 2px solid #e0e5eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--sky-blue);
}

.form-row-full {
    grid-column: 1 / -1;
}

.checkbox-group {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: 0.5rem 0;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* Section Styles */
.section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: var(--sky-blue);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--sky-blue), var(--emerald));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Routes Section */
.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.route-card {
    background: linear-gradient(135deg, var(--navy), #0d2d54);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.route-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sky-blue), var(--emerald));
}

.route-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 144, 255, 0.3);
}

.route-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.route-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--sky-blue);
    margin-bottom: 0.5rem;
}

.route-detail {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Reviews Section */
.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 4px solid var(--sky-blue);
}

.review-stars {
    color: #FFB800;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.review-author {
    font-weight: 600;
    color: var(--navy);
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(135deg, var(--emerald), #1d6e43);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    margin: 4rem 0;
}

.promo-content {
    max-width: 900px;
    margin: 0 auto;
}

.promo-banner h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.promo-offers {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.promo-offer {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    min-width: 250px;
}

.promo-offer h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.countdown {
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 1rem;
    color: #FFB800;
}

/* Image Banner Carousel Section */
.image-banner-section {
    margin: 4rem 0;
    overflow: hidden;
}

.image-banner-carousel {
    position: relative;
    width: 100%;
    height: 400px;
}

.image-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.image-banner.active-banner {
    opacity: 1;
    z-index: 1;
}

/* Banner 1 - Premium Fleet */
.image-banner:nth-child(1) {
    background: linear-gradient(135deg, rgba(10, 35, 66, 0.85), rgba(30, 144, 255, 0.7)),
                url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 400"%3E%3Cdefs%3E%3ClinearGradient id="bg1" x1="0%25" y1="0%25" x2="100%25" y2="100%25"%3E%3Cstop offset="0%25" style="stop-color:%230A2342;stop-opacity:1" /%3E%3Cstop offset="100%25" style="stop-color:%231E90FF;stop-opacity:0.9" /%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width="1920" height="400" fill="url(%23bg1)"/%3E%3Ccircle cx="1600" cy="100" r="150" fill="%23ffffff" opacity="0.05"/%3E%3Ccircle cx="300" cy="300" r="200" fill="%23ffffff" opacity="0.03"/%3E%3Ctext x="960" y="200" font-family="Arial" font-size="120" fill="%23ffffff" opacity="0.1" text-anchor="middle"%3E🚗%3C/text%3E%3C/svg%3E');
}

/* Banner 2 - Family Service */
.image-banner:nth-child(2) {
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.85), rgba(29, 110, 67, 0.7)),
                url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 400"%3E%3Cdefs%3E%3ClinearGradient id="bg2" x1="0%25" y1="0%25" x2="100%25" y2="100%25"%3E%3Cstop offset="0%25" style="stop-color:%232E8B57;stop-opacity:1" /%3E%3Cstop offset="100%25" style="stop-color:%231d6e43;stop-opacity:0.9" /%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width="1920" height="400" fill="url(%23bg2)"/%3E%3Ccircle cx="1700" cy="250" r="180" fill="%23ffffff" opacity="0.05"/%3E%3Ccircle cx="200" cy="150" r="150" fill="%23ffffff" opacity="0.03"/%3E%3Ctext x="960" y="200" font-family="Arial" font-size="120" fill="%23ffffff" opacity="0.1" text-anchor="middle"%3E👨‍👩‍👧‍👦%3C/text%3E%3C/svg%3E');
}

/* Banner 3 - Corporate */
.image-banner:nth-child(3) {
    background: linear-gradient(135deg, rgba(34, 40, 49, 0.85), rgba(57, 62, 70, 0.7)),
                url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 400"%3E%3Cdefs%3E%3ClinearGradient id="bg3" x1="0%25" y1="0%25" x2="100%25" y2="100%25"%3E%3Cstop offset="0%25" style="stop-color:%23222831;stop-opacity:1" /%3E%3Cstop offset="100%25" style="stop-color:%23393E46;stop-opacity:0.9" /%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width="1920" height="400" fill="url(%23bg3)"/%3E%3Ccircle cx="1500" cy="200" r="200" fill="%23ffffff" opacity="0.05"/%3E%3Ccircle cx="400" cy="100" r="120" fill="%23ffffff" opacity="0.03"/%3E%3Ctext x="960" y="200" font-family="Arial" font-size="120" fill="%23ffffff" opacity="0.1" text-anchor="middle"%3E💼%3C/text%3E%3C/svg%3E');
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem;
}

.banner-text {
    text-align: center;
    color: white;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.banner-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.banner-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

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

/* Banner Indicators */
.banner-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 2;
}

.banner-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.banner-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.banner-indicator.active-indicator {
    background: white;
    width: 40px;
    border-radius: 6px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-white);
    border-radius: 8px;
    border-left: 3px solid var(--sky-blue);
}

.highlight-icon {
    font-size: 1.5rem;
    color: var(--emerald);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    background: linear-gradient(135deg, var(--navy), #0d2d54);
    color: white;
    padding: 3rem;
    border-radius: 16px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--sky-blue);
    margin-top: 0.2rem;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-form-container h3 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 2px solid #e0e5eb;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--sky-blue);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--navy);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--sky-blue);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--sky-blue);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.7);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Form Status Messages */
#formStatus {
    text-align: center;
    font-weight: 600;
}

#formStatus.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#formStatus.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Styles */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 6rem 1rem 4rem;
        min-height: 80vh;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .hero-subheading {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 2rem;
    }

    .carousel-controls {
        padding: 0 1rem;
    }

    .booking-form {
        grid-template-columns: 1fr;
    }

    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .header-cta {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 4rem 1rem 3rem;
        min-height: 70vh;
    }

    .hero h2 {
        font-size: 2rem;
    }

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

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .carousel-indicators {
        bottom: 1rem;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .indicator.active {
        width: 30px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .booking-widget {
        margin: -2rem 1rem 2rem;
        padding: 1.5rem;
    }

    .section {
        padding: 3rem 1rem;
    }
    
    .checkbox-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .trust-badges {
        gap: 1rem;
    }
    
    .badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .hero-video {
        min-width: 200%;
    }

    .image-banner-carousel {
        height: 300px;
    }

    .banner-text h3 {
        font-size: 1.8rem;
    }

    .banner-text p {
        font-size: 1rem;
    }
}

/* ============================================================
   PRICING SECTION
   ============================================================ */

.pricing-section {
    background: linear-gradient(160deg, #f0f4ff 0%, #f7f9fc 60%, #e8f5ee 100%);
    padding: 5rem 2rem;
}

.pricing-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Fare Finder Widget */
.fare-finder {
    background: linear-gradient(135deg, var(--navy), #0d2d54);
    color: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(10,35,66,0.25);
}

.fare-finder h3 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: white;
}

.fare-finder-controls {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 1.25rem;
    align-items: end;
}

.fare-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fare-group label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.85;
}

.fare-group select {
    padding: 0.9rem 1rem;
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: border 0.3s, background 0.3s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='white' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.fare-group select option {
    background: var(--navy);
    color: white;
}

.fare-group select:focus {
    outline: none;
    border-color: var(--sky-blue);
    background-color: rgba(30,144,255,0.15);
}

.fare-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    min-width: 150px;
    text-align: center;
    min-height: 80px;
}

.fare-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.fare-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #FFB800;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.fare-price.has-value {
    animation: popIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
    from { transform: scale(0.7); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}

/* Pricing Table */
.pricing-table-wrap {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.97rem;
    min-width: 640px;
}

.pricing-table thead tr {
    background: linear-gradient(135deg, var(--navy), #0d2d54);
    color: white;
}

.pricing-table thead th {
    padding: 1rem 1.1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    line-height: 1.4;
    border: none;
}

.pricing-table thead th.dest-col {
    text-align: left;
    border-radius: 12px 0 0 0;
    min-width: 140px;
}

.pricing-table thead th:last-child {
    border-radius: 0 12px 0 0;
}

.th-icon {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.pricing-table tbody tr {
    border-bottom: 1px solid #f0f2f5;
    transition: background 0.2s;
}

.pricing-table tbody tr:hover {
    background: #f0f6ff;
}

.pricing-table tbody tr:last-child {
    border-bottom: none;
}

.dest-name {
    padding: 1rem 1.1rem;
    font-weight: 700;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    white-space: nowrap;
}

.dest-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sky-blue), var(--emerald));
    flex-shrink: 0;
    display: inline-block;
}

.price-cell {
    padding: 1rem 1.1rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--charcoal);
}

.highlight-col {
    background: rgba(30, 144, 255, 0.06);
}

.pricing-table thead th.highlight-col {
    background: rgba(255,255,255,0.12);
}

/* Pricing Notes */
.pricing-notes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eef0f4;
}

.pricing-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: #f7f9fc;
    border-radius: 10px;
    border-left: 3px solid var(--sky-blue);
}

.pricing-note span {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.pricing-note p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
    .fare-finder-controls {
        grid-template-columns: 1fr 1fr;
    }
    .fare-result {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 560px) {
    .fare-finder-controls {
        grid-template-columns: 1fr;
    }
    .fare-result {
        flex-direction: column;
        text-align: center;
    }
    .pricing-table-wrap {
        padding: 1.5rem 1rem;
    }
}

/* ============================================================
   MAIN CAROUSEL — 3 PREMIUM BANNERS
   ============================================================ */
.main-carousel-section {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
}

/* ── Slides ── */
.mc-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}
.mc-slide.active {
    opacity: 1;
    pointer-events: all;
}

/* ── Backgrounds ── */
.mc-bg { position: absolute; inset: 0; }

/* BG 1 — Night */
.mc-bg-1 { background: #040e1f; }
.mc-stars {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(1px 1px at 8%  12%, #fff 0%, transparent 100%),
        radial-gradient(1px 1px at 22%  6%, #fff 0%, transparent 100%),
        radial-gradient(1px 1px at 38% 18%, #fff 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 58%  4%, rgba(255,255,255,.85) 0%, transparent 100%),
        radial-gradient(1px 1px at 73% 16%, #fff 0%, transparent 100%),
        radial-gradient(1px 1px at 87%  9%, #fff 0%, transparent 100%),
        radial-gradient(1px 1px at 14% 32%, rgba(255,255,255,.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 52% 28%, rgba(255,255,255,.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 78% 26%, rgba(255,255,255,.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 93% 21%, rgba(255,255,255,.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 3%  45%, rgba(255,255,255,.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 65% 38%, rgba(255,255,255,.35) 0%, transparent 100%);
}
.mc-runway {
    position: absolute; bottom: 0; left: 0; right: 0; height: 180px;
    background: linear-gradient(to top, rgba(30,144,255,.2) 0%, rgba(30,144,255,.06) 60%, transparent 100%);
}
.mc-runway::before {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 3px; height: 140px;
    background: linear-gradient(to top, rgba(30,144,255,.8), transparent);
    box-shadow: -70px 0 0 rgba(30,144,255,.2), 70px 0 0 rgba(30,144,255,.2);
}
.mc-glow-orb {
    position: absolute; right: 80px; top: 50%; transform: translateY(-55%);
    width: 380px; height: 380px; border-radius: 50%;
    background: radial-gradient(circle, rgba(30,144,255,.2) 0%, rgba(10,35,66,.04) 70%, transparent 100%);
}

/* BG 2 — Sunrise split */
.mc-bg-2 { overflow: hidden; }
.mc-split-dark {
    position: absolute; inset: 0; right: 45%;
    background: linear-gradient(135deg, #0A2342 0%, #0d2d54 100%);
}
.mc-split-amber {
    position: absolute; inset: 0; left: 55%;
    background: linear-gradient(135deg, #f7a800 0%, #e8890a 100%);
}
.mc-split-line {
    position: absolute; top: 0; bottom: 0; left: calc(55% - 2px);
    width: 4px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,.45), transparent);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
/* diagonal cut */
.mc-bg-2::after {
    content: ''; position: absolute; top: 0; bottom: 0;
    left: calc(55% - 60px); width: 120px;
    background: linear-gradient(105deg, #0d2d54 50%, #f7a800 50%);
}

/* BG 3 — Dark speed */
.mc-bg-3 { background: #070f1c; }
.mc-speed-lines {
    position: absolute; inset: 0;
    background:
        linear-gradient(100deg, transparent 28%, rgba(192,199,209,.04) 29%, rgba(192,199,209,.04) 29.5%, transparent 30%),
        linear-gradient(100deg, transparent 44%, rgba(192,199,209,.06) 45%, rgba(192,199,209,.06) 45.5%, transparent 46%),
        linear-gradient(100deg, transparent 58%, rgba(192,199,209,.04) 59%, rgba(192,199,209,.04) 59.4%, transparent 60%),
        linear-gradient(100deg, transparent 70%, rgba(30,144,255,.08) 71%, rgba(30,144,255,.08) 71.6%, transparent 72%);
}
.mc-orb-tr {
    position: absolute; top: -100px; right: -100px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(30,144,255,.14) 0%, transparent 70%);
}
.mc-silver-bar {
    position: absolute; top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%);
    background: linear-gradient(90deg,
        transparent 0%, rgba(192,199,209,.1) 10%,
        rgba(192,199,209,.5) 38%, rgba(30,144,255,.9) 50%,
        rgba(192,199,209,.5) 62%, rgba(192,199,209,.1) 90%, transparent 100%);
}

/* ── Inner layouts ── */
.mc-inner {
    position: relative; z-index: 2;
    height: 100%; max-width: 1300px;
    margin: 0 auto; padding: 0 64px;
    display: flex; align-items: center; gap: 40px;
}

/* Slide 1 layout */
.mc-content { flex: 1; }
.mc-plane-zone {
    flex-shrink: 0; display: flex; align-items: center; justify-content: center;
    width: 260px;
}
.mc-plane {
    font-size: 160px; line-height: 1;
    filter: drop-shadow(0 0 30px rgba(30,144,255,.8)) drop-shadow(0 0 60px rgba(30,144,255,.4));
    animation: mcFloat 4s ease-in-out infinite;
    transform: rotate(-8deg);
}
@keyframes mcFloat {
    0%,100% { transform: translateY(0)    rotate(-8deg); }
    50%      { transform: translateY(-18px) rotate(-5deg); }
}

/* Slide 2 layout */
.mc-inner-split { padding: 0; gap: 0; }
.mc-split-left {
    width: 55%; padding: 0 64px;
    display: flex; flex-direction: column; justify-content: center; height: 100%;
}
.mc-split-right {
    width: 45%;
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: 14px; height: 100%;
    background: linear-gradient(135deg, #f7a800 0%, #e8890a 100%);
}
.mc-logo-big {
    width: 150px; height: 150px; object-fit: contain;
    filter: drop-shadow(0 4px 18px rgba(0,0,0,.3));
}
.mc-tagline-block {
    text-align: center; color: #0A2342;
    font-weight: 800; font-size: 14px; line-height: 1.3;
}
.mc-tagline-block span {
    display: block; font-weight: 400; font-size: 12px;
    color: rgba(10,35,66,.7); margin-top: 4px;
}
.mc-stars-row { color: #0A2342; font-size: 20px; letter-spacing: 3px; }

/* Slide 3 layout */
.mc-inner-speed { justify-content: space-between; }
.mc-speed-left { flex: 1; }
.mc-speed-right {
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    width: 260px;
}
.mc-logo-glow {
    width: 200px; height: 200px; object-fit: contain;
    filter: drop-shadow(0 0 24px rgba(30,144,255,.6)) drop-shadow(0 0 50px rgba(30,144,255,.25));
    animation: mcPulse 3s ease-in-out infinite;
}
@keyframes mcPulse {
    0%,100% { filter: drop-shadow(0 0 24px rgba(30,144,255,.6)) drop-shadow(0 0 50px rgba(30,144,255,.25)); }
    50%      { filter: drop-shadow(0 0 36px rgba(30,144,255,.9)) drop-shadow(0 0 70px rgba(30,144,255,.4)); }
}

/* ── Typography ── */
.mc-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(30,144,255,.15); border: 1px solid rgba(30,144,255,.4);
    border-radius: 50px; padding: 6px 16px;
    color: #1E90FF; font-size: 12px; font-weight: 600;
    letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px;
}
.mc-dot { width: 6px; height: 6px; border-radius: 50%; background: #1E90FF; display: block; }
.mc-eyebrow-blue { color: #1E90FF; font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 12px; }
.mc-eyebrow-line {
    display: flex; align-items: center; gap: 10px;
    font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
    color: #C0C7D1; font-weight: 600; margin-bottom: 14px;
}
.mc-line-accent { display: block; width: 28px; height: 2px; background: #1E90FF; flex-shrink: 0; }

.mc-headline {
    font-family: 'Poppins', sans-serif; font-weight: 900;
    font-size: 54px; line-height: 1.05; color: #fff;
    text-shadow: 0 2px 20px rgba(0,0,0,.4); margin-bottom: 16px;
}
.mc-headline em {
    font-style: normal;
    background: linear-gradient(90deg, #1E90FF, #00d4ff);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.mc-headline-split strong { color: #FFB800; display: block; }
.mc-headline-speed { font-size: 58px; line-height: .98; letter-spacing: -1px; }
.mc-blue {
    background: linear-gradient(90deg, #1E90FF, #00cfff);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.mc-sub {
    color: rgba(255,255,255,.78); font-size: 16px; line-height: 1.65;
    margin-bottom: 26px; font-weight: 400;
}
.mc-sub-muted { color: rgba(255,255,255,.72); }
.mc-sub-silver { color: #C0C7D1; }

/* badges (slide 1) */
.mc-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
.mc-badge {
    display: flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px; padding: 8px 14px;
    color: rgba(255,255,255,.9); font-size: 13px; font-weight: 600;
}

/* pills (slide 3) */
.mc-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.mc-pill {
    border: 1px solid rgba(192,199,209,.35); color: #C0C7D1;
    font-size: 12px; font-weight: 600; padding: 7px 14px;
    border-radius: 50px; letter-spacing: .05em;
}
.mc-pill-hot { border-color: #1E90FF; color: #1E90FF; background: rgba(30,144,255,.1); }

/* CTA row */
.mc-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.mc-btn-white {
    background: #fff; color: #0A2342 !important;
    font-weight: 800; box-shadow: 0 6px 20px rgba(0,0,0,.2);
}
.mc-btn-white:hover { background: #f0f4ff; transform: translateY(-2px); }

/* ── Arrows ── */
.mc-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 10; width: 52px; height: 52px; border-radius: 50%;
    background: rgba(255,255,255,.14); backdrop-filter: blur(8px);
    border: 2px solid rgba(255,255,255,.28);
    color: #fff; font-size: 2.2rem; font-weight: 300; line-height: 1;
    cursor: pointer; transition: all .3s;
    display: flex; align-items: center; justify-content: center;
}
.mc-arrow-prev { left: 20px; }
.mc-arrow-next { right: 20px; }
.mc-arrow:hover { background: rgba(30,144,255,.75); border-color: #1E90FF; transform: translateY(-50%) scale(1.1); }

/* ── Dot indicators ── */
.mc-dots {
    position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 10px; z-index: 10;
}
.mc-dot-ind {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,.4); border: 2px solid rgba(255,255,255,.6);
    cursor: pointer; transition: all .35s;
}
.mc-dot-ind:hover { background: rgba(255,255,255,.7); }
.mc-dot-ind.active { width: 36px; border-radius: 5px; background: #1E90FF; border-color: #1E90FF; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .mc-plane-zone, .mc-speed-right { display: none; }
    .mc-headline { font-size: 42px; }
    .mc-headline-speed { font-size: 46px; }
    .mc-inner { padding: 0 40px; }
    .mc-split-left { padding: 0 40px; width: 60%; }
    .mc-split-right { width: 40%; }
    .main-carousel-section { height: 460px; }
}
@media (max-width: 700px) {
    .main-carousel-section { height: auto; min-height: 420px; }
    .mc-inner { padding: 40px 24px; flex-direction: column; align-items: flex-start; }
    .mc-inner-split { flex-direction: column; }
    .mc-split-left { width: 100%; padding: 32px 24px; }
    .mc-split-right { width: 100%; padding: 24px; }
    .mc-headline { font-size: 34px; }
    .mc-headline-speed { font-size: 36px; }
    .mc-sub { font-size: 14px; }
    .mc-logo-big { width: 100px; height: 100px; }
    .mc-ctas { flex-direction: column; }
    .mc-ctas .btn { text-align: center; }
}

/* ============================================================
   BOOKING WIDGET — LIVE QUOTE CALCULATOR
   ============================================================ */
.booking-subtitle {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    margin-top: -1.25rem;
    margin-bottom: 1.75rem;
}

.addon-note {
    font-size: 0.78rem;
    color: #888;
    font-weight: 400;
}

.quote-display-group {
    grid-column: 1 / -1;
}

.quote-box {
    background: linear-gradient(135deg, #f0f6ff, #e8f5ee);
    border: 2px solid var(--sky-blue);
    border-radius: 14px;
    padding: 1.5rem;
    animation: quoteSlideIn 0.4s ease-out;
}

@keyframes quoteSlideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.quote-breakdown {
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.quote-breakdown .qb-line {
    display: flex;
    justify-content: space-between;
    padding: 2px 0;
}

.quote-breakdown .qb-discount {
    color: var(--emerald);
    font-weight: 600;
}

.quote-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 2px dashed rgba(30,144,255,.3);
}

.quote-label {
    font-weight: 700;
    color: var(--navy);
    font-size: 1.1rem;
}

.quote-price {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--sky-blue);
}

.quote-note {
    font-size: 0.8rem;
    color: #2E8B57;
    margin-top: 0.75rem;
    text-align: center;
}
