:root {
    --kps-navy-deep: #03045E;
    --kps-navy-soft: #0077B6;
    --brand-primary: #00B4D8;
    --brand-cyan: #00B4D8;
    --brand-sky: #90E0EF;
    --brand-ice: #CAF0F8;
    --kps-text-main: #003049;
    --kps-text-muted: #5e60ce;
    --kps-site-bg: #f8fbff;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.2);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-soft: 0 10px 30px rgba(3, 4, 94, 0.1);
    --radius-md: 16px;
    --anim-fast: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    font-size: 94%; /* Reduces base from 16px to ~15px, shrinking everything */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--kps-navy-deep);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    color: var(--kps-navy-deep);
}

.text-accent {
    color: var(--brand-cyan);
}

.margin-top {
    margin-top: 2rem;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.75rem 1.6rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: var(--anim-fast);
    border: none;
    font-size: 0.95rem;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--kps-navy-deep) 0%, var(--kps-navy-soft) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(3, 4, 94, 0.25);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.45);
    background: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-primary) 100%);
}

.btn-secondary {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.55);
    color: var(--white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--brand-cyan);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--brand-cyan);
    color: var(--brand-cyan);
}

.btn-outline:hover {
    background: var(--brand-cyan);
    color: var(--white);
}

.full-width {
    width: 100%;
    justify-content: center;
}

.w-100 {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.35s ease, background 0.35s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 2rem 0.8rem 0;
    min-height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--kps-navy-deep);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.logo img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 3px 10px rgba(0, 119, 182, 0.3));
    transition: var(--anim-fast);
    margin-left: 30px; /* Moved further right */
}

.logo:hover img {
    filter: drop-shadow(0 4px 14px rgba(0, 180, 216, 0.45));
    transform: scale(1.04);
}

.logo-icon {
    color: var(--brand-cyan);
    font-size: 2.2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--kps-navy-deep);
    font-weight: 500;
    transition: var(--anim-fast);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--brand-cyan);
    font-weight: 700;
}

.nav-links .nav-btn {
    color: var(--white);
}

.nav-links .nav-btn:hover {
    color: var(--white);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--kps-navy-deep);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 110px;
    background: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?auto=format&fit=crop&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(3, 4, 94, 0.95) 0%, rgba(2, 62, 138, 0.75) 50%, rgba(0, 119, 182, 0.4) 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    width: 100%;
}

.hero-content {
    flex: 1;
    color: var(--white);
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: -0.03em;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.highlight {
    background: linear-gradient(135deg, #CAF0F8 0%, #00B4D8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 4px 12px rgba(0, 180, 216, 0.2));
}

.highlight-alt {
    color: var(--brand-cyan);
    font-weight: 800;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85) !important;
    margin-bottom: 2.5rem;
    max-width: 650px;
    line-height: 1.8;
    text-align: justify;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-form-wrapper {
    flex: 0 0 500px;
}

.hero-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 1.8rem 2rem;
    border-radius: 20px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
}

.hero-form h3 {
    color: var(--white);
    margin-bottom: 1.1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Hero form field labels */
.qb-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 0.3rem;
    text-align: left;
}

/* Forms */
.form-group {
    margin-bottom: 1rem;
}

.form-group.double {
    display: flex;
    gap: 1rem;
}

input,
select,
textarea {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--white);
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: var(--anim-fast);
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    left: 1rem;
    color: #778da9;
    font-size: 1.1rem;
    z-index: 2;
}

.input-with-icon input,
.input-with-icon select,
.input-with-icon textarea {
    padding: 0.7rem 1.2rem;
    padding-left: 2.8rem;
    border: 1px solid #e0e4e8;
    background: #f8fafc;
    color: #0d1b2a;
    border-radius: 8px;
    height: 48px;
}

.input-with-icon textarea {
    height: auto;
    min-height: 80px;
}

.input-with-icon input:focus,
.input-with-icon select:focus,
.input-with-icon textarea:focus {
    border-color: var(--brand-cyan);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.15);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--brand-cyan);
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.15);
}

.hero-form input,
.hero-form select {
    background: #ffffff;
    color: var(--kps-navy-deep);
    border: 1px solid #e0e4e8;
}

