/* ==========================================================================
   GLOBAL DESIGN TOKENS
   All colors/spacing/radii used across every section now live in ONE :root.
   Previously this file had 5 separate :root blocks that redefined the same
   variable names (--navy, --border, --white, --shadow, etc.) with different
   values. Because :root is global, only the LAST definition in the file was
   actually winning for the whole page — earlier sections were silently
   losing their intended colors. Consolidating removes that bug.
   ========================================================================== */
:root {
    /* brand colors */
    --yellow: #F4B400;
    --navy: #1F2B50;
    --gold: #D9A227;
    --gold-hover: #F4B321;
    --gold-dark: #C98F1D;
    --gold-soft: #FFF8E8;
    --light-gold: #FFF8E8;
    --badge-bg: #F8E4A3;
    --badge-text: #B88917;

    /* neutrals */
    --white: #FFFFFF;
    --bg: #FCFAF7;
    --text: #5E6673;
    --gray: #5E6673;
    --border: #ECECEC;
    --row-border: #F2F2F2;

    /* aliases used by services/places markup */
    --title: var(--navy);
    --para: var(--text);

    /* shadows */
    --shadow-sm: 0 4px 18px rgba(0, 0, 0, .05);
    --shadow: 0 15px 40px rgba(0, 0, 0, .08);
    --shadow-lg: 0 8px 28px rgba(0, 0, 0, .06);
    --shadow-hover: 0 15px 35px rgba(0, 0, 0, .10);

    /* radii */
    --radius-md: 14px;
    --radius-lg: 18px;
    --radius-pill: 999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--navy);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button {
    font: inherit;
    border: 0;
    cursor: pointer;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    position: relative;
    width: 100%;
    min-height: 680px;
    background-image: url('http://dwarkacabline.com/taxi/Frame%201.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.88) 30%,
            rgba(255, 255, 255, 0.35) 60%,
            rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 90px 60px 70px 60px;
    display: flex;
    align-items: center;
    min-height: 680px;
}

.hero-left {
    width: 68%;
}

.hero-right {
    width: 52%;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    min-height: 500px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow);
    border-radius: var(--radius-pill);
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--navy);
    letter-spacing: .5px;
}

.badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

h1 {
    margin-top: 22px;
    font-size: 60px;
    font-weight: 800;
    line-height: 1.05;
    color: var(--navy);
}

h1 .highlight {
    color: var(--white);
}

.price-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.price-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 22px;
    color: var(--navy);
    box-shadow: var(--shadow);
    transition: transform .3s ease;
}

.price-icon:hover {
    transform: scale(1.08);
}

.price-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
}

.description {
    margin-top: 26px;
    max-width: 520px;
}

.description p {
    font-size: 17px;
    line-height: 1.8;
    color: black;
    margin-bottom: 14px;
}

.description p b {
    color: var(--navy);
}

.contact-cards-row {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;

    width: 260px;
    min-height: 90px;
    padding: 22px 28px;

    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--yellow);

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--navy);
}

.contact-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-title-call {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

.contact-number {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
}


.hero .car-image {
    width: 650px;
    max-width: 100%;
    position: relative;
    right: -40px;
    bottom: -20px;
    filter: drop-shadow(0 35px 35px rgba(0, 0, 0, 0.18));
}

.hero .car-image img {
    width: 100%;
    display: block;
}

@media (max-width:1024px) {
    .hero {
        min-height: auto;
    }

    .hero-inner {
        flex-direction: column;
        padding: 60px 24px;
        min-height: auto;
        text-align: center;
    }

    .hero-left,
    .hero-right {
        width: 100%;
    }

    .hero-right {
        justify-content: center;
        margin-top: 30px;
    }

    h1 {
        font-size: 42px;
    }

    .price-row {
        justify-content: center;
    }

    .description {
        margin-left: auto;
        margin-right: auto;
    }

    .cards-row {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
        max-width: 400px;
    }

    .hero .car-image {
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 480px;
    }
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-choose {
    width: 100%;
    background:
        radial-gradient(circle at top center,
            rgba(244, 180, 0, .08) 0%,
            rgba(255, 255, 255, 1) 55%);
    padding: 90px 60px;
}

.wc-inner {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.wc-heading {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--navy);
    max-width: 700px;
    margin: 0 auto 18px auto;
}

.wc-divider {
    width: 70px;
    height: 4px;
    border-radius: var(--radius-pill);
    background: var(--yellow);
    margin: 0 auto 24px auto;
}

.wc-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--text);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.wc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.wc-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 34px 26px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
    transition: .35s ease;
}

