/* =========================================================
   ONE HEALTH AMBULANCE
   Clean responsive stylesheet
   ========================================================= */

:root {
    --primary: #ff8837;
    --primary-dark: #e56f20;
    --secondary: #9b0d83;
    --text: #222;
    --muted: #666;
    --white: #fff;
    --footer: #0b1018;
    --header-height: 96px;
    --container: 1400px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    width: 100%;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
    color: var(--text);
    background: #fffaf7;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

ul {
    margin: 0;
    padding: 0;
}

/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
    position: relative;
    z-index: 1000;
    width: 100%;
    max-height: var(--header-height);
    padding: 0 5%;
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo {
    max-height: 165px;
    width: auto;
    object-fit: contain;
}

.header-actions {
    display: none;
}

.nav-links {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links > a,
.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 42px;
    padding: 8px 0;
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: color .25s ease;
}

.nav-links > a:hover,
.nav-dropdown-trigger:hover {
    color: var(--primary);
}

.nav-dropdown {
    position: relative;
    flex-shrink: 0;
}

.nav-dropdown-trigger i {
    font-size: 10px;
    transition: transform .25s ease;
}

.nav-dropdown.open > .nav-dropdown-trigger i {
    transform: rotate(180deg);
}

/* =========================================================
   SERVICES DROPDOWN
   ========================================================= */

.services-dropdown {
    position: absolute;
    top: calc(100% + 7px);
    left: 50%;
    width: 270px;
    padding: 8px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.services-wrapper.open .services-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.services-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: background .2s ease, color .2s ease;
}

.services-dropdown a:hover {
    color: var(--primary);
    background: rgba(255, 136, 55, .1);
}

.services-dropdown i {
    width: 20px;
    color: var(--primary);
    text-align: center;
}

/* =========================================================
   AMBULANCE MEGA MENU
   ========================================================= */

.mega-wrapper {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 160%;
    left: 0;
    width: 100%;
    padding: 35px 5%;
    background: #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.mega-wrapper.open .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.mega-grid {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    /* grid-template-columns: repeat(5, minmax(0, 1fr)); */
    gap: 30px;
}

.mega-card {
    display: block;
    min-width: 0;
    color: #505050;
}

.mega-card h2 {
    margin: 0 0 10px;
    color: #222;
    font-size: 16px;
    line-height: 1.35;
}

.mega-card img {
    width: 100%;
    height: 145px;
    margin-bottom: 10px;
    border-radius: 10px;
    object-fit: cover;
}

.mega-card p {
    margin: 0;
    font-size: 12px;
    line-height: 1.65;
}

.mega-card:hover h2 {
    color: var(--primary);
}

/* ------------------------- */

@media (min-width: 769px) {
    .mega-wrapper {
        position: static !important;
    }

    .mega-menu {
        left: 50% !important;
        width: min(1200px, calc(100vw - 40px)) !important;
        transform: translate(-50%, 15px) !important;
    }

    .mega-wrapper.open .mega-menu {
        transform: translate(-50%, 0) !important;
    }
}

/* =========================================================
   HERO)/* =========================================================
   HERO
   ========================================================= */

.oha-page-banner {
    position: relative;
    min-height: 68vh;
    padding: 100px 6%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        linear-gradient(rgba(5, 8, 18, .82), rgba(5, 8, 18, .9)),
        url("images/cover.webp") center / cover no-repeat;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(239, 151, 35, .5), transparent 30%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, .05), transparent 25%);
    pointer-events: none;
}

.oha-page-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1000px;
    text-align: center;
}

.oha-page-content h1 {
    margin: 0 0 24px;
    color: #fff;
    font-size: clamp(2.2rem, 6vw, 4.1rem);
    line-height: 1.1;
    font-weight: 800;
}

.oha-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: #fff;
}

.oha-breadcrumb a,
.oha-breadcrumb span {
    font-size: 15px;
    line-height: 1.5;
}

.oha-breadcrumb a {
    color: #fff;
    font-weight: 500;
}