/* Quick Estimate Form Inputs */
.booking-field-input {
    width: 100%;
    padding: 0.75rem 1.1rem;
    background: rgba(255, 255, 255, 0.97);
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: #0d1b2a;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    color-scheme: light;
    box-sizing: border-box;
    display: block;
    text-align: left;
}

.booking-field-input:focus {
    border-color: #00B4D8;
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.25);
    background: #ffffff;
}

.booking-field-input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

/* Date & Time inputs — allow native browser picker to render */
.booking-field-input[type="date"],
.booking-field-input[type="time"] {
    cursor: pointer;
    min-height: 46px;
    color: #0d1b2a;
}

.field-container {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 0.75rem;
}

.form-row .field-container {
    flex: 1;
    min-width: 0;
}

/* Google Places Autocomplete dropdown */
.pac-container {
    z-index: 99999 !important;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border: 1px solid #e2e8f0;
    font-family: 'Outfit', sans-serif;
    margin-top: 4px;
}

.pac-item {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    cursor: pointer;
}

.pac-item:hover {
    background: #f0f9ff;
}

.pac-item-query {
    font-size: 0.95rem;
    color: #0d1b2a;
}


.glass-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.premium-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
    border-color: var(--brand-sky);
}

/* Section Spacing Utility */
.section-padding {
    padding: 1.5rem 2rem;
}

/* Services */
.services,
.fleet,
.contact-section,
.popular-cities,
.popular-routes,
.feedback-section {
    padding: 1.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--kps-navy-deep);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--kps-text-muted);
    font-size: 1.1rem;
}

.section-header p {
    color: var(--kps-text-muted);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 50px rgba(0, 180, 216, 0.38);
    border-color: var(--brand-cyan);
}

.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--brand-ice), var(--brand-sky));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--brand-primary);
    transition: var(--anim-fast);
}

.service-card:hover .icon-box {
    background: var(--brand-primary);
    color: var(--white);
    transform: scale(1.1);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--kps-text-muted);
}

/* Fleet */
.fleet {
    background: var(--site-bg-offset);
    border-radius: 40px;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.fleet-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
}

.fleet-card:hover {
    transform: translateY(-14px) scale(1.03);
    box-shadow: 0 28px 60px rgba(0, 180, 216, 0.40);
    border-color: var(--brand-cyan);
}

.fleet-card:hover .fleet-image i {
    transform: scale(1.1);
    color: var(--white);
    opacity: 1;
}

.fleet-image {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: var(--anim-fast);
}

.type-sedan {
    background: linear-gradient(135deg, #1f2937, #111827);
}

.type-suv {
    background: linear-gradient(135deg, #0A1128, #000000);
}

.type-innova, .type-muv {
    background: linear-gradient(135deg, #312e81, #1e1b4b);
}

.fleet-info {
    padding: 2.5rem 2rem;
}

.fleet-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.fleet-info p {
    color: var(--kps-text-muted);
    margin-bottom: 1.5rem;
    min-height: 48px;
}

.fleet-specs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.fleet-specs span {
    font-size: 0.9rem;
    color: #444;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.fleet-specs .fa-user {
    color: var(--brand-primary);
    font-size: 1.5rem;
}

.fleet-specs .fa-suitcase {
    color: var(--brand-cyan);
    font-size: 1.5rem;
}

.fleet-actions {
    text-align: center;
    margin-top: 1rem;
}

.book-btn {
    background: var(--kps-navy-deep) !important;
    color: var(--white) !important;
    padding: 0.8rem 3rem !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-btn:hover {
    background: var(--brand-primary) !important;
    color: #fff !important;
    transform: translateY(-2px);
}

/* Contact / Routes */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1rem 0;
}

.coverage-badge {
    background: transparent;
    color: #fff;
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    text-transform: capitalize;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.coverage-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
}

.coverage-desc {
    color: #555;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.states-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.state-card {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 2px solid transparent;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.state-card:hover {
    transform: translateY(-12px) scale(1.04);
    border-color: var(--brand-cyan);
    box-shadow: 0 20px 45px rgba(0, 180, 216, 0.38);
}

.state-card:hover .state-icon {
    transform: scale(1.2);
    color: var(--brand-cyan);
}

.state-icon {
    font-size: 2.2rem;
    color: var(--brand-primary);
    margin-bottom: 1.2rem;
    display: block;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.state-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: #0d1b2a;
}

.state-card p {
    font-size: 0.85rem;
    color: #778da9;
    margin: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-item .icon {
    width: 50px;
    height: 50px;
    background: var(--brand-ice);
    color: var(--brand-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
}

.contact-item h4 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--kps-text-muted);
}

.contact-item a {
    color: var(--kps-text-muted);
    text-decoration: none;
    transition: var(--anim-fast);
}

.contact-item a:hover {
    color: var(--brand-cyan);
}

.full-booking-form h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--kps-text-muted);
    margin-bottom: 2rem;
}

.form-note {
    font-size: 0.85rem;
    color: var(--kps-text-muted);
    text-align: center;
    margin-top: 1.5rem;
}

form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--kps-navy-deep);
    font-size: 0.95rem;
}

