:root {
    --ink: #10201d;
    --muted: #52645f;
    --green: #080c12;
    --green-dark: #080c12;
    --amber: #f0b44f;
    --line: #e8dcc7;
    --soft: #fffaf1;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: #ffffff;
    font-family: Inter, Arial, sans-serif;
}

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

.seo-topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    min-height: 66px;
    padding: 10px clamp(16px, 4vw, 44px);
    background: rgba(8, 12, 18, 0.96);
    color: #ffffff;
    border-bottom: 1px solid rgba(240, 180, 79, 0.28);
    backdrop-filter: blur(12px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    color: #ffffff;
}

.brand-badge {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: transparent;
    background: #080c12 url("../assets/brand/goindiaride-mark.png") center / 82% auto no-repeat;
    border: 1px solid rgba(216, 138, 22, 0.5);
    border-radius: 8px;
    font-size: 0;
    box-shadow: 0 8px 18px rgba(8, 12, 18, 0.16);
    overflow: hidden;
}

.seo-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 800;
}

.seo-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 10px 12px;
    border-radius: 8px;
    text-align: center;
    color: #ffffff;
}

.seo-nav a:hover {
    background: rgba(240, 180, 79, 0.14);
}

.seo-hero {
    position: relative;
    min-height: 72vh;
    display: grid;
    align-items: end;
    padding: 110px clamp(16px, 6vw, 76px) 46px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(8, 12, 18, 0.86), rgba(8, 12, 18, 0.48)),
        url("../assets/images/quick-booking-hero.png") center/cover;
}

.seo-hero-content {
    max-width: 820px;
    color: #ffffff;
}

.eyebrow {
    margin: 0 0 12px;
    color: #ffd68d;
    font-size: 0.84rem;
    font-weight: 900;
    text-transform: uppercase;
}

.seo-hero h1 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(2.25rem, 6vw, 4.8rem);
    line-height: 1.02;
}

.seo-hero p {
    max-width: 680px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.08rem;
    line-height: 1.65;
}

.hero-actions,
.service-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    gap: 8px;
    padding: 0 16px;
    border-radius: 8px;
    font-weight: 900;
}

.primary-btn {
    color: #ffffff;
    background: var(--green);
    border: 1px solid rgba(240, 180, 79, 0.42);
}

.secondary-btn {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.service-actions .secondary-btn {
    color: var(--green-dark);
    border-color: #cce3da;
}

.service-band {
    padding: 46px clamp(16px, 6vw, 76px);
}

.service-band.is-soft {
    background: var(--soft);
}

.section-head {
    max-width: 780px;
    margin-bottom: 26px;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.section-head p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.65;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.service-card {
    min-height: 206px;
    padding: 22px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.service-card i {
    color: var(--amber);
    font-size: 1.45rem;
}

.service-card h3 {
    margin: 16px 0 8px;
    font-size: 1.2rem;
}

.service-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.58;
}

.route-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: 980px;
}

.route-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    gap: 10px;
    padding: 12px 14px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-weight: 850;
}

.route-link span {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
}

.search-copy {
    max-width: 980px;
    color: var(--muted);
    line-height: 1.7;
}

.search-copy strong {
    color: var(--ink);
}

.seo-footer {
    padding: 28px clamp(16px, 6vw, 76px);
    color: #d9efe8;
    background: #09231d;
}

.seo-footer a {
    color: #ffffff;
    font-weight: 800;
}

@media (max-width: 820px) {
    .seo-topbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .seo-nav {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .seo-nav a {
        width: 100%;
        min-height: 42px;
        padding: 9px 10px;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .seo-hero {
        min-height: 68vh;
        padding-top: 88px;
    }

    .service-grid,
    .route-list {
        grid-template-columns: 1fr;
    }
}