.oha-breadcrumb a:hover {
    color: var(--primary);
}

.oha-breadcrumb span {
    color: var(--primary);
    font-weight: 700;
}

.oha-breadcrumb > i {
    color: var(--primary);
    font-size: 12px;
}

/* =========================================================
   MAIN FOOTER
   ========================================================= */

.oha-footer {
    padding: 70px 5%;
    background:
        radial-gradient(circle at top left, rgba(223, 125, 13, .65), transparent 35%),
        linear-gradient(135deg, #090d14, #111827 55%, #06080d);
    color: #fff;
}

.oha-footer-container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 28px;
    align-items: start;
}

.oha-brand {
    min-width: 0;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 22px;
}

.footer-logo img {
    width: auto;
    max-width: 230px;
    height: 95px;
    object-fit: contain;
}

.oha-brand p {
    margin: 0 0 18px;
    color: #e5e7eb;
    font-size: 14px;
    line-height: 1.8;
}

.oha-glass-card {
    min-width: 0;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 18px;
    background: rgba(255, 255, 255, .07);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .2);
}

.oha-glass-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    font-size: 18px;
    line-height: 1.4;
}

.oha-glass-card h3 i {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    font-size: 15px;
}

.oha-glass-card ul {
    height: 270px;
    overflow-y: auto;
    list-style: none;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

.oha-glass-card li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 11px;
    color: #f3f4f6;
    font-size: 13px;
    line-height: 1.5;
}

.oha-glass-card li::before {
    content: "›";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
}

.oha-social-box {
    min-width: 0;
    padding: 8px;
}

.oha-social-box h3 {
    margin: 0 0 12px;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    line-height: 1.35;
}

.oha-social-box h3 span {
    color: var(--primary);
}

.oha-social-box > p {
    margin: 0 0 24px;
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.7;
}

.oha-helpline {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px;
    border: 1px solid rgba(245, 153, 14, .65);
    border-radius: 14px;
    background: rgba(223, 114, 12, .12);
}

.oha-helpline > i {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    font-size: 20px;
}

.oha-helpline span {
    min-width: 0;
}

.oha-helpline small {
    display: block;
    margin-bottom: 3px;
    color: #e5e7eb;
    font-size: 10px;
    text-transform: uppercase;
}

.oha-helpline strong {
    display: block;
    color: #fff;
    font-size: 18px;
    white-space: nowrap;
}

.oha-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.oha-social-icons a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    color: #fff;
    transition: background .25s ease, transform .25s ease;
}

.oha-social-icons a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* =========================================================
   COPYRIGHT FOOTER
   ========================================================= */