/* Footer */
footer {
    background: var(--kps-navy-deep);
    color: var(--white);
    padding: 4rem 2rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-brand h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.footer-links p {
    color: var(--kps-text-muted);
    font-size: 0.9rem;
}

/* Floating Widgets */
.floating-widgets {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--anim-fast);
    position: relative;
}

.whatsapp-fab {
    background: #25D366;
}

.whatsapp-fab:hover {
    background: #128C7E;
    transform: scale(1.1);
}

.phone-fab {
    background: var(--kps-navy-deep);
}

.phone-fab:hover {
    background: var(--brand-cyan);
    transform: scale(1.1);
}

.fab-tooltip {
    position: absolute;
    right: 75px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--anim-fast);
    white-space: nowrap;
}

.fab:hover .fab-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Animations & Reveals */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.animate-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
    transition-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
    transition-delay: 0.4s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}



/* Custom Added Sections */

/* ── State Coverage Strip (routes page) ── */
.state-strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.8rem 2rem;
    flex: 1 1 180px;
    border-right: 1px solid #f1f5f9;
    transition: all 0.25s ease;
    cursor: default;
}

.state-strip-item:last-child {
    border-right: none;
}

.state-strip-item i {
    font-size: 2rem;
    color: var(--brand-cyan);
    margin-bottom: 0.75rem;
    transition: transform 0.25s ease;
}

.state-strip-item strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: var(--kps-navy-deep);
    margin-bottom: 0.3rem;
}

.state-strip-item span {
    font-size: 0.82rem;
    color: var(--brand-cyan);
    font-weight: 600;
}

.state-strip-item:hover {
    background: #f0f9ff;
    border-radius: 12px;
}

.state-strip-item:hover i {
    transform: translateY(-4px) scale(1.1);
    color: var(--brand-primary);
}

@media (max-width: 640px) {
    .state-strip-item {
        flex: 1 1 45%;
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
        padding: 1.2rem 1rem;
    }
}

/* Pricing Section */
.pricing-section {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.pricing-table-wrap {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th {
    background: linear-gradient(135deg, var(--kps-navy-deep), var(--kps-navy-soft));
    color: var(--white);
    padding: 1.5rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-table td {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    vertical-align: middle;
    transition: all 0.2s ease;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr:hover {
    background: linear-gradient(90deg, rgba(0, 180, 216, 0.1) 0%, rgba(0, 119, 182, 0.04) 100%);
    box-shadow: inset 4px 0 0 var(--brand-cyan);
    transform: translateX(3px);
    transition: all 0.2s ease;
}

.price-chip {
    background: var(--brand-ice);
    color: var(--brand-primary);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--brand-sky);
}

.price-desc {
    color: var(--kps-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Coverage Section */
.wide-coverage-section {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.wide-coverage-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, var(--brand-cyan), var(--kps-navy-deep));
}

.wide-coverage-section h2 {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: var(--kps-navy-deep);
    font-size: 2rem;
}

.coverage-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.coverage-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--kps-text-muted);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 1.2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: var(--anim-fast);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.coverage-list li:hover {
    transform: translateX(10px);
    border-color: var(--brand-cyan);
}

.coverage-list li i {
    color: var(--brand-primary);
    margin-top: 2px;
    font-size: 1.5rem;
    background: var(--brand-ice);
    padding: 10px;
    border-radius: 50%;
}

.coverage-list li strong {
    color: var(--kps-navy-deep);
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}

/* Popular Cities */
.popular-cities {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

.header-line {
    width: 60px;
    height: 3px;
    background: var(--brand-cyan);
    margin: 0.5rem auto 2rem;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.city-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--anim-fast);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Section Utilities */
.popular-cities-section, .popular-routes-section {
    padding: 40px 5% 30px;
    background: var(--white);
}

.header-line {
    width: 60px;
    height: 4px;
    background: var(--brand-cyan);
    margin: 1rem auto;
    border-radius: 2px;
}

/* Swiper General */
.swiper {
    padding: 1rem 1rem 2.5rem !important;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--kps-navy-deep) !important;
    background: var(--white);
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    box-shadow: var(--shadow-soft);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.2rem !important;
    font-weight: 900;
}

.swiper-pagination-bullet-active {
    background: var(--brand-cyan) !important;
}

/* City Card Styling (Image 2 Match) */
.city-slide-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
    cursor: pointer;
}

.city-slide-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 50px rgba(0, 180, 216, 0.38);
    border-color: var(--brand-cyan);
}

.city-slide-card:hover .city-card-header i {
    transform: scale(1.15);
    color: rgba(255,255,255,0.95);
}

.city-card-header {
    height: 160px;
    background: linear-gradient(145deg, var(--kps-navy-deep) 0%, var(--kps-navy-soft) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.city-card-header i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.6);
}

.city-card-body {
    padding: 1.8rem;
    flex-grow: 1;
}

.city-card-body h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--kps-navy-deep);
}

