:root {
    --primary-yellow: #FFB800;
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --text-dark: #1A1A1A;
    --text-light: #555555;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 16px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    z-index: 9999;
    width: 100%;
}

.logo img {
    height: 70px;
    max-width: 100%;
    object-fit: contain;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary-yellow);
}

.btn-yellow {
    display: inline-block;
    background-color: var(--primary-yellow);
    color: #111;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-yellow:hover { background-color: #e6a600; box-shadow: 0 6px 20px rgba(255, 184, 0, 0.4); }

.full-width {
    width: 100%;
}

.hero {
    position: relative;
    text-align: center;
    padding: 130px 20px;
    overflow: hidden;
    background-color: #1a1a1a;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* The actual background image layer */
.hero-bg {
    position: absolute;
    inset: -10px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: heroZoom 8s ease forwards;
    filter: blur(0px);
}

@keyframes heroZoom {
    from { transform: scale(1.06); }
    to   { transform: scale(1); }
}

/* Dark overlay so text stays readable over any photo */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.35) 0%, rgba(10,10,10,0.50) 100%);
}

/* Content sits above overlay */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.hero h1 span {
    color: var(--primary-yellow);
}

.hero h3 {
    color: #eeeeee ;
}

.hero p {
    color: #dddddd;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .hero { padding: 90px 16px; }
    .hero h1 { font-size: 1.8rem; }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px;
    width: 100%;
}

h2.section-title {
    margin-bottom: 40px;
    display: inline-block;
    padding-bottom: 10px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-dark);
    font-size: 2.5rem;
    position: relative;
}

.grid-2 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    width: 100%;
}

.about-featured {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    overflow: hidden;
    margin-bottom: 50px;
    width: 100%;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
    border: none;
    object-fit: cover;
}

.about-text {
    padding: 25px;
    width: 100%;
}

.about-text h3 {
    margin-bottom: 10px;
    color: var(--primary-yellow);
}

.about-text p {
    margin-bottom: 15px;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.slide {
    display: none; 
    width: 100%;
    height: auto;
}

.slide.active {
    display: block; 
}

.prev-arrow, .next-arrow {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 15px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    background-color: rgba(0, 0, 0, 0.5); 
    border: none;
    user-select: none;
    transition: 0.3s ease;
    z-index: 5;
}

.next-arrow {
    right: 0;
    border-radius: 5px 0 0 5px;
}

.prev-arrow {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.prev-arrow:hover, .next-arrow:hover {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
}

.clients-section {
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 20px;
    width: 100%;
}

.client-logos img {
    height: 70px;
    max-width: 180px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.client-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 50px;
}

th {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
    padding: 15px;
    text-align: left;
}

td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

/* ── GALLERY ── */
.gallery-section {
    margin-bottom: 50px;
    position: relative;
    width: 100%;
}

.gallery-subtitle {
    color: var(--text-light);
    font-size: 14px;
    margin-top: -20px;
    margin-bottom: 24px;
}

.gallery-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.gallery-track {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 15px 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
}

.gallery-track::-webkit-scrollbar {
    display: none;
}

.gallery-track img {
    flex: 0 0 auto;
    width: 320px;
    height: 220px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    border: 3px solid var(--primary-yellow);
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: block;
}

.gallery-track img:hover {
    transform: scale(1.04);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.gallery-arrow {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
    border: none;
    width: 45px;
    height: 45px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: background 0.3s, transform 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-arrow:hover {
    background-color: #e6b800;
    transform: scale(1.1);
}

.left-arrow  { left: -20px; }
.right-arrow { right: -20px; }

@media (max-width: 768px) {
    .gallery-track img { width: 260px; height: 180px; }
    .left-arrow  { left: 5px; }
    .right-arrow { right: 5px; }
}

.contact-form {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    width: 100%;
}

.form-group {
    margin-bottom: 15px;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background: #FAFAFA;
    transition: all 0.2s ease;
    font-size: 14px;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
    background: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-note {
    font-size: 12px;
    margin-top: 10px;
    color: #666;
}

.contact-block {
    margin-bottom: 30px;
    width: 100%;
}

.contact-block h3 {
    margin-bottom: 15px;
}

.contact-block p {
    margin-bottom: 10px;
}

.btn-whatsapp-direct {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
    text-align: center;
}

.btn-whatsapp-direct:hover {
    background-color: #1ebe57;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
}

.site-footer {
    background-color: #111111; 
    color: #eeeeee; 
    text-align: center;
    padding: 40px 20px;
    margin-top: 40px; 
    border-top: 1px solid rgba(255, 204, 0, 0.2); 
    width: 100%;
}

.site-footer p {
    margin: 5px 0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
    header {
        flex-direction: column;
        gap: 15px;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    .gallery-track img {
        width: 250px;
        height: 180px;
    }
    .left-arrow { left: 5px; }
    .right-arrow { right: 5px; }
}  

.review-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.review-filter-btn {
    border: 2px solid #e8e0d0;
    background: var(--bg-white);
    color: var(--text-light);
    font-weight: 700;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.review-filter-btn:hover {
    border-color: var(--primary-yellow);
}

.review-filter-btn.active {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: var(--text-dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
    width: 100%;
}

.review-card {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary-yellow);
    text-align: center;
    width: 100%;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.35s ease, padding 0.35s ease, margin 0.35s ease, transform 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

.review-card.is-filtered-out {
    opacity: 0;
    max-height: 0 ;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
    border-top-width: 0;
    transform: scale(0.92);
    pointer-events: none;
}

.reviews-empty-msg {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    margin-top: 20px;
}

.stars {
    color: #FFCC00;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.review-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 15px;
}

.review-card h4 {
    color: var(--text-dark);
    font-weight: bold;
}

.add-review-form {
    background: #f9f9f9;
    padding: 30px;
    margin-top: 40px;
    border-radius: 12px;
    border: 1px solid #ddd;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.add-review-form h3 {
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-dark);
}

.add-review-form .form-group {
    margin-bottom: 15px;
}

.add-review-form input, 
.add-review-form select, 
.add-review-form textarea {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    width: 100%;
}

/* ── FLEET / VEHICLE CARDS ── */
.fleet-section {
    margin-bottom: 50px;
    width: 100%;
}

.fleet-intro {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1rem;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    width: 100%;
}

.vehicle-card {
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.vehicle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Hidden SEO heading — visible to Google, not to users */
.seo-h3 {
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
}

.vehicle-card-header {
    background: #333;
    min-height: 220px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    width: 100%;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.vehicle-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: 16px 16px 0 0;
}

.vehicle-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
}

.vehicle-card-header--popular {
    background: linear-gradient(135deg, #1a3a2a 0%, #2e6648 100%);
}

.vehicle-card-header--value {
    background: linear-gradient(135deg, #1a2a3a 0%, #2e4a66 100%);
}

.vehicle-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--primary-yellow);
    color: #222;
    padding: 5px 12px;
    border-radius: 3px;
    position: relative;
    z-index: 3;
}

.vehicle-icon {
    font-size: 52px;
    line-height: 1;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
    transition: transform 0.3s ease;
}

.vehicle-card:hover .vehicle-icon {
    transform: scale(1.1) translateY(-3px);
}

.vehicle-card-body {
    padding: 28px 24px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
}

.vehicle-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.vehicle-tagline {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-light);
    margin-bottom: 24px;
}

.spec-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #eee;
    width: 100%;
}

.spec-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    min-width: 0;
}

.spec-icon {
    font-size: 18px;
    line-height: 1.2;
    flex-shrink: 0;
}

.spec-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 2px;
}

.spec-value {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
    word-break: break-word;
}

.spec-note {
    font-weight: 400;
    color: var(--text-light);
    font-size: 11px;
}

.best-for {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
    width: 100%;
}

.best-for-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 0.08em;
    margin-right: 2px;
}

.best-tag {
    font-size: 11px;
    font-weight: 500;
    background: #f5ede0;
    color: #7a6000;
    border: 1px solid #FFD700;
    border-radius: 30px;
    padding: 3px 10px;
}

.vehicle-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #eee;
    gap: 10px;
    width: 100%;
}

.vehicle-price {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.2;
}

.vehicle-price strong {
    display: block;
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 800;
}

.vehicle-price small {
    font-size: 11px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .fleet-grid {
        grid-template-columns: 1fr;
    }
    .spec-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ── WhatsApp card button ── */
.cta-btn-group {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
    margin-top: auto;
}

.btn-wa-card {
    display: inline-block;
    background-color: #25D366;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.btn-wa-card:hover {
    background-color: #1ebe57;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* ── Pricing note ── */
.pricing-note {
    margin-top: -40px;
    margin-bottom: 50px;
    background: #faf4e8;
    border-left: 4px solid var(--primary-yellow);
    padding: 12px 18px;
    font-size: 13px;
    color: var(--text-light);
    border-radius: 0 5px 5px 0;
    width: 100%;
}

/* ── TRUST BADGES BAR ── */










@media (max-width: 768px) {
    
    
    
}

/* ── TEMPO TRAVELLER CARD HEADER ── */
.vehicle-card-header--tempo {
    background: linear-gradient(135deg, #2a1a3a 0%, #4a2e66 100%);
}

/* ── SERVICE AREAS ── */
.areas-section {
    margin-bottom: 50px;
    width: 100%;
}

.areas-intro {
    color: var(--text-light);
    margin-bottom: 28px;
    font-size: 1rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    width: 100%;
}

.area-group {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary-yellow);
    width: 100%;
}

.area-group h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.area-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.area-group ul li {
    font-size: 13.5px;
    color: var(--text-light);
    padding-left: 14px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.area-group ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: bold;
}

.route-price {
    font-size: 12px;
    font-weight: 700;
    color: #2a7a2a;
    background: #eafaea;
    border-radius: 20px;
    padding: 2px 8px;
    white-space: nowrap;
}

/* ── WEATHER WIDGET ── */
.weather-section {
    margin-bottom: 50px;
    width: 100%;
}
.weather-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 20px;
}
.weather-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.weather-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.weather-city {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}
.weather-temp {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin: 8px 0;
}
.weather-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: capitalize;
}
.weather-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

/* ── FAQ ── */
.faq-section {
    margin-bottom: 50px;
    width: 100%;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    width: 100%;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-left: 4px solid var(--primary-yellow);
    overflow: hidden;
    transition: box-shadow 0.2s;
    width: 100%;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.faq-item summary {
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: var(--primary-yellow);
    transition: transform 0.25s ease;
    flex-shrink: 0;
    margin-left: 10px;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 20px 18px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    border-top: 1px solid #f0f0f0;
    margin-top: 0;
    padding-top: 14px;
}

/* ── WHY CHOOSE US ── */
.why-section {
    background: #222222;
    padding: 28px 20px;
    border-top: 3px solid var(--primary-yellow);
    border-bottom: 3px solid var(--primary-yellow);
    width: 100%;
}
.why-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.why-title {
    text-align: center;
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}
.why-title::after { display: none; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
}
.why-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,204,0,0.15);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    transition: background 0.25s;
    width: 100%;
}
.why-card:hover {
    background: rgba(255,204,0,0.08);
}
.why-icon {
    font-size: 22px;
    flex-shrink: 0;
    margin-bottom: 0;
}
.why-card h3 {
    color: var(--primary-yellow);
    font-size: 12.5px;
    margin-bottom: 2px;
    font-weight: 700;
}
.why-card p {
    color: #999;
    font-size: 11.5px;
    line-height: 1.4;
}
@media (max-width: 768px) {
    .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .why-grid { grid-template-columns: 1fr; }
}