.site-footer {
    background: #111;
    border-top: 3px solid var(--secondary);
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    min-height: 72px;
    margin: 0 auto;
    padding: 18px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.footer-container p {
    margin: 0;
    color: #999;
    font-size: 13px;
}

.footer-container p span {
    color: var(--primary);
    font-weight: 600;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    color: #999;
    font-size: 13px;
}

.footer-links a:hover {
    color: var(--primary);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {
    .navbar {
        padding: 0 3%;
        gap: 20px;
    }

    .nav-links {
        gap: 18px;
    }

    .oha-footer-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .navbar {
        min-height: var(--header-height);
        padding: 0 16px;
        gap: 10px;
    }

    .header-logo {
        max-width: auto;
        max-height: 80px;
    }

    .header-actions {
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .header-call {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 5px 15px;
        border-radius: 20px;
        background: var(--primary);
        color: #fff;
        font-size: 13px;
        font-weight: 700;
        white-space: nowrap;
    }

    .header-call i {
        font-size: 15px;
    }

    .mobile-menu-btn {
        width: 42px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 0;
        border-radius: 8px;
        background: transparent;
        color: var(--secondary);
        cursor: pointer;
        font-size: 30px;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        max-height: calc(100vh - var(--header-height));
        margin: 0;
        padding: 8px 16px 24px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        overflow-x: hidden;
        overflow-y: auto;
        background: #fff;
        box-shadow: 0 12px 25px rgba(0, 0, 0, .12);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: none;
        transition: opacity .2s ease, visibility .2s ease;
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-links > a,
    .nav-dropdown-trigger {
        width: 100%;
        min-height: 50px;
        justify-content: space-between;
        padding: 14px 4px;
        border-bottom: 1px solid #eee;
        font-size: 15px;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown > .nav-dropdown-trigger {
        appearance: none;
        -webkit-appearance: none;
        color: #222;
        text-align: left;
    }

    .services-dropdown a,
    .mega-menu a {
        text-decoration: none;
    }

    /* Services mobile dropdown */
    .services-dropdown {
        position: static;
        display: none;
        width: 100%;
        margin: 0 0 8px;
        padding: 6px;
        overflow: visible;
        border: 0;
        border-radius: 10px;
        box-shadow: none;
        background: #f7f7f7;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .services-wrapper.open .services-dropdown {
        display: block;
    }

    .services-dropdown a {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
        min-height: 44px;
        padding: 10px 12px;
        border-radius: 7px;
        color: #222;
        background: transparent;
        font-size: 13px;
        line-height: 1.4;
    }

    .services-dropdown a i {
        width: 20px;
        min-width: 20px;
        color: var(--primary);
        text-align: center;
    }

    .services-dropdown a:hover,
    .services-dropdown a:focus {
        color: var(--primary);
        background: rgba(255, 136, 55, .10);
    }

    /* Ambulance mobile dropdown */
    .mega-menu {
        position: static;
        display: none;
        width: 100%;
        margin: 0 0 8px;
        padding: 12px;
        overflow: visible;
        border: 0;
        box-shadow: none;
        border-radius: 10px;
        background: #f7f7f7;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .mega-wrapper.open .mega-menu {
        display: block;
    }

    .mega-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .mega-card {
        padding-bottom: 12px;
        border-bottom: 1px solid #e5e5e5;
    }

    .mega-card:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .mega-card h2 {
        margin-bottom: 8px;
        font-size: 14px;
    }

    .mega-card img {
        height: 150px;
        margin-bottom: 8px;
    }

    .mega-card p {
        font-size: 12px;
        line-height: 1.55;
    }

    /* Hero */
    .oha-page-banner {
        min-height: 55vh;
        padding: 80px 20px;
    }

    .oha-page-content h1 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .oha-breadcrumb {
        gap: 7px;
    }

    .oha-breadcrumb a,
    .oha-breadcrumb span {
        font-size: 13px;
    }

    /* Footer */
    .oha-footer {
        padding: 50px 20px 35px;
    }

    .oha-footer-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-logo img {
        height: 80px;
    }

    .oha-glass-card ul {
        height: auto;
        max-height: 240px;
    }

    .footer-container {
        min-height: auto;
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {
    .navbar {
        padding: 0 12px;
    }
    .header-call {
        padding: 7px 8px;
        font-size: 10px;
    }

    .mobile-menu-btn {
        width: 38px;
        height: 38px;
    }

    .nav-links {
        padding-left: 12px;
        padding-right: 12px;
    }

    .oha-page-banner {
        min-height: 52vh;
        padding: 70px 16px;
    }

    .oha-page-content h1 {
        margin-bottom: 20px;
    }

    .oha-breadcrumb {
        line-height: 1.4;
    }

    .oha-glass-card {
        padding: 20px 16px;
    }

    .oha-glass-card h3 {
        font-size: 16px;
    }

    .oha-helpline {
        align-items: flex-start;
    }

    .oha-helpline strong {
        font-size: 16px;
    }
}

@media (max-width: 360px) {
    .header-call span {
        display: none;
    }

    .header-call {
        width: 34px;
        height: 34px;
        padding: 0;
        border-radius: 50%;
    }

    .mobile-menu-btn {
        width: 36px;
        height: 36px;
    }

    .oha-page-content h1 {
        font-size: 1.85rem;
    }
}


/* Desktop header alignment */
/* @media (min-width: 769px) {
    .navbar {
        padding-left: 4%;
        padding-right: 4%;
    }

    .nav-links {
        gap: 30px;
    }

    .header-logo {
        max-width: 220px;
        max-height: 92px;
    }
} */


/* =========================================================
   FINAL MOBILE NAVIGATION OVERRIDES
   ========================================================= */

@media (max-width: 768px) {
    .nav-links {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-height: calc(100vh - var(--header-height)) !important;
        margin: 0 !important;
        padding: 8px 16px 24px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        background: #fff !important;
        box-shadow: 0 12px 25px rgba(0, 0, 0, .12) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translateY(-8px) !important;
    }

    .nav-links.open {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
    }

    /* Services: no max-height animation = no blank/empty area */
    .services-dropdown {
        position: static !important;
        display: none !important;
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        margin: 0 0 8px !important;
        padding: 6px !important;
        overflow: visible !important;
        border: 0 !important;
        border-radius: 10px !important;
        box-shadow: none !important;
        background: #f7f7f7 !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
    }

    .services-wrapper.open .services-dropdown {
        display: block !important;
    }

    .services-dropdown a {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        width: 100% !important;
        min-height: 44px !important;
        margin: 0 !important;
        padding: 10px 12px !important;
        color: #222 !important;
        background: transparent !important;
        font-size: 13px !important;
        line-height: 1.4 !important;
        border-radius: 7px !important;
    }

    .services-dropdown a i {
        display: inline-flex !important;
        width: 20px !important;
        min-width: 20px !important;
        color: var(--primary) !important;
        text-align: center !important;
    }

    /* Ambulance mega menu */
    .mega-menu {
        position: static !important;
        display: none !important;
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        margin: 0 0 8px !important;
        padding: 12px !important;
        overflow: visible !important;
        border: 0 !important;
        box-shadow: none !important;
        border-radius: 10px !important;
        background: #f7f7f7 !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
    }

    .mega-wrapper.open .mega-menu {
        display: block !important;
    }

    .mega-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        width: 100% !important;
    }

    .mega-card {
        width: 100% !important;
        min-width: 0 !important;
    }

    .mega-card img {
        width: 100% !important;
        height: 220px !important;
        object-fit: cover !important;
    }
}

/* ---------------------------section--------------- */
/* --------------------------------------------------- */

/* =========================================================
   ONE HEALTH AMBULANCE
   AMBULANCE SERVICE IN HYDERABAD
   RESPONSIVE CONTENT SECTION
   ========================================================= */

.oha-ambulance-section {
    position: relative;
    overflow: hidden;
    padding: 90px 5%;
    background: #fffaf7;
    color: #222;
}

.oha-section-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}


/* =========================================================
   BACKGROUND SHAPES
   ========================================================= */

.oha-bg-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
}

.oha-shape-one {
    top: 100px;
    left: -180px;
    width: 380px;
    height: 380px;
    background: rgba(255, 136, 55, .08);
}

.oha-shape-two {
    right: -160px;
    top: 700px;
    width: 350px;
    height: 350px;
    background: rgba(155, 13, 131, .06);
}


/* =========================================================
   SECTION HEADER
   ========================================================= */

.oha-section-header {
    max-width: 900px;
    margin: 0 auto 65px;
    text-align: center;
}

.oha-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    color: var(--primary, #ff8837);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.oha-eyebrow i {
    font-size: 14px;
}

.oha-section-header h2,
.oha-care-heading h2,
.oha-location-heading h2,
.oha-private-content h2 {
    margin: 0 0 18px;
    color: #202020;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    font-weight: 800;
}

.oha-section-header h2 span,
.oha-care-heading h2 span,
.oha-location-heading h2 span,
.oha-private-content h2 span {
    color: var(--secondary, #9b0d83);
}

.oha-section-header p {
    max-width: 820px;
    margin: 0 auto;
    color: #666;
    font-size: 16px;
    line-height: 1.85;
}


/* =========================================================
   INTRO GRID
   ========================================================= */

.oha-intro-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
    margin-bottom: 100px;
}


/* =========================================================
   INTRO CONTENT
   ========================================================= */

.oha-intro-content {
    min-width: 0;
}

.oha-section-tag {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    color: var(--primary, #ff8837);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.oha-section-tag span {
    width: 30px;
    height: 3px;
    border-radius: 10px;
    background: var(--primary, #ff8837);
}

.oha-intro-content h3 {
    margin: 0 0 22px;
    color: #222;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    font-weight: 800;
}

.oha-intro-content h3 strong {
    display: block;
    color: var(--secondary, #9b0d83);
}

.oha-intro-content p {
    margin: 0 0 18px;
    color: #666;
    font-size: 15px;
    line-height: 1.85;
}

.oha-intro-content p strong {
    color: #333;
    font-weight: 700;
}


/* =========================================================
   HIGHLIGHT CARDS
   ========================================================= */

.oha-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
    margin-top: 28px;
}

.oha-highlight-card {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 7px 25px rgba(0, 0, 0, .05);
}

.oha-highlight-icon {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: rgba(255, 136, 55, .12);
    color: var(--primary, #ff8837);
}

.oha-highlight-card strong {
    display: block;
    margin-bottom: 2px;
    color: #222;
    font-size: 14px;
}

.oha-highlight-card span {
    display: block;
    color: #777;
    font-size: 11px;
    line-height: 1.4;
}


/* =========================================================
   VISUAL IMAGE
   ========================================================= */

.oha-service-visual {
    position: relative;
    min-width: 0;
}

.oha-visual-image {
    position: relative;
    min-height: 510px;
    overflow: hidden;
    border-radius: 28px;
    background: #111827;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .16);
}

.oha-visual-image img {
    width: 100%;
    height: 510px;
    object-fit: cover;
}

.oha-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(8, 13, 24, .05) 20%,
            rgba(8, 13, 24, .8) 100%
        );
}

.oha-visual-badge {
    position: absolute;
    left: 25px;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 17px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 14px;
    background: rgba(10, 15, 25, .72);
    color: #fff;
    backdrop-filter: blur(12px);
}

.oha-visual-badge > i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary, #ff8837);
}

.oha-visual-badge strong,
.oha-visual-badge span {
    display: block;
}

.oha-visual-badge strong {
    font-size: 14px;
}

.oha-visual-badge span {
    margin-top: 2px;
    color: #ddd;
    font-size: 10px;
}


/* =========================================================
   FLOATING PHONE CARD
   ========================================================= */

.oha-floating-card {
    position: absolute;
    right: -25px;
    bottom: 35px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: max-content;
    max-width: calc(100% - 20px);
    padding: 14px 18px;
    border: 1px solid rgba(255, 136, 55, .25);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .16);
}

.oha-floating-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary, #ff8837);
    color: #fff;
}

.oha-floating-card span {
    display: block;
    margin-bottom: 3px;
    color: #777;
    font-size: 10px;
    text-transform: uppercase;
}

.oha-floating-card a {
    color: #222;
    font-size: 16px;
    font-weight: 800;
    white-space: nowrap;
}


/* =========================================================
   CARE SECTION
   ========================================================= */

.oha-care-section {
    margin-bottom: 100px;
}

.oha-care-heading {
    max-width: 800px;
    margin: 0 auto 42px;
    text-align: center;
}

.oha-care-heading p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.oha-care-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
}

.oha-care-card {
    position: relative;
    min-width: 0;
    padding: 30px;
    overflow: hidden;
    border: 1px solid #eee;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .06);
    transition: transform .3s ease, box-shadow .3s ease;
}

.oha-care-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .1);
}

