/*
Theme Name: CabGo Sihor V5 Premium Travel
Description: Production-style responsive custom WordPress cab and travel theme. No Elementor required.
Version: 5.0.0
Author: Custom Theme
License: GPL-2.0-or-later
Text Domain: cabgo-sihor
*/
:root {
    --primary: #126b4f;
    --gold: #d9a441;
    --ink: #17221d;
    --muted: #68756f;
    --bg: #f7f8f5;
    --white: #fff;
    --line: #dde5e0;
    --light-green: #eaf4ef;
    --light-gold: #f8f0dc;
    --text: #26332d;
    --radius: 16px;
    --shadow: 0 12px 36px rgba(23, 34, 29, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
    color: var(--text);
    line-height: 1.65;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}

.skip-link {
    position: absolute;
    left: -9999px;
}

.skip-link:focus {
    left: 10px;
    top: 10px;
    background: #fff;
    padding: 10px;
    z-index: 999;
}

.topbar {
    background: var(--ink);
    color: #e8eee9;
    font-size: 12px;
}

.topbar .container {
    min-height: 38px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.topbar a {
    color: #fff;
}

.site-header {
    background: #fff;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 21px;
    font-weight: 900;
    /* color: var(--ink); */
}

.site-brand small {
    display: block;
    font-size: 10px;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 0.2px;
}

.brand-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gold);
    display: grid;
    place-items: center;
    font-size: 22px;
}

.logo-img {
    max-height: 58px;
    width: auto;
}

.primary-menu {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 13px;
    font-weight: 800;
}

.primary-menu a:hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    border: 0;
    background: var(--ink);
    color: #fff;
    padding: 10px 12px;
    border-radius: 9px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 12px 18px;
    border-radius: 9px;
    font-weight: 850;
    border: 0;
    cursor: pointer;
    transition:
        0.2s transform,
        0.2s box-shadow;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 7px 20px rgba(23, 34, 29, 0.12);
}

.btn-primary {
    background: var(--gold);
    color: var(--ink);
}

.btn-dark {
    background: var(--ink);
    color: #fff;
}

.btn-green {
    background: var(--primary);
    color: #fff;
}

.btn-light {
    background: #fff;
    color: var(--ink);
}

.btn-outline {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
}

.hero {
    background: radial-gradient(circle at 80% 10%, rgba(217, 164, 65, 0.18), transparent 30%),
        linear-gradient(120deg, #0c4936, #126b4f);
    color: #fff;
    padding: 76px 0 82px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.03fr 0.97fr;
    gap: 52px;
    align-items: center;
}

.hero-copy {
    padding: 10px 0;
}

.hero h1 {
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.05;
    margin: 16px 0;
}

.hero p {
    color: #e4eee9;
    font-size: 17px;
    max-width: 700px;
}

.eyebrow-pill {
    display: inline-block;
    background: var(--gold);
    color: var(--ink);
    padding: 7px 13px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 26px 0;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: #dfeae4;
    font-size: 12px;
    font-weight: 700;
}

.booking-box {
    background: #fff;
    color: var(--ink);
    padding: 24px;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.booking-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 17px;
}

.booking-head h3 {
    margin: 3px 0 0;
    font-size: 22px;
}

.form-kicker {
    font-size: 10px;
    font-weight: 950;
    letter-spacing: 1.4px;
    color: var(--primary);
}

.wa-badge {
    font-size: 10px;
    font-weight: 900;
    background: #e7f7ec;
    color: #14843f;
    padding: 6px 9px;
    border-radius: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.field.full {
    grid-column: 1/-1;
}

.field label {
    font-size: 11px;
    font-weight: 850;
    color: #52615a;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-size: 14px;
    outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(18, 107, 79, 0.08);
}

.btn-booking {
    width: 100%;
    font-size: 14px;
}

.form-footnote {
    font-size: 10px;
    color: var(--muted);
    margin: 12px 0 0;
    text-align: center;
}

.section {
    padding: 76px 0;
}

.section-alt {
    background: var(--bg);
}

.section-green {
    background: linear-gradient(135deg, #0e513c, #126b4f);
    color: #fff;
}

.section-heading {
    text-align: center;
    max-width: 790px;
    margin: 0 auto 38px;
}

.section-heading.left {
    text-align: left;
    margin-left: 0;
}

.section-heading .eyebrow,
.eyebrow {
    font-size: 11px;
    color: #9a7626;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 1.7px;
}

.section-heading .eyebrow.light {
    color: #e7c875;
}

.section-heading h2 {
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.2;
    margin: 7px 0 10px;
    color: var(--ink);
}

.section-green h2 {
    color: #fff;
}

.section-heading p {
    color: var(--muted);
    margin: 0;
}

.section-green p {
    color: #d8e8e0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.service-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px 18px;
    box-shadow: var(--shadow);
    transition: 0.2s;
}

.service-card:hover {
    transform: translateY(-3px);
    border-color: #b9d2c5;
}

.service-icon {
    /* width: 55px;
    height: 55px; */
    margin-bottom: 14px;
    border-radius: 15px;
    /* background: var(--light-gold); */
    color: var(--primary);
    display: grid;
    place-items: center;
    font-size: 23px;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 16px;
    margin: 5px 0 7px;
    color: var(--ink);
}

.service-card p {
    font-size: 12px;
    color: var(--muted);
    margin: 0 0 12px;
}

.service-link {
    font-size: 12px;
    font-weight: 900;
    color: var(--primary);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.fleet-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.fleet-card>img {
    width: 100%;
    aspect-ratio: 1.6;
    object-fit: cover;
}

.fleet-placeholder {
    height: 190px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--light-green), var(--light-gold));
    font-size: 70px;
}

.fleet-content {
    padding: 18px;
}

.fleet-content h3 {
    margin: 0 0 7px;
    color: var(--ink);
}

.fleet-specs {
    padding: 0;
    margin: 0 0 16px;
    list-style: none;
    color: var(--muted);
    font-size: 12px;
}

.fleet-specs li {
    margin: 5px 0;
}

.route-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.route-link {
    background: #fff;
    border: 1px solid var(--line);
    padding: 15px;
    border-radius: 11px;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 8px;
    box-shadow: 0 6px 18px rgba(23, 34, 29, 0.04);
}

.route-link:hover {
    border-color: var(--gold);
    background: var(--light-gold);
}

.route-link span {
    grid-row: 1/3;
}

.route-link strong {
    font-size: 13px;
}

.route-link small {
    color: var(--muted);
    font-size: 10px;
    margin-top: 3px;
}

.center-action {
    text-align: center;
    margin-top: 24px;
}

.booking-section-grid {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 40px;
    align-items: center;
}

.booking-intro h1 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    margin: 9px 0 15px;
}

.booking-benefits {
    margin-top: 25px;
    display: grid;
    gap: 10px;
    color: #dfeee7;
    font-size: 13px;
}

.section-green .booking-box {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.22);
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 34px;
    align-items: center;
}