/* ── FOUNDER SECTION ── */
.founder-section {
    margin-bottom: 50px;
    width: 100%;
}
.founder-inner {
    background: linear-gradient(135deg, #faf5ea 0%, #f5ede0 100%);
    border-left: 5px solid var(--primary-yellow);
    border-radius: 10px;
    padding: 36px 32px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    width: 100%;
}
.founder-photo-wrap { flex-shrink: 0; }
.founder-photo-placeholder {
    width: 90px; height: 90px;
    border-radius: 50%;
    background: var(--primary-yellow);
    display: flex; align-items: center; justify-content: center;
    font-size: 40px;
    border: 3px solid #e6b800;
}
.founder-photo-wrap img {
    width: 90px; height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-yellow);
}
.founder-quote { flex: 1; width: 100%; }
.quote-mark {
    font-size: 60px;
    color: var(--primary-yellow);
    line-height: 0.5;
    margin-bottom: 10px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.founder-quote p {
    font-size: 14.5px;
    color: #444;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
}
.founder-name strong {
    display: block;
    font-size: 15px;
    color: #222;
}
.founder-name span {
    font-size: 12px;
    color: #888;
}
@media (max-width: 600px) {
    .founder-inner { flex-direction: column; text-align: center; padding: 24px 20px; }
}

/* ── OUTSTATION ROUTE CARDS ── */
.routes-section { margin-bottom: 50px; width: 100%; }
.routes-intro { color: var(--text-light); margin-bottom: 24px; font-size: 14px; }
.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
    width: 100%;
}
.route-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: box-shadow 0.25s, transform 0.25s;
    width: 100%;
}
.route-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transform: scale(1.02);
}
.route-icon { 
    font-size: 28px; 
    flex-shrink: 0; 
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}
.route-card:hover .route-icon {
    transform: translateX(6px) scale(1.1);
}
.route-card--custom {
    border: 2px dashed var(--primary-yellow);
    background: #faf5ea;
}
/* Replaced route-icon */
.route-info { flex: 1; min-width: 0; }
.route-info h4 { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 3px; }
.route-info p { font-size: 12px; color: var(--text-light); }
.route-right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; flex-shrink: 0; }
.route-price-tag {
    font-size: 12px;
    font-weight: 700;
    color: #8a6200;
    background: #fff8dc;
    border: 1px solid #f0d060;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 0.3px;
}
.btn-wa-route {
    font-size: 11px;
    font-weight: 700;
    background: #25D366;
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    transition: border 0.2s;
    text-align: center;
}
.btn-wa-route:hover { background: #1ebe57; }

/* ── LOYALTY BADGE ── */
.loyalty-section { margin-bottom: 50px; width: 100%; }
.loyalty-inner {
    background: linear-gradient(135deg, #222 0%, #333 100%);
    border-radius: 10px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 2px solid var(--primary-yellow);
    width: 100%;
}
.loyalty-icon { font-size: 42px; flex-shrink: 0; }
.loyalty-text { flex: 1; width: 100%; }
.loyalty-text h3 { color: var(--primary-yellow); font-size: 17px; margin-bottom: 8px; }
.loyalty-text p { color: #ccc; font-size: 13.5px; line-height: 1.6; }
.loyalty-text strong { color: #fff; }
@media (max-width: 600px) {
    .loyalty-inner { flex-direction: column; text-align: center; padding: 22px 18px; }
    .loyalty-inner .btn-yellow { width: 100%; }
}

/* ── BLOG SECTION ── */
.blog-section { margin-bottom: 50px; width: 100%; }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    margin-top: 10px;
    width: 100%;
}
.blog-card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.blog-img-placeholder {
    height: 120px;
    background: linear-gradient(135deg, #222 0%, #444 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 50px;
}
.blog-body { padding: 20px; width: 100%; }
.blog-tag {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: var(--primary-yellow);
    color: #222;
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
}
.blog-body h4 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.blog-body p { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; }
.blog-link {
    font-size: 13px;
    font-weight: 700;
    color: #1a7a1a;
    text-decoration: none;
    transition: color 0.2s;
}
.blog-link:hover { color: var(--primary-yellow); }

/* ── GOOGLE MAP ── */
.map-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #eee;
    margin-top: 10px;
    width: 100%;
}

/* ── STICKY MOBILE BOTTOM BAR ── */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9999;
    background: #222;
    border-top: 2px solid var(--primary-yellow);
    grid-template-columns: 1fr 1fr;
    width: 100%;
}
.sticky-call, .sticky-wa {
    padding: 14px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: opacity 0.2s;
}
.sticky-call { background: var(--primary-yellow); color: #222; }
.sticky-wa   { background: #25D366; color: #fff; }
.sticky-call:hover, .sticky-wa:hover { opacity: 0.88; }

/* Show sticky bar only on mobile */
@media (min-width: 769px) {
    .mobile-sticky-bar { display: none ; }
}
@media (max-width: 768px) {
    .mobile-sticky-bar { display: grid; }
    /* Push page content above the sticky bar */
    body { padding-bottom: 56px; }
    .whatsapp-float { bottom: 70px; }
}

/* ── BOOKING FORM UPDATES ── */
.form-row-2 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 14px;
    width: 100%;
}
@media (max-width: 600px) {
    .form-row-2 { grid-template-columns: 1fr; }
}

/* Payment box */
.payment-box {
    background: #f9f9f9;
    border: 2px solid var(--primary-yellow);
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 16px;
    width: 100%;
}
.payment-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.payment-desc {
    font-size: 12.5px;
    color: var(--text-light);
    margin-bottom: 14px;
}
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.payment-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    cursor: pointer;
    color: var(--text-dark);
}
.payment-option input[type="radio"] {
    accent-color: var(--primary-yellow);
    width: 16px; height: 16px;
}
.payment-note {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 6px;
}
.btn-razorpay {
    width: 100%;
    background: #072654;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-razorpay:hover { background: #0a3a7a; }
.payment-confirmed-msg {
    font-size: 13px;
    font-weight: 600;
    color: #1a7a1a;
    background: #eafaea;
    border-radius: 6px;
    padding: 10px 14px;
    margin-top: 10px;
    width: 100%;
}

/* Booking success state */
.booking-success {
    text-align: center;
    padding: 30px 20px;
    width: 100%;
}
.success-icon { font-size: 52px; margin-bottom: 14px; }
.booking-success h3 {
    font-size: 20px;
    color: #1a7a1a;
    margin-bottom: 12px;
}
.booking-success p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.6;
}

/* LOADING SCREEN */
/* PAGE CONTENT FADE IN */
@keyframes pageContentFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body.loading-active header,
body.loading-active section,
body.loading-active footer {
    opacity: 0;
}

body.loading-done header,
body.loading-done section,
body.loading-done footer {
    animation: pageContentFadeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Stagger element fade ins for a high-end feel */
body.loading-done header {
    animation-delay: 0.1s;
}
body.loading-done section:nth-of-type(1) {
    animation-delay: 0.2s;
}
body.loading-done section:nth-of-type(2) {
    animation-delay: 0.28s;
}
body.loading-done section:nth-of-type(n+3) {
    animation-delay: 0.35s;
}
body.loading-done footer {
    animation-delay: 0.42s;
}

#loader {
    position: fixed;
    inset: 0;
    background: #111;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#loader.hidden {
    opacity: 0;
    visibility: hidden;
}
.loader-inner {
    text-align: center;
}
.loader-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    animation: pulse 1.2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}
.loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255,255,255,0.15);
    border-radius: 99px;
    margin: 0 auto 14px;
    overflow: hidden;
}
.loader-fill {
    height: 100%;
    width: 0%;
    background: var(--primary-yellow);
    border-radius: 99px;
    animation: load 1.5s ease forwards;
}
@keyframes load {
    0%   { width: 0%; }
    100% { width: 100%; }
}
.loader-text {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.7;
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222;
    color: #fff;
    z-index: 9998;
    padding: 14px 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    width: 100%;
}
.cookie-banner.visible {
    transform: translateY(0);
}
.cookie-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    width: 100%;
}
.cookie-inner p {
    font-size: 13px;
    color: #ccc;
    margin: 0;
    flex: 1;
}
.cookie-accept {
    background: var(--primary-yellow);
    color: #222;
    border: none;
    padding: 8px 22px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
.cookie-accept:hover { background: #e6b800; }

/* BACK TO TOP */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 999;
    background: var(--primary-yellow);
    color: #222;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover { background: #e6b800; transform: translateY(-2px); }

/* HAMBURGER MENU (Mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    margin-right: 12px;
    z-index: 10000;
}
.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

@media (max-width: 900px) {
    .hamburger { display: flex; }
    .desktop-book { display: none; }

    #mainNav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 78%;
        max-width: 300px;
        height: 100vh;
        background: #ffffff;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        z-index: 9999;
        transition: right 0.35s ease;
        padding-top: 66px;
        overflow-y: auto;
        margin: 0 ;
        flex: none ;
    }
    #mainNav.open {
        right: 0;
    }
    #mainNav ul {
        display: flex ;
        flex-direction: column ;
        gap: 0 ;
        padding: 0 ;
        width: 100% ;
    }
    #mainNav ul li {
        width: 100%;
    }
    #mainNav ul li a {
        display: block;
        padding: 16px 28px;
        font-size: 16px;
        border-bottom: 1px solid #f0f0f0;
        color: var(--text-dark);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    #mainNav ul li a:hover,
    #mainNav ul li a:active {
        background: #f5efe4;
        color: #a07030;
    }
    header {
        flex-direction: row ;
        flex-wrap: nowrap ;
        gap: 0 ;
        padding: 10px 16px ;
        justify-content: space-between ;
    }
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}
.nav-overlay.visible { display: block; }

/* SCROLL ANIMATIONS & BLUR EFFECTS */
.anim-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-blur {
    opacity: 0;
    filter: blur(12px);
    transform: scale(0.97);
    transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s ease;
}
.anim-zoom {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }
.anim-delay-5 { transition-delay: 0.5s; }
.anim-delay-6 { transition-delay: 0.6s; }

.anim-fade-up.in-view,
.anim-fade-left.in-view,
.anim-fade-right.in-view {
    opacity: 1;
    transform: translate(0, 0);
}
.anim-blur.in-view {
    opacity: 1;
    filter: blur(0px);
    transform: scale(1);
}
.anim-zoom.in-view {
    opacity: 1;
    transform: scale(1);
}

.hero-content h1 { animation: heroSlideUp 1s ease 0.3s both; }
.hero-content h3 { animation: heroSlideUp 1s ease 0.5s both; }
.hero-content p { animation: heroSlideUp 1s ease 0.7s both; }
.hero-content .btn-yellow { animation: heroSlideUp 1s ease 0.9s both; }

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


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

.section-title { position: relative; }
.section-title::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: var(--primary-yellow);
    margin: 8px auto 0;
    border-radius: 99px;
    transition: width 0.6s ease 0.3s;
}
.section-title.in-view::after { width: 60px; }

.vehicle-card, .review-card, .blog-card, .route-card, .why-card, .faq-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease ;
}
.vehicle-card:hover, .review-card:hover, .blog-card:hover, .why-card:hover {
    transform: translateY(-6px) ;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}