.wc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .10);
    border-color: var(--yellow);
}

.wc-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.wc-icon svg {
    width: 42px;
    height: 42px;
    stroke: var(--yellow);
    stroke-width: 2px;
    fill: none;
}

.wc-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 14px;
}

.wc-desc {
    font-size: 14px;
    font-weight: 400;
    color: var(--text);
    line-height: 1.75;
}

@media (max-width:1024px) {
    .why-choose {
        padding: 70px 30px;
    }

    .wc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wc-card {
        height: auto;
        padding: 30px;
    }
}

@media (max-width:768px) {
    .why-choose {
        padding: 50px 24px;
    }

    .wc-heading {
        font-size: 32px;
    }

    .wc-subtitle {
        font-size: 16px;
    }

    .wc-grid {
        grid-template-columns: 1fr;
    }

    .wc-card {
        width: 100%;
        padding: 28px;
    }

    .wc-icon {
        width: 36px;
        height: 36px;
    }

    .wc-icon svg {
        width: 36px;
        height: 36px;
    }
}

/* ==========================================================================
   FLEET
   ========================================================================== */
.fleet-section {
    width: 100%;
    padding: 40px 20px;
    background:
        radial-gradient(circle at top left, rgba(217, 162, 39, .07), transparent 30%),
        radial-gradient(circle at top right, rgba(217, 162, 39, .05), transparent 28%),
        var(--bg);
}

.fleet-shell {
    max-width: 1220px;
    margin: 0 auto;
}

.fleet-header {
    text-align: center;
    margin-bottom: 45px;
}

.fleet-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    background: var(--badge-bg);
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
}

.fleet-title {
    margin: 18px auto 0;
    max-width: 920px;
    font-size: 40px;
    line-height: 1.25;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
}

.fleet-subtitle {
    margin: 10px 0 0;
    font-size: 17px;
    font-weight: 400;
    color: var(--text);
    text-align: center;
}

.fleet-grid {
    display: flex;
    gap: 28px;
}

.fleet-card {
    flex: 1;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow-sm);
    transition: .3s ease;
}

.fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.fleet-image-wrap {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleet-image {
    max-width: 100%;
    max-height: 170px;
    object-fit: contain;
}

.fleet-info {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-top: 18px;
}

.fleet-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid #F3D78C;
    background: var(--gold-soft);
    color: var(--gold-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
}

.fleet-name {
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 600;
    color: var(--navy);
}

.fleet-desc {
    margin: 6px 0 0;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
    color: var(--text);
}

@media (max-width:992px) {
    .fleet-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width:768px) {
    .fleet-section {
        padding: 64px 18px;
    }

    .fleet-title {
        font-size: 30px;
    }

    .fleet-subtitle {
        font-size: 15px;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .fleet-image-wrap {
        height: 150px;
    }

    .fleet-name {
        font-size: 20px;
    }

    .fleet-desc {
        font-size: 14px;
    }
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services-section {
    width: 100%;
    background: var(--white);
    padding: 40px 20px;
}

.services-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.services-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 56px;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    background: var(--badge-bg);
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-radius: var(--radius-pill);
    padding: 6px 16px;
    margin-bottom: 20px;
}

.services-heading {
    font-size: 42px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.services-divider {
    width: 70px;
    height: 4px;
    border-radius: var(--radius-pill);
    background: var(--gold-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 24px;
    row-gap: 22px;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px;
    min-height: 135px;
    box-shadow: var(--shadow-sm);
    transition: all .3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .10);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 12px;
    background: var(--gold);
    flex-shrink: 0;
    transition: background .3s ease;
}

.service-card:hover .service-icon {
    background: var(--gold-dark);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
    stroke-width: 2;
    fill: none;
}

.service-image {
    width: 215px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    /*object-fit: cover;*/
    display: block;
    transition: transform .3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--title);
    line-height: 1.2;
    margin-bottom: 6px;
}

.service-desc {
    font-size: 15px;
    font-weight: 400;
    color: var(--para);
    line-height: 1.7;
}

@media (max-width:1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width:640px) {
    .services-section {
        padding: 60px 16px;
    }

    .services-heading {
        font-size: 30px;
    }

    .services-header {
        margin-bottom: 40px;
    }

    .service-card {
        flex-wrap: wrap;
        gap: 12px;
    }

    .service-image {
        width: 100%;
        height: 200px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* ==========================================================================
   PLACES
   ========================================================================== */
.places-section {
    width: 100%;
    background: var(--white);
    padding: 40px 20px;
}

.places-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.places-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.places-badge {
    display: inline-flex;
    align-items: center;
    background: var(--badge-bg);
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    padding: 6px 16px;
    margin-bottom: 18px;
}

.places-heading {
    font-size: 42px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    text-align: center;
}

.places-divider {
    width: 65px;
    height: 4px;
    border-radius: var(--radius-pill);
    background: var(--gold-dark);
    margin-top: 16px;
    margin-bottom: 45px;
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.place-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: .3s;
}

.place-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

.place-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.place-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.place-content {
    padding: 14px;
    text-align: center;
}

.place-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--title);
    margin-bottom: 8px;
}

.place-location {
    display: flex;
    align-items: center;
    justify-content: center;
}

.place-location svg {
    width: 15px;
    height: 15px;
    fill: var(--gold);
}

@media (max-width:1200px) {
    .places-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width:992px) {
    .places-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width:768px) {
    .places-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .places-heading {
        font-size: 34px;
    }
}

@media (max-width:480px) {
    .places-grid {
        grid-template-columns: 1fr;
    }

    .places-heading {
        font-size: 28px;
    }

    .places-section {
        padding: 50px 16px;
    }
}

/* ==========================================================================
   ROUTES + PROMO CARD
   (this is the section from your HTML — extra care given to mobile below)
   ========================================================================== */
.routes-section {
    width: 100%;
    background: var(--white);
    padding: 40px 20px;
}

.routes-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 26px;
    align-items: start;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    background: var(--light-gold);
    color: var(--gold-hover);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.section-heading {
    margin-top: 18px;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--navy);
    max-width: 720px;
}

.section-divider {
    width: 70px;
    height: 4px;
    background: var(--gold);
    border-radius: var(--radius-pill);
    margin: 16px 0 35px;
}

.table-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.table-wrap {
    width: 100%;
    overflow-x: auto;
    /* smoother touch scrolling on iOS */
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

thead th {
    background: var(--badge-bg);
    color: var(--navy);
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    height: 54px;
    padding: 0 18px;
    border-right: 1px solid #f3ead5;
    white-space: nowrap;
}

thead th:last-child {
    border-right: 0;
    text-align: center;
}

tbody tr {
    background: var(--white);
    transition: .3s ease;
}

tbody tr:hover {
    background: #FFFDF7;
}

tbody td {
    height: 60px;
    padding: 0 18px;
    border-bottom: 1px solid var(--row-border);
    border-right: 1px solid var(--row-border);
    vertical-align: middle;
    white-space: nowrap;
}

tbody tr:last-child td {
    border-bottom: 0;
}

tbody td:last-child {
    border-right: 0;
    text-align: center;
}

/* keep the route name visible while the table scrolls sideways on mobile */
thead th:first-child,
tbody td:first-child {
    /*position: sticky;*/
    left: 0;
    background: inherit;
    z-index: 1;
}

thead th:first-child {
    background: var(--badge-bg);
}

.route-name {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
}

.route-name i {
    color: var(--navy);
    font-size: 14px;
}

.route-meta {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
}

.book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 36px;
    padding: 0 18px;
    border-radius: 8px;
    background: var(--gold);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    transition: .3s ease;
    text-decoration: none;
}

.book-btn:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
}

.promo-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    padding: 30px;
    transition: .3s ease;
}

.promo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.promo-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
}

.promo-title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--navy);
}

.promo-title .highlight {
    color: var(--white);
}

.promo-divider {
    width: 60px;
    height: 4px;
    background: var(--gold);
    border-radius: var(--radius-pill);
    margin: 16px 0 20px;
}

.promo-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
    max-width: 32ch;
    margin-bottom: 22px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--navy);
}

.feature-icon {
    display:none !important;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--light-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-hover);
    flex-shrink: 0;
}

.call-pill {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 6px 18px 6px 8px;
    border-radius: var(--radius-pill);
    background: var(--light-gold);
    color: var(--navy);
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    transition: .3s ease;
    max-width: 100%;
}

.call-pill:hover {
    transform: translateY(-2px);
}

.call-pill-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.promo-visual {
    position: absolute;
    inset: auto 0 0 0;
    height: 230px;
    pointer-events: none;
}

.temple-bg {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 46%;
    max-width: 170px;
    opacity: .98;
    z-index: 1;
}

.promo-card .car-image {
    position: absolute;
    right: 8px;
    bottom: 8px;
    width: 78%;
    max-width: 330px;
    z-index: 2;
    filter: drop-shadow(0 20px 24px rgba(0, 0, 0, .18));
}

