/* ============================================
   ZENZO AMBULANCE â€” LOCATION DIRECTORY PAGE
   
   Reference: redairambulance.com approach
   - City selector with instant search
   - State filter tabs
   - Each city = expandable card with:
     hospitals, areas covered, direct call CTA
   - Interactive India map hint
   - Strong local SEO signals throughout
   
   Brand: Figtree + Lato
   Red #d72d27 Â· Blue #2754a4 Â· Navy #0d1f3c
============================================ */
:root {
    --r: #d72d27;
    --rd: #b72126;
    --rbg: #fff0f0;
    --b: #2754a4;
    --bd: #14467c;
    --bbg: #eef3fc;
    --n: #0d1f3c;
    --n2: #0a1628;
    --n3: #060e1c;
    --wh: #fff;
    --off: #f8f9fa;
    --cr: #f1f5f9;
    --tx: #0f0f0f;
    --mid: #374151;
    --gr: #6b7280;
    --lg: #e5e7eb;
    --gn: #16a34a;
    --am: #d97706;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Figtree", "Lato", sans-serif;
    background: var(--off);
    color: var(--tx);
}

a {
    text-decoration: none;
    color: inherit;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--r);
    border-radius: 2px;
}

/* â”€â”€ TOPBAR â”€â”€ */
.topbar {
    background: var(--bd);
    padding: 7px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.58);
}

.topbar strong {
    color: #fff;
}

.topbar a {
    color: #ffd580;
    font-weight: 700;
}

/* â”€â”€ NAV â”€â”€ */
nav.sc {
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.5);
}

.nl {
    display: flex;
    gap: 2px;
    list-style: none;
}

.nl a {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.17s;
}

.nl a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.nav-r {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nbo {
    padding: 8px 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 5px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.2s;
}

.nbo:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.38);
}

.nbr {
    background: var(--r);
    color: #fff;
    padding: 9px 22px;
    border-radius: 6px;
    font-size: 13.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: all 0.2s;
}

.nbr:hover {
    background: var(--rd);
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(215, 45, 39, 0.42);
}

/* â”€â”€ HERO BANNER â”€â”€ */
.hero {
    background: url(https://zenzo.in/location/wp-content/uploads/2026/06/location-banner.webp);
    padding: 72px 60px 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
    /* position: relative; */
    background-size: cover;
    padding: 110px 0px;
}

.h-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(215, 45, 39, 0.14) 0%, transparent 62%);
    pointer-events: none;
}

.h-slash {
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--r) 0%, var(--bd) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 840px;
    margin: 0 auto;
    background: #00000075;
    padding: 40px;
    border-radius: 40px;
}

.h-eye {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgb(215 45 39 / 55%);
    border: 1px solid rgba(215, 45, 39, 0.3);
    color: #ffcccc;
    padding: 5px 16px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.h-eye .dot {
    width: 5px;
    height: 5px;
    background: #ffffff;
    border-radius: 50%;
    animation: dp 1.8s ease-in-out infinite;
}

@keyframes dp {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.1;
    }
}

h1.hh {
    font-size: clamp(32px, 5vw, 68px);
    font-weight: 900;
    color: #fff;
    line-height: 0.97;
    letter-spacing: -1.5px;
    margin-bottom: 14px;
}

h1.hh .red {
    color: var(--r);
}

.h-desc {
    font-size: 17px;
    color: rgb(255 255 255);
    line-height: 1.72;
    margin-bottom: 36px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* â”€â”€ MEGA SEARCH â”€â”€ */
.search-wrap {
    position: relative;
    max-width: 600px;
    margin: 0 auto 28px;
}

.search-wrap::before {
    content: "\01F50D";
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    z-index: 2;
    pointer-events: none;
}

#city-search {
    width: 100%;
    padding: 17px 18px 17px 52px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    outline: none;
    backdrop-filter: blur(12px);
    transition:
        border-color 0.2s,
        background 0.2s;
    font-family: "Figtree", sans-serif;
}

#city-search::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