.btn-yellow { position: relative; overflow: hidden; }
.btn-yellow::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}
.btn-yellow:hover::after { left: 160%; }

.whatsapp-float { animation: waPulse 2.5s ease-in-out infinite; }
@keyframes waPulse {
    0%, 100’% { transform: scale(1); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
    50’%       { transform: scale(1.07); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
}

tbody tr { transition: background 0.2s ease; }
tbody tr:hover { background: #f7f0e4 ; }

/* CLEAN LIGHT OVERRIDES */
body { background-color: #f8f9fa; }
.vehicle-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.review-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.blog-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.about-card { background: #ffffff; border: 1px solid rgba(0, 0, 0, 0.05); }
.faq-item {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.faq-item:hover {
    transform: translateX(4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.contact-form, .contact-details {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.why-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.pricing-table { background: #ffffff; }
.founder-quote {
    background: #ffffff;
    border-left: 4px solid var(--primary-yellow);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* HERO GLASS CARD */
.hero-glass-card {
    display: inline-block;
    max-width: 680px;
    width: 100%;
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 48px 52px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    animation: glassAppear 1s ease 0.2s both;
}

@keyframes glassAppear {
    from { opacity: 0; transform: translateY(30px) scale(0.97); backdrop-filter: blur(0px); }
    to { opacity: 1; transform: translateY(0) scale(1); backdrop-filter: blur(18px); }
}

.hero-glass-card h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 10px;
    color: #ffffff;
    animation: heroSlideUp 1s ease 0.4s both;
}
.hero-glass-card h1 span { color: var(--primary-yellow); }
.hero-glass-card h3 {
    color: #f5e8c0 ;
    font-size: 0.95rem;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 14px;
    animation: heroSlideUp 1s ease 0.55s both;
}
.hero-glass-card p {
    color: rgba(255,255,255,0.88);
    font-size: 1.05rem;
    margin-bottom: 28px;
    line-height: 1.7;
    animation: heroSlideUp 1s ease 0.7s both;
}
.hero-glass-card .btn-yellow {
    animation: heroSlideUp 1s ease 0.85s both;
    font-size: 1rem;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.hero-glass-card::before {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-yellow);
    border-radius: 99px;
    margin: 0 auto 20px;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .hero-glass-card { padding: 32px 24px; border-radius: 16px; margin: 0 12px; }
    .hero-glass-card h1 { font-size: 1.9rem; }
    .hero-glass-card h3 { font-size: 0.8rem; letter-spacing: 1.5px; }
    .hero-glass-card p  { font-size: 0.95rem; }
}

/* ROUTE CALCULATOR */
.route-selectable { cursor: pointer; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s ; }
.route-selectable:hover { border-color: var(--primary-yellow) ; }
.route-selectable.selected {
    border: 2px solid var(--primary-yellow) ;
    background: #fffbe6 ;
    transform: translateX(4px) ;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.route-selected-badge { font-size: 11px; color: #aaa; font-weight: 600; letter-spacing: 0.3px; white-space: nowrap; }
.route-selectable.selected .route-selected-badge { color: #b8860b; background: var(--primary-yellow); padding: 2px 8px; border-radius: 20px; font-size: 11px; }

.fare-calc-box {
    margin-top: 28px;
    background: rgba(255,255,255,0.95);
    border: 2px solid var(--primary-yellow);
    border-radius: 16px;
    padding: 28px 32px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    animation: calcAppear 0.4s ease both;
    width: 100%;
}
@keyframes calcAppear {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fare-calc-header { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid #f0e8d0; }
.fare-calc-header span { font-size: 2.4rem; }
.fare-calc-header h3 { font-size: 1.2rem; color: var(--text-dark); margin: 0 0 4px; }
.fare-calc-header p { font-size: 13px; color: var(--text-light); margin: 0; }
.fare-calc-label { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.fare-car-options { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; width: 100%; }
.fare-car-btn {
    flex: 1;
    min-width: 130px;
    padding: 12px 10px;
    border: 2px solid #e8e0d0;
    border-radius: 10px;
    background: #faf7f2;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.5;
    transition: all 0.2s ease;
}
.fare-car-btn:hover { border-color: var(--primary-yellow); background: #fffbe6; }
.fare-car-btn.selected { border-color: var(--primary-yellow); background: var(--primary-yellow); color: #333; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.fare-car-btn small { display: block; font-size: 11px; opacity: 0.75; margin-top: 2px; }

.fare-calc-row { margin-bottom: 18px; }

.fare-trip-toggle {
    display: flex;
    gap: 8px;
    background: #f3efe4;
    border-radius: 10px;
    padding: 4px;
}
.fare-trip-btn {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-light);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.fare-trip-btn.active {
    background: var(--bg-white);
    color: var(--text-dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.fare-passenger-row {
    background: #faf7f2;
    border: 2px solid #e8e0d0;
    border-radius: 10px;
    padding: 14px 16px;
}
.fare-passenger-row .fare-calc-label { margin-bottom: 10px ; font-size: 14px; }
.fare-passenger-row input[type="range"] {
    width: 100%;
    accent-color: var(--primary-yellow);
    cursor: pointer;
}

.fare-result {
    background: linear-gradient(135deg, #fffbe6 0%, #faf0d0 100%);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    animation: calcAppear 0.3s ease both;
    border: 1px solid #f0d878;
    width: 100%;
}
.fare-amount { display: flex; flex-direction: column; gap: 4px; }
.fare-label { font-size: 12px; color: #888; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.fare-price { font-size: 2rem; font-weight: 900; color: #1a1a1a; line-height: 1; }
.fare-note { font-size: 11px; color: #888; }
.fare-book-btn { padding: 12px 22px ; border-radius: 50px ; font-size: 14px ; white-space: nowrap; text-decoration: none; text-align: center; }

.fare-form-fill-btn {
    display: block;
    margin-top: 10px;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
    text-align: center;
    width: 100%;
}
.fare-form-fill-btn:hover { color: var(--text-dark); }

.map-detail-book {
    display: inline-block;
    background: var(--primary-yellow);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 13px;
    padding: 9px 16px;
    border-radius: 12px;
    text-decoration: none;
}

@keyframes autoFillFlash {
    0%   { background-color: #fff8d6; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
    100% { background-color: transparent; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
}

.auto-filled-flash {
    animation: autoFillFlash 1.6s ease;
}

@media (max-width: 600px) {
    .fare-calc-box { padding: 20px 16px; }
    .fare-result { flex-direction: column; align-items: flex-start; }
    .fare-car-options { gap: 8px; }
    .fare-car-btn { min-width: 100px; font-size: 12px; }
}

/* MOBILE FIRST OVERHAUL (max-width: 768px) */
@media (max-width: 768px) {
    section, .fleet-section, .areas-section,
    .routes-section, .faq-section, .why-section,
    .founder-section, .loyalty-section, .blog-section,
    .reviews-section, .contact-section {
        padding: 32px 16px ;
        margin-bottom: 0 ;
    }

    .section-title { font-size: 1.4rem ; margin-bottom: 16px ; }
    header { padding: 12px 16px ; flex-direction: row ; gap: 0 ; }
    .logo img { height: 50px ; }
    .hero { padding: 100px 16px 60px ; min-height: 85vh ; }
    
    .hero-glass-card { padding: 28px 20px ; margin: 0 ; border-radius: 14px ; }
    .hero-glass-card h1 { font-size: 1.75rem ; }
    .hero-glass-card h3 { font-size: 0.75rem ; letter-spacing: 1px ; }
    .hero-glass-card p  { font-size: 0.9rem ; margin-bottom: 20px ; }
    .hero-glass-card .btn-yellow { padding: 12px 28px ; font-size: 0.95rem ; }

    
    
    

    .about-card { padding: 20px 16px ; }
    .about-img  { height: 200px ; }

    .pricing-table { font-size: 12px ; }
    .pricing-table th, .pricing-table td { padding: 8px 6px ; }
    .pricing-note { font-size: 11px ; line-height: 1.8 ; }

    .fleet-grid { grid-template-columns: 1fr; gap: 16px; }
    .vehicle-card { border-radius: 12px; }
    .vehicle-card-header { padding: 16px; }
    .vehicle-name { font-size: 1.25rem; }
    .spec-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .spec-item { padding: 10px; font-size: 13px; }
    .cta-btn-group { flex-direction: column; gap: 10px; align-items: stretch; }
    .btn-wa-card, .btn-book-card { text-align: center; font-size: 14px; padding: 12px; }

    .areas-grid { grid-template-columns: 1fr ; gap: 12px ; }
    .area-card  { padding: 16px ; }

    .faq-list { gap: 8px ; }
    .faq-item summary { font-size: 14px ; padding: 14px 16px ; }
    .faq-item p { font-size: 13px ; padding: 0 16px 14px ; }

    .routes-grid { grid-template-columns: 1fr ; gap: 8px ; }
    .route-card { padding: 12px 14px ; }
    .route-icon { font-size: 1.4rem ; }
    .route-info h4 { font-size: 14px ; }
    .route-info p  { font-size: 12px ; }
    .fare-calc-box { padding: 20px 16px ; margin-top: 16px ; }
    .fare-calc-header h3 { font-size: 1rem ; }
    .fare-car-options { flex-direction: column ; gap: 8px ; }
    .fare-car-btn { min-width: unset ; width: 100% ; padding: 12px ; font-size: 14px ; display: flex ; justify-content: space-between ; align-items: center ; }
    .fare-price { font-size: 1.7rem ; }
    .fare-book-btn { width: 100% ; text-align: center ; margin-top: 8px ; }
    .fare-result { flex-direction: column ; gap: 12px ; }

    .why-grid { grid-template-columns: 1fr 1fr ; gap: 10px ; }
    .why-card  { padding: 16px 12px ; }
    .why-icon  { font-size: 1.6rem ; }
    .why-card h3 { font-size: 13px ; }
    .why-card p  { font-size: 12px ; }

    .founder-inner { flex-direction: column ; text-align: center ; gap: 16px ; padding: 20px 16px ; }
    .founder-photo { width: 100px ; height: 100px ; }

    .loyalty-inner { flex-direction: column ; text-align: center ; padding: 20px 16px ; gap: 14px ; }

    .blog-grid { grid-template-columns: 1fr ; gap: 12px ; }
    .blog-card { padding: 16px ; }

    .gallery-track img { width: 240px ; height: 170px ; }

    .reviews-grid { grid-template-columns: 1fr ; gap: 12px ; }
    .review-card  { padding: 16px ; }

    .contact-grid { grid-template-columns: 1fr ; gap: 16px ; }
    .contact-form, .contact-details { padding: 20px 16px ; }
    .form-group input, .form-group select, .form-group textarea { font-size: 16px ; padding: 12px ; }
    .advance-options { flex-direction: column ; gap: 8px ; }

    .site-footer { padding: 20px 16px ; font-size: 12px ; }
    .back-to-top { bottom: 72px ; right: 12px ; width: 40px ; height: 40px ; font-size: 18px ; }
    .whatsapp-float { display: none ; }

    .mobile-sticky-bar { padding: 10px 0 ; }
    .sticky-call, .sticky-wa { font-size: 15px ; padding: 10px 0 ; font-weight: 700 ; }
}

@media (max-width: 400px) {
    .hero-glass-card h1 { font-size: 1.5rem ; }
    .why-grid { grid-template-columns: 1fr ; }
    .spec-grid { grid-template-columns: 1fr 1fr ; }
    .fare-car-btn small { display: inline ; margin-left: 8px ; }
}

/* MOBILE FIXES v2 (from phone screenshots) */
@media (max-width: 768px) {
    body, html { overflow-x: hidden ; }

    .why-card {
        display: flex ;
        flex-direction: row ;
        align-items: center ;
        gap: 12px ;
        padding: 14px 16px ;
        text-align: left ;
    }
    .why-icon { font-size: 2rem ; flex-shrink: 0 ; width: 44px ; }
    .why-card-text { flex: 1 ; min-width: 0; }
    .why-card h3 { font-size: 14px ; font-weight: 700 ; margin-bottom: 3px ; }
    .why-card p  { font-size: 12px ; line-height: 1.5 ; color: #666 ; }
    .why-grid    { grid-template-columns: 1fr ; gap: 8px ; }

    .site-footer { padding: 20px 16px ; text-align: center ; }
    .site-footer p { font-size: 11px ; line-height: 1.7 ; margin-bottom: 6px ; }

    .contact-grid { display: flex ; flex-direction: column ; gap: 16px ; }
    .contact-form, .contact-details { width: 100% ; box-sizing: border-box ; }
    .map-wrapper iframe { width: 100% ; }

    .contact-form .btn-yellow {
        width: 100% ;
        display: block ;
        text-align: center ;
        padding: 14px ;
        font-size: 16px ;
        border-radius: 8px ;
    }

    .advance-options { flex-direction: column ; gap: 8px ; }
    .advance-option { width: 100% ; }
    .left-arrow, .right-arrow { width: 36px ; height: 36px ; font-size: 16px ; }
    .review-form input, .review-form textarea { font-size: 16px ; }
    
}

/* STATS COUNTER */
.stats-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 28px 20px;
    margin-bottom: 0;
    width: 100%;
}
.stats-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    text-align: center;
    width: 100%;
}
.stat-item { padding: 12px 10px; position: relative; }
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: rgba(255,255,255,0.1);
}
.stat-number { font-size: 1.9rem; font-weight: 900; color: var(--primary-yellow); display: inline; line-height: 1; }
.stat-plus { font-size: 1.4rem; font-weight: 900; color: var(--primary-yellow); display: inline; }
.stat-label { font-size: 11px; color: rgba(255,255,255,0.65); margin-top: 5px; text-transform: uppercase; letter-spacing: 0.5px; }

@media (max-width: 600px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
    .stat-item:not(:last-child)::after { display: none; }
    .stat-item { border-bottom: 1px solid rgba(255,255,255,0.08); padding: 14px; }
    .stat-number { font-size: 1.6rem; }
}

/* HOW IT WORKS */
.how-section { padding: 40px 20px; background: var(--bg-light); text-align: center; width: 100%; }
.how-intro { color: var(--text-light); margin-bottom: 32px; font-size: 14px; }
.how-grid { max-width: 900px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 0; width: 100%; }
.how-card {
    flex: 1;
    max-width: 240px;
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 20px 24px;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}
.how-card:hover { transform: translateY(-6px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.how-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-yellow);
    color: #222;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}
.how-icon { font-size: 2.2rem; margin-bottom: 12px; }
.how-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--text-dark); }
.how-card p { font-size: 12px; color: var(--text-light); line-height: 1.6; }
.how-connector { font-size: 1.6rem; color: var(--primary-yellow); padding: 0 10px; font-weight: 900; flex-shrink: 0; margin-top: -10px; }

@media (max-width: 700px) {
    .how-section { padding: 32px 16px; }
    .how-grid { flex-direction: column; gap: 0; align-items: stretch; max-width: 400px; }
    .how-card {
        max-width: 100%; width: 100%; display: flex; flex-direction: row;
        align-items: center; text-align: left; padding: 20px 16px 20px 20px;
        border-radius: 12px; gap: 14px;
    }
    .how-number { position: static; transform: none; flex-shrink: 0; width: 32px; height: 32px; font-size: 14px; border-radius: 50%; }
    .how-icon { font-size: 1.8rem; margin-bottom: 0; flex-shrink: 0; }
    .how-card-text { flex: 1; min-width: 0; }
    .how-card h3 { font-size: 14px; margin-bottom: 3px; }
    .how-card p  { font-size: 12px; }
    .how-connector { display: flex; justify-content: center; align-items: center; font-size: 1.2rem; padding: 4px 0; margin: 0; color: var(--primary-yellow); transform: rotate(90deg); height: 28px; }
}

/* HERO QUICK BOOKING BAR */
.hero-quick-book {
    display: flex;
    gap: 10px;
    max-width: 640px;
    margin: 28px auto 0;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 8px 8px 8px 16px;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
}
.hqb-select {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    min-width: 0;
}
.hqb-select option { color: #333; background: #fff; }
.hqb-select::placeholder { color: rgba(255,255,255,0.7); }
.hqb-divider { width: 1px; height: 24px; background: rgba(255,255,255,0.3); flex-shrink: 0; }
.hqb-btn {
    background: var(--primary-yellow);
    color: #222;
    border: none;
    padding: 10px 22px;
    border-radius: 40px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
}
.hqb-btn:hover { background: #e6b800; transform: scale(1.03); }

@media (max-width: 600px) {
    .hero-quick-book { flex-direction: column; border-radius: 16px; padding: 14px 16px; gap: 10px; margin: 20px 12px 0; width: auto; }
    .hqb-select { width: 100%; background: rgba(255,255,255,0.15); border-radius: 12px; padding: 10px 12px; color: #fff; }
    .hqb-btn { width: 100%; padding: 12px; font-size: 15px; }
}

/* PAYMENT LOGOS STRIP */
.payment-strip {
    background: #f8f9fa;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
}
.payment-label { font-size: 12px; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap; }
.payment-logos { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.pay-badge { background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: 6px; padding: 4px 10px; font-size: 12px; font-weight: 600; color: #555; white-space: nowrap; }

@media (max-width: 600px) {
    .payment-strip { padding: 12px 16px; gap: 8px; }
    .pay-badge { font-size: 11px; padding: 3px 8px; }
}

/* CUSTOM ADVANCE AMOUNT */
.custom-amount-box {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #e0d8cc;
    border-radius: 10px;
    padding: 0 14px;
    max-width: 220px;
    transition: border 0.2s;
    width: 100%;
}
.custom-rupee { font-size: 18px; font-weight: 700; color: #555; margin-right: 6px; }
.custom-amount-box input { border: none; outline: none; font-size: 16px; font-weight: 700; color: #222; padding: 10px 0; width: 100%; background: transparent; }
.custom-amount-note { font-size: 11px; color: #aaa; margin-top: 5px; }

/* MSME REGISTRATION BAR */
.msme-bar {
    background: linear-gradient(135deg, #0a3d1f 0%, #1a5c30 100%);
    padding: 14px 20px;
    border-bottom: 3px solid #f5a623;
    width: 100%;
}
.msme-inner { max-width: 1000px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; width: 100%; }
.msme-badge { display: flex; align-items: center; gap: 10px; padding: 6px 24px; }
.msme-icon { font-size: 1.6rem; flex-shrink: 0; }
.msme-text { display: flex; flex-direction: column; }
.msme-text strong { font-size: 13px; color: #fff; font-weight: 700; line-height: 1.3; }
.msme-text span { font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 2px; }
.msme-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.2); flex-shrink: 0; }

@media (max-width: 700px) {
    .msme-inner { flex-direction: column; gap: 10px; align-items: flex-start; }
    .msme-divider { display: none; }
    .msme-badge { padding: 4px 8px; }
    .msme-text strong { font-size: 12px; }
    .msme-text span { font-size: 10px; }
}

/* ABOUT SECTION MSME BADGES */
.about-msme-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(200,175,140,0.3);
    width: 100%;
}
.about-msme-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f0faf4, #e8f5ee);
    border: 1px solid #b8dfc8;
    border-radius: 10px;
    padding: 10px 16px;
    flex: 1;
    min-width: 200px;
}
.about-msme-icon { font-size: 1.6rem; flex-shrink: 0; }
.about-msme-item div { display: flex; flex-direction: column; }
.about-msme-item strong { font-size: 13px; color: #1a5c30; font-weight: 700; }
.about-msme-item span { font-size: 11px; color: #4a7c5f; margin-top: 2px; }

/* FOUNDER MSME */
.founder-msme { display: flex; flex-direction: column; gap: 4px; margin-top: 8px; padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.15); width: 100%; }
.founder-msme span { font-size: 11px; color: rgba(255,255,255,0.65); font-weight: 500; }

@media (max-width: 600px) {
    .about-msme-item { min-width: 100%; }
}

/* PRICING SUB HEADINGS */
.pricing-sub-heading { font-size: 15px; font-weight: 700; color: var(--text-dark); margin: 16px 0 10px; padding-left: 4px; }

/* MOBILE-FRIENDLY PRICING TABLES (.ptable) */
.ptable {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    border: 1px solid rgba(200,175,140,0.25);
    margin-bottom: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.ptable table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    font-size: 13px;
    table-layout: fixed;
}
.ptable th {
    background: var(--primary-yellow);
    color: #222;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 8px;
    text-align: center;
    white-space: normal;
    word-break: break-word;
}
.ptable td {
    padding: 9px 8px;
    text-align: center;
    font-size: 13px;
    border-bottom: 1px solid rgba(200,175,140,0.15);
    word-break: break-word;
}
.ptable td:first-child {
    text-align: left;
    font-weight: 600;
    white-space: normal;
    min-width: 130px;
}
.ptable tbody tr:last-child td { border-bottom: none; }
.ptable tbody tr:hover td { background: rgba(255,204,0,0.07); }
.ptable tr.luxury-row td { background: rgba(255,245,220,0.5); font-style: italic; }
.ptable tr.luxury-row td:first-child::before { content: '⭐ '; font-size: 10px; }
.ptable tr.luxury-row:hover td { background: rgba(255,204,0,0.1); }
.pricing-sub-note { font-size: 11px; color: #aaa; margin: 4px 0 16px; padding-left: 4px; }

/* Column widths — 4 col table */
.ptable table th:nth-child(1), .ptable table td:nth-child(1) { width: 44%; }
.ptable table th:nth-child(2), .ptable table td:nth-child(2) { width: 20%; }
.ptable table th:nth-child(3), .ptable table td:nth-child(3) { width: 18%; }
.ptable table th:nth-child(4), .ptable table td:nth-child(4) { width: 18%; }

@media (max-width: 600px) {
    .ptable table { font-size: 12px; }
    .ptable th { font-size: 11px; padding: 8px 5px; }
    .ptable td { font-size: 12px; padding: 8px 5px; }
    .ptable td:first-child { min-width: 110px; }
    .ptable table th:nth-child(1), .ptable table td:nth-child(1) { width: 40%; }
    .ptable table th:nth-child(2), .ptable table td:nth-child(2) { width: 22%; }
    .ptable table th:nth-child(3), .ptable table td:nth-child(3) { width: 19%; }
    .ptable table th:nth-child(4), .ptable table td:nth-child(4) { width: 19%; }
    .pricing-sub-heading { font-size: 13px ; }
}

/* MAIN PRICING TABLE MOBILE */
#pricing table { width: 100%; display: table; }
#pricing th, #pricing td { padding: 10px 12px; font-size: 13px; }
#pricing .table-scroll-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; width: 100%; }

@media (max-width: 700px) {
    #pricing .table-scroll-wrap { display: block; }
    #pricing table { display: block; white-space: nowrap; min-width: 560px; }
    #pricing th, #pricing td { font-size: 12px; padding: 8px 10px; }
}

/* =========================================================================
   RESPONSIVE + ANIMATION POLISH LAYER (added)
   Fluid sizing for all phones/tablets/desktops + GSAP-ready hooks
   ========================================================================= */

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms ; animation-iteration-count: 1 ; transition-duration: 0.01ms ; scroll-behavior: auto ; }
}

html { scroll-behavior: smooth; }

/* Fluid type scale so headings never overflow tiny phones or look small on big screens */
.hero h1 { font-size: clamp(1.6rem, 6vw, 3.2rem) ; }
.hero h3 { font-size: clamp(0.85rem, 2.6vw, 1.3rem) ; letter-spacing: 0.5px; }
.hero p  { font-size: clamp(0.9rem, 2.2vw, 1.2rem) ; }
h2.section-title { font-size: clamp(1.3rem, 3.6vw, 2rem); }

/* Hero glass card breathing room on very small phones */
.hero-glass-card { padding: clamp(18px, 5vw, 40px) clamp(16px, 5vw, 36px); }

/* Cursor / press affordance for anything clickable */
a, button, .vehicle-card, .how-card, .route-card { -webkit-tap-highlight-color: transparent; }

/* GSAP-driven reveal hook: elements start hidden via inline opacity:0 set by JS,
   this class is toggled by ScrollTrigger instead of the old transition-only system */
.gsap-ready { will-change: transform, opacity; }

/* Magnetic / tilt-ready cards */
.tilt-card { transform-style: preserve-3d; transition: transform 0.15s ease-out, box-shadow 0.3s ease; }

/* Subtle glow ring on primary buttons for a more "alive" feel */
.btn-yellow, .hqb-btn, .btn-whatsapp-direct, .btn-razorpay {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-yellow::after, .hqb-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,0.55), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 1;
}
.btn-yellow:hover::after, .hqb-btn:hover::after { opacity: 1; }

/* Header transition smoothness (box-shadow/padding now eased on scroll) */
header { transition: box-shadow 0.3s ease, padding 0.3s ease; }
@media (min-width: 769px) {
  header.scrolled { padding: 8px 50px; }
}

/* Floating WhatsApp button gentle pulse, paused for reduced-motion users above */
.whatsapp-float { animation: waPulse 2.6s ease-in-out infinite; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
  50% { box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
}

/* ============== EXTRA BREAKPOINTS FOR FULL DEVICE COVERAGE ============== */

/* Large tablets / small laptops */
@media (max-width: 1024px) {
  header { padding: 14px 28px; }
  .container { padding: 40px 18px; }
  .fleet-grid { gap: 22px; }
}

/* Tablets / iPad portrait */
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; gap: 24px; }
  .hero { min-height: 86vh; }
}

/* Standard phones (iPhone 12/13/14, Pixel, etc.) */
@media (max-width: 480px) {
  header { padding: 10px 16px; }
  .logo img { height: 50px; }
  .hero { padding: 70px 14px; min-height: 92vh; }
  .hero-glass-card { border-radius: 16px; }
  .container { padding: 32px 14px; }
  .btn-yellow { padding: 12px 18px; font-size: 14px; width: auto; }
  .vehicle-card, .how-card, .route-card, .review-card, .blog-card { border-radius: 12px; }
  
  
}

/* Small / older phones (iPhone SE, small Android) */
@media (max-width: 380px) {
  .hero h1 { font-size: 1.5rem ; }
  .hero-quick-book { padding: 12px; }
  .hqb-select { font-size: 13px; }
  .hqb-btn { font-size: 13px; padding: 10px; }
  .about-text { padding: 18px; }
  .spec-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* Short / landscape phones — avoid hero swallowing the whole screen */
@media (max-height: 480px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 110px 20px 60px; }
}

/* Large desktop / wide monitors — cap line length & give breathing room */
@media (min-width: 1600px) {
  body {
    max-width: 1600px;
    margin: 0 auto;
    box-shadow: 0 0 50px rgba(0,0,0,0.1);
    position: relative;
    background-color: #fff;
  }
  header {
    max-width: 1600px;
    margin: 0 auto;
    left: 0;
    right: 0;
  }
  .container { max-width: 1360px; }
  .hero h1 { font-size: 3.6rem ; }
  .hero, .hero-bg, .hero-overlay {
    max-height: 800px;
  }
  .about-img {
    max-height: 500px;
    object-fit: cover;
  }
  .vehicle-card-img {
    max-height: 300px;
  }
}

/* Ensure all images & iframes never overflow their container on any device */
img, iframe, video { max-width: 100%; height: auto; }
.map-wrap iframe { height: 100%; min-height: 180px; }

/* Touch-friendly minimum tap target size on touch devices */
@media (hover: none) and (pointer: coarse) {
  .btn-yellow, .hqb-btn, .prev-arrow, .next-arrow, .back-to-top, .sticky-call, .sticky-wa, button, select, input[type="radio"] + span {
    min-height: 44px;
  }
}

/* =========================================================================
   FLEET — mobile vertical scroll-snap + interactive toolbar (fav/compare)
   ========================================================================= */

.fleet-intro-hint {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--primary-yellow);
  font-weight: 700;
}

.vehicle-card-header {
  position: relative;
}

.vehicle-toolbar {
  position: absolute;
  top: 10px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.vehicle-fav-btn {
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, background 0.2s ease;
}

.vehicle-fav-btn:hover { transform: scale(1.12); }

.vehicle-fav-btn.is-active {
  background: #ffe3e3;
}

.vehicle-fav-btn.is-active::after { content: ''; }

.vehicle-compare-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.85);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  user-select: none;
}

.vehicle-compare-check {
  width: 14px;
  height: 14px;
  accent-color: var(--primary-yellow);
  cursor: pointer;
}

.vehicle-card.is-comparing {
  outline: 3px solid var(--primary-yellow);
  outline-offset: 2px;
}

.vehicle-card.is-favourited {
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.fleet-scroll-wrap {
  position: relative;
  width: 100%;
}

.fleet-progress {
  display: none;
}

@media (max-width: 768px) {
  .fleet-scroll-wrap {
    overflow: visible;
    width: 100%;
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }

  .fleet-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 16px !important;
    width: 100% !important;
    padding: 4px 0;
  }

  .vehicle-card {
    width: 100% !important;
    max-width: none !important;
    flex-shrink: unset !important;
    scroll-snap-align: unset;
    border-radius: 12px;
    height: auto;
  }

  .vehicle-cta {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .vehicle-price {
    display: flex !important;
    justify-content: space-between !important;
    align-items: baseline !important;
    width: 100% !important;
    margin-bottom: 4px !important;
  }

  .vehicle-price strong {
    font-size: 1.35rem !important;
    display: inline !important;
    color: var(--text-dark) !important;
  }

  .cta-btn-group {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
    margin-top: 0 !important;
  }

  .cta-btn-group a {
    flex: 1 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 12px 8px !important;
    border-radius: 10px !important;
    text-align: center !important;
    white-space: nowrap !important;
    margin: 0 !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .fleet-progress {
    display: none !important;
  }
}

/* Compare bar — floats at bottom when 1-2 cars selected */
.compare-bar[hidden],
.compare-modal-overlay[hidden],
.map-detail-card[hidden] {
  display: none ;
}

.compare-bar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(120%);
  background: var(--text-dark);
  color: #fff;
  border-radius: 999px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  z-index: 1200;
  transition: transform 0.35s ease;
  max-width: 92vw;
}

.compare-bar.is-visible {
  transform: translateX(-50%) translateY(0);
}

.compare-bar-text {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.compare-bar-btn {
  background: var(--primary-yellow);
  color: var(--text-dark);
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.compare-bar-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.compare-bar-clear {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  cursor: pointer;
}

.compare-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1300;
  padding: 20px;
}

.compare-modal {
  background: var(--bg-white);
  border-radius: 14px;
  padding: 28px;
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.compare-modal h3 {
  margin-bottom: 18px;
  color: var(--text-dark);
}

.compare-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--bg-light);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 18px;
  cursor: pointer;
}

.compare-modal-table {
  display: grid;
  grid-template-columns: 110px 1fr 1fr;
  gap: 0;
  font-size: 13px;
}

.compare-modal-table .ct-cell {
  padding: 10px 8px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.compare-modal-table .ct-label {
  font-weight: 700;
  color: var(--text-light);
}

.compare-modal-table .ct-header {
  font-weight: 800;
  color: var(--text-dark);
  background: var(--bg-light);
  border-radius: 6px;
}

.compare-modal-cta {
  display: inline-block;
  margin-top: 18px;
}

/* =========================================================================
   AREAS WE SERVE — interactive India map with tappable pins
   ========================================================================= */

.areas-legend-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-light);
  margin: 8px 0 14px;
  opacity: 0.7;
}

.india-map-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 36px;
}

.india-map-stage {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.india-map-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.india-state {
  fill: #e8f4e8;
  stroke: #a8c8a8;
  stroke-width: 0.6;
  transition: fill 0.2s;
}

.india-map-svg:hover .india-state {
  fill: #dff0df;
}

.map-route-line {
  stroke: var(--text-dark);
  stroke-width: 1.8;
  stroke-dasharray: 6 5;
  stroke-linecap: round;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.map-route-line.is-drawn {
  opacity: 0.55;
  animation: mapRouteDraw 0.9s ease forwards, mapRouteMarch 18s linear infinite;
}

@keyframes mapRouteDraw {
  from { stroke-dashoffset: var(--route-len, 600); }
  to   { stroke-dashoffset: 0; }
}

@keyframes mapRouteMarch {
  to { stroke-dashoffset: -1000; }
}

@media (prefers-reduced-motion: reduce) {
  .map-route-line.is-drawn { animation: none; opacity: 0.55; stroke-dashoffset: 0; }
}

.map-pin {
  cursor: pointer;
  outline: none;
}

.map-pin .pin-dot {
  fill: #e23b3b;
  stroke: #fff;
  stroke-width: 1.5;
  transition: fill 0.2s ease, r 0.2s ease;
}

.map-pin--hub .pin-dot {
  fill: var(--primary-yellow);
  stroke: var(--text-dark);
}

.map-pin .pin-pulse {
  fill: rgba(226,59,59,0.18);
  animation: mapPinPulse 2.2s ease-out infinite;
  transform-origin: center;
}

.map-pin--hub .pin-pulse {
  fill: rgba(255,204,0,0.3);
}

.map-pin .pin-label {
  font-size: 11px;
  font-weight: 700;
  fill: var(--text-dark);
  text-anchor: middle;
  paint-order: stroke;
  stroke: var(--bg-white);
  stroke-width: 3px;
}

.map-pin:hover .pin-dot,
.map-pin:focus-visible .pin-dot,
.map-pin.is-active .pin-dot {
  fill: var(--text-dark);
  r: 7;
}

.map-pin--hub:hover .pin-dot,
.map-pin--hub:focus-visible .pin-dot,
.map-pin--hub.is-active .pin-dot {
  fill: var(--text-dark);
}

@keyframes mapPinPulse {
  0%   { transform: scale(0.6); opacity: 0.9; }
  70%  { transform: scale(1.9); opacity: 0; }
  100% { transform: scale(1.9); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .map-pin .pin-pulse { animation: none; opacity: 0.35; }
}

.map-hint {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
}

.map-detail-card {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%) translateY(12px) scale(0.96);
  width: min(320px, 90%);
  background: var(--bg-white);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-top: 4px solid var(--primary-yellow);
  padding: 18px 20px 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 20;
}

.map-detail-card.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
}

.map-detail-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--text-light);
}

.map-detail-body h4 {
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--text-dark);
  padding-right: 18px;
}

.map-detail-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.map-detail-body ul li {
  font-size: 13px;
  color: var(--text-light);
  padding-left: 14px;
  position: relative;
}

.map-detail-body ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--primary-yellow);
  font-weight: bold;
}

.map-detail-route-info {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.map-detail-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--bg-light);
  color: var(--text-dark);
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
}

.map-detail-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 9px 14px;
  border-radius: 12px;
  text-decoration: none;
}

@media (max-width: 480px) {
  .india-map-stage { max-width: 340px; }
  .map-pin .pin-label { font-size: 9.5px; }
}

/* Fleet Filter */
.fleet-filter-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.fleet-filter-chip {
    background-color: var(--canvas);
    color: var(--ink);
    border: 1px solid var(--hairline);
    padding: 12px 16px;
    border-radius: 9999px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.fleet-filter-chip:hover {
    background-color: var(--canvas-parchment);
}
.fleet-filter-chip.active {
    border: 2px solid var(--primary-focus);
    background-color: var(--canvas);
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.floating-wa:hover {
    transform: scale(1.1);
}
.floating-wa svg {
    width: 32px;
    height: 32px;
}
@media(max-width: 768px) {
    .floating-wa {
        bottom: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
    }
    .floating-wa svg {
        width: 28px;
        height: 28px;
    }
}

/* Floating Sticky Bar (Apple Style) */
.floating-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(245, 245, 247, 0.85); /* parchment with opacity */
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-top: 1px solid var(--hairline);
    display: none;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    padding: 12px 32px;
    z-index: 9998;
}
.fsb-price {
    font-size: 14px;
    font-weight: 400;
    color: var(--ink);
}
@media (max-width: 768px) {
    .floating-sticky-bar {
        display: flex;
    }
    .floating-wa {
        bottom: 80px; /* move WhatsApp up so it doesn't overlap */
    }
}

/* Niche Specialization Section */
.niche-section {
    background-color: var(--bg-white);
    padding: 80px 24px;
    width: 100%;
}
.niche-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}
.niche-card {
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 30px;
    border-top: 5px solid var(--primary-yellow);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.niche-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.niche-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}
.niche-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}
.niche-card .niche-link {
    color: var(--text-dark);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}
.niche-card .niche-link:hover {
    color: var(--primary-yellow);
}


/* Leaflet Animated Route Path */
.animated-route-path {
    stroke-dasharray: 10, 10;
    animation: dash-animation 1.5s linear infinite;
}

@keyframes dash-animation {
    to {
        stroke-dashoffset: -20;
    }
}


/* Toast Notification */
.wa-toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: #128C7E;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 10000;
    transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 8px;
}
.wa-toast.show {
    bottom: 30px;
}
.wa-toast-icon {
    font-size: 18px;
}


/* Driver Section */
.driver-section {
    padding: 60px 20px;
    background: var(--bg-white);
}
.driver-card {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #eaeaea;
}
@media (min-width: 768px) {
    .driver-card {
        flex-direction: row;
        align-items: center;
    }
}
.driver-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: #f4f4f4;
}
@media (min-width: 768px) {
    .driver-photo {
        width: 250px;
        height: 100%;
        min-height: 250px;
    }
}
.driver-info {
    padding: 30px;
    flex: 1;
}
.driver-badge {
    display: inline-block;
    padding: 6px 12px;
    background: var(--primary-yellow);
    color: var(--text-dark);
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 15px;
}
.driver-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}
.driver-exp {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.driver-desc {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
}
.driver-stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.d-stat {
    display: flex;
    flex-direction: column;
}
.d-stat-val {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
}
.d-stat-label {
    font-size: 12px;
    color: var(--text-light);
}


@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


.trust-bar:hover 
.trust-item, 





/* ── TRUST BADGES BAR MARQUEE ── */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.trust-bar {
    background: #111111;
    border-top: 1px solid rgba(255, 204, 0, 0.2);
    border-bottom: 1px solid rgba(255, 204, 0, 0.2);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    z-index: 10;
}
.trust-bar-inner {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    width: max-content;
    animation: marquee 20s linear infinite;
    gap: 0;
}
.trust-bar:hover .trust-bar-inner {
    animation-play-state: paused;
}
.trust-item {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 0 20px;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.trust-item span {
    color: #ffffff;
}
.trust-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 204, 0, 0.4);
    flex-shrink: 0;
    margin: 0;
}

@media (max-width: 768px) {
    .trust-item {
        font-size: 12px;
        padding: 0 15px;
    }
}

/* -- ENHANCED TYPOGRAPHY & NAV MENU -- */
#mainNav ul li {
    perspective: 1000px;
}
#mainNav ul li a {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
#mainNav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 28px;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: width 0.3s ease;
    border-radius: 2px;
}
#mainNav ul li a:hover::after {
    width: calc(100% - 56px);
}
.hero-glass-card h1 {
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* Fare Car Option Wrap */
.fare-car-option-wrap {
    flex: 1;
    min-width: 130px;
    display: flex;
    flex-direction: column;
}
.fare-car-option-wrap .fare-car-btn {
    width: 100%;
}
@media (max-width: 768px) {
    .fare-car-option-wrap {
        min-width: unset;
        width: 100%;
    }
}


.logo-link svg { flex-shrink: 0; }
@media (max-width: 768px) {
    .logo-link span { font-size: 20px !important; }
    .logo-link svg { width: 28px; height: 28px; }
}

/* =========================================================================
   PAGE TRANSITIONS + IMAGE LOAD FADE-IN (added)
   ========================================================================= */

/* Smooth fade-out when navigating to another page on the site, pairs with
   the existing loader + pageContentFadeIn on the page you land on */
body.page-leaving {
    opacity: 0;
    transition: opacity 0.22s ease;
}

/* Avoid the abrupt "pop-in" of lazy-loaded images as they scroll into view.
   The animation is a pure-CSS safety net: if JS ever fails to run, every
   lazy image still reveals itself on its own after 2.5s. */
@keyframes revealImgFallback { to { opacity: 1; } }
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: revealImgFallback 0s 2.5s forwards;
}
img[loading="lazy"].img-loaded {
    opacity: 1;
}

/* Subtle lift/scale on interactive cards for pointer users (skipped for
   touch-only devices so it never sticks after a tap) */
@media (hover: hover) and (pointer: fine) {
    .vehicle-card, .why-card, .review-card, .blog-card, .route-card {
        will-change: transform;
    }
}