.city-card-body p {
    font-size: 0.95rem;
    color: var(--kps-text-muted);
    margin-bottom: 1.5rem;
}

.popular-spots-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-cyan);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.popular-spots-title::before {
    content: '';
    width: 2px;
    height: 14px;
    background: var(--brand-cyan);
}

.spots-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.spot-tag {
    background: #f1f5f9;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
}

/* Route Card Styling (Image 3 Match) */
.route-slide-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    text-align: center;
    padding-bottom: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
    cursor: pointer;
}

.route-slide-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 50px rgba(0, 180, 216, 0.38);
    border-color: var(--brand-cyan);
}

.route-slide-card:hover .route-card-header i {
    transform: scale(1.15);
    color: rgba(255,255,255,0.95);
}

.city-card-header i,
.route-card-header i {
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.route-card-header {
    height: 140px;
    background: linear-gradient(145deg, var(--kps-navy-deep) 0%, var(--kps-navy-soft) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.route-card-header i {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.route-card-body {
    padding: 0 1.5rem;
}

.route-title {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--kps-navy-deep);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.route-title i {
    color: var(--brand-cyan);
    font-size: 1rem;
}

.route-btn {
    display: inline-block;
    padding: 0.7rem 2.5rem;
    border: 2px solid var(--kps-navy-deep);
    border-radius: 30px;
    color: var(--kps-navy-deep);
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: var(--anim-fast);
}

.route-btn:hover {
    background: var(--kps-navy-deep);
    color: var(--white);
}

.route-desc {
    font-size: 0.9rem;
    color: var(--kps-text-muted);
    line-height: 1.5;
}

.popular-routes {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.route-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid transparent;
}

.route-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.route-header {
    text-align: center;
    padding: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
}

.route-header i {
    font-size: 0.8rem;
    color: var(--brand-primary);
    margin: 0 0.5rem;
}

.route-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.route-info {
    padding: 1.5rem;
}

.route-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.route-meta i {
    color: var(--brand-primary);
    margin-right: 0.3rem;
}

.route-price {
    color: var(--brand-primary);
    font-size: 1.1rem;
}

.route-info p {
    font-size: 0.9rem;
    color: #666;
}

.text-center {
    text-align: center;
}

/* Premium CTA Banner */
.cta-premium-banner,
.cta-banner {
    background: linear-gradient(135deg, #03045E 0%, #0077B6 100%);
    padding: 4.5rem 0;
    margin: 0;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.cta-premium-banner::before,
.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-cyan), var(--brand-sky));
}

/* Subtle radial glow accent */
.cta-premium-banner::after,
.cta-banner::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,180,216,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-flex,
.cta-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.cta-text,
.cta-content h2,
.cta-content p {
    flex: 1;
}

.cta-text h2,
.cta-content h2 {
    color: #fff !important;
    font-size: 2.4rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-text p,
.cta-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.72) !important;
    line-height: 1.7;
    margin: 0 !important;
}

.cta-button-side,
.cta-actions {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    min-width: 220px;
}

.btn-premium-cta,
.btn-cta-primary {
    background: transparent;
    color: #fff !important;
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.5);
    width: 100%;
    text-align: center;
}

.btn-premium-cta:hover,
.btn-cta-primary:hover {
    background: var(--brand-cyan);
    border-color: var(--brand-cyan);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 180, 216, 0.4);
    color: #fff !important;
}