/* ---- Routes/Promo responsive breakpoints ---- */
@media (max-width: 1024px) {
    .routes-container {
        grid-template-columns: 1fr;
    }

    .promo-card {
        min-height: 640px;
    }

    .promo-content {
        padding-bottom: 260px;
    }
}

@media (max-width: 768px) {
    .routes-section {
        padding: 60px 18px;
    }

    .price-icon {
        display: none;
    }

    .left-column {
        overflow-x: scroll;
    }

    .routes-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-heading,
    .promo-title {
        font-size: 30px;
    }

    table {
        min-width: 100%;
    }

    thead th,
    tbody td {
        padding: 0 14px;
    }

    .promo-card {
        padding: 24px;
        min-height: auto;
    }

    .promo-content {
        padding-bottom: 0;
    }

    .promo-text {
        max-width: 100%;
    }

    .feature-list {
        gap: 12px;
    }

    .feature-item {
        align-items: flex-start;
    }

    .call-pill {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 560px) {
    .routes-section {
        padding: 52px 14px;
    }

    .section-heading,
    .promo-title {
        font-size: 26px;
    }

    .table-card {
        border-radius: 14px;
    }

    .table-wrap {
        margin-bottom: 18px;
        /* faint edge shadow hints that the table scrolls horizontally */
        background:
            linear-gradient(to right, var(--white) 30%, rgba(255, 255, 255, 0)),
            linear-gradient(to right, rgba(0, 0, 0, .06), rgba(0, 0, 0, 0)) 0 0 / 8px 100% no-repeat;
        background-attachment: local, scroll;
    }

    table {
        min-width: 640px;
    }

    thead th,
    tbody td {
        font-size: 13px;
        padding: 0 12px;
        height: 50px;
    }

    /* larger tap target for the Book Now buttons on touch devices */
    .book-btn {
        height: 40px;
        padding: 0 16px;
    }

    .promo-card {
        padding: 22px;
        min-height: auto;
    }

    .promo-text {
        font-size: 14px;
    }

    .feature-item {
        gap: 10px;
    }

    .call-pill {
        font-size: 15px;
        padding: 10px 14px;
    }
}

@media (max-width: 420px) {
    .routes-section {
        padding: 32px 12px;
    }

    .section-heading,
    .promo-title {
        font-size: 22px;
    }

    .table-card,
    .promo-card {
        padding: 18px;
    }

    table {
        min-width: 560px;
    }

    thead th,
    tbody td {
        padding: 0 10px;
        font-size: 12px;
    }

    .route-name {
        font-size: 13px;
        gap: 6px;
    }

    .feature-item {
        font-size: 14px;
    }

    .call-pill {
        padding: 12px 14px;
        font-size: 14px;
    }

    .call-pill-icon {
        width: 32px;
        height: 32px;
    }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section {
    position: relative;
    width: 100%;
    padding: 40px 20px;
    overflow: hidden;
    background: var(--bg);
    font-family: 'Poppins', sans-serif;
}

.faq-section__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top center, rgba(217, 162, 39, 0.06), transparent 48%),
        linear-gradient(rgba(252, 250, 247, 0.94), rgba(252, 250, 247, 0.94)),
        url('assets/image/somnath.webp') center/cover no-repeat;
    opacity: 0.65;
    filter: blur(0.5px);
    pointer-events: none;
}

.faq-shell {
    position: relative;
    z-index: 1;
    max-width: 1220px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 35px;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    background: var(--badge-bg);
    color: var(--badge-text);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.faq-title {
    margin: 16px 0 0;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--navy);
}

.faq-divider {
    width: 40px;
    height: 3px;
    background: var(--gold);
    border-radius: var(--radius-pill);
    margin: 18px auto 0;
}

.faq-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow .25s ease;
}

.faq-card:hover {
    box-shadow: var(--shadow-hover);
}

.faq-item {
    border-bottom: 1px solid var(--row-border);
    transition: background .25s ease;
}

.faq-item:last-child {
    border-bottom: 0;
}

.faq-item:hover {
    background: #FFFCF6;
}

.faq-trigger {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 22px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    color: inherit;
    cursor: pointer;
}

.faq-left {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    min-width: 0;
    flex: 1;
}

.faq-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold-soft);
    border: 1px solid #F3D78C;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold-dark);
    font-size: 24px;
    transition: transform .25s ease, background .25s ease;
}

.faq-item:hover .faq-icon {
    transform: scale(1.05);
    background: #FFF4D7;
}