.oha-care-card::after {
    content: "";
    position: absolute;
    right: -70px;
    top: -70px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 136, 55, .07);
}

.oha-bls-card::after {
    background: rgba(155, 13, 131, .06);
}

.oha-care-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 22px;
}

.oha-care-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(255, 136, 55, .12);
    color: var(--primary, #ff8837);
    font-size: 22px;
}

.oha-bls-card .oha-care-icon {
    background: rgba(155, 13, 131, .1);
    color: var(--secondary, #9b0d83);
}

.oha-care-label {
    padding: 7px 11px;
    border-radius: 30px;
    background: #fff4eb;
    color: var(--primary-dark, #e56f20);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.oha-bls-card .oha-care-label {
    background: #f8eff7;
    color: var(--secondary, #9b0d83);
}

.oha-care-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 12px;
    color: #222;
    font-size: 25px;
}

.oha-care-card p {
    position: relative;
    z-index: 1;
    margin: 0 0 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.75;
}

.oha-care-card ul {
    position: relative;
    z-index: 1;
    margin: 0 0 25px;
    padding: 0;
    list-style: none;
}

.oha-care-card li {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
    color: #444;
    font-size: 13px;
}

.oha-care-card li i {
    color: var(--primary, #ff8837);
}

.oha-bls-card li i {
    color: var(--secondary, #9b0d83);
}

.oha-card-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--primary, #ff8837);
    font-size: 13px;
    font-weight: 700;
}

.oha-card-link:hover {
    color: var(--primary-dark, #e56f20);
}

.oha-card-link i {
    transition: transform .2s ease;
}

.oha-card-link:hover i {
    transform: translateX(4px);
}


/* =========================================================
   LOCATION SECTION
   ========================================================= */

.oha-location-section {
    margin-bottom: 90px;
    padding: 55px;
    border-radius: 25px;
    background:
        linear-gradient(
            135deg,
            #0a101a,
            #172030
        );
    color: #fff;
}

.oha-location-heading {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 35px;
}

.oha-location-heading h2 {
    margin-bottom: 0;
    color: #fff;
}

.oha-location-heading h2 span {
    color: var(--primary, #ff8837);
}

.oha-location-heading p {
    margin: 0;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.8;
}

.oha-location-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.oha-location-card {
    min-width: 0;
    padding: 18px 13px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 13px;
    background: rgba(255, 255, 255, .06);
    text-align: center;
    transition: background .25s ease, transform .25s ease;
}

.oha-location-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 136, 55, .15);
}

.oha-location-card > i {
    display: block;
    margin-bottom: 9px;
    color: var(--primary, #ff8837);
}

.oha-location-card span {
    display: block;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.oha-location-card small {
    display: block;
    margin-top: 3px;
    color: #9ca3af;
    font-size: 9px;
}


/* =========================================================
   EMERGENCY INFO
   ========================================================= */

.oha-emergency-info {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: start;
    margin-bottom: 70px;
    padding: 30px;
    border: 1px solid rgba(255, 136, 55, .25);
    border-radius: 20px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 136, 55, .09),
            rgba(155, 13, 131, .05)
        );
}

.oha-emergency-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--primary, #ff8837);
    color: #fff;
    font-size: 23px;
}

.oha-emergency-content > span {
    display: block;
    margin-bottom: 6px;
    color: var(--primary-dark, #e56f20);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.oha-emergency-content h3 {
    margin: 0 0 10px;
    color: #222;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
}

.oha-emergency-content p {
    max-width: 1000px;
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   PRIVATE AMBULANCE CTA
   ========================================================= */

.oha-private-section {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 35px;
    align-items: center;
    padding: 42px;
    border-radius: 25px;
    background:
        linear-gradient(
            135deg,
            #9b0d83,
            #5e0750
        );
    color: #fff;
    box-shadow: 0 20px 50px rgba(94, 7, 80, .2);
}

.oha-private-content .oha-eyebrow {
    color: #ffb27e;
}

.oha-private-content h2 {
    color: #fff;
    margin-bottom: 14px;
}

.oha-private-content h2 span {
    color: #ffb27e;
}

.oha-private-content > p {
    max-width: 760px;
    margin: 0;
    color: #f2ddec;
    font-size: 14px;
    line-height: 1.8;
}

.oha-private-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-top: 20px;
}

.oha-private-points span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-size: 11px;
}

.oha-private-points i {
    color: #ffb27e;
}

.oha-private-action {
    min-width: 250px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 17px;
    background: rgba(255, 255, 255, .08);
    text-align: center;
}

.oha-private-action > span {
    display: block;
    margin-bottom: 10px;
    color: #e9d9e6;
    font-size: 11px;
}

.oha-private-action a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 9px;
    background: var(--primary, #ff8837);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    transition: transform .25s ease, background .25s ease;
}

.oha-private-action a:hover {
    background: var(--primary-dark, #e56f20);
    transform: translateY(-2px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .oha-ambulance-section {
        padding: 75px 4%;
    }

    .oha-intro-grid {
        gap: 45px;
    }

    .oha-location-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .oha-location-heading {
        grid-template-columns: 1fr;
        gap: 15px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .oha-ambulance-section {
        padding: 60px 18px;
    }

    .oha-section-header {
        margin-bottom: 45px;
    }

    .oha-section-header h2,
    .oha-care-heading h2,
    .oha-location-heading h2,
    .oha-private-content h2 {
        font-size: 2rem;
    }

    .oha-section-header p {
        font-size: 14px;
        line-height: 1.75;
    }


    /* Intro */

    .oha-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 70px;
    }

    .oha-intro-content h3 {
        font-size: 2.25rem;
    }

    .oha-intro-content p {
        font-size: 14px;
    }


    /* Highlights */

    .oha-highlight-grid {
        gap: 10px;
    }

    .oha-highlight-card {
        padding: 12px;
    }


    /* Image */

    .oha-visual-image {
        min-height: 400px;
        border-radius: 20px;
    }

    .oha-visual-image img {
        height: 400px;
    }

    .oha-floating-card {
        right: 12px;
        bottom: 20px;
    }


    /* Care */

    .oha-care-section {
        margin-bottom: 70px;
    }

    .oha-care-grid {
        grid-template-columns: 1fr;
    }

    .oha-care-card {
        padding: 24px;
    }


    /* Locations */

    .oha-location-section {
        margin-bottom: 60px;
        padding: 30px 22px;
        border-radius: 20px;
    }

    .oha-location-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    /* Emergency */

    .oha-emergency-info {
        grid-template-columns: 1fr;
        padding: 25px;
    }


    /* CTA */

    .oha-private-section {
        grid-template-columns: 1fr;
        padding: 30px 24px;
    }

    .oha-private-action {
        width: 100%;
        min-width: 0;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .oha-ambulance-section {
        padding: 50px 14px;
    }

    .oha-section-header h2,
    .oha-care-heading h2,
    .oha-location-heading h2,
    .oha-private-content h2 {
        font-size: 1.75rem;
    }

    .oha-eyebrow {
        font-size: 10px;
    }


    /* Highlights become one column */
    .oha-highlight-grid {
        grid-template-columns: 1fr;
    }


    /* Image */
    .oha-visual-image {
        min-height: 330px;
    }

    .oha-visual-image img {
        height: 330px;
    }

    .oha-visual-badge {
        left: 15px;
        bottom: 15px;
        padding: 10px 12px;
    }

    .oha-floating-card {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: 100%;
        margin-top: -1px;
        border-radius: 0 0 14px 14px;
    }


    /* Care cards */
    .oha-care-card {
        padding: 21px;
    }

    .oha-care-top {
        align-items: flex-start;
    }

    .oha-care-label {
        font-size: 9px;
    }


    /* Locations */
    .oha-location-grid {
        grid-template-columns: 1fr;
    }


    /* Emergency */
    .oha-emergency-info {
        padding: 22px;
    }


    /* CTA */
    .oha-private-points {
        flex-direction: column;
        gap: 9px;
    }

    .oha-private-action a {
        width: 100%;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 360px) {

    .oha-ambulance-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .oha-section-header h2,
    .oha-care-heading h2,
    .oha-location-heading h2,
    .oha-private-content h2 {
        font-size: 1.6rem;
    }

    .oha-intro-content h3 {
        font-size: 1.95rem;
    }

    .oha-care-card {
        padding: 18px;
    }

    .oha-location-section {
        padding: 25px 16px;
    }

}