.btn-premium-cta.secondary-cta {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff !important;
}

.btn-premium-cta.secondary-cta:hover {
    background: var(--brand-cyan);
    border-color: var(--brand-cyan);
    color: #fff !important;
}

.btn-cta-secondary {
    display: none;
}

@media (max-width: 992px) {
    .cta-flex {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }

    .states-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .states-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-text h2 {
        font-size: 2rem;
    }
}

/* --- PREMIUM FEEDBACK SECTION --- */
.feedback-section {
    max-width: 1200px;
    margin: 2.5rem auto;
    padding: 0 2rem;
}

.feedback-container {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 3rem;
    align-items: start;
}

.feedback-form-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feedback-form-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(0, 180, 216, 0.12);
    border-color: var(--brand-sky);
}

.feedback-form-card h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -0.02em;
}

.feedback-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-height: 700px;
    overflow-y: auto;
    padding-right: 1.5rem;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f8fafc;
}

.feedback-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 2px solid transparent;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 2px solid #f1f5f9;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.feedback-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00B4D8, #0077B6, #03045E);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    border-radius: 20px 20px 0 0;
}

.feedback-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(160deg, #f0f9ff 0%, #ffffff 60%);
    border-color: #00B4D8;
    box-shadow:
        0 20px 50px rgba(0, 119, 182, 0.18),
        0 8px 20px rgba(0, 180, 216, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.feedback-card:hover::before {
    transform: scaleX(1);
}

.feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.feedback-user {
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
}

.feedback-user i {
    color: #cbd5e1;
    font-size: 1.4rem;
}

.feedback-rating {
    color: var(--brand-primary);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.feedback-message {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.feedback-message::before {
    content: '“';
    position: absolute;
    left: -1rem;
    top: -0.5rem;
    font-size: 3rem;
    color: rgba(0, 119, 182, 0.1);
    font-family: serif;
}

.feedback-date {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
    text-align: right;
}

@media (max-width: 992px) {
    .feedback-container {
        grid-template-columns: 1fr;
    }
}

/* Modern Footer */
.modern-footer { 
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 45%, #0f3460 100%);
    color: #a8b2d1; 
    padding: 4rem 2rem 2rem; 
    margin-top: 0;
    border-top: 4px solid;
    border-image: linear-gradient(90deg, #00B4D8, #90E0EF, #00B4D8) 1;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(0,180,216,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.modern-footer::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(0,119,182,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.footer-container { 
    max-width: 1200px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: 1.5fr 1fr 1.5fr; 
    gap: 3rem; 
    margin-bottom: 3rem; 
}

.footer-section {
    text-align: left;
    position: relative;
    z-index: 1;
}

.footer-section h2 { 
    color: var(--white); 
    margin-bottom: 1.2rem; 
    font-size: 1.4rem; 
    display: block;
    font-weight: 700;
}

.brand-section {
    padding-left: 15px;
}

.brand-section img {
    margin-left: -45px !important; 
}

.footer-section h3 { 
    color: var(--brand-sky); 
    margin-bottom: 1rem; 
    font-size: 0.85rem; 
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: static;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 0.6rem;
}

.footer-section h3::before,
.footer-section h3::after { 
    display: none; 
}

.brand-section img {
    margin-left: -35px; /* Moved slightly to the right for better alignment */
    display: block;
}

.brand-section p { 
    line-height: 1.6; 
    margin-bottom: 1.5rem; 
    color: #a8b2d1; 
    font-size: 0.9rem;
}

.social-links { 
    display: flex; 
    gap: 1rem; 
}

.social-links a { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    width: 38px; 
    height: 38px; 
    border-radius: 8px; 
    background: rgba(255,255,255,0.05); 
    color: var(--white); 
    text-decoration: none; 
    transition: var(--anim-fast); 
    border: 1px solid rgba(255,255,255,0.1); 
    font-size: 1.1rem;
}

.social-links a:hover { 
    background: var(--brand-primary); 
    transform: translateY(-3px); 
    border-color: var(--brand-primary); 
}

.links-section ul { 
    list-style: none; 
    padding: 0; 
}

.links-section ul li { 
    margin-bottom: 0.8rem; 
}

.links-section ul li a { 
    color: #a8b2d1; 
    text-decoration: none; 
    transition: var(--anim-fast); 
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
}

.links-section ul li a::before { 
    display: none; 
}

.links-section ul li a:hover { 
    color: var(--white);
    text-decoration: underline;
    transform: none;
}

.footer-contact-item { 
    margin-bottom: 1.2rem; 
    text-align: left; 
}

.fc-icon { 
    display: none; 
}

.fc-text p { 
    margin: 0 0 0.5rem 0; 
    line-height: 1.6; 
    color: #a8b2d1; 
    font-size: 0.9rem; 
}

.fc-text a { 
    color: #a8b2d1; 
    text-decoration: none; 
    transition: var(--anim-fast); 
}

.fc-text a:hover { 
    color: var(--white);
    text-decoration: underline;
}

.footer-bottom { 
    max-width: 1200px; 
    margin: 0 auto; 
    text-align: center; 
    padding-top: 1.5rem; 
    border-top: 1px solid rgba(255,255,255,0.08); 
}

.footer-bottom p { 
    margin: 0; 
    font-size: 0.82rem; 
    color: #6d7fa8; 
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section {
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .footer-section:last-child {
        border-bottom: none;
    }
}

/* Sub-page Hero Styling */
.sub-hero {
    height: 320px;
    background: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?auto=format&fit=crop&q=80') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-top: 110px;
    overflow: hidden;
}

.sub-hero .hero-overlay {
    background: linear-gradient(0deg, var(--kps-navy-deep) 0%, rgba(3, 4, 94, 0.7) 100%);
}

.sub-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.breadcrumb {
    font-size: 0.95rem;
    color: var(--brand-cyan);
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.sub-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {

    .contact-container,
    .hero-container {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .hero-container {
        align-items: center;
        text-align: center;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(29, 29, 31, 0.6) 0%, var(--kps-navy-deep) 100%);
    }

    .hero p {
        margin: 0 auto 2.5rem;
    }

    .hero-actions {
        justify-content: center;
        margin-bottom: 2rem;
    }

    .hero-form-wrapper {
        width: 100%;
        max-width: 500px;
    }

    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: all 0.4s ease;
    }

    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-links .nav-btn {
        background: var(--brand-cyan);
        color: var(--white) !important;
        width: 100%;
        border-radius: 8px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .services,
    .fleet,
    .contact-section {
        padding: 4rem 1.5rem;
    }
}

.form-row {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

/* Cleanup markers */

/* Hero Section Styles */

.hero-form.hero-booking-container {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.hero-form-title {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: -0.02em;
}

.field-container {
    margin-bottom: 1.25rem;
    width: 100%;
}

.kps-field {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #ffffff;
    color: #1e293b;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
}

.booking-field-input::placeholder {
    color: #64748b;
}

.booking-field-input:focus {
    background: #ffffff;
    border-color: var(--brand-cyan);
    box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.25);
}

select.booking-field-input option {
    background: #0f172a;
    color: #fff;
}

/* --- BRAND GRADIENT BUTTON 2.0 --- */
.btn-green-gradient {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-cyan) 100%);
    color: #fff !important;
    border: none;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 10px 25px -5px rgba(0, 119, 182, 0.4);
    text-transform: capitalize;
    letter-spacing: 0.01em;
    margin-top: 2rem;
}

.btn-green-gradient:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 35px -10px rgba(0, 180, 216, 0.6);
}

.btn-green-gradient:active {
    transform: translateY(-1px) scale(0.98);
}

/* --- PREMIUM MAIN BOOKING FORM (APPLE STYLE) --- */
.full-booking-form {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.modern-form {
    padding: 3rem;
    padding-bottom: 4rem;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.form-row-modern {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group-modern {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-label-top {
    font-size: 0.75rem;
    font-weight: 800;
    color: #6b7280;
    margin-bottom: 0.75rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding-left: 0.25rem;
}

.form-group-modern input, 
.form-group-modern select, 
.form-group-modern textarea {
    width: 100%;
    padding: 1.1rem 1.4rem;
    border-radius: 14px;
    border: 1.5px solid #f1f5f9;
    background: #f8fafc;
    color: #1e293b;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.form-group-modern textarea {
    min-height: 140px;
}

.form-group-modern input:focus, 
.form-group-modern select:focus, 
.form-group-modern textarea:focus {
    background: #ffffff;
    border-color: var(--brand-cyan);
    box-shadow: 0 0 0 5px rgba(0, 180, 216, 0.1);
}

.form-group-modern input::placeholder {
    color: #94a3b8;
}

@media (max-width: 768px) {
    .form-row-modern {
        flex-direction: column;
        gap: 1.25rem;
    }
    
    .form-group-modern input, 
    .form-group-modern select, 
    .form-group-modern textarea {
        padding: 0.9rem 1.1rem;
        font-size: 0.95rem;
        border-radius: 10px;
    }

    .form-label-top {
        margin-bottom: 0.5rem;
        font-size: 0.7rem;
    }
}

/* --- CONFIRMATION FORM RESPONSIVE UTILS --- */
.bk-pax-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.bk-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.bk-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.9rem;
    outline: none;
    font-family: inherit;
    box-sizing: border-box;
    background: #fff;
}

@media (max-width: 600px) {
    .bk-pax-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .bk-pax-item:last-child {
        grid-column: span 2;
    }
}

/* --- TRIP TYPE TOGGLE FIX --- */
.trip-toggle {
    display: flex;
    background: #f1f5f9;
    padding: 0.35rem;
    border-radius: 50px;
    gap: 0;
    border: 1px solid #e2e8f0;
    width: 100%;
    max-width: 320px;
}

.trip-toggle input {
    display: none;
}

.trip-toggle label {
    flex: 1;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 700;
    color: #64748b;
    transition: all 0.3s ease;
    margin: 0;
    text-align: center;
}

.trip-toggle input:checked + label {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-cyan) 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
}

/* User transitioned to BLUE COLOR */
.trip-toggle input:checked + label {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-cyan) 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
}

.hero-form.hero-booking-container .trip-toggle {
    background: rgba(0, 0, 0, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
}

.hero-form.hero-booking-container .trip-toggle label {
    color: #ffffff !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.hero-form.hero-booking-container .trip-toggle input:checked + label {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-cyan) 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.4) !important;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── FARE MODAL MOBILE RESPONSIVE ── */
@media (max-width: 640px) {
    #fare-modal > div {
        margin: 0.5rem auto !important;
        border-radius: 16px !important;
    }
    #fm-cards {
        grid-template-columns: 1fr !important;
        padding: 1rem !important;
        gap: 1rem !important;
    }
    #fare-modal > div > div:first-child {
        padding: 1.2rem 1rem !important;
    }
    #fare-modal > div > div:nth-child(2) {
        flex-direction: column !important;
        gap: 0.5rem !important;
        padding: 0.7rem 1rem !important;
    }
    #fare-modal > div > div:nth-child(2) > span:last-child {
        margin-left: 0 !important;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   KPS TRAVELS — SMOOTH ANIMATIONS & MOBILE RESPONSIVE OVERHAUL
   ═══════════════════════════════════════════════════════════════════ */

/* ── Prevent horizontal overflow everywhere ── */
html, body { overflow-x: hidden; max-width: 100%; }

/* ── Smooth scroll reveal animations ── */
@keyframes kps-fade-up {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes kps-fade-right {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

.animate-up {
    opacity: 0;
    transform: translateY(28px);
    animation: kps-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.animate-up.delay-1 { animation-delay: 0.15s; }
.animate-up.delay-2 { animation-delay: 0.30s; }

.animate-in-right {
    opacity: 0;
    transform: translateX(40px);
    animation: kps-fade-right 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

/* reveal: hidden until JS adds .active */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}
.reveal.delay-1 { transition-delay: 0.12s; }
.reveal.delay-2 { transition-delay: 0.24s; }
.reveal.active  { opacity: 1; transform: translateY(0); }

/* ── Hero container base ── */
.hero-container { gap: 2.5rem; }

/* ── States grid base ── */
.states-grid { grid-template-columns: repeat(5, 1fr); }

/* ─────────────────────────────────────────
   LARGE TABLET (max 1024px)
───────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3.8rem; }
    .hero-form-wrapper { flex: none; width: 100%; max-width: 520px; }
    .states-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}

/* ─────────────────────────────────────────
   TABLET (max 992px)
───────────────────────────────────────── */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        padding: 2rem 1.5rem 3rem;
        text-align: left;
    }
    .hero-content { width: 100%; }
    .hero-actions { justify-content: flex-start; }
    .hero p { margin: 0 0 2rem 0; text-align: left; }
    .hero-form-wrapper { flex: none; width: 100%; max-width: 560px; margin: 0 auto; }
    .states-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}

/* ─────────────────────────────────────────
   MOBILE (max 768px)
───────────────────────────────────────── */
@media (max-width: 768px) {
    /* Navbar */
    .menu-toggle { display: block; }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.3s ease-in-out;
    }
    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    .nav-links a {
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--border);
        text-align: left;
    }
    .nav-links a:last-child {
        border-bottom: none;
    }
    .logo img { margin-left: 15px; }
    
    /* Hero */
    .hero { padding-top: 120px; min-height: 100vh; }
    .hero-container { padding: 3rem 1rem 3rem; gap: 1.5rem; text-align: left; align-items: flex-start; }
    .hero h1 { font-size: clamp(2.8rem, 12.5vw, 4rem); line-height: 1.12; letter-spacing: -0.02em; text-align: left; }
    .hero p  { font-size: 1.05rem; text-align: justify; margin: 0 0 1.5rem 0;}
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 0.75rem; width: 100%; }
    .hero-actions a { width: 100%; max-width: 100%; justify-content: center; }

    /* Hero form */
    .hero-form-wrapper { max-width: 100%; }
    .hero-form.hero-booking-container { padding: 1.4rem 1.1rem; }
    .hero-form-title { font-size: 1.2rem; margin-bottom: 0.9rem; }

    /* Booking form rows */
    .form-row { flex-direction: column; gap: 0.6rem; }
    .field-container { margin-bottom: 0.5rem; }
    .form-row .booking-field-input { font-size: 1rem; text-align: left; }
    .trip-toggle { max-width: 100%; }

    /* States */
    .states-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
    .state-card  { padding: 1.2rem 0.8rem; }
    .state-card h3 { font-size: 1rem; }

    /* Grid sections */
    .fleet-grid    { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }

    /* Pricing table */
    .pricing-table { font-size: 0.82rem; table-layout: fixed; width: 100%; }
    .pricing-table td, .pricing-table th { padding: 0.6rem 0.5rem; word-break: break-word; }
    .price-desc { font-size: 0.75rem; }

    /* CTA banner */
    .cta-flex { flex-direction: column; gap: 1.5rem; text-align: center; }
    .cta-text h2 { font-size: 1.5rem; }
    .cta-button-side { align-items: center; }
    .btn-premium-cta { width: 100%; max-width: 300px; justify-content: center; }

    /* Modern form */
    .modern-form { padding: 1.5rem 1rem; }
    .form-row-modern { flex-direction: column; gap: 1rem; }

    /* Section headers */
    .section-header h2 { font-size: 1.8rem; }

    /* Swiper nav arrows */
    .swiper-button-next, .swiper-button-prev { display: none; }

    /* Footer */
    .footer-container { grid-template-columns: 1fr; gap: 1.5rem; }
    .brand-section { padding-left: 1rem; }
    .brand-section img { margin-left: -45px !important; }
    .modern-footer { padding: 2rem 1rem 1rem; }
}

/* ─────────────────────────────────────────
   SMALL MOBILE (max 480px)
───────────────────────────────────────── */
@media (max-width: 480px) {
    .hero-container { padding: 2.5rem 1rem 3rem; }
    .hero h1 { font-size: clamp(2.2rem, 13vw, 3.5rem); }
    .hero-form.hero-booking-container { padding: 1.1rem 0.85rem; border-radius: 16px; }
    .states-grid { gap: 0.6rem; }
    .state-card  { padding: 1rem 0.6rem; }
    .section-header h2 { font-size: 1.5rem; }
    .booking-field-input { padding: 0.65rem 0.9rem; font-size: 0.88rem; }
    #fare-modal { padding: 0.25rem; }
    #fare-modal > div { margin: 0.25rem auto !important; border-radius: 14px !important; }
    #fm-cards { grid-template-columns: 1fr !important; padding: 0.75rem !important; gap: 0.75rem !important; }
}