.faq-copy {
    min-width: 0;
    display: block;
}

.faq-question {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.35;
}

.faq-answer {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    color: var(--text);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    transition: max-height 300ms ease, opacity 300ms ease, margin-top 300ms ease;
}

.faq-item.is-open .faq-answer {
    max-height: 120px;
    opacity: 1;
    margin-top: 6px;
}

.faq-chevron {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 18px;
    flex-shrink: 0;
    transition: transform .3s ease;
}

.faq-item.is-open .faq-chevron {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 64px 20px;
    }

    .faq-title {
        font-size: 30px;
    }

    .faq-trigger {
        padding: 20px 18px;
        gap: 14px;
        align-items: flex-start;
    }

    .faq-left {
        gap: 16px;
    }

    .faq-question {
        font-size: 18px;
    }

    .faq-answer {
        font-size: 15px;
    }

    .faq-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}





/* ==========================================================================
   MOBILE CAROUSELS — Fleet / Services / Explore Somnath
   Desktop layout is untouched. Below 768px these three grids convert
   into horizontal scroll-snap carousels.
   ========================================================================== */
@media (max-width: 768px) {

.pricing-head-wrap{
    height: 200px;
}


    /* ---- Fleet (pricing cards) ---- */
    .fleet-shell .row {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 12px;
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .fleet-shell .row > [class*="col-"] {
        flex: 0 0 82%;
        max-width: 82%;
        scroll-snap-align: start;
    }

    /* hide scrollbar but keep it scrollable */
    .fleet-shell .row::-webkit-scrollbar { height: 0; }

    /* ---- Services ---- */
    .services-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        margin: 0 -16px;
        padding: 0 16px 12px;
    }

    .services-grid .service-card {
        flex: 0 0 85%;
        max-width: 85%;
        scroll-snap-align: start;
        flex-wrap: wrap;
    }

    .services-grid::-webkit-scrollbar { height: 0; }

    /* ---- Explore Somnath (places) ---- */
    .places-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 14px;
        margin: 0 -16px;
        padding: 0 16px 12px;
    }

    .places-grid .place-card {
        flex: 0 0 44%;
        max-width: 44%;
        scroll-snap-align: start;
    }

    .places-grid::-webkit-scrollbar { height: 0; }
}

/* ==========================================================================
   HERO CONTRAST FIX — mobile only
   On small screens the hero stacks and the left-aligned gradient no longer
   covers the text area (the car fills the background behind it), so the
   heading/description sit on the photo with poor contrast. Add a solid-ish
   scrim behind the text block instead of relying on the diagonal gradient.
   ========================================================================== */
@media (max-width: 1024px) {
    .hero::before {
        /background: linear-gradient(90deg, ...); above still runs, but override: 
        background: linear-gradient(180deg,
                rgba(255, 255, 255, 0.94) 0%,
                rgba(255, 255, 255, 0.94) 55%,
                rgba(255, 255, 255, 0.55) 80%,
                rgba(255, 255, 255, 0.15) 100%);
    }

    .hero-left {
        background: rgba(255, 255, 255, 0.55);
        border-radius: var(--radius-lg);
        padding: 24px 20px;
        backdrop-filter: blur(2px);
    }

    h1, .price-text, .description p {
        text-shadow: 0 1px 2px rgba(255,255,255,0.4);
    }
}




@media (max-width: 1024px) {
    .hero::before {
        background: linear-gradient(180deg,
                rgba(255, 255, 255, 0.94) 0%,
                rgba(255, 255, 255, 0.94) 55%,
                rgba(255, 255, 255, 0.55) 80%,
                rgba(255, 255, 255, 0.15) 100%);
    }

    .hero-left {
        background: rgba(255, 255, 255, 0.55);
        border-radius: var(--radius-lg);
        padding: 24px 20px;
        backdrop-filter: blur(2px);
    }
}


/* ==========================================================================
   PRICING LIST FIX — label/value pairs (Min. Running, Passengers, etc.)
   were wrapping onto two lines on small screens because .pricing-list li
   had no flex layout. Force them onto one row.
   ========================================================================== */
.pricing-list li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: nowrap;
    white-space: nowrap;
    font-size: 14px;
    padding: 6px 0;
}

.pricing-list li span {
    font-weight: 600;
    text-align: right;
    white-space: nowrap;
}


@media (max-width: 480px) {
    .pricing-item {
        padding: 16px 18px;
    }

    .pricing-list li {
        font-size: 13px;
    }
}