#city-search:focus {
    border-color: rgba(215, 45, 39, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

.search-clear {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: rgba(255, 255, 255, 0.5);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: background 0.18s;
}

.search-clear:hover {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.search-clear.vis {
    display: flex;
}

/* Hero stats */
.h-stats {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.hs {
    text-align: center;
}

.hs-n {
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: 900;
    color: #fff !important;
    line-height: 1;
}

.hs-n.r {
    color: #ff8a7a;
}

.hs-n.g {
    color: #6ee7b7;
}

.hs-n.y {
    color: #fcd34d;
}

.hs-l {
    font-size: 10.5px;
    color: rgb(255 255 255);
    margin-top: 4px;
}

/* â”€â”€ STATE FILTER TABS â”€â”€ */
.filter-bar {
    background: var(--wh);
    border-bottom: 2px solid var(--lg);
    padding: 0 60px;
    display: flex;
    gap: 0;
    overflow-x: auto;
    position: sticky;
    top: 70px;
    z-index: 400;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    scrollbar-width: none;
}

.filter-bar::-webkit-scrollbar {
    display: none;
}

.ftab {
    padding: 16px 20px;
    border-bottom: 3px solid transparent;
    font-size: 13px;
    font-weight: 600;
    color: var(--gr);
    cursor: pointer;
    transition: all 0.18s;
    white-space: nowrap;
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    font-family: "Figtree", sans-serif;
}

.ftab:hover {
    color: var(--b);
}

.ftab.on {
    color: var(--r);
    border-bottom-color: var(--r);
}

/* â”€â”€ COUNT BAR â”€â”€ */
.count-bar {
    background: var(--cr);
    padding: 14px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--lg);
}

.cb-count {
    font-size: 14px;
    font-weight: 600;
    color: var(--mid);
}

.cb-count span {
    color: var(--r);
    font-weight: 800;
    font-size: 17px;
}

.cb-sort {
    display: flex;
    gap: 8px;
}

.sort-btn {
    padding: 6px 14px;
    border: 1.5px solid var(--lg);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    background: var(--wh);
    color: var(--gr);
    transition: all 0.18s;
    font-family: "Figtree", sans-serif;
}

.sort-btn.on {
    background: var(--n);
    color: #fff;
    border-color: var(--n);
}

/* â”€â”€ MAIN GRID â”€â”€ */
.main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 36px 60px 60px;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* â”€â”€ CITY CARD â”€â”€ */
.city-card {
    background: var(--wh);
    border: 1px solid var(--lg);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.28s;
    cursor: pointer;
    position: relative;
}

.city-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: rgba(215, 45, 39, 0.2);
}

.city-card.expanded {
    border-color: var(--r);
    box-shadow: 0 16px 48px rgba(215, 45, 39, 0.12);
    transform: translateY(-3px);
}

/* Card header */
.cc-head {
    padding: 20px 22px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
}

.cc-emoji {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--n), var(--bd));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.cc-emoji::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 10px 10px;
}

.cc-info {
    flex: 1;
    min-width: 0;
}

.cc-city {
    font-size: 18px;
    font-weight: 800;
    color: var(--tx);
    margin-bottom: 2px;
}

.cc-state {
    font-size: 11.5px;
    color: var(--gr);
    font-weight: 500;
}

.cc-meta {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-top: 6px;
    flex-wrap: wrap;
}

.cc-pin {
    font-size: 10.5px;
    background: var(--cr);
    color: var(--mid);
    padding: 2px 8px;
    border-radius: 100px;
    font-weight: 600;
}

.cc-pop {
    font-size: 10.5px;
    background: var(--bbg);
    color: var(--b);
    padding: 2px 8px;
    border-radius: 100px;
    font-weight: 600;
}

.cc-24 {
    font-size: 12.5px;
    background: var(--gnbg, #f0fdf4);
    color: var(--gn);
    padding: 2px 8px;
    border-radius: 100px;
    font-weight: 700;
}

.cc-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.cc-call {
    background: var(--r);
    color: #fff;
    padding: 8px 14px;
    border-radius: 7px;
    font-size: 12.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.18s;
    white-space: nowrap;
    cursor: pointer;
    border: none;
}

.cc-call:hover {
    background: var(--rd);
}

.cc-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--cr);
    border: none;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.22s;
    color: var(--gr);
}

.city-card.expanded .cc-toggle {
    background: var(--r);
    color: #fff;
    transform: rotate(45deg);
}

/* Card summary strip */
.cc-strip {
    display: flex;
    gap: 0;
    border-top: 1px solid var(--lg);
    border-bottom: 1px solid var(--lg);
}

.cs-item {
    flex: 1;
    padding: 10px 14px;
    text-align: center;
    border-right: 1px solid var(--lg);
    transition: background 0.18s;
}

.cs-item:last-child {
    border-right: none;
}

.cs-item:hover {
    background: var(--off);
}

.cs-icon {
    font-size: 15px;
    display: block;
    margin-bottom: 3px;
}

.cs-txt {
    font-size: 10px;
    font-weight: 700;
    color: var(--gr);
    letter-spacing: 0.3px;
}

/* Expandable body */
.cc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.city-card.expanded .cc-body {
    max-height: 700px;
}

.cc-body-inner {
    padding: 20px 22px 22px;
}

/* Desc */
.cc-desc {
    font-size: 13.5px;
    color: var(--mid);
    line-height: 1.72;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--lg);
}