.info-panel {
    background: var(--ink);
    color: #fff;
    border-radius: 18px;
    padding: 32px;
    box-shadow: var(--shadow);
}

.info-panel h3 {
    font-size: 25px;
    margin: 9px 0;
}

.info-panel p {
    color: #cad8d1;
}

.info-icon {
    width: 55px;
    height: 55px;
    border-radius: 15px;
    background: var(--gold);
    color: var(--ink);
    display: grid;
    place-items: center;
    font-size: 25px;
}

.info-line {
    border-top: 1px solid #34423b;
    padding: 13px 0;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    font-size: 12px;
}

.info-line span {
    color: #e8ca75;
}

.small-note {
    font-size: 11px !important;
}

.form-card {
    max-width: 900px;
    margin: auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow);
}

.upi-card {
    max-width: 620px;
    margin: auto;
    text-align: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 17px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.upi-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--light-gold);
    color: var(--primary);
    display: grid;
    place-items: center;
    font-size: 29px;
    font-weight: 900;
    margin: auto;
}

.upi-id {
    display: inline-block;
    padding: 10px 15px;
    background: var(--light-gold);
    border-radius: 8px;
    font-weight: 900;
    color: var(--ink);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 1.4;
    object-fit: cover;
    border-radius: 13px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    align-items: center;
}

.about-grid img {
    border-radius: 17px;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    margin: 10px 0;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.review-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 13px;
    padding: 21px;
}

.stars {
    color: var(--gold);
    letter-spacing: 2px;
}

.review-card p {
    color: var(--muted);
}

.faq {
    max-width: 850px;
    margin: auto;
}

.faq details {
    border-bottom: 1px solid var(--line);
    padding: 17px 0;
}

.faq summary {
    font-weight: 800;
    cursor: pointer;
}

.faq details p {
    color: var(--muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-card {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow);
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin: 13px 0;
    color: var(--muted);
    font-size: 14px;
}

.contact-list strong {
    color: var(--ink);
}

.contact-list a {
    color: var(--primary);
    font-weight: 800;
}

.map-card hr {
    border: 0;
    border-top: 1px solid var(--line);
    margin: 22px 0;
}

.cta {
    background: var(--gold);
    padding: 43px 0;
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cta h2 {
    margin: 3px 0 0;
    font-size: 32px;
    color: var(--ink);
}

.site-footer {
    background: var(--ink);
    color: #cbd8d1;
    padding: 55px 0 18px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    gap: 28px;
}

.site-footer h3 {
    color: #fff;
}

.site-footer a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid #314038;
    margin-top: 30px;
    padding-top: 16px;
    font-size: 12px;
}

.page-hero {
    background: var(--ink);
    color: #fff;
    padding: 55px 0;
}

.page-hero h1 {
    font-size: 44px;
    margin: 5px 0;
}

.breadcrumbs {
    font-size: 12px;
    color: #c4d0ca;
}

.content-area {
    padding: 60px 0;
}

.content-area p,
.content-area li {
    color: #5f6c65;
}

.floating-actions {
    position: fixed;
    right: 17px;
    bottom: 17px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 90;
}

.floating-actions a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 20px;
    box-shadow: 0 8px 22px #0003;
}

.float-call {
    background: var(--gold);
}

.float-wa {
    background: #25d366;
    color: #fff;
}

@media (max-width: 1050px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .route-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .primary-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        border-bottom: 1px solid var(--line);
    }

    .primary-menu.open {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

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

@media (max-width: 760px) {
    .topbar .container {
        flex-direction: column;
        align-items: flex-start;
        padding: 7px 0;
    }

    .hero {
        padding: 55px 0;
    }

    .hero-grid,
    .booking-section-grid,
    .two-column,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 42px;
    }

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

    .field.full {
        grid-column: auto;
    }

    .gallery-grid,
    .review-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section {
        padding: 58px 0;
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 520px) {

    .service-grid,
    .fleet-grid,
    .route-grid,
    .gallery-grid,
    .review-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .booking-box {
        padding: 18px;
    }

    .section-heading h2 {
        font-size: 29px;
    }

    .cta h2 {
        font-size: 27px;
    }
}

.route-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 24px 0;
}

.route-details>div {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px;
}

.route-details strong,
.route-details span {
    display: block;
}

.route-details strong {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--muted);
}

.route-details span {
    font-weight: 850;
    margin-top: 3px;
}

@media (max-width: 520px) {
    .route-details {
        grid-template-columns: 1fr;
    }
}