/* =========================================================
   STAR AMBULANCE SERVICE
   MAIN STYLESHEET
========================================================= */


/* =========================================================
   01. ROOT VARIABLES
========================================================= */

:root {
    --primary: #092f86;
    --primary-dark: #061d67;
    --primary-light: #edf3fc;

    --red: #e52b27;
    --red-dark: #c91e1a;

    --green: #19a844;
    --green-dark: #128235;

    --white: #ffffff;
    --black: #111827;

    --text: #283142;
    --text-light: #697386;

    --border: #dfe5ee;
    --light-bg: #f7f9fc;

    --shadow-sm: 0 5px 20px rgba(9, 47, 134, 0.07);
    --shadow-md: 0 12px 30px rgba(9, 47, 134, 0.11);

    --radius: 12px;
}


/* =========================================================
   02. GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

.container {
    max-width: 1200px;
}


/* =========================================================
   03. EMERGENCY TOP BAR
========================================================= */

.emergency-topbar {
    background: var(--primary-dark);
    color: var(--white);
    min-height: 42px;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
}

.emergency-message {
    display: flex;
    align-items: center;
    gap: 8px;
}

.emergency-message i {
    color: var(--red);
    font-size: 15px;
}

.emergency-contact {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.emergency-contact a {
    color: var(--white);
}

.emergency-contact a:hover {
    color: #ffd400;
}


/* =========================================================
   04. MAIN HEADER
========================================================= */

.main-header {
    background: var(--white);
    position: relative;
    z-index: 1000;
    box-shadow: 0 4px 18px rgba(9, 47, 134, 0.08);
}

.main-header .navbar {
    min-height: 82px;
}


/* Logo */

.brand-logo {
    width: 275px;
}

.brand-logo img {
    width: 100%;
    height: auto;
}


/* Navigation */

.main-header .nav-link {
    position: relative;
    color: #182139;
    font-size: 13px;
    font-weight: 700;
    padding: 30px 11px !important;
}

.main-header .nav-link:hover,
.main-header .nav-link.active {
    color: var(--red);
}

.main-header .nav-link.active::after {
    content: "";
    position: absolute;
    left: 11px;
    right: 11px;
    bottom: 19px;
    height: 2px;
    background: var(--red);
}


/* Header Call */

.header-call a {
    display: flex;
    align-items: center;
    gap: 9px;

    background: var(--red);
    color: var(--white);

    padding: 10px 17px;
    border-radius: 7px;

    font-size: 13px;
    font-weight: 800;
}

.header-call a:hover {
    background: var(--red-dark);
    color: var(--white);
    transform: translateY(-1px);
}

.header-call i {
    font-size: 17px;
}

.header-call span {
    line-height: 1.15;
}

.header-call small {
    display: block;
    font-size: 9px;
    margin-top: 3px;
    opacity: 0.9;
}


/* =========================================================
   05. HERO SECTION
=/* =========================================================
   STAR AMBULANCE
   PREMIUM HERO - FINAL CSS
========================================================= */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 590px;
    overflow: hidden;
    background: #061d3b;
}


/* =========================================================
   HERO SLIDER
========================================================= */

.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background-repeat: no-repeat;
    background-size: cover;

    /*
     * Important:
     * Generated banner has ambulance on right
     * and clean dark area on left.
     */
    background-position: center center;

    opacity: 0;

    transform: scale(1.03);

    transition:
        opacity 1s ease-in-out,
        transform 7s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}


/* =========================================================
   PREMIUM OVERLAY
========================================================= */

.hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(3, 24, 52, .92) 0%,
            rgba(4, 31, 65, .78) 25%,
            rgba(5, 37, 73, .43) 48%,
            rgba(5, 37, 73, .12) 72%,
            rgba(3, 22, 45, .05) 100%
        );

    pointer-events: none;
}


/* subtle bottom depth */

.hero-overlay::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 150px;

    background:
        linear-gradient(
            0deg,
            rgba(3, 21, 43, .40),
            transparent
        );
}


/* =========================================================
   CONTENT CONTAINER
========================================================= */

.hero-container {
    position: relative;
    z-index: 5;

    min-height: 590px;

    display: flex;
    align-items: center;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    max-width: 700px;

    padding: 30px 0 45px;
}


/* =========================================================
   LABEL
========================================================= */

.hero-label {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-bottom: 16px;

    color: #ffffff;

    font-size: 13px;
    line-height: 1.2;

    font-weight: 700;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}

.hero-label::before {
    content: "";

    width: 28px;
    height: 2px;

    background: var(--red);

    border-radius: 2px;
}

.hero-label span {
    color: var(--red);
}


/* =========================================================
   MAIN HEADING
========================================================= */

.hero-content h1 {
    max-width: 680px;

    margin: 0 0 20px;

    color: #ffffff;

    font-size: clamp(44px, 5vw, 66px);

    line-height: 1.02;

    font-weight: 800;

    letter-spacing: -1.7px;
}

.hero-content h1 span {
    color: var(--red);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.hero-description {
    max-width: 570px;

    margin: 0 0 28px;

    color: rgba(255, 255, 255, .82);

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   BUTTON WRAPPER
========================================================= */

.hero-buttons {
    display: flex;
    align-items: center;

    gap: 11px;

    margin-bottom: 31px;
}


/* =========================================================
   HERO BUTTON
========================================================= */

.hero-btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-width: 128px;
    min-height: 46px;

    padding: 11px 19px;

    border-radius: 7px;

    font-size: 12px;
    line-height: 1;

    font-weight: 700;

    text-decoration: none;

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}

.hero-btn i {
    font-size: 13px;
}


/* =========================================================
   CALL BUTTON
========================================================= */

.hero-btn-call {
    background: var(--red);

    color: #fff;

    box-shadow:
        0 8px 20px rgba(220, 38, 38, .28);
}

.hero-btn-call:hover {
    background: #c91e1e;

    color: #fff;

    transform: translateY(-3px);

    box-shadow:
        0 13px 28px rgba(220, 38, 38, .35);
}


/* =========================================================
   WHATSAPP BUTTON
========================================================= */

.hero-btn-whatsapp {
    background: #16a85a;

    color: #fff;

    box-shadow:
        0 8px 20px rgba(22, 168, 90, .25);
}

.hero-btn-whatsapp:hover {
    background: #108c4b;

    color: #fff;

    transform: translateY(-3px);

    box-shadow:
        0 13px 28px rgba(22, 168, 90, .32);
}


/* =========================================================
   HIGHLIGHTS
========================================================= */

.hero-highlights {
    display: flex;
    align-items: center;

    width: fit-content;

    padding: 3px 0;
}


/* individual */

.highlight-item {
    display: flex;
    align-items: center;

    gap: 10px;

    min-width: 140px;
}


/* icon */

.highlight-icon {
    width: 39px;
    height: 39px;

    flex: 0 0 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: rgba(255,255,255,.08);

    border: 1px solid rgba(255,255,255,.16);

    color: #ffffff;

    font-size: 16px;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.08);
}


/* text */

.highlight-text {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.highlight-text strong {
    color: #ffffff;

    font-size: 11px;

    line-height: 1.2;

    font-weight: 700;
}

.highlight-text span {
    color: rgba(255,255,255,.58);

    font-size: 9px;

    line-height: 1.2;
}


/* =========================================================
   HIGHLIGHT DIVIDER
========================================================= */

.highlight-divider {
    width: 1px;
    height: 38px;

    margin: 0 17px;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(255,255,255,.25),
            transparent
        );
}


/* =========================================================
   SLIDER DOTS
========================================================= */

.hero-slider-dots {
    position: absolute;

    left: 50%;
    bottom: 20px;

    z-index: 10;

    display: flex;
    align-items: center;

    gap: 7px;

    transform: translateX(-50%);
}

.hero-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: rgba(255,255,255,.72);

    cursor: pointer;

    transition:
        width .3s ease,
        background .3s ease;
}

.hero-dot.active {
    width: 27px;

    border-radius: 10px;

    background: var(--red);
}


/* =========================================================
   PREMIUM LIGHT EFFECT ON LEFT
========================================================= */