/* Areas covered */
.cc-section-lbl {
    font-size: 10px;
    font-weight: 700;
    color: var(--gr);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.cc-section-lbl::before {
    content: "";
    width: 16px;
    height: 1.5px;
    background: var(--r);
}

.cc-areas {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.area-chip {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--mid);
    background: var(--cr);
    border: 1px solid var(--lg);
    padding: 4px 11px;
    border-radius: 100px;
    transition: all 0.18s;
}

.area-chip:hover {
    background: var(--bbg);
    border-color: rgba(39, 84, 164, 0.2);
    color: var(--b);
}

/* Hospitals */
.cc-hospitals {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hosp-tag {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--r);
    background: var(--rbg);
    border: 1px solid rgba(215, 45, 39, 0.15);
    padding: 4px 11px;
    border-radius: 100px;
}

/* Action buttons */
.cc-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ca-pri {
    background: var(--r);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.18s;
    font-family: "Figtree", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ca-pri:hover {
    background: var(--rd);
    transform: translateY(-1px);
}

.ca-sec {
    background: var(--bbg);
    color: #2e55a0;
    border: 1px solid rgba(39, 84, 164, 0.2);
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.18s;
    font-family: "Figtree", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ca-sec:hover {
    background: var(--b);
    color: #fff;
}

.ca-sec:hover svg {
    fill: #fff;
}

/* No results */
.no-results {
    text-align: center;
    padding: 80px 20px;
}

.no-results h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--mid);
    margin-bottom: 10px;
}

.no-results p {
    font-size: 14px;
    color: var(--gr);
    margin-bottom: 24px;
}

.no-results a {
    background: var(--r);
    color: #fff;
    padding: 13px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

/* â”€â”€ TYPES STRIP â”€â”€ */
.types-strip {
    background: #ffffff;
    padding: 52px 60px;
}

.ts-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.ts-head {
    text-align: center;
    margin-bottom: 40px;
}

.ts-head h2 {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 900;
    color: #000000;
    margin-bottom: 8px;
}

.ts-head p {
    font-size: 14px;
    color: rgb(0 0 0);
}

.ts-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.ts-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 18px 14px;
    text-align: center;
    transition: all 0.22s;
}

.ts-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(215, 45, 39, 0.3);
    transform: translateY(-4px);
}

.ts-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 10px;
}

.ts-card h3 {
    font-size: 13px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 5px;
}

.ts-card p {
    font-size: 10.5px;
    color: rgb(0 0 0);
    line-height: 1.5;
}

/* â”€â”€ CTA BAND â”€â”€ */
.cta-band {
    background: linear-gradient(273deg, #d53029 0%, #2956a3 100%);
    padding: 72px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    /* content: ""; */
    position: absolute;
    inset: 0;
    /* background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px); */
    background-size: 50px 50px;
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.cta-inner h2 {
    font-size: clamp(26px, 4vw, 52px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.cta-inner p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    line-height: 1.72;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.14);
    border: 2px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    padding: 16px 50px;
    border-radius: 100px;
    font-size: 28px;
    font-weight: 900;
    transition: all 0.22s;
}

.cta-phone:hover {
    background: #fff;
    color: var(--r);
}

/* â”€â”€ FOOTER â”€â”€ */
footer {
    /* background: #070d1a; */
    /* padding: 52px 60px 22px; */
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 44px;
}

.fb p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.32);
    line-height: 1.72;
    margin-top: 12px;
    max-width: 280px;
}

.fb img {
    height: 36px;
    width: auto;
    margin-bottom: 2px;
    display: block;
}

.fb-links {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.fb-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.38);
    transition: color 0.18s;
}

.fb-links a:hover {
    color: #ff8a7a;
}

.fc h4 {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.22);
    margin-bottom: 14px;
}

.fc ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.fc ul a {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.38);
    transition: color 0.18s;
}

.fc ul a:hover {
    color: rgba(255, 255, 255, 0.82);
}

.fbot {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.fbot p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
}

/* STICKY */
.sticky-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 600;
    display: flex;
    flex-direction: column;
    gap: 9px;
    align-items: flex-end;
}

.sf-call {
    background: var(--r);
    color: #fff;
    padding: 12px 22px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 13.5px;
    box-shadow: 0 6px 26px rgba(215, 45, 39, 0.55);
    display: flex;
    align-items: center;
    gap: 9px;
    animation: fy 3s ease-in-out infinite;
    transition: background 0.18s;
}

.sf-call:hover {
    background: var(--rd);
    animation: none;
}

@keyframes fy {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.sf-wa {
    width: 48px;
    height: 48px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
}

.sf-wa svg {
    width: 26px;
    height: 26px;
    fill: #fff;
}

/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 1100px) {
    .city-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {

    .topbar,
    .hero,
    .filter-bar,
    .count-bar,
    .main,
    .types-strip,
    .cta-band,
    footer {
        padding-left: 16px;
        padding-right: 16px;
    }

    h1.hh {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .city-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        background: url(https://zenzo.in/wp-content/uploads/2026/06/LATESH-Banner-Mobile.png);
        background-position: 30% 0%;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .ts-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cc-actions {
        grid-template-columns: 1fr;
    }

    .nl {
        display: none;
    }
}

/* Highlight search match */
.hl {
    background: #fef08a;
    border-radius: 2px;
    padding: 0 1px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px;
    background: #fff;
    padding: 10px 20px;
    border-radius: 14px;
    position: absolute;
    z-index: 99;
    left: 0;
    right: 0;
}