.hero-content::before {
    content: "";

    position: absolute;

    left: -120px;
    top: 20%;

    width: 260px;
    height: 260px;

    background:
        radial-gradient(
            circle,
            rgba(33, 119, 255, .10),
            transparent 70%
        );

    pointer-events: none;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .hero-section,
    .hero-container {
        min-height: 620px;
    }

    .hero-content h1 {
        font-size: 70px;
    }

    .hero-description {
        font-size: 15px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .hero-section,
    .hero-container {
        min-height: 560px;
    }

    .hero-slide {
        background-position: 62% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(3,24,52,.94) 0%,
                rgba(4,31,65,.78) 42%,
                rgba(5,37,73,.38) 75%,
                rgba(3,22,45,.10) 100%
            );
    }

    .hero-content {
        max-width: 620px;
    }

    .hero-content h1 {
        font-size: 48px;

        letter-spacing: -1px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .hero-section,
    .hero-container {
        min-height: 650px;
    }

    .hero-slide {
        background-position: 68% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(3,24,52,.96) 0%,
                rgba(4,31,65,.91) 58%,
                rgba(5,37,73,.70) 100%
            );
    }

    .hero-container {
        align-items: center;
    }

    .hero-content {
        padding: 35px 0 50px;
    }

    .hero-label {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .hero-content h1 {
        font-size: 39px;

        line-height: 1.05;

        letter-spacing: -.8px;

        margin-bottom: 17px;
    }

    .hero-description {
        max-width: 480px;

        font-size: 13px;

        line-height: 1.65;

        margin-bottom: 22px;
    }

    .hero-buttons {
        margin-bottom: 26px;
    }

    .hero-btn {
        min-width: 116px;
        min-height: 43px;

        padding: 10px 14px;

        font-size: 11px;
    }

    .hero-highlights {
        width: 100%;
    }

    .highlight-item {
        min-width: 0;
        flex: 1;

        gap: 7px;
    }

    .highlight-icon {
        width: 32px;
        height: 32px;

        flex: 0 0 32px;

        font-size: 13px;
    }

    .highlight-text strong {
        font-size: 9px;
    }

    .highlight-text span {
        font-size: 7.5px;
    }

    .highlight-divider {
        height: 30px;
        margin: 0 7px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .hero-section,
    .hero-container {
        min-height: 670px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-description {
        font-size: 12px;
    }

    .hero-buttons {
        flex-wrap: wrap;
    }

    .hero-highlights {
        align-items: flex-start;
    }

    .highlight-divider {
        margin: 0 4px;
    }

}
/* =========================================================
   STICKY MAIN HEADER
========================================================= */

.main-header {
    position: sticky;

    top: 0;

    z-index: 1000;

    background: var(--white);

    box-shadow:
        0 4px 18px rgba(9, 47, 134, 0.08);
}


.main-header.header-scrolled {
    box-shadow:
        0 7px 25px rgba(9, 47, 134, 0.14);
}
/* =========================================================
   06. COMMON SECTION
========================================================= */

.section-padding {
    padding: 80px 0;
}

.section-heading {
    margin-bottom: 40px;
}

.section-subtitle {
    color: var(--red);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1.2px;

    text-transform: uppercase;

    margin-bottom: 8px;
}

.section-heading h2 {
    color: var(--primary);

    font-family: "Oswald", Arial, sans-serif;

    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;

    text-transform: uppercase;

    margin-bottom: 10px;
}

.section-heading h2 span {
    color: var(--red);
}

.section-heading p {
    color: var(--text-light);

    font-size: 14px;

    max-width: 650px;

    margin: 0 auto;
}


/* =========================================================
   07. ABOUT SECTION
========================================================= */

.about-section {
    background: var(--white);
}


/* About Box */

.about-content {
    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    padding: 35px;

    box-shadow: var(--shadow-sm);
}

.about-content h2 {
    font-family: "Oswald", Arial, sans-serif;

    color: var(--primary);

    font-size: 34px;

    line-height: 1.2;

    margin-bottom: 10px;
}

.about-content h2 span {
    color: var(--red);
}

.about-content p {
    color: var(--text-light);

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 25px;
}


/* About Highlights */

.about-highlights {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 12px;

    padding: 22px 0;

    border-top: 1px solid #edf0f5;
    border-bottom: 1px solid #edf0f5;
}

.about-highlight {
    text-align: center;
}

.about-highlight i {
    display: block;

    color: var(--green);

    font-size: 26px;

    margin-bottom: 7px;
}

.about-highlight strong {
    display: block;

    color: var(--primary);

    font-size: 13px;
}

.about-highlight span {
    display: block;

    color: var(--text-light);

    font-size: 11px;
}


/* About Location */

.about-location {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 22px;

    color: var(--text);

    font-size: 13px;
    font-weight: 700;
}

.about-location i {
    color: var(--red);

    font-size: 28px;
}


/* =========================================================
   08. QUICK CONTACT
========================================================= */

.quick-contact {
    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow-sm);

    padding: 32px;
}

.contact-heading {
    display: flex;

    align-items: center;

    gap: 9px;

    background: var(--primary);

    color: var(--white);

    font-family: "Oswald", Arial, sans-serif;

    font-size: 21px;

    text-transform: uppercase;

    padding: 15px 20px;

    margin: -32px -32px 27px;

    border-radius: 11px 11px 0 0;
}

.contact-heading i {
    color: #ffd400;
}


/* Form */

.quick-contact .form-control,
.quick-contact .form-select {
    min-height: 47px;

    border: 1px solid #d9dfeb;

    border-radius: 6px;

    color: var(--text);

    font-size: 13px;

    padding: 11px 13px;

    box-shadow: none;
}

.quick-contact textarea.form-control {
    min-height: 105px;

    resize: vertical;
}

.quick-contact .form-control:focus,
.quick-contact .form-select:focus {
    border-color: var(--primary);

    box-shadow:
        0 0 0 3px rgba(9, 47, 134, 0.08);
}

.quick-contact .btn-danger {
    min-height: 47px;

    background: var(--red);

    border: 0;

    border-radius: 6px;

    font-size: 13px;

    font-weight: 800;

    text-transform: uppercase;
}

.quick-contact .btn-danger:hover {
    background: var(--red-dark);
}


/* =========================================================
   09. AMBULANCE SERVICES
========================================================= */

.services-section {
    background: var(--light-bg);
}


/* Service Card */

.service-card {
    height: 100%;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    overflow: hidden;

    box-shadow: var(--shadow-sm);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);

    box-shadow: var(--shadow-md);
}


/* Service Image */

.service-image {
    height: 215px;

    overflow: hidden;

    background: #eaf0f8;
}

.service-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.04);
}


/* Service Content */

.service-content {
    min-height: 210px;

    display: flex;
    flex-direction: column;

    align-items: center;

    text-align: center;

    padding: 22px 20px 24px;
}

.service-content h3 {
    color: var(--primary);

    font-family: "Oswald", Arial, sans-serif;

    font-size: 21px;

    line-height: 1.25;

    font-weight: 600;

    text-transform: uppercase;

    margin-bottom: 10px;
}

.service-content p {
    color: var(--text-light);

    font-size: 12px;

    line-height: 1.6;

    max-width: 300px;

    margin-bottom: 18px;
}


/* Book Now */

.service-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-top: auto;

    background: var(--red);

    color: var(--white);

    padding: 10px 22px;

    border-radius: 5px;

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;
}

.service-btn:hover {
    background: var(--red-dark);

    color: var(--white);

    transform: translateY(-1px);
}

.service-btn i {
    font-size: 13px;
}


/* =========================================================
   10. WHY CHOOSE SECTION
========================================================= */

.why-choose-section {
    background: var(--primary);

    padding: 55px 0;
}

.why-choose-section .section-subtitle {
    color: #ffd000;
}

.why-choose-section .section-heading h2 {
    color: var(--white);
}

.why-choose-section .section-heading h2 span {
    color: #ffd000;
}

.why-item {
    min-height: 125px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 15px;

    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.why-item i {
    color: var(--white);

    font-size: 31px;

    margin-bottom: 9px;
}

.why-item strong {
    color: var(--white);

    font-size: 13px;

    margin-bottom: 4px;
}

.why-item span {
    color: #d9e3ff;

    font-size: 10px;
}


/* =========================================================
   11. MEDICAL SUPPORT
========================================================= */

.medical-support {
    background: var(--white);
}

.support-card {
    height: 100%;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 10px;

    padding: 25px;

    box-shadow: var(--shadow-sm);

    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-4px);

    box-shadow: var(--shadow-md);

    border-color: #cbd6e8;
}

.support-card i {
    display: block;

    color: var(--primary);

    font-size: 38px;

    margin-bottom: 15px;
}

.support-card h3 {
    color: var(--primary);

    font-family: "Oswald", Arial, sans-serif;

    font-size: 19px;

    text-transform: uppercase;

    margin-bottom: 7px;
}

.support-card p {
    color: var(--text-light);

    font-size: 12px;

    line-height: 1.6;

    margin-bottom: 0;
}


/* =========================================================
   12. EMERGENCY CTA
========================================================= */

.emergency-cta {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            100deg,
            var(--primary-dark),
            var(--primary)
        );

    color: var(--white);

    padding: 34px 0;

    border-top: 4px solid var(--red);
}

.emergency-cta::after {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;

    right: -100px;
    top: -170px;

    pointer-events: none;
}


/* =========================================================
   CTA CONTENT
========================================================= */

.emergency-cta .cta-content {
    position: relative;
    z-index: 2;
}

.emergency-cta .cta-content > span {
    display: block;

    margin-bottom: 6px;

    font-size: 20px;
    line-height: 1.3;
    font-weight: 500;

    color: var(--white);
}

.emergency-cta .cta-content h2 {
    margin: 0;

    font-size: 19px;
    line-height: 1.4;
    font-weight: 400;

    color: var(--white);
}


/* =========================================================
   CTA BUTTON WRAPPER
========================================================= */

.emergency-cta .cta-button {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    justify-content: flex-start;

    gap: 10px;

    width: auto;

    padding: 8px 10px;

    background: var(--red);

    border-radius: 6px;
}


/* =========================================================
   CTA BUTTONS
========================================================= */

.emergency-cta .cta-button .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

    min-height: 38px;

    padding: 8px 14px;

    border: 0;
    border-radius: 5px;

    font-size: 12px;
    line-height: 1.2;
    font-weight: 600;

    white-space: nowrap;
}

.emergency-cta .cta-button .btn i {
    font-size: 13px;
}


/* =========================================================
   CALL BUTTON
========================================================= */

.emergency-cta .cta-button .btn-danger {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.emergency-cta .cta-button .btn-danger:hover {
    background: rgba(255, 255, 255, 0.20);
    color: var(--white);
}


/* =========================================================
   WHATSAPP BUTTON
========================================================= */

.emergency-cta .cta-button .btn-success {
    background: #12a866;
    color: var(--white);
}

.emergency-cta .cta-button .btn-success:hover {
    background: #0e9257;
    color: var(--white);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .emergency-cta {
        padding: 30px 0;
    }

    .emergency-cta .cta-button {
        margin-top: 5px;
    }

}


@media (max-width: 575px) {

    .emergency-cta {
        padding: 26px 0;
    }

    .emergency-cta .cta-content > span {
        font-size: 17px;
    }

    .emergency-cta .cta-content h2 {
        font-size: 16px;
    }

    .emergency-cta .cta-button {
        width: auto;

        flex-wrap: wrap;

        gap: 7px;

        padding: 7px;
    }

    .emergency-cta .cta-button .btn {
        min-height: 36px;

        padding: 7px 11px;

        font-size: 11px;
    }

}
/* =========================================================
   13. SERVICE COVERAGE
========================================================= */

.coverage-section {
    background: var(--light-bg);
}

.coverage-list {
    max-width: 1000px;

    margin: 0 auto;

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;
}

.coverage-list span {
    background: var(--white);

    color: var(--primary);

    border: 1px solid var(--border);

    border-radius: 6px;

    padding: 11px 18px;

    font-size: 12px;

    font-weight: 700;

    box-shadow: 0 3px 10px rgba(9, 47, 134, 0.04);
}

.coverage-list span::before {
    content: "\f3e8";

    font-family: "bootstrap-icons";

    color: var(--red);

    margin-right: 6px;
}


/* =========================================================
   14. FOOTER
========================================================= */

.site-footer {
    background: var(--primary-dark);

    color: #dbe5ff;

    padding-top: 55px;
}


/* Footer Logo */

.footer-brand img {
    width: 190px;

    margin-bottom: 15px;
}

.site-footer p {
    color: #bdc9e5;

    font-size: 11px;

    line-height: 1.75;
}


/* Footer Heading */

.site-footer h4 {
    color: var(--white);

    font-family: "Oswald", Arial, sans-serif;

    font-size: 16px;

    font-weight: 600;

    text-transform: uppercase;

    margin-bottom: 18px;
}


/* Footer Links */

.site-footer a {
    display: block;

    color: #cbd6ee;

    font-size: 11px;

    margin-bottom: 9px;
}

.site-footer a:hover {
    color: var(--white);

    padding-left: 3px;
}


/* Footer Emergency */

.footer-emergency {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 14px;
}

.footer-emergency strong {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    border: 2px solid rgba(255, 255, 255, 0.7);

    border-radius: 50%;

    color: var(--white);

    font-size: 12px;
}

.footer-emergency span {
    color: #dce5ff;

    font-size: 9px;

    font-weight: 800;

    line-height: 1.3;
}


/* Footer Bottom */

.footer-bottom {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    margin-top: 35px;

    padding: 17px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
    margin: 0;

    font-size: 10px;
}


/* =========================================================
   15. UTILITY
========================================================= */

.text-red {
    color: var(--red) !important;
}

.text-blue {
    color: var(--primary) !important;
}

.text-green {
    color: var(--green) !important;
}


/* =========================================================
   16. SELECTION
========================================================= */

::selection {
    background: var(--primary);
    color: var(--white);
}


/* =========================================================
   END OF STYLE.CSS
========================================================= */

/* Contact Success Message */

.contact-success-message {
    display: flex;
    align-items: center;
    gap: 10px;

    background: #eaf8ef;
    border: 1px solid #bce5c9;
    color: #137333;

    padding: 12px 15px;
    border-radius: 6px;

    font-size: 12px;
    font-weight: 600;

    margin-bottom: 18px;

    transition: all 0.4s ease;
}

.contact-success-message i {
    font-size: 18px;
}

.contact-success-message.hide-message {
    opacity: 0;
    transform: translateY(-5px);
}


/* Header after scroll */

.main-header.header-scrolled {
    box-shadow: 0 6px 22px rgba(9, 47, 134, 0.12);
}


/*==============================
Floating Contact Buttons
===============================*/

.floating-contact{

    position:fixed;

    right:25px;

    bottom:25px;

    display:flex;

    flex-direction:column;

    gap:15px;

    z-index:9999;

}

.float-btn{

    width:58px;

    height:58px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    text-decoration:none;

    font-size:24px;

    box-shadow:0 10px 30px rgba(0,0,0,.18);

    transition:.35s ease;

}

.float-btn:hover{

    transform:translateY(-5px) scale(1.08);

    color:#fff;

}

.whatsapp{

    background:#25D366;

}

.call{

    background:#0d6efd;

}

/* Pulse Animation */

.whatsapp{

    animation:pulseWhatsapp 2s infinite;

}

.call{

    animation:pulseCall 2s infinite;

}

@keyframes pulseWhatsapp{

    0%{

        box-shadow:0 0 0 0 rgba(37,211,102,.55);

    }

    70%{

        box-shadow:0 0 0 15px rgba(37,211,102,0);

    }

    100%{

        box-shadow:0 0 0 0 rgba(37,211,102,0);

    }

}

@keyframes pulseCall{

    0%{

        box-shadow:0 0 0 0 rgba(13,110,253,.45);

    }

    70%{

        box-shadow:0 0 0 15px rgba(13,110,253,0);

    }

    100%{

        box-shadow:0 0 0 0 rgba(13,110,253,0);

    }

}

@media (max-width:768px){

    .floating-contact{

        right:15px;

        bottom:20px;

    }

    .float-btn{

        width:52px;

        height:52px;

        font-size:22px;

    }

}
/* =========================================================
   COVERAGE SECTION - FINAL FRONTEND FIX
========================================================= */

.coverage-section {
    background: #f7f9fc;
    overflow: hidden;
}

.coverage-section .section-heading {
    margin-bottom: 24px;
}

.coverage-section .section-heading h2 {
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
    margin: 10px 0 16px;
    color: #0b347f;
}

.coverage-section .section-heading h2 span {
    color: #ef2b2d;
    display: inline;
}

.coverage-section .section-heading p {
    max-width: 620px;
    margin-bottom: 0;
}


/* Left Content */

.coverage-section > .container > .row {
    align-items: center;
}

.coverage-section .col-lg-5 > p {
    font-size: 15px;
    line-height: 1.8;
    color: #4f5f75;
    margin-bottom: 16px;
}


/* =========================================================
   COVERAGE CARD
========================================================= */

.coverage-card {
    background: #ffffff;
    border: 1px solid #e1e7ef;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 12px 35px rgba(15, 43, 85, 0.08);
}


/* Card Header */

.coverage-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.coverage-main-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 12px;
    background: #fff1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef2b2d;
    font-size: 23px;
}

.coverage-card-header span {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #ef2b2d;
    margin-bottom: 4px;
}

.coverage-card-header h3 {
    margin: 0;
    font-size: 25px;
    line-height: 1.25;
    color: #123b80;
    font-weight: 700;
}


/* =========================================================
   COVERAGE LIST
========================================================= */

.coverage-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.coverage-item {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 48px;
    padding: 10px 13px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 9px;
    transition: all 0.25s ease;
}

.coverage-item i {
    flex-shrink: 0;
    color: #123b80;
    font-size: 14px;
}

.coverage-item span {
    font-size: 13px;
    line-height: 1.3;
    font-weight: 600;
    color: #253b59;
}

.coverage-item:hover {
    transform: translateY(-2px);
    border-color: #123b80;
    box-shadow: 0 6px 16px rgba(18, 59, 128, 0.08);
}


/* =========================================================
   COVERAGE BUTTON
========================================================= */

.coverage-section .btn-outline-primary {
    border-width: 1.5px;
    padding: 11px 20px;
    border-radius: 7px;
    font-weight: 600;
}

.coverage-section .btn-outline-primary i {
    margin-left: 6px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .coverage-section .section-heading h2 {
        font-size: 36px;
    }

    .coverage-card {
        padding: 26px;
    }

    .coverage-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .coverage-section .section-heading h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    .coverage-card {
        padding: 20px;
        border-radius: 14px;
    }

    .coverage-card-header {
        margin-bottom: 20px;
    }

    .coverage-card-header h3 {
        font-size: 21px;
    }

    .coverage-main-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 19px;
    }

    .coverage-list {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .coverage-item {
        min-height: 44px;
    }

}
/* =========================================================
   STAR AMBULANCE
   INNER PAGES CSS
========================================================= */


/* =========================================================
   INNER PAGE BANNER
========================================================= */

.inner-page-banner {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            90deg,
            rgba(4, 31, 78, 0.94),
            rgba(7, 54, 119, 0.82),
            rgba(4, 31, 78, 0.68)
        ),
        url('../images/hero/hero-2.png') center center / cover no-repeat;
    overflow: hidden;
}

.about-page-banner {
    background-position: center center;
}

.inner-page-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 27, 67, 0.18);
}

.inner-page-banner .container {
    position: relative;
    z-index: 2;
}

.inner-page-banner-content {
    max-width: 760px;
    padding: 70px 0;
}

.inner-banner-subtitle {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ff3335;
}

.inner-page-banner h1 {
    margin: 0 0 18px;
    font-size: 52px;
    line-height: 1.12;
    font-weight: 750;
    color: #ffffff;
}

.inner-page-banner p {
    max-width: 650px;
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
}


/* =========================================================
   ABOUT INNER SECTION
========================================================= */

.about-inner-section {
    background: #ffffff;
}

.about-inner-image {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(10, 42, 85, 0.12);
}

.about-inner-image img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    display: block;
}

.about-image-badge {
    position: absolute;
    left: 25px;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}

.about-image-badge strong {
    font-size: 28px;
    line-height: 1;
    color: #123b80;
}

.about-image-badge span {
    font-size: 10px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ef2b2d;
}

.about-inner-section .section-heading {
    margin-bottom: 20px;
}

.about-inner-section .section-heading h2 {
    max-width: 600px;
}

.about-lead {
    font-size: 18px;
    line-height: 1.8;
    color: #253b59;
    font-weight: 500;
    margin-bottom: 18px;
}

.about-inner-text {
    font-size: 15px;
    line-height: 1.85;
    color: #5d6b7d;
    margin-bottom: 14px;
}

.about-inner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}


/* =========================================================
   ABOUT FEATURES
========================================================= */

.about-features-section {
    background: #f6f8fb;
}

.about-feature-card {
    height: 100%;
    padding: 32px 25px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e3e8ef;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.about-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(18, 59, 128, 0.25);
    box-shadow: 0 15px 35px rgba(18, 59, 128, 0.10);
}

.about-feature-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #edf3fb;
    color: #123b80;
    font-size: 26px;
}

.about-feature-card h3 {
    margin: 0 0 10px;
    font-size: 19px;
    font-weight: 700;
    color: #123b80;
}

.about-feature-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #647286;
}


/* =========================================================
   ABOUT SERVICES
========================================================= */

.about-services-section {
    background: #ffffff;
}

.about-services-section .section-heading {
    margin-bottom: 20px;
}

.about-services-section p {
    font-size: 15px;
    line-height: 1.85;
    color: #5d6b7d;
}


/* =========================================================
   SERVICE LIST
========================================================= */

.about-service-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-service-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f7f9fc;
    border: 1px solid #e2e7ee;
    border-radius: 12px;
    transition: all 0.25s ease;
}

.about-service-item:hover {
    transform: translateX(4px);
    background: #ffffff;
    border-color: rgba(18, 59, 128, 0.25);
    box-shadow: 0 8px 25px rgba(18, 59, 128, 0.08);
}

.about-service-item > i {
    flex-shrink: 0;
    margin-top: 2px;
    color: #ef2b2d;
    font-size: 19px;
}

.about-service-item strong {
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
    color: #123b80;
}

.about-service-item span {
    display: block;
    font-size: 13px;
    line-height: 1.6;
    color: #68778a;
}


/* =========================================================
   COMMON INNER CONTENT
========================================================= */

.inner-content {
    background: #ffffff;
}

.inner-content h2 {
    margin-bottom: 18px;
    color: #123b80;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
}

.inner-content h2 span {
    color: #ef2b2d;
}

.inner-content h3 {
    color: #123b80;
}

.inner-content p {
    color: #5d6b7d;
    line-height: 1.8;
}


/* =========================================================
   SERVICE DETAIL
========================================================= */

.service-detail-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 16px;
}

.service-detail-box {
    padding: 30px;
    background: #f6f8fb;
    border: 1px solid #e2e7ee;
    border-radius: 15px;
}

.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-page-card {
    height: 100%;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e2e7ee;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(18, 59, 128, 0.06);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
}

.contact-info-item i {
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #edf3fb;
    color: #123b80;
    border-radius: 10px;
}

.contact-info-item h4 {
    margin: 0 0 5px;
    font-size: 15px;
    color: #123b80;
}

.contact-info-item p,
.contact-info-item a {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #68778a;
    text-decoration: none;
}


/* =========================================================
   INNER CTA
========================================================= */

.inner-cta {
    padding: 75px 0;
    background:
        linear-gradient(
            100deg,
            #0a347a,
            #123f8b
        );
    color: #ffffff;
}

.inner-cta h2 {
    color: #ffffff;
}


/* =========================================================
   BUTTONS
========================================================= */

.about-inner-section .btn,
.about-services-section .btn {
    min-height: 46px;
    padding: 11px 21px;
    border-radius: 7px;
    font-weight: 600;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .inner-page-banner {
        min-height: 320px;
    }

    .inner-page-banner h1 {
        font-size: 43px;
    }

    .about-inner-image img {
        height: 450px;
    }

    .about-image-badge {
        left: 20px;
        bottom: 20px;
    }

}

@media (max-width: 767px) {

    .inner-page-banner {
        min-height: 290px;
    }

    .inner-page-banner-content {
        padding: 55px 0;
    }

    .inner-page-banner h1 {
        font-size: 36px;
    }

    .inner-page-banner p {
        font-size: 14px;
    }

    .about-inner-image img {
        height: 380px;
    }

    .about-lead {
        font-size: 16px;
    }

    .about-inner-actions {
        margin-top: 22px;
    }

}

@media (max-width: 575px) {

    .inner-page-banner {
        min-height: 260px;
    }

    .inner-page-banner-content {
        padding: 45px 0;
    }

    .inner-banner-subtitle {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .inner-page-banner h1 {
        font-size: 30px;
        line-height: 1.2;
    }

    .inner-page-banner p {
        font-size: 13px;
        line-height: 1.7;
    }

    .about-inner-image {
        border-radius: 12px;
    }

    .about-inner-image img {
        height: 330px;
    }

    .about-image-badge {
        left: 15px;
        bottom: 15px;
        padding: 12px 15px;
    }

    .about-image-badge strong {
        font-size: 23px;
    }

    .about-image-badge span {
        font-size: 9px;
    }

    .about-feature-card {
        padding: 26px 20px;
    }

    .about-service-item {
        padding: 16px;
    }

}
/* =========================================================
   SERVICES PAGE
========================================================= */


/* =========================================================
   SERVICES INTRO
========================================================= */

.services-intro-section {
    padding-bottom: 30px;
    background: #ffffff;
}

.services-intro-section .section-heading {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}


/* =========================================================
   SERVICES GRID
========================================================= */

.services-page-grid-section {
    padding: 40px 0 90px;
    background: #ffffff;
}

.services-page-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e2e7ee;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(18, 59, 128, 0.06);
    transition: all 0.3s ease;
}

.services-page-card:hover {
    transform: translateY(-7px);
    border-color: rgba(18, 59, 128, 0.20);
    box-shadow: 0 18px 40px rgba(18, 59, 128, 0.12);
}


/* =========================================================
   CARD IMAGE
========================================================= */

.services-page-card-image {
    position: relative;
    height: 255px;
    overflow: hidden;
    background: #eef2f7;
}

.services-page-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.services-page-card:hover .services-page-card-image img {
    transform: scale(1.04);
}


/* =========================================================
   CARD ICON
========================================================= */

.services-page-card-icon {
    position: absolute;
    left: 22px;
    bottom: 18px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #ffffff;
    color: #ef2b2d;
    font-size: 22px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.services-page-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 26px;
}

.services-page-card-content h3 {
    margin: 0 0 12px;
    color: #123b80;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
}

.service-card-short-text {
    margin: 0;
    color: #657387;
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   FEATURE LIST
========================================================= */

.service-feature-list {
    list-style: none;
    margin: 20px 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.service-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #4e6075;
    font-size: 13px;
    line-height: 1.5;
}

.service-feature-list li i {
    flex-shrink: 0;
    margin-top: 2px;
    color: #123b80;
    font-size: 13px;
}


/* =========================================================
   CARD ACTIONS
========================================================= */

.services-page-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #e8edf3;
}

.service-details-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #123b80;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.service-details-link i {
    transition: transform 0.25s ease;
}

.service-details-link:hover {
    color: #ef2b2d;
}

.service-details-link:hover i {
    transform: translateX(4px);
}

.service-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 17px;
    border-radius: 6px;
    background: #ef2b2d;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.service-book-btn:hover {
    background: #d92325;
    color: #ffffff;
    transform: translateY(-1px);
}


/* =========================================================
   PREMIUM SERVICES SUPPORT SECTION
========================================================= */

.services-support-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(13, 67, 143, 0.055),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #f8fafc 0%,
            #ffffff 55%,
            #f5f8fc 100%
        );
    border-top: 1px solid rgba(13, 67, 143, 0.06);
    border-bottom: 1px solid rgba(13, 67, 143, 0.06);
}


/* Decorative background */

.services-support-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -210px;
    top: -180px;
    border: 1px solid rgba(13, 67, 143, 0.07);
    border-radius: 50%;
    pointer-events: none;
}

.services-support-section::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    left: -150px;
    bottom: -150px;
    border: 1px solid rgba(220, 38, 38, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.services-support-section .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.services-support-section .section-heading {
    margin-bottom: 22px;
}

.services-support-section .section-heading .section-subtitle {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.services-support-section .section-heading h2 {
    margin: 0;
    max-width: 520px;
    color: var(--primary-dark);
    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.6px;
}

.services-support-section .section-heading h2 span {
    display: block;
    color: var(--red);
}

.services-support-section .col-lg-6:first-child > p {
    max-width: 560px;
    margin-bottom: 16px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.8;
}


/* Button */

.services-support-section .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 19px;
    border: 0;
    border-radius: 7px;
    background: var(--primary);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(13, 67, 143, 0.16);
    transition: all .3s ease;
}

.services-support-section .btn-primary:hover {
    transform: translateY(-2px);
    background: var(--primary-dark);
    box-shadow: 0 12px 25px rgba(13, 67, 143, 0.22);
}


/* =========================================================
   RIGHT SUPPORT LIST
========================================================= */

.services-support-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
}


/* Individual item */

.services-support-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 17px;
    min-height: 88px;
    padding: 15px 20px;

    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(15, 45, 85, 0.09);
    border-radius: 12px;

    box-shadow:
        0 7px 22px rgba(15, 45, 85, 0.055),
        0 2px 5px rgba(15, 45, 85, 0.025);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


/* Red side accent */

.services-support-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 17px;
    bottom: 17px;
    width: 3px;
    border-radius: 0 4px 4px 0;
    background: var(--red);
    opacity: 0;
    transition: opacity .3s ease;
}


/* Hover */

.services-support-item:hover {
    transform: translateX(5px);
    border-color: rgba(13, 67, 143, 0.15);

    box-shadow:
        0 15px 30px rgba(15, 45, 85, 0.09),
        0 4px 10px rgba(15, 45, 85, 0.035);
}

.services-support-item:hover::before {
    opacity: 1;
}


/* =========================================================
   ICON
========================================================= */

.services-support-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            #edf4ff 0%,
            #e4eefb 100%
        );

    border: 1px solid rgba(13, 67, 143, 0.08);

    color: var(--primary);
    font-size: 19px;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.9);
}

.services-support-item:hover .services-support-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.04);
    transition: all .3s ease;
}


/* =========================================================
   TEXT
========================================================= */

.services-support-item > div:last-child {
    min-width: 0;
}

.services-support-item strong {
    display: block;
    margin-bottom: 4px;
    color: #17345d;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
}

.services-support-item span {
    display: block;
    color: #718096;
    font-size: 12.5px;
    line-height: 1.55;
}


/* =========================================================
   DESKTOP BALANCE
========================================================= */

@media (min-width: 992px) {

    .services-support-section {
        padding-top: 85px;
        padding-bottom: 85px;
    }

    .services-support-section .row {
        align-items: center;
    }

    .services-support-list {
        padding-left: 12px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .services-support-section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .services-support-section .section-heading h2 {
        font-size: 32px;
    }

    .services-support-list {
        margin-top: 15px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .services-support-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .services-support-section .section-heading h2 {
        font-size: 27px;
        letter-spacing: -0.3px;
    }

    .services-support-section .col-lg-6:first-child > p {
        font-size: 13px;
        line-height: 1.7;
    }

    .services-support-item {
        min-height: 78px;
        padding: 13px 15px;
        gap: 13px;
        border-radius: 10px;
    }

    .services-support-icon {
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
        border-radius: 10px;
        font-size: 17px;
    }

    .services-support-item strong {
        font-size: 13px;
    }

    .services-support-item span {
        font-size: 11.5px;
    }

}


/* =========================================================
   SERVICES PAGE BANNER
========================================================= */

.services-page-banner {
    background-position: center center;
}


/* =========================================================
   SERVICES PAGE RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .services-page-grid-section {
        padding-bottom: 70px;
    }

    .services-page-card-image {
        height: 235px;
    }

    .services-support-box {
        align-items: flex-start;
        flex-direction: column;
        padding: 35px;
    }

}


@media (max-width: 767px) {

    .services-intro-section {
        padding-bottom: 20px;
    }

    .services-page-grid-section {
        padding-top: 25px;
        padding-bottom: 60px;
    }

    .services-page-card-image {
        height: 250px;
    }

    .services-page-card-content {
        padding: 23px;
    }

    .services-support-box {
        gap: 25px;
        padding: 30px;
    }

    .services-support-content h2 {
        font-size: 27px;
    }

}


@media (max-width: 575px) {

    .services-page-card {
        border-radius: 13px;
    }

    .services-page-card-image {
        height: 220px;
    }

    .services-page-card-icon {
        left: 16px;
        bottom: 15px;
        width: 47px;
        height: 47px;
        font-size: 20px;
    }

    .services-page-card-content {
        padding: 20px;
    }

    .services-page-card-content h3 {
        font-size: 19px;
    }

    .service-card-short-text {
        font-size: 13px;
    }

    .services-page-card-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .service-details-link {
        justify-content: center;
        min-height: 40px;
    }

    .service-book-btn {
        width: 100%;
    }

    .services-support-box {
        padding: 25px 20px;
        border-radius: 13px;
    }

    .services-support-content h2 {
        font-size: 24px;
    }

    .services-support-actions {
        width: 100%;
        flex-direction: column;
    }

    .services-support-actions .btn {
        width: 100%;
    }

}

/* =========================================================
   SERVICES PAGE - RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .services-page-card-content {
        padding: 23px;
    }

    .services-page-card-content h3 {
        font-size: 20px;
    }

}


@media (max-width: 991px) {

    .services-page-grid-section {
        padding-top: 30px;
    }

    .services-page-card-image {
        height: 240px;
    }

    .services-support-box {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 767px) {

    .services-page-card-image {
        height: 250px;
    }

    .services-page-card-content {
        padding: 22px;
    }

    .services-page-card-actions {
        gap: 10px;
    }

}


@media (max-width: 575px) {

    .services-page-grid-section {
        padding-top: 20px;
    }

    .services-page-card-image {
        height: 220px;
    }

    .services-page-card-content {
        padding: 20px;
    }

    .services-page-card-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .service-details-link {
        justify-content: center;
    }

    .service-book-btn {
        width: 100%;
    }

    .services-support-box {
        padding: 24px 18px;
    }

    .services-support-actions {
        width: 100%;
        flex-direction: column;
    }

    .services-support-actions .btn {
        width: 100%;
    }

}

/* =========================================================
   SERVICE DETAILS PAGE
========================================================= */


/* =========================================================
   DETAIL BANNER
========================================================= */

.service-detail-banner {
    background:
        linear-gradient(
            90deg,
           rgba(4, 31, 78, 0.75),
    rgba(7, 54, 119, 0.55),
    rgba(4, 31, 78, 0.40)
        ),
        url('../images/services/advanced-life-support_2.png')
        center center / cover no-repeat;
}


/* =========================================================
   MAIN DETAIL SECTION
========================================================= */

.service-detail-main {
    background: #ffffff;
}

.service-detail-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(10, 42, 85, 0.12);
}

.service-detail-main-image {
    width: 100%;
    height: 510px;
    display: block;
    object-fit: cover;
}

.service-detail-image-icon {
    position: absolute;
    left: 25px;
    bottom: 25px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #ffffff;
    color: #ef2b2d;
    font-size: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16);
}


/* =========================================================
   DETAIL CONTENT
========================================================= */

.service-detail-content {
    padding-top: 35px;
}

.detail-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: #ef2b2d;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.service-detail-content h2 {
    margin: 0 0 20px;
    color: #123b80;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
}

.service-detail-content h2 span {
    color: #ef2b2d;
}

.service-detail-content p {
    color: #5d6b7d;
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 16px;
}

.service-detail-content .detail-lead {
    color: #253b59;
    font-size: 18px;
    line-height: 1.75;
    font-weight: 500;
}


/* =========================================================
   ENQUIRY CARD
========================================================= */

.service-enquiry-card {
    position: sticky;
    top: 110px;
    padding: 30px;
    background: #f6f8fb;
    border: 1px solid #e0e6ee;
    border-radius: 16px;
}

.service-enquiry-header > span {
    display: block;
    margin-bottom: 7px;
    color: #ef2b2d;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.6px;
}

.service-enquiry-header h3 {
    margin: 0 0 10px;
    color: #123b80;
    font-size: 27px;
    font-weight: 700;
}

.service-enquiry-header p {
    margin: 0 0 25px;
    color: #667589;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   ENQUIRY CALL
========================================================= */

.service-enquiry-call {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 17px;
    margin-bottom: 18px;
    background: #ffffff;
    border: 1px solid #e0e6ee;
    border-radius: 10px;
}

.service-enquiry-call-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #fff0f0;
    color: #ef2b2d;
}

.service-enquiry-call span {
    display: block;
    margin-bottom: 3px;
    color: #718096;
    font-size: 11px;
    font-weight: 600;
}

.service-enquiry-call a {
    color: #123b80;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}


/* =========================================================
   EMERGENCY NOTE
========================================================= */

.service-emergency-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 15px;
    padding: 16px;
    background: #fff7f7;
    border: 1px solid #f3dede;
    border-radius: 10px;
}

.service-emergency-note > i {
    color: #ef2b2d;
    font-size: 18px;
}

.service-emergency-note strong {
    display: block;
    margin-bottom: 3px;
    color: #123b80;
    font-size: 13px;
}

.service-emergency-note span {
    display: block;
    color: #69778a;
    font-size: 12px;
    line-height: 1.5;
}


/* =========================================================
   SERVICE FEATURES
========================================================= */

.service-features-section {
    background: #f6f8fb;
}

.service-feature-card {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px;
    background: #ffffff;
    border: 1px solid #e1e7ef;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(18, 59, 128, 0.20);
    box-shadow: 0 12px 28px rgba(18, 59, 128, 0.08);
}

.service-feature-check {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #edf3fb;
    color: #123b80;
    font-size: 18px;
}

.service-feature-card span {
    color: #344a64;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
}


/* =========================================================
   SERVICE HIGHLIGHTS
========================================================= */

.service-highlights-section {
    background: #ffffff;
}

.service-highlight-card {
    height: 100%;
    padding: 30px 25px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e1e7ef;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.service-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(18, 59, 128, 0.08);
}

.service-highlight-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #edf3fb;
    color: #123b80;
    font-size: 24px;
}

.service-highlight-card h3 {
    margin: 0 0 9px;
    color: #123b80;
    font-size: 19px;
    font-weight: 700;
}

.service-highlight-card p {
    margin: 0;
    color: #667589;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   RELATED SERVICES
========================================================= */

.related-services-section {
    background: #f6f8fb;
}

.related-service-card {
    height: 100%;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e1e7ef;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.related-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(18, 59, 128, 0.10);
}

.related-service-image {
    height: 210px;
    overflow: hidden;
}

.related-service-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.related-service-card:hover .related-service-image img {
    transform: scale(1.04);
}

.related-service-content {
    padding: 23px;
}

.related-service-content h3 {
    margin: 0 0 10px;
    color: #123b80;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 700;
}

.related-service-content p {
    margin: 0 0 17px;
    color: #657387;
    font-size: 13px;
    line-height: 1.7;
}

.related-service-content a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #123b80;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.related-service-content a:hover {
    color: #ef2b2d;
}

.related-service-content a i {
    transition: transform 0.25s ease;
}

.related-service-content a:hover i {
    transform: translateX(4px);
}


/* =========================================================
   SERVICE DETAIL RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .service-detail-main-image {
        height: 450px;
    }

    .service-enquiry-card {
        position: static;
    }

    .service-detail-content h2 {
        font-size: 34px;
    }

}


@media (max-width: 767px) {

    .service-detail-main-image {
        height: 390px;
    }

    .service-detail-content {
        padding-top: 28px;
    }

    .service-detail-content h2 {
        font-size: 31px;
    }

    .service-detail-content .detail-lead {
        font-size: 16px;
    }

    .service-enquiry-card {
        padding: 25px;
    }

    .service-feature-card {
        padding: 18px;
    }

    .related-service-image {
        height: 220px;
    }

}


@media (max-width: 575px) {

    .service-detail-main-image {
        height: 300px;
    }

    .service-detail-image-wrap {
        border-radius: 12px;
    }

    .service-detail-image-icon {
        left: 15px;
        bottom: 15px;
        width: 47px;
        height: 47px;
        font-size: 20px;
    }

    .service-detail-content h2 {
        font-size: 28px;
    }

    .service-detail-content p {
        font-size: 14px;
    }

    .service-enquiry-card {
        padding: 21px;
        border-radius: 13px;
    }

    .service-enquiry-header h3 {
        font-size: 23px;
    }

    .service-highlight-card {
        padding: 25px 20px;
    }

    .related-service-image {
        height: 200px;
    }

}
/* =========================================================
   MEDICAL SUPPORT PAGE
========================================================= */


/* =========================================================
   PAGE BANNER
========================================================= */

.medical-support-page-banner {
    background:
        linear-gradient(
            90deg,
            rgba(4, 31, 78, 0.75),
    rgba(7, 54, 119, 0.55),
    rgba(4, 31, 78, 0.40)
        ),
        url('../images/services/advanced-life-support_2.png')
        center center / cover no-repeat;
}


/* =========================================================
   INTRO
========================================================= */

.medical-support-intro {
    background: #ffffff;
}

.medical-support-intro .section-heading {
    margin-bottom: 20px;
}

.medical-support-lead {
    color: #253b59 !important;
    font-size: 18px !important;
    line-height: 1.75 !important;
    font-weight: 500;
}

.medical-support-intro p {
    color: #5d6b7d;
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 15px;
}


/* =========================================================
   INTRO IMAGE
========================================================= */

.medical-support-image {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(10, 42, 85, 0.12);
}

.medical-support-image img {
    width: 100%;
    height: 500px;
    display: block;
    object-fit: cover;
}

.medical-support-image-card {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 11px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.14);
}

.medical-support-image-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #fff0f0;
    color: #ef2b2d;
    font-size: 21px;
}

.medical-support-image-card strong {
    display: block;
    margin-bottom: 3px;
    color: #123b80;
    font-size: 14px;
}

.medical-support-image-card span {
    display: block;
    color: #6b788a;
    font-size: 12px;
}


/* =========================================================
   ACTIONS
========================================================= */

.medical-support-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 25px;
}

.medical-support-actions .btn {
    min-height: 46px;
    padding: 11px 20px;
    border-radius: 7px;
    font-weight: 600;
}


/* =========================================================
   PREMIUM MEDICAL SUPPORT CARDS
========================================================= */

.medical-support-services {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(13, 67, 143, 0.045),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 85%,
            rgba(220, 38, 38, 0.035),
            transparent 30%
        ),
        #f7f9fc;
}

.medical-support-services .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.medical-support-services .section-heading {
    max-width: 800px;
    margin: 0 auto 52px;
}

.medical-support-services .section-subtitle {
    display: inline-block;
    margin-bottom: 10px;

    color: var(--red);

    font-size: 12px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: 2px;
}

.medical-support-services .section-heading h2 {
    margin: 0 0 12px;

    color: var(--primary-dark);

    font-size: 36px;
    line-height: 1.18;
    font-weight: 700;

    letter-spacing: -0.5px;
}

.medical-support-services .section-heading h2 span {
    color: var(--red);
}

.medical-support-services .section-heading p {
    max-width: 680px;
    margin: 0 auto;

    color: #69778c;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   CARD
========================================================= */

.medical-support-page-card {
    position: relative;

    display: flex;
    flex-direction: column;

    height: 100%;
    overflow: hidden;

    background: #ffffff;

    border: 1px solid rgba(13, 67, 143, 0.09);

    border-radius: 18px;

    box-shadow:
        0 12px 32px rgba(15, 45, 85, 0.065),
        0 2px 7px rgba(15, 45, 85, 0.025);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.medical-support-page-card:hover {
    transform: translateY(-7px);

    border-color: rgba(13, 67, 143, 0.16);

    box-shadow:
        0 24px 48px rgba(15, 45, 85, 0.12),
        0 6px 14px rgba(15, 45, 85, 0.035);
}


/* =========================================================
   IMAGE AREA
========================================================= */

.medical-support-card-image {
    position: relative;

    width: 100%;
    height: 220px;

    overflow: hidden;

    background: #e7eef7;
}


/* Image */

.medical-support-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.65s ease,
        filter 0.4s ease;
}

.medical-support-page-card:hover
.medical-support-card-image img {
    transform: scale(1.06);

    filter: saturate(1.05);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.medical-support-card-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(5, 30, 65, 0.02) 20%,
            rgba(5, 30, 65, 0.10) 58%,
            rgba(5, 30, 65, 0.28) 100%
        );

    pointer-events: none;
}


/* =========================================================
   PREMIUM CURVE AT IMAGE BOTTOM
========================================================= */

.medical-support-card-image::after {
    content: "";

    position: absolute;

    left: -5%;
    right: -5%;
    bottom: -42px;

    height: 75px;

    background: #ffffff;

    border-radius: 50% 50% 0 0 / 100% 100% 0 0;

    z-index: 2;
}


/* =========================================================
   SUPPORT NUMBER
========================================================= */

.medical-support-card-number {
    position: absolute;

    top: 15px;
    right: 15px;

    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 40px;
    height: 31px;

    padding: 0 9px;

    background: rgba(255, 255, 255, 0.94);

    border: 1px solid rgba(255,255,255,.75);

    border-radius: 7px;

    color: var(--primary-dark);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1px;

    box-shadow:
        0 6px 16px rgba(0,0,0,.10);
}


/* =========================================================
   FLOATING SUPPORT ICON
========================================================= */

.medical-support-card-image-icon {
    position: absolute;

    left: 22px;
    bottom: 14px;

    z-index: 6;

    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--primary);

    border: 4px solid #ffffff;

    border-radius: 15px;

    color: #ffffff;

    font-size: 22px;

    box-shadow:
        0 9px 22px rgba(13, 67, 143, 0.25);

    transition:
        transform 0.35s ease,
        background 0.35s ease;
}

.medical-support-page-card:hover
.medical-support-card-image-icon {
    background: var(--red);

    transform:
        translateY(-4px)
        rotate(-2deg);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.medical-support-card-content {
    position: relative;

    display: flex;
    flex-direction: column;
    flex: 1;

    padding: 24px 27px 27px;
}


/* =========================================================
   LABEL
========================================================= */

.medical-support-card-label {
    display: block;

    margin-bottom: 6px;

    color: var(--red);

    font-size: 9px;
    line-height: 1;

    font-weight: 700;

    letter-spacing: 1.8px;
}


/* =========================================================
   SERVICE TITLE
========================================================= */

.medical-support-card-heading h3 {
    margin: 0 0 11px;

    color: var(--primary-dark);

    font-size: 21px;
    line-height: 1.25;

    font-weight: 700;

    letter-spacing: -0.2px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.medical-support-card-content > p {
    margin: 0 0 19px;

    color: #66758a;

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   FEATURES
========================================================= */

.medical-support-card-content ul {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 9px 18px;

    margin: 0 0 22px;
    padding: 0;

    list-style: none;
}

.medical-support-card-content ul li {
    display: flex;
    align-items: flex-start;

    gap: 8px;

    color: #435572;

    font-size: 11.5px;
    line-height: 1.5;
}

.medical-support-card-content ul li i {
    flex: 0 0 auto;

    margin-top: 2px;

    color: var(--primary);

    font-size: 11px;
}

.medical-support-card-content ul li span {
    display: block;
}


/* =========================================================
   REQUEST ASSISTANCE
========================================================= */

.medical-support-link {
    position: relative;

    display: inline-flex;
    align-items: center;

    align-self: flex-start;

    gap: 9px;

    margin-top: auto;

    padding-bottom: 6px;

    color: var(--primary-dark);

    font-size: 12px;
    line-height: 1.3;

    font-weight: 700;

    text-decoration: none;

    transition:
        color 0.25s ease,
        gap 0.25s ease;
}


/* Red underline */

.medical-support-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 2px;

    background: var(--red);

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.3s ease;
}

.medical-support-link i {
    font-size: 12px;

    transition:
        transform 0.25s ease;
}

.medical-support-link:hover {
    color: var(--red);

    gap: 12px;
}

.medical-support-link:hover::after {
    transform: scaleX(1);
}

.medical-support-link:hover i {
    transform: translateX(3px);
}


/* =========================================================
   EMPTY STATE
========================================================= */

.medical-support-empty {
    padding: 60px 25px;

    background: #ffffff;

    border: 1px solid rgba(13, 67, 143, .08);

    border-radius: 16px;

    box-shadow:
        0 10px 30px rgba(15, 45, 85, .05);
}

.medical-support-empty-icon {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 16px;

    border-radius: 15px;

    background: #edf4ff;

    color: var(--primary);

    font-size: 26px;
}

.medical-support-empty h3 {
    margin-bottom: 8px;

    color: var(--primary-dark);

    font-size: 20px;
}

.medical-support-empty p {
    margin: 0;

    color: #718096;

    font-size: 13px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .medical-support-services .section-heading {
        margin-bottom: 40px;
    }

    .medical-support-services .section-heading h2 {
        font-size: 31px;
    }

    .medical-support-card-image {
        height: 205px;
    }

    .medical-support-card-content {
        padding: 23px 22px 24px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .medical-support-services {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .medical-support-services .section-heading {
        margin-bottom: 30px;
    }

    .medical-support-services .section-heading h2 {
        font-size: 26px;
    }

    .medical-support-services .section-heading p {
        font-size: 13px;
    }

    .medical-support-page-card {
        border-radius: 14px;
    }

    .medical-support-card-image {
        height: 190px;
    }

    .medical-support-card-content {
        padding: 23px 19px 22px;
    }

    .medical-support-card-heading h3 {
        font-size: 18px;
    }

    .medical-support-card-content > p {
        font-size: 12.5px;
        line-height: 1.65;
    }

    .medical-support-card-content ul {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .medical-support-card-image-icon {
        left: 17px;
        bottom: 11px;

        width: 54px;
        height: 54px;

        border-radius: 14px;

        font-size: 20px;
    }

    .medical-support-card-number {
        top: 13px;
        right: 13px;
    }

}
/* =========================================================
   MEDICAL SUPPORT CARD - FINAL ALIGNMENT FIX
========================================================= */

.medical-support-page-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}


/* IMAGE */

.medical-support-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.medical-support-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* IMAGE OVERLAY */

.medical-support-card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(5, 30, 65, 0) 40%,
        rgba(5, 30, 65, .22) 100%
    );
    z-index: 1;
}


/* =========================================================
   SUPPORT ICON
   FLOATING OVER IMAGE BOTTOM
========================================================= */

.medical-support-card-image-icon {
    position: absolute !important;

    left: 22px !important;
    bottom: 18px !important;

    width: 58px !important;
    height: 58px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;

    background: var(--primary) !important;

    border: 4px solid #fff !important;
    border-radius: 14px !important;

    color: #fff !important;

    font-size: 21px !important;

    box-shadow: 0 8px 20px rgba(0,0,0,.18);

    z-index: 10 !important;
}


/* =========================================================
   NUMBER
========================================================= */

.medical-support-card-number {
    position: absolute !important;

    top: 15px !important;
    right: 15px !important;

    z-index: 10 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-width: 38px !important;
    height: 30px !important;

    padding: 0 9px !important;

    background: rgba(255,255,255,.94) !important;

    border-radius: 7px !important;

    color: var(--primary-dark) !important;

    font-size: 10px !important;
    font-weight: 700 !important;
}


/* =========================================================
   CONTENT
========================================================= */

.medical-support-card-content {
    position: relative;

    display: block !important;

    width: 100%;

    padding: 30px 25px 25px !important;

    background: #fff;
}


/* =========================================================
   IMPORTANT:
   LABEL + TITLE MUST BE VERTICAL
========================================================= */

.medical-support-card-heading {
    display: block !important;

    width: 100% !important;

    margin: 0 0 11px !important;
}


/* MEDICAL SUPPORT */

.medical-support-card-label {
    display: block !important;

    width: 100% !important;

    margin: 0 0 7px !important;

    color: var(--red) !important;

    font-size: 9px !important;
    line-height: 1 !important;

    font-weight: 700 !important;

    letter-spacing: 1.8px !important;

    text-transform: uppercase;
}


/* SERVICE NAME */

.medical-support-card-heading h3 {
    display: block !important;

    width: 100% !important;

    margin: 0 !important;

    color: var(--primary-dark) !important;

    font-size: 20px !important;

    line-height: 1.3 !important;

    font-weight: 700 !important;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.medical-support-card-content > p {
    display: block !important;

    width: 100% !important;

    margin: 0 0 18px !important;

    color: #64748b !important;

    font-size: 13px !important;

    line-height: 1.7 !important;
}


/* =========================================================
   FEATURES
========================================================= */

.medical-support-card-content ul {
    display: grid !important;

    grid-template-columns: 1fr 1fr;

    gap: 9px 18px;

    margin: 0 0 20px !important;
    padding: 0 !important;

    list-style: none;
}

.medical-support-card-content ul li {
    display: flex !important;

    align-items: flex-start;

    gap: 7px;

    color: #526176;

    font-size: 11.5px;

    line-height: 1.5;
}

.medical-support-card-content ul li i {
    flex-shrink: 0;

    margin-top: 2px;

    color: var(--primary);

    font-size: 11px;
}


/* =========================================================
   REQUEST LINK
========================================================= */

.medical-support-link {
    display: inline-flex !important;

    align-items: center;

    gap: 8px;

    margin-top: 3px !important;

    color: var(--primary-dark) !important;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;
}

.medical-support-link:hover {
    color: var(--red) !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .medical-support-card-image {
        height: 190px;
    }

    .medical-support-card-image-icon {
        left: 17px !important;
        bottom: 14px !important;

        width: 52px !important;
        height: 52px !important;

        border-radius: 13px !important;
    }

    .medical-support-card-content {
        padding: 28px 19px 22px !important;
    }

    .medical-support-card-label {
        margin-bottom: 6px !important;
    }

    .medical-support-card-heading h3 {
        font-size: 18px !important;
    }

    .medical-support-card-content ul {
        grid-template-columns: 1fr;
    }

}

/* =========================================================
   PROCESS
========================================================= */

.medical-support-process {
    background: #ffffff;
}

.medical-process-card {
    position: relative;
    height: 100%;
    padding: 32px 27px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e1e7ef;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.medical-process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(18, 59, 128, 0.08);
}

.medical-process-number {
    position: absolute;
    top: 18px;
    right: 20px;
    color: #e8edf4;
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
}

.medical-process-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #edf3fb;
    color: #123b80;
    font-size: 24px;
}

.medical-process-card h3 {
    margin: 0 0 10px;
    color: #123b80;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 700;
}

.medical-process-card p {
    margin: 0;
    color: #657387;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .medical-support-image img {
        height: 450px;
    }

    .medical-support-page-card {
        padding: 26px;
    }

}


@media (max-width: 767px) {

    .medical-support-image img {
        height: 400px;
    }

    .medical-support-page-card {
        gap: 17px;
        padding: 23px;
    }

    .medical-support-card-icon {
        width: 55px;
        height: 55px;
        min-width: 55px;
        font-size: 23px;
    }

}


@media (max-width: 575px) {

    .medical-support-image {
        border-radius: 12px;
    }

    .medical-support-image img {
        height: 320px;
    }

    .medical-support-image-card {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 12px;
    }

    .medical-support-image-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 18px;
    }

    .medical-support-image-card strong {
        font-size: 13px;
    }

    .medical-support-image-card span {
        font-size: 11px;
    }

    .medical-support-actions {
        flex-direction: column;
    }

    .medical-support-actions .btn {
        width: 100%;
    }

    .medical-support-page-card {
        flex-direction: column;
        gap: 15px;
        padding: 21px;
        border-radius: 13px;
    }

    .medical-support-card-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 21px;
    }

    .medical-support-card-content h3 {
        font-size: 19px;
    }

    .medical-process-card {
        padding: 27px 20px;
    }

}
/* =========================================================
   COVERAGE PAGE
========================================================= */

.coverage-page-banner {
    background:
        linear-gradient(
            90deg,
            rgba(5, 24, 45, .94) 0%,
            rgba(5, 24, 45, .82) 48%,
            rgba(5, 24, 45, .58) 100%
        ),
        url('../images/coverage-banner.png') center center / cover no-repeat;
}


/* =========================================================
   COVERAGE INTRO
========================================================= */

.coverage-intro-section {
    background: #fff;
}

.coverage-intro-content {
    max-width: 620px;
}

.coverage-intro-content h2 {
    margin: 12px 0 22px;
}

.coverage-intro-content > p {
    color: #687586;
    line-height: 1.85;
    margin-bottom: 16px;
}

.coverage-intro-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 24px;
    margin: 28px 0 30px;
}

.coverage-intro-point {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #263444;
    font-weight: 600;
    font-size: 15px;
}

.coverage-intro-point i {
    color: #e3262e;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.coverage-intro-action {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.coverage-intro-action .btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 22px;
}


/* =========================================================
   COVERAGE IMAGE
========================================================= */

.coverage-intro-visual {
    position: relative;
    padding-left: 24px;
}

.coverage-intro-visual::before {
    content: "";
    position: absolute;
    left: 0;
    top: 35px;
    width: 100%;
    height: calc(100% - 35px);
    border: 1px solid #e3e8ee;
    z-index: 0;
}

.coverage-intro-visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 470px;
    object-fit: cover;
    display: block;
}

.coverage-visual-badge {
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 13px;
    background: #fff;
    padding: 16px 20px;
    box-shadow: 0 12px 35px rgba(10, 29, 48, .14);
}

.coverage-visual-badge > i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e3262e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.coverage-visual-badge div {
    display: flex;
    flex-direction: column;
}

.coverage-visual-badge strong {
    color: #16283a;
    font-size: 14px;
}

.coverage-visual-badge span {
    color: #7a8795;
    font-size: 12px;
    margin-top: 2px;
}


/* =========================================================
   COVERAGE AREAS
========================================================= */

.coverage-areas-section {
    background: #f6f8fa;
}

.coverage-areas-card {
    margin-top: 42px;
    background: #fff;
    border: 1px solid #e5eaf0;
    box-shadow: 0 15px 45px rgba(15, 34, 52, .07);
}

.coverage-areas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 30px 34px;
    border-bottom: 1px solid #e7ebef;
}

.coverage-areas-header > div:first-child span {
    display: block;
    color: #e3262e;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 7px;
}

.coverage-areas-header h3 {
    margin: 0;
    color: #172b3d;
    font-size: 24px;
    font-weight: 700;
}

.coverage-area-count {
    min-width: 100px;
    text-align: center;
    border-left: 1px solid #e4e9ee;
    padding-left: 30px;
}

.coverage-area-count strong {
    display: block;
    color: #e3262e;
    font-size: 34px;
    line-height: 1;
}

.coverage-area-count span {
    display: block;
    color: #788594;
    font-size: 12px;
    margin-top: 5px;
}

.coverage-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 22px;
    gap: 14px;
}

.coverage-page-item {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 82px;
    padding: 15px 16px;
    background: #f8fafb;
    border: 1px solid #edf0f3;
    transition: all .25s ease;
}

.coverage-page-item:hover {
    transform: translateY(-3px);
    background: #fff;
    border-color: #e3262e;
    box-shadow: 0 10px 25px rgba(15, 34, 52, .08);
}

.coverage-page-item-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff0f1;
    color: #e3262e;
    font-size: 17px;
}

.coverage-page-item > div:nth-child(2) {
    flex: 1;
    min-width: 0;
}

.coverage-page-item strong {
    display: block;
    color: #1c3042;
    font-size: 15px;
    line-height: 1.3;
}

.coverage-page-item span {
    display: block;
    color: #84909d;
    font-size: 11px;
    margin-top: 4px;
}

.coverage-page-item > i:last-child {
    color: #a2adb8;
    font-size: 15px;
    transition: all .25s ease;
}

.coverage-page-item:hover > i:last-child {
    color: #e3262e;
    transform: translate(2px, -2px);
}


/* =========================================================
   COVERAGE HIGHLIGHTS
========================================================= */

.coverage-highlights-section {
    background: #fff;
}

.coverage-highlight-card {
    height: 100%;
    padding: 30px 25px;
    background: #fff;
    border: 1px solid #e5eaf0;
    transition: all .25s ease;
}

.coverage-highlight-card:hover {
    transform: translateY(-5px);
    border-color: #dfe4e9;
    box-shadow: 0 15px 35px rgba(15, 34, 52, .08);
}

.coverage-highlight-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background: #e3262e;
    color: #fff;
    font-size: 22px;
}

.coverage-highlight-card h3 {
    color: #182d40;
    font-size: 19px;
    margin-bottom: 12px;
}

.coverage-highlight-card p {
    color: #758291;
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
}


/* =========================================================
   COVERAGE HELP
========================================================= */

.coverage-help-section {
    background: #f6f8fa;
}

.coverage-help-box {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 48px 52px;
    background:
        linear-gradient(
            105deg,
            #102b43 0%,
            #173c5b 100%
        );
}

.coverage-help-box::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
    right: -80px;
    top: -120px;
}

.coverage-help-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.coverage-help-eyebrow {
    display: inline-block;
    color: #ffb8bb;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.7px;
    margin-bottom: 10px;
}

.coverage-help-content h2 {
    color: #fff;
    font-size: 34px;
    margin: 0 0 14px;
}

.coverage-help-content h2 span {
    color: #ff5a61;
}

.coverage-help-content p {
    color: rgba(255,255,255,.72);
    line-height: 1.8;
    margin: 0;
    max-width: 650px;
}

.coverage-help-actions {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 205px;
}

.coverage-help-actions .btn {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}


/* =========================================================
   COVERAGE RESPONSIVE BASE
========================================================= */

@media (max-width: 991.98px) {

    .coverage-intro-visual {
        padding-left: 15px;
    }

    .coverage-intro-visual img {
        height: 420px;
    }

    .coverage-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .coverage-help-box {
        padding: 40px;
    }

}


@media (max-width: 767.98px) {

    .coverage-intro-points {
        grid-template-columns: 1fr;
    }

    .coverage-intro-visual {
        padding-left: 0;
        margin-top: 10px;
    }

    .coverage-intro-visual::before {
        display: none;
    }

    .coverage-intro-visual img {
        height: 350px;
    }

    .coverage-visual-badge {
        bottom: 18px;
        left: 15px;
    }

    .coverage-areas-header {
        align-items: flex-start;
        flex-direction: column;
        padding: 25px;
    }

    .coverage-area-count {
        border-left: 0;
        border-top: 1px solid #e4e9ee;
        padding: 15px 0 0;
        width: 100%;
        text-align: left;
    }

    .coverage-page-grid {
        grid-template-columns: 1fr;
        padding: 15px;
    }

    .coverage-help-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 35px 25px;
    }

    .coverage-help-actions {
        width: 100%;
    }

}


@media (max-width: 575.98px) {

    .coverage-intro-visual img {
        height: 300px;
    }

    .coverage-visual-badge {
        padding: 12px 14px;
    }

    .coverage-visual-badge > i {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .coverage-areas-header h3 {
        font-size: 21px;
    }

    .coverage-page-item {
        min-height: 75px;
        padding: 12px;
    }

    .coverage-highlight-card {
        padding: 25px 20px;
    }

    .coverage-help-content h2 {
        font-size: 27px;
    }

}

/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-page-banner {
    background:
        linear-gradient(
            90deg,
            rgba(5, 24, 45, .95) 0%,
            rgba(5, 24, 45, .84) 50%,
            rgba(5, 24, 45, .58) 100%
        ),
        url('../images/contact-banner.png') center center / cover no-repeat;
}


/* =========================================================
   CONTACT MAIN
========================================================= */

.contact-main-section {
    background: #fff;
}

.contact-main-content {
    max-width: 590px;
}

.contact-main-content h2 {
    margin: 12px 0 20px;
}

.contact-main-content > p {
    color: #687586;
    line-height: 1.85;
    margin-bottom: 14px;
}


/* =========================================================
   CONTACT INFO
========================================================= */

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-top: 28px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: #f7f9fb;
    border: 1px solid #e8edf1;
    text-decoration: none;
    transition: all .25s ease;
}

.contact-info-card:hover {
    background: #fff;
    border-color: #dce2e8;
    transform: translateX(4px);
    box-shadow: 0 8px 25px rgba(15, 34, 52, .07);
}

.contact-info-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e3262e;
    color: #fff;
    font-size: 18px;
}

.contact-info-card.whatsapp .contact-info-icon {
    background: #25d366;
}

.contact-info-card.additional .contact-info-icon,
.contact-info-card.landline .contact-info-icon {
    background: #173c5b;
}

.contact-info-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.contact-info-text span {
    color: #7b8794;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.contact-info-text strong {
    color: #1b3042;
    font-size: 15px;
    margin-top: 3px;
}

.contact-info-arrow {
    color: #a4adb6;
    font-size: 15px;
}

.contact-info-card:hover .contact-info-arrow {
    color: #e3262e;
    transform: translate(2px, -2px);
}


/* =========================================================
   24/7 AVAILABILITY
========================================================= */

.contact-availability-box {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 18px;
    padding: 17px 18px;
    background: #fff6f6;
    border-left: 3px solid #e3262e;
}

.contact-availability-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e3262e;
    color: #fff;
    font-size: 18px;
}

.contact-availability-box div:last-child {
    display: flex;
    flex-direction: column;
}

.contact-availability-box strong {
    color: #1c3042;
    font-size: 14px;
}

.contact-availability-box span {
    color: #7a8794;
    font-size: 12px;
    line-height: 1.5;
    margin-top: 3px;
}


/* =========================================================
   CONTACT FORM CARD
========================================================= */

.contact-form-card {
    background: #fff;
    border: 1px solid #e1e7ec;
    box-shadow: 0 18px 50px rgba(15, 34, 52, .09);
}

.contact-form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 30px;
    background: #102b43;
}

.contact-form-header > div:first-child span {
    display: block;
    color: #ffb8bb;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 7px;
}

.contact-form-header h3 {
    margin: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
}

.contact-form-header h3 strong {
    color: #ff5a61;
}

.contact-form-header-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.09);
    color: #fff;
    font-size: 18px;
}

.contact-page-form {
    padding: 30px;
}

.contact-page-form label {
    display: block;
    color: #26394a;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 7px;
}

.contact-input {
    position: relative;
}

.contact-input > i {
    position: absolute;
    left: 15px;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    color: #8b98a5;
    font-size: 15px;
    pointer-events: none;
}

.contact-input input,
.contact-input select,
.contact-input textarea {
    width: 100%;
    border: 1px solid #dfe5ea;
    background: #f9fafb;
    color: #273a4b;
    font-family: inherit;
    font-size: 13px;
    outline: none;
    transition: all .2s ease;
}

.contact-input input,
.contact-input select {
    height: 49px;
    padding: 0 14px 0 43px;
}

.contact-input textarea {
    min-height: 125px;
    padding: 14px 14px 14px 43px;
    resize: vertical;
}

.contact-input select {
    appearance: none;
    cursor: pointer;
}

.contact-input input::placeholder,
.contact-input textarea::placeholder {
    color: #9aa5af;
}

.contact-input input:focus,
.contact-input select:focus,
.contact-input textarea:focus {
    background: #fff;
    border-color: #173c5b;
    box-shadow: 0 0 0 3px rgba(23, 60, 91, .07);
}

.contact-textarea > i {
    top: 18px;
    transform: none;
}

.contact-submit-btn {
    width: 100%;
    min-height: 52px;
    margin-top: 5px;
    border: 0;
    background: #e3262e;
    color: #fff;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all .25s ease;
}

.contact-submit-btn span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.contact-submit-btn > i {
    font-size: 17px;
    transition: transform .25s ease;
}

.contact-submit-btn:hover {
    background: #c91d25;
}

.contact-submit-btn:hover > i {
    transform: translateX(4px);
}

.contact-form-note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 15px 30px;
    border-top: 1px solid #e8edf1;
    background: #f8fafb;
}

.contact-form-note i {
    color: #173c5b;
    font-size: 16px;
    margin-top: 1px;
}

.contact-form-note span {
    color: #7b8793;
    font-size: 11px;
    line-height: 1.6;
}


/* =========================================================
   EMERGENCY STRIP
========================================================= */

.contact-emergency-strip {
    background: #f5f7f9;
    padding: 45px 0;
}

.contact-emergency-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 35px 42px;
    background: #102b43;
}

.contact-emergency-content span {
    display: block;
    color: #ffb8bb;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 7px;
}

.contact-emergency-content h2 {
    color: #fff;
    font-size: 28px;
    margin: 0 0 7px;
}

.contact-emergency-content p {
    color: rgba(255,255,255,.68);
    font-size: 13px;
    margin: 0;
}

.contact-emergency-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.contact-emergency-actions .btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 20px;
}


/* =========================================================
   CONTACT SUPPORT
========================================================= */

.contact-support-section {
    background: #fff;
}

.contact-support-card {
    position: relative;
    height: 100%;
    padding: 32px 27px 27px;
    border: 1px solid #e4e9ee;
    background: #fff;
    overflow: hidden;
    transition: all .25s ease;
}

.contact-support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(15, 34, 52, .08);
}

.contact-support-number {
    position: absolute;
    top: 18px;
    right: 20px;
    color: #edf0f3;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.contact-support-icon {
    position: relative;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff0f1;
    color: #e3262e;
    font-size: 21px;
    margin-bottom: 22px;
}

.contact-support-card h3 {
    position: relative;
    color: #1b3042;
    font-size: 19px;
    margin-bottom: 11px;
}

.contact-support-card p {
    position: relative;
    color: #788592;
    font-size: 13px;
    line-height: 1.75;
    margin-bottom: 20px;
}

.contact-support-card a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #173c5b;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.contact-support-card a i {
    transition: transform .2s ease;
}

.contact-support-card a:hover {
    color: #e3262e;
}

.contact-support-card a:hover i {
    transform: translateX(4px);
}


/* =========================================================
   CONTACT RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .contact-main-section .row {
        --bs-gutter-y: 35px;
    }

    .contact-main-content {
        max-width: 100%;
    }

    .contact-emergency-inner {
        padding: 32px;
    }

}


@media (max-width: 767.98px) {

    .contact-form-header {
        padding: 24px 22px;
    }

    .contact-form-header h3 {
        font-size: 21px;
    }

    .contact-page-form {
        padding: 24px 20px;
    }

    .contact-form-note {
        padding: 14px 20px;
    }

    .contact-emergency-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px;
    }

    .contact-emergency-actions {
        width: 100%;
        flex-direction: column;
    }

    .contact-emergency-actions .btn {
        width: 100%;
    }

}


@media (max-width: 575.98px) {

    .contact-info-card {
        padding: 12px;
    }

    .contact-info-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .contact-info-text strong {
        font-size: 14px;
    }

    .contact-form-header-icon {
        width: 42px;
        height: 42px;
    }

    .contact-emergency-content h2 {
        font-size: 24px;
    }

    .contact-support-card {
        padding: 27px 22px;
    }

}

/* =========================================================
   MEDICAL SUPPORT SERVICES
   PREMIUM CORPORATE HEALTHCARE DESIGN
========================================================= */

.medical-support-services {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(13, 67, 143, 0.045),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 85%,
            rgba(220, 38, 38, 0.035),
            transparent 28%
        ),
        #f7f9fc;
}


/* Decorative circles */

.medical-support-services::before {
    content: "";
    position: absolute;

    width: 430px;
    height: 430px;

    right: -220px;
    top: -220px;

    border: 1px solid rgba(13, 67, 143, 0.055);
    border-radius: 50%;

    pointer-events: none;
}

.medical-support-services::after {
    content: "";
    position: absolute;

    width: 300px;
    height: 300px;

    left: -170px;
    bottom: -170px;

    border: 1px solid rgba(220, 38, 38, 0.045);
    border-radius: 50%;

    pointer-events: none;
}

.medical-support-services .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.medical-support-services .section-heading {
    max-width: 760px;
    margin: 0 auto 48px;
}

.medical-support-services .section-subtitle {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--red);

    font-size: 12px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: 1.8px;
}

.medical-support-services .section-heading h2 {
    margin: 0 0 13px;

    color: var(--primary-dark);

    font-size: 34px;
    line-height: 1.18;
    font-weight: 700;

    letter-spacing: -0.5px;
}

.medical-support-services .section-heading h2 span {
    color: var(--red);
}

.medical-support-services .section-heading p {
    max-width: 650px;
    margin: 0 auto;

    color: #68758a;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   SUPPORT CARD
========================================================= */

.medical-support-page-card {
    position: relative;

    display: flex;
    align-items: flex-start;

    min-height: 255px;

    padding: 30px;

    background: #ffffff;

    border: 1px solid rgba(15, 57, 110, 0.09);

    border-radius: 16px;

    box-shadow:
        0 10px 30px rgba(15, 45, 85, 0.055),
        0 2px 6px rgba(15, 45, 85, 0.025);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* Top subtle highlight */

.medical-support-page-card::after {
    content: "";

    position: absolute;

    left: 30px;
    right: 30px;
    top: 0;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--red)
        );

    opacity: 0.75;
}


/* Red side accent */

.medical-support-page-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 25px;
    bottom: 25px;

    width: 3px;

    background: var(--red);

    border-radius: 0 5px 5px 0;

    transform: scaleY(0);

    transform-origin: center;

    transition: transform 0.35s ease;
}


/* Hover */

.medical-support-page-card:hover {
    transform: translateY(-7px);

    border-color: rgba(13, 67, 143, 0.16);

    box-shadow:
        0 20px 45px rgba(15, 45, 85, 0.11),
        0 5px 12px rgba(15, 45, 85, 0.04);
}

.medical-support-page-card:hover::before {
    transform: scaleY(1);
}


/* =========================================================
   ICON
========================================================= */

.medical-support-card-icon {
    flex: 0 0 58px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 22px;

    border-radius: 15px;

    background:
        linear-gradient(
            145deg,
            #eef5ff 0%,
            #e3edfa 100%
        );

    border: 1px solid rgba(13, 67, 143, 0.08);

    color: var(--primary);

    font-size: 23px;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.95),
        0 5px 14px rgba(13, 67, 143, 0.06);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.medical-support-page-card:hover .medical-support-card-icon {
    background: var(--primary);
    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================================
   CONTENT
========================================================= */

.medical-support-card-content {
    flex: 1;
    min-width: 0;
}


/* =========================================================
   CARD HEADING
========================================================= */

.medical-support-card-heading {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 10px;
}

.medical-support-card-heading h3 {
    margin: 0;

    color: var(--primary-dark);

    font-size: 19px;
    line-height: 1.3;
    font-weight: 700;
}

.medical-support-card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 30px;
    height: 24px;

    padding: 0 7px;

    border-radius: 5px;

    background: #f1f5f9;

    color: #8a96a8;

    font-size: 10px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: 0.8px;
}

.medical-support-page-card:hover .medical-support-card-number {
    background: #fff0f0;
    color: var(--red);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.medical-support-card-content > p {
    margin: 0 0 18px;

    color: #69778c;

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   FEATURES
========================================================= */

.medical-support-card-content ul {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 9px 18px;

    margin: 0 0 20px;
    padding: 0;

    list-style: none;
}

.medical-support-card-content ul li {
    display: flex;
    align-items: flex-start;

    gap: 8px;

    color: #526176;

    font-size: 12px;
    line-height: 1.5;
}

.medical-support-card-content ul li i {
    flex: 0 0 auto;

    margin-top: 2px;

    color: var(--primary);

    font-size: 12px;
}

.medical-support-card-content ul li span {
    display: block;
}


/* =========================================================
   REQUEST ASSISTANCE
========================================================= */

.medical-support-link {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: var(--primary);

    font-size: 12px;
    line-height: 1.3;
    font-weight: 700;

    text-decoration: none;

    transition:
        color 0.25s ease,
        gap 0.25s ease;
}

.medical-support-link i {
    font-size: 12px;

    transition: transform 0.25s ease;
}

.medical-support-link:hover {
    color: var(--red);
    gap: 11px;
}

.medical-support-link:hover i {
    transform: translateX(3px);
}


/* =========================================================
   EMPTY STATE
========================================================= */

.medical-support-empty {
    padding: 55px 25px;

    background: #ffffff;

    border: 1px solid rgba(13, 67, 143, 0.08);

    border-radius: 14px;

    box-shadow:
        0 8px 25px rgba(15, 45, 85, 0.05);
}

.medical-support-empty > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 60px;
    height: 60px;

    margin-bottom: 15px;

    border-radius: 14px;

    background: #edf4ff;

    color: var(--primary);

    font-size: 25px;
}

.medical-support-empty h3 {
    margin-bottom: 8px;

    color: var(--primary-dark);

    font-size: 20px;
}

.medical-support-empty p {
    margin: 0;

    color: #718096;

    font-size: 13px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .medical-support-services {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .medical-support-services .section-heading {
        margin-bottom: 38px;
    }

    .medical-support-services .section-heading h2 {
        font-size: 30px;
    }

    .medical-support-page-card {
        min-height: 240px;
        padding: 25px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .medical-support-services {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .medical-support-services .section-heading {
        margin-bottom: 30px;
    }

    .medical-support-services .section-heading h2 {
        font-size: 26px;
    }

    .medical-support-services .section-heading p {
        font-size: 13px;
    }

    .medical-support-page-card {
        display: block;

        min-height: auto;

        padding: 22px;

        border-radius: 13px;
    }

    .medical-support-card-icon {
        width: 50px;
        height: 50px;

        margin: 0 0 17px;

        border-radius: 13px;

        font-size: 20px;
    }

    .medical-support-card-heading h3 {
        font-size: 17px;
    }

    .medical-support-card-content > p {
        font-size: 12.5px;
    }

    .medical-support-card-content ul {
        grid-template-columns: 1fr;

        gap: 8px;
    }

    .medical-support-page-card::after {
        left: 22px;
        right: 22px;
    }

}