/* =====================================================
   RK AMBULANCE EMERGENCY SERVICES
   FINAL STYLE SHEET
===================================================== */


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {

    --navy: #071525;
    --navy-2: #0b2036;

    --red: #e63946;
    --red-dark: #c92734;

    --cyan: #18d6d0;

    --white: #ffffff;
    --off-white: #f6f8fb;

    --text: #14202d;
    --muted: #718096;

    --border: #e5e9ef;

    --green: #20c76b;

    --shadow:
        0 20px 60px rgba(7, 21, 37, .10);
}


/* =====================================================
   HTML / BODY
===================================================== */

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

img {
    max-width: 100%;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}


/* =====================================================
   EMERGENCY TOP BAR
===================================================== */

.emergency-bar {
    background: var(--red);
    color: white;
    font-size: 12px;
    font-weight: 700;
}

.emergency-inner {
    min-height: 38px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.live-status {
    display: flex;
    align-items: center;
    gap: 9px;
}

.pulse {
    width: 8px;
    height: 8px;

    background: white;

    border-radius: 50%;

    animation: pulse 1.2s infinite;
}

@keyframes pulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(255, 255, 255, .7);
    }

    70% {
        box-shadow:
            0 0 0 8px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.emergency-contact {
    display: flex;
    gap: 12px;
    align-items: center;
}

.emergency-contact a {
    font-size: 14px;
}


/* =====================================================
   HEADER
===================================================== */

.header {
    background: rgba(255, 255, 255, .98);

    position: sticky;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    border-bottom: 1px solid var(--border);
}

.nav-container {
    height: 88px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;
}


/* =====================================================
   LOGO IMAGE
===================================================== */

.logo {
    display: flex;
    align-items: center;

    text-decoration: none;

    flex-shrink: 0;
}

.logo-image {
    width: 175px;
    height: 68px;

    object-fit: contain;

    display: block;
}


/* Old logo support - optional */

.logo-symbol {
    width: 56px;
    height: 56px;

    border-radius: 14px;

    background: var(--navy);
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}

.logo-name {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-name strong {
    color: var(--red);
    font-size: 14px;
}

.logo-name span {
    color: var(--navy);
    font-size: 19px;
    font-weight: 900;
}


/* =====================================================
   NAVIGATION
===================================================== */

.navigation {
    display: flex;
    align-items: center;
    gap: 5px;
}

.navigation > a {
    padding: 11px 14px;

    color: #4b5563;

    font-size: 13px;
    font-weight: 700;

    transition:
        color .25s ease,
        background .25s ease,
        transform .25s ease;
}

.navigation > a:hover,
.navigation > a.active {
    color: var(--red);
}


/* =====================================================
   EMERGENCY CALL BUTTON
===================================================== */

.nav-call {
    display: inline-flex !important;

    align-items: center;
    justify-content: center;

    gap: 8px;

    background: var(--navy);

    color: #ffffff !important;

    padding: 13px 18px !important;

    border-radius: 6px;

    margin-left: 8px;

    text-decoration: none;

    transition:
        background .25s ease,
        transform .25s ease;
}

.nav-call:hover {
    background: var(--red);

    color: #ffffff !important;

    transform: translateY(-2px);
}

.call-icon {
    font-size: 15px;
    line-height: 1;
}


/* =====================================================
   LANGUAGE SWITCHER
===================================================== */

.language-switcher {
    display: flex;
    align-items: center;

    gap: 5px;

    margin-left: auto;
    margin-right: 20px;
}

.language-btn {
    border: 0;

    background: transparent;

    color: var(--navy);

    cursor: pointer;

    font-size: 11px;
    font-weight: 700;

    padding: 5px 8px;

    border-radius: 4px;
}

.language-btn.active {
    background: var(--navy);
    color: white;
}


/* =====================================================
   MOBILE BUTTON
===================================================== */

.mobile-button {
    display: none;

    width: 43px;
    height: 43px;

    border: 0;

    background: var(--navy);

    border-radius: 6px;

    cursor: pointer;

    padding: 9px;
}

.mobile-button span {
    display: block;

    height: 2px;

    background: white;

    margin: 5px 0;

    transition: .25s;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;

    min-height: 690px;

    background: var(--navy);

    color: white;

    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 80% 45%,
            rgba(24, 214, 208, .12),
            transparent 30%
        ),
        radial-gradient(
            circle at 20% 20%,
            rgba(230, 57, 70, .13),
            transparent 35%
        );
}

.hero-container {
    min-height: 640px;

    position: relative;

    display: grid;

    grid-template-columns: 1fr .95fr;

    align-items: center;

    gap: 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: flex;
    align-items: center;

    gap: 10px;

    color: var(--cyan);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 22px;
}

.tag-line {
    width: 35px;
    height: 2px;

    background: var(--cyan);
}

.hero h1 {
    font-size: clamp(48px, 6vw, 78px);

    line-height: .98;

    letter-spacing: -4px;

    max-width: 650px;
}

.hero h1 span {
    color: var(--red);
}

.hero-description {
    max-width: 570px;

    color: #aebaca;

    font-size: 16px;

    line-height: 1.8;

    margin: 28px 0;
}


/* =====================================================
   HERO ACTIONS
===================================================== */

.hero-actions {
    display: flex;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;
}

.primary-action {
    background: var(--red);

    padding: 13px 20px;

    display: flex;

    gap: 13px;

    align-items: center;

    border-radius: 6px;

    font-weight: 800;

    transition: .25s;
}

.primary-action:hover {
    background: var(--red-dark);

    transform: translateY(-2px);
}

.action-icon {
    width: 40px;
    height: 40px;

    background: rgba(255, 255, 255, .13);

    display: grid;

    place-items: center;

    border-radius: 5px;
}

.primary-action small {
    display: block;

    font-size: 7px;

    letter-spacing: 1.5px;

    opacity: .75;
}

.secondary-action {
    border: 1px solid #405165;

    padding: 18px 22px;

    border-radius: 6px;

    font-size: 12px;

    font-weight: 700;

    transition: .25s;
}

.secondary-action:hover {
    border-color: var(--cyan);

    color: var(--cyan);
}

.secondary-action span {
    margin-left: 10px;
}


/* =====================================================
   HERO SOS
===================================================== */

.sos-button {
    border: 0;

    background: var(--red);

    color: white;

    border-radius: 7px;

    padding: 12px 20px;

    display: flex;

    align-items: center;

    gap: 12px;

    cursor: pointer;

    transition: .25s;
}

.sos-button:hover {
    background: var(--red-dark);

    transform: translateY(-2px);
}

.sos-icon {
    font-size: 23px;
}

.sos-button small {
    display: block;

    text-align: left;

    font-size: 7px;

    letter-spacing: 1.5px;

    opacity: .8;
}

.sos-button strong {
    display: block;

    font-size: 13px;
}


/* =====================================================
   WHATSAPP BOOKING
===================================================== */

.whatsapp-book {
    border: 1px solid var(--green);

    background: transparent;

    color: var(--green);

    border-radius: 7px;

    padding: 12px 20px;

    cursor: pointer;

    font-size: 11px;

    font-weight: 800;

    transition: .25s;
}

.whatsapp-book:hover {
    background: var(--green);

    color: white;
}


/* =====================================================
   QUICK INFO
===================================================== */

.quick-info {
    display: flex;

    gap: 40px;

    margin-top: 50px;
}

.quick-info div {
    display: flex;

    flex-direction: column;
}

.quick-info strong {
    font-size: 18px;

    color: white;
}

.quick-info span {
    color: #718197;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* =====================================================
   HERO VISUAL
===================================================== */

.hero-visual {
    position: relative;

    min-height: 480px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.visual-glow {
    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background: rgba(24, 214, 208, .08);

    filter: blur(5px);
}

.ambulance-card {
    width: 430px;

    background: #10283e;

    border: 1px solid #294158;

    border-radius: 15px;

    padding: 15px;

    position: relative;

    z-index: 2;

    box-shadow:
        0 35px 80px rgba(0, 0, 0, .35);

    transform: rotate(2deg);
}

.card-top {
    display: flex;

    justify-content: space-between;

    align-items: center;

    color: #71869b;

    font-size: 9px;

    letter-spacing: 1px;

    padding: 4px 3px 13px;
}

.available {
    color: var(--cyan);

    display: flex;

    align-items: center;

    gap: 6px;
}

.available span {
    width: 6px;
    height: 6px;

    background: var(--cyan);

    border-radius: 50%;
}

.ambulance-image {
    height: 285px;

    border-radius: 10px;

    overflow: hidden;
}

.ambulance-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.route-line {
    height: 30px;

    display: flex;

    align-items: center;

    padding: 0 8px;
}

.route-point {
    color: var(--cyan);

    font-size: 14px;
}

.route-point.end {
    color: var(--red);
}

.route-path {
    flex: 1;

    height: 2px;

    margin: 0 8px;

    background:
        repeating-linear-gradient(
            90deg,
            #527085 0,
            #527085 8px,
            transparent 8px,
            transparent 15px
        );
}

.card-location {
    display: flex;

    justify-content: space-between;

    padding: 3px 8px 5px;
}

.card-location div {
    display: flex;

    flex-direction: column;
}

.card-location small {
    color: #687e93;

    font-size: 7px;

    letter-spacing: 1px;
}

.card-location strong {
    color: white;

    font-size: 13px;
}

.eta {
    text-align: right;
}

.floating-medical {
    position: absolute;

    z-index: 4;

    width: 45px;
    height: 45px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    font-size: 20px;

    font-weight: 900;

    background: white;

    color: var(--red);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .3);
}

.floating-medical.one {
    top: 60px;
    right: 20px;
}

.floating-medical.two {
    bottom: 60px;
    left: 15px;

    color: var(--cyan);
}


/* =====================================================
   HERO BOTTOM
===================================================== */

.hero-bottom {
    position: absolute;

    bottom: 0;
    left: 0;
    right: 0;

    border-top:
        1px solid rgba(255, 255, 255, .1);
}

.hero-bottom-inner {
    height: 58px;

    display: flex;

    align-items: center;

    gap: 25px;

    color: #6e8194;

    font-size: 8px;

    letter-spacing: 2px;

    font-weight: 800;
}

.bottom-line {
    width: 40px;

    height: 1px;

    background: #3b5065;
}


/* =====================================================
   TRUST BAR
===================================================== */

.trust-bar {
    background: white;

    border-bottom:
        1px solid var(--border);
}

.trust-grid {
    min-height: 115px;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);
}

.trust-item {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    border-right:
        1px solid var(--border);
}

.trust-item:last-child {
    border: 0;
}

.trust-icon {
    width: 43px;
    height: 43px;

    background: var(--off-white);

    border-radius: 8px;

    display: grid;

    place-items: center;
}

.trust-item > div:last-child {
    display: flex;

    flex-direction: column;
}

.trust-item strong {
    font-size: 13px;
}

.trust-item span {
    color: var(--muted);

    font-size: 10px;
}


/* =====================================================
   COMMON SECTIONS
===================================================== */

.section {
    padding: 110px 0;
}

.section-label {
    color: var(--red);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2px;
}

.section-header {
    display: flex;

    justify-content: space-between;

    align-items: end;

    margin-bottom: 45px;

    gap: 40px;
}

.section-header h2,
.about-content h2,
.contact-info h2 {
    font-size: 42px;

    line-height: 1.12;

    letter-spacing: -2px;

    margin-top: 10px;
}

.section-header h2 span,
.about-content h2 span,
.contact-info h2 span {
    color: var(--red);
}

.section-header > p {
    max-width: 380px;

    color: var(--muted);

    font-size: 13px;
}


/* =====================================================
   ABOUT
===================================================== */

.about {
    background: var(--off-white);
}

.about-grid {
    display: grid;

    grid-template-columns: .95fr 1.05fr;

    align-items: center;

    gap: 90px;
}

.about-visual {
    position: relative;

    min-height: 450px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.about-image {
    width: 390px;
    height: 390px;

    border-radius: 30px;

    overflow: hidden;

    transform: rotate(-3deg);

    border: 10px solid white;

    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.experience-card {
    position: absolute;

    left: 15px;
    bottom: 30px;

    background: var(--navy);

    color: white;

    padding: 20px;

    display: flex;

    gap: 12px;

    align-items: center;

    border-radius: 8px;

    box-shadow: var(--shadow);
}

.experience-card strong {
    color: var(--cyan);

    font-size: 30px;
}

.experience-card span {
    font-size: 10px;

    line-height: 1.4;
}

.medical-cross {
    position: absolute;

    top: 35px;
    right: 20px;

    width: 55px;
    height: 55px;

    background: var(--red);

    color: white;

    display: grid;

    place-items: center;

    border-radius: 12px;

    font-size: 28px;

    font-weight: 900;
}

.about-content > p {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.9;

    max-width: 650px;

    margin-top: 20px;
}

.about-points {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 16px;

    margin-top: 28px;
}

.about-points div {
    display: flex;

    align-items: center;

    gap: 10px;
}

.about-points span {
    width: 25px;
    height: 25px;

    background: rgba(230, 57, 70, .1);

    color: var(--red);

    display: grid;

    place-items: center;

    border-radius: 50%;

    font-size: 11px;

    font-weight: 900;
}

.about-points strong {
    font-size: 11px;
}

.learn-button {
    display: inline-flex;

    align-items: center;

    gap: 20px;

    margin-top: 32px;

    background: var(--navy);

    color: white;

    padding: 14px 20px;

    font-size: 11px;

    font-weight: 800;

    border-radius: 5px;
}

.learn-button:hover {
    background: var(--red);
}


/* =====================================================
   SERVICES
===================================================== */

.services {
    background: white;
}

.service-filter {
    display: flex;

    justify-content: center;

    gap: 8px;

    margin-bottom: 35px;

    flex-wrap: wrap;
}

.filter-button {
    border: 1px solid var(--border);

    background: white;

    padding: 9px 17px;

    border-radius: 30px;

    font-size: 10px;

    font-weight: 700;

    cursor: pointer;

    color: var(--muted);

    transition: .25s;
}

.filter-button.active,
.filter-button:hover {
    background: var(--navy);

    border-color: var(--navy);

    color: white;
}

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.service-card {
    border: 1px solid var(--border);

    padding: 30px;

    position: relative;

    transition: .3s;

    background: white;

    overflow: hidden;
}

.service-card::before {
    content: "";

    position: absolute;

    width: 4px;
    height: 0;

    background: var(--red);

    left: 0;
    top: 0;

    transition: .3s;
}

.service-card:hover {
    transform: translateY(-7px);

    box-shadow: var(--shadow);

    border-color: transparent;
}

.service-card:hover::before {
    height: 100%;
}

.service-number {
    position: absolute;

    right: 20px;
    top: 20px;

    font-size: 11px;

    font-weight: 800;

    color: #dbe0e7;
}

.service-icon {
    width: 55px;
    height: 55px;

    border-radius: 10px;

    background: var(--off-white);

    display: grid;

    place-items: center;

    font-size: 25px;

    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 17px;

    margin-bottom: 12px;
}

.service-card p {
    color: var(--muted);

    font-size: 12px;

    line-height: 1.8;

    min-height: 70px;
}

.service-card a {
    display: inline-block;

    margin-top: 18px;

    color: var(--red);

    font-size: 10px;

    font-weight: 900;
}


/* =====================================================
   PROCESS
===================================================== */

.process {
    background: var(--off-white);
}

.centered {
    display: block;

    text-align: center;
}

.centered h2 {
    margin-bottom: 0;
}

.process-grid {
    display: grid;

    grid-template-columns:
        1fr 60px 1fr 60px 1fr;

    align-items: center;
}

.process-item {
    text-align: center;

    position: relative;
}

.process-number {
    color: var(--red);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2px;

    margin-bottom: 12px;
}

.process-icon {
    width: 65px;
    height: 65px;

    background: var(--navy);

    color: white;

    display: grid;

    place-items: center;

    margin: auto;

    border-radius: 50%;

    font-size: 24px;
}

.process-item h3 {
    margin-top: 18px;

    font-size: 16px;
}

.process-item p {
    color: var(--muted);

    font-size: 11px;

    max-width: 210px;

    margin: 8px auto 0;

    line-height: 1.7;
}

.process-line {
    height: 1px;

    background:
        repeating-linear-gradient(
            90deg,
            var(--red) 0,
            var(--red) 6px,
            transparent 6px,
            transparent 12px
        );
}


/* =====================================================
   SOS SECTION
===================================================== */

.sos-section {
    background: #fff3f4;

    border-bottom:
        1px solid #ffd5d8;
}

.sos-container {
    min-height: 150px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;
}

.sos-warning {
    display: flex;

    align-items: center;

    gap: 20px;
}

.sos-big-icon {
    width: 65px;
    height: 65px;

    border-radius: 50%;

    background: #ffe0e3;

    display: grid;

    place-items: center;

    font-size: 30px;
}

.sos-warning > div:last-child span {
    color: #d82e3a;

    font-size: 8px;

    letter-spacing: 2px;

    font-weight: 900;
}

.sos-warning h2 {
    font-size: 23px;

    margin: 3px 0;
}

.sos-warning p {
    color: #7d6c6f;

    font-size: 11px;
}

.sos-actions {
    display: flex;

    gap: 10px;
}

.sos-call-button,
.sos-whatsapp-button {
    border: 0;

    color: white;

    padding: 15px 20px;

    border-radius: 6px;

    cursor: pointer;

    font-weight: 800;

    font-size: 10px;
}

.sos-call-button {
    background: var(--red);
}

.sos-whatsapp-button {
    background: var(--green);
}


/* =====================================================
   EMERGENCY CTA
===================================================== */

.emergency-cta {
    background: var(--red);

    color: white;
}

.emergency-cta-inner {
    min-height: 220px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;
}

.emergency-cta > .container > span,
.emergency-cta-inner > div > span {
    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;
}

.emergency-cta h2 {
    font-size: 40px;

    margin: 7px 0;

    letter-spacing: -1px;
}

.emergency-cta h2 strong {
    color: var(--navy);
}

.emergency-cta p {
    font-size: 12px;

    opacity: .85;
}

.big-call {
    min-width: 280px;

    background: var(--navy);

    padding: 20px 25px;

    display: flex;

    align-items: center;

    gap: 15px;

    border-radius: 7px;
}

.big-call > span {
    width: 42px;
    height: 42px;

    background: rgba(255, 255, 255, .1);

    display: grid;

    place-items: center;

    border-radius: 5px;

    font-size: 18px;
}

.big-call small {
    display: block;

    font-size: 7px;

    letter-spacing: 1.5px;

    color: #8191a2;
}

.big-call div {
    font-size: 20px;

    font-weight: 900;
}


/* =====================================================
   GOOGLE MAP BOOKING
===================================================== */

.map-booking {
    background: #f7f9fb;
}

.map-booking-grid {
    display: grid;

    grid-template-columns: .75fr 1.25fr;

    gap: 20px;
}

.location-form {
    background: white;

    padding: 30px;

    border: 1px solid #e3e8ee;
}

.input-group {
    margin-bottom: 17px;
}

.input-group label {
    display: block;

    font-size: 9px;

    font-weight: 800;

    margin-bottom: 7px;
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;

    padding: 13px;

    border: 1px solid #dfe5eb;

    outline: none;

    font-size: 11px;

    background: white;
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    border-color: var(--red);
}

.route-button {
    width: 100%;

    border: 0;

    background: var(--navy);

    color: white;

    padding: 14px;

    cursor: pointer;

    font-size: 11px;

    font-weight: 800;
}

.route-button:hover {
    background: var(--red);
}

.route-info {
    display: grid;

    grid-template-columns: 1fr 1fr;

    margin: 20px 0;

    background: #f5f7fa;

    padding: 15px;
}

.route-info div {
    display: flex;

    flex-direction: column;
}

.route-info small {
    color: #8a96a4;

    font-size: 8px;
}

.route-info strong {
    font-size: 13px;
}

.book-map-button {
    width: 100%;

    border: 0;

    background: var(--red);

    color: white;

    padding: 14px;

    cursor: pointer;

    font-size: 11px;

    font-weight: 900;
}

.google-map-container {
    min-height: 470px;

    background: #dce3e9;
}

#map {
    width: 100%;

    height: 100%;

    min-height: 470px;
}


/* =====================================================
   HOSPITAL DIRECTORY
===================================================== */

.hospitals {
    background: white;
}

.hospital-search {
    max-width: 500px;

    margin-bottom: 30px;
}

.hospital-search input {
    width: 100%;

    padding: 15px;

    border: 1px solid #dfe5eb;

    outline: none;

    font-size: 12px;
}

.hospital-search input:focus {
    border-color: var(--red);
}

.hospital-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.hospital-card {
    border: 1px solid #e2e7ed;

    padding: 22px;

    display: flex;

    gap: 15px;

    transition: .25s;
}

.hospital-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, .08);
}

.hospital-icon {
    width: 50px;
    height: 50px;

    flex-shrink: 0;

    background: #fff1f2;

    display: grid;

    place-items: center;

    border-radius: 8px;

    font-size: 23px;
}

.hospital-type {
    color: var(--red);

    font-size: 7px;

    letter-spacing: 1px;

    font-weight: 900;
}

.hospital-content h3 {
    font-size: 15px;

    margin: 5px 0;
}

.hospital-content p {
    color: #7c8793;

    font-size: 10px;
}

.hospital-actions {
    display: flex;

    gap: 8px;

    flex-wrap: wrap;

    margin-top: 13px;
}

.hospital-actions a {
    background: var(--navy);

    color: white;

    padding: 7px 9px;

    font-size: 8px;

    font-weight: 800;

    border-radius: 3px;
}

.hospital-actions a:first-child {
    background: var(--red);
}


/* =====================================================
   TRACKING
===================================================== */

.tracking {
    background: var(--navy);

    color: white;
}

.tracking-header {
    text-align: center;

    margin-bottom: 35px;
}

.tracking-header h2 {
    font-size: 38px;

    margin-top: 8px;
}

.tracking-header h2 span {
    color: var(--red);
}

.tracking-box {
    max-width: 950px;

    margin: auto;

    background: #10283e;

    border: 1px solid #294158;

    padding: 35px;
}

.booking-summary {
    display: flex;

    justify-content: space-between;

    border-bottom:
        1px solid #294158;

    padding-bottom: 22px;
}

.booking-summary div {
    display: flex;

    flex-direction: column;
}

.booking-summary small {
    color: #6f8599;

    font-size: 7px;

    letter-spacing: 1px;
}

.booking-summary strong {
    font-size: 14px;

    margin-top: 5px;
}

#bookingStatus {
    color: var(--cyan);
}

.status-progress {
    display: grid;

    grid-template-columns:
        1fr 80px 1fr 80px 1fr 80px 1fr;

    align-items: start;

    margin-top: 40px;
}

.status-step {
    text-align: center;
}

.status-step > div {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    border: 2px solid #486074;

    margin: auto;

    display: grid;

    place-items: center;

    color: #7890a4;

    font-size: 12px;

    font-weight: 800;
}

.status-step.active > div {
    background: var(--red);

    border-color: var(--red);

    color: white;
}

.status-step span {
    display: block;

    margin-top: 10px;

    color: #8da0b1;

    font-size: 9px;
}

.status-connector {
    height: 2px;

    background: #3b5368;

    margin-top: 21px;
}

.tracking-message {
    margin-top: 35px;

    background: #0b2036;

    padding: 15px;

    color: #aebcca;

    text-align: center;

    font-size: 11px;
}

.tracking-button {
    display: block;

    margin: 20px auto 0;

    border: 1px solid #38536b;

    background: transparent;

    color: white;

    padding: 10px 18px;

    cursor: pointer;

    font-size: 9px;
}


/* =====================================================
   CONTACT
===================================================== */

.contact {
    background: white;
}

.contact-grid {
    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 80px;

    align-items: start;
}

.contact-info > p {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;

    margin-top: 20px;
}

.contact-item {
    display: flex;

    gap: 15px;

    margin-top: 28px;
}

.contact-item > div {
    width: 42px;
    height: 42px;

    background: var(--off-white);

    color: var(--red);

    display: grid;

    place-items: center;

    border-radius: 7px;
}

.contact-item section {
    display: flex;

    flex-direction: column;
}

.contact-item small {
    color: #9aa3ad;

    font-size: 7px;

    letter-spacing: 1px;

    font-weight: 800;
}

.contact-item a,
.contact-item strong {
    font-size: 14px;

    margin-top: 3px;
}


/* =====================================================
   BOOKING FORM
===================================================== */

.booking-form {
    background: var(--off-white);

    padding: 35px;

    border: 1px solid var(--border);
}

.form-header span {
    color: var(--red);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;
}

.form-header h3 {
    font-size: 27px;

    margin: 5px 0 25px;
}

.input-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

.booking-form .input-group {
    margin-bottom: 15px;
}

.booking-form .input-group label {
    display: block;

    font-size: 9px;

    font-weight: 800;

    margin-bottom: 6px;
}

.booking-form .input-group input,
.booking-form .input-group select,
.booking-form .input-group textarea {
    width: 100%;

    border: 1px solid var(--border);

    background: white;

    padding: 12px;

    outline: none;

    font-size: 11px;

    resize: vertical;
}

.booking-form .input-group input:focus,
.booking-form .input-group select:focus,
.booking-form .input-group textarea:focus {
    border-color: var(--red);
}

.submit-button {
    width: 100%;

    border: 0;

    background: var(--red);

    color: white;

    padding: 15px;

    cursor: pointer;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1px;
}

.submit-button span {
    margin-left: 15px;
}

.form-whatsapp {
    width: 100%;

    border: 0;

    margin-top: 8px;

    background: var(--green);

    color: white;

    padding: 14px;

    cursor: pointer;

    font-size: 10px;

    font-weight: 900;
}

#bookingMessage {
    color: var(--green);

    font-size: 10px;

    margin-top: 10px;
}


/* =====================================================
   FOOTER
===================================================== */

footer {
    background: var(--navy);

    color: white;
}

.footer-grid {
    padding: 70px 0 50px;

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1.2fr 1fr;

    gap: 50px;
}

.footer-brand .logo-image {
    width: 160px;

    filter: brightness(0) invert(1);
}

.footer-brand > p {
    color: #77899c;

    font-size: 11px;

    line-height: 1.8;

    max-width: 250px;

    margin-top: 18px;
}

.footer-column h4 {
    font-size: 12px;

    margin-bottom: 18px;
}

.footer-column a {
    display: block;

    color: #77899c;

    font-size: 10px;

    margin-bottom: 10px;
}

.footer-column a:hover {
    color: white;
}

.footer-emergency {
    background: #10283e;

    padding: 22px;

    border-left:
        3px solid var(--red);
}

.footer-emergency span {
    display: block;

    color: var(--cyan);

    font-size: 8px;

    letter-spacing: 1px;

    font-weight: 900;
}

.footer-emergency a {
    display: block;

    margin-top: 9px;

    font-weight: 800;

    font-size: 15px;
}

.footer-emergency a:last-child {
    color: #77899c;

    font-size: 10px;
}

.copyright {
    border-top:
        1px solid #1b3043;

    text-align: center;

    color: #66798d;

    font-size: 9px;

    padding: 18px;
}


/* =====================================================
   FLOATING ACTION BUTTONS
===================================================== */

.floating-actions {
    position: fixed;

    right: 20px;

    bottom: 20px;

    display: flex;

    flex-direction: column;

    gap: 10px;

    z-index: 500;
}

.floating-sos,
.floating-whatsapp,
.floating-call {
    width: 55px;
    height: 55px;

    border-radius: 50%;

    border: 0;

    display: grid;

    place-items: center;

    color: white;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .25);

    cursor: pointer;

    transition: .25s;
}

.floating-sos:hover,
.floating-whatsapp:hover,
.floating-call:hover {
    transform: scale(1.08);
}

.floating-sos {
    background: var(--red);

    font-size: 21px;
}

.floating-whatsapp {
    background: var(--green);

    font-size: 21px;
}

.floating-call {
    background: var(--navy);

    font-size: 21px;
}


/* =====================================================
   SOS MODAL
===================================================== */

.modal {
    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .75);

    display: none;

    align-items: center;

    justify-content: center;

    z-index: 5000;

    padding: 20px;
}

.modal.show {
    display: flex;
}

.modal-content {
    width: min(420px, 100%);

    background: white;

    padding: 35px;

    text-align: center;

    position: relative;

    border-radius: 10px;
}

.modal-close {
    position: absolute;

    right: 15px;
    top: 12px;

    border: 0;

    background: transparent;

    font-size: 28px;

    cursor: pointer;
}

.modal-icon {
    width: 70px;
    height: 70px;

    border-radius: 50%;

    background: #ffe1e4;

    display: grid;

    place-items: center;

    margin: auto;

    font-size: 32px;
}

.modal-content h2 {
    margin-top: 15px;
}

.modal-content p {
    color: #77818d;

    font-size: 12px;

    margin: 5px 0 20px;
}

.modal-call,
.modal-whatsapp {
    display: block;

    width: 100%;

    padding: 14px;

    border: 0;

    margin-top: 8px;

    color: white;

    font-size: 10px;

    font-weight: 900;

    cursor: pointer;
}

.modal-call {
    background: var(--red);
}

.modal-whatsapp {
    background: var(--green);
}


/* =====================================================
   SCROLL REVEAL
===================================================== */

.reveal {
    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity .7s ease,
        transform .7s ease;
}

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}


/* =====================================================
   RESPONSIVE - 1000px
===================================================== */

@media (max-width: 1000px) {

    .navigation > a {
        padding: 9px;

        font-size: 11px;
    }

    .nav-call {
        padding: 11px 13px !important;
    }

    .hero-container {
        grid-template-columns: 1fr;

        padding: 80px 0 100px;
    }

    .hero-visual {
        display: none;
    }

    .hero {
        min-height: auto;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trust-item {
        padding: 20px;

        border-bottom:
            1px solid var(--border);
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .map-booking-grid {
        grid-template-columns: 1fr;
    }

    .hospital-grid {
        grid-template-columns: 1fr 1fr;
    }

    .status-progress {
        grid-template-columns:
            1fr 60px 1fr 60px 1fr 60px 1fr;
    }
}


/* =====================================================
   RESPONSIVE - 760px
===================================================== */

@media (max-width: 760px) {

    .container {
        width: calc(100% - 28px);
    }

    .emergency-inner {
        justify-content: center;
    }

    .emergency-contact {
        display: none;
    }

    .nav-container {
        height: 75px;
    }

    .logo-image {
        width: 145px;
        height: 55px;
    }

    .mobile-button {
        display: block;
    }

    .navigation {
        position: absolute;

        top: 75px;

        left: 0;
        right: 0;

        width: 100%;

        background: white;

        padding: 12px;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 2px;

        box-shadow:
            0 20px 35px rgba(0, 0, 0, .15);
    }

    .navigation.show {
        display: flex;
    }

    .navigation > a {
        width: 100%;

        padding: 13px;

        font-size: 12px;
    }

    .nav-call {
        margin: 5px 0 0 !important;

        justify-content: center !important;

        text-align: center;
    }

    .language-switcher {
        margin-left: 10px;

        margin-right: 0;
    }

    .hero h1 {
        font-size: 52px;

        letter-spacing: -3px;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-bottom {
        display: none;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-item {
        justify-content: flex-start;

        border-right: 0;
    }

    .section {
        padding: 75px 0;
    }

    .section-header {
        display: block;
    }

    .section-header > p {
        margin-top: 15px;
    }

    .section-header h2,
    .about-content h2,
    .contact-info h2 {
        font-size: 34px;
    }

    .about-image {
        width: 100%;

        max-width: 390px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .process-line {
        width: 1px;

        height: 30px;

        margin: auto;
    }

    .sos-container {
        flex-direction: column;

        align-items: flex-start;

        padding: 25px 0;
    }

    .sos-actions {
        width: 100%;
    }

    .sos-call-button,
    .sos-whatsapp-button {
        flex: 1;
    }

    .emergency-cta-inner {
        display: block;

        padding: 50px 0;
    }

    .big-call {
        margin-top: 25px;
    }

    .input-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .booking-summary {
        flex-direction: column;

        gap: 15px;
    }

    .tracking-box {
        padding: 22px;
    }

    .status-progress {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .status-connector {
        width: 2px;

        height: 25px;

        margin: auto;
    }

    .hospital-grid {
        grid-template-columns: 1fr;
    }
}


/* =====================================================
   RESPONSIVE - 480px
===================================================== */

@media (max-width: 480px) {

    .logo-image {
        width: 130px;

        height: 50px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-actions {
        display: block;
    }

    .primary-action,
    .secondary-action,
    .sos-button,
    .whatsapp-book {
        width: 100%;

        justify-content: center;

        margin-bottom: 10px;
    }

    .quick-info {
        gap: 22px;
    }

    .about-image {
        height: 320px;
    }

    .experience-card {
        left: 0;

        bottom: 10px;
    }

    .medical-cross {
        right: 0;
    }

    .booking-form {
        padding: 22px;
    }

    .emergency-cta h2 {
        font-size: 32px;
    }

    .sos-actions {
        display: block;
    }

    .sos-call-button,
    .sos-whatsapp-button {
        width: 100%;

        margin-top: 8px;
    }

    .floating-actions {
        right: 12px;

        bottom: 12px;
    }

    .floating-sos,
    .floating-whatsapp,
    .floating-call {
        width: 48px;

        height: 48px;
    }
}/* =====================================================
   AUTO PLAY VIDEO SLIDER
===================================================== */

.video-slider {
    position: relative;
    height: 285px;
    border-radius: 10px;
    overflow: hidden;
    background: #071525;
}


/* VIDEO */

.ambulance-video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity .8s ease,
        visibility .8s ease;

    pointer-events: none;
}


/* ACTIVE VIDEO */

.ambulance-video.active {
    opacity: 1;
    visibility: visible;
}


/* =====================================================
   VIDEO INDICATORS
===================================================== */

.video-indicators {
    position: absolute;

    left: 50%;
    bottom: 12px;

    transform: translateX(-50%);

    display: flex;

    gap: 6px;

    z-index: 10;
}


/* DOT */

.video-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .45);

    transition:
        width .3s ease,
        background .3s ease;
}


/* ACTIVE DOT */

.video-dot.active {
    width: 20px;

    border-radius: 10px;

    background: #e63946;
}
/* =====================================================
   HERO VIDEO SLIDER
===================================================== */

.video-slider {

    position: relative;

    width: 100%;

    height: 285px;

    overflow: hidden;

    border-radius: 10px;

    background: #071525;

}


/* =====================================================
   VIDEO
===================================================== */

.ambulance-video {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    opacity: 0;

    visibility: hidden;

    transform: scale(1.03);

    transition:
        opacity .8s ease,
        transform 5s ease,
        visibility .8s ease;

}


.ambulance-video.active {

    opacity: 1;

    visibility: visible;

    transform: scale(1);

}


/* =====================================================
   VIDEO OVERLAY
===================================================== */

.video-overlay {

    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            rgba(7,21,37,.12),
            transparent 45%,
            rgba(7,21,37,.55)
        );

}


/* =====================================================
   LIVE STATUS
===================================================== */

.video-status {

    position: absolute;

    top: 12px;

    left: 12px;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 7px;

    padding: 7px 10px;

    border-radius: 20px;

    background: rgba(7,21,37,.78);

    color: #fff;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.3px;

    backdrop-filter: blur(6px);

}


.video-live-dot {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #e63946;

    animation:
        videoLivePulse 1.3s infinite;

}


@keyframes videoLivePulse {

    0% {

        box-shadow:
            0 0 0 0
            rgba(230,57,70,.8);

    }

    70% {

        box-shadow:
            0 0 0 8px
            rgba(230,57,70,0);

    }

    100% {

        box-shadow:
            0 0 0 0
            rgba(230,57,70,0);

    }

}


/* =====================================================
   VIDEO NUMBER
===================================================== */

.video-number {

    position: absolute;

    right: 12px;

    top: 12px;

    z-index: 5;

    color: #fff;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;

    background: rgba(7,21,37,.65);

    padding: 6px 9px;

    border-radius: 5px;

    backdrop-filter: blur(5px);

}


.video-number span:last-child {

    color: #8fa0af;

}


/* =====================================================
   VIDEO INDICATORS
===================================================== */

.video-indicators {

    position: absolute;

    left: 50%;

    bottom: 12px;

    transform: translateX(-50%);

    z-index: 10;

    display: flex;

    align-items: center;

    gap: 6px;

}


.video-dot {

    width: 7px;

    height: 7px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: rgba(255,255,255,.55);

    cursor: pointer;

    transition:
        width .3s ease,
        background .3s ease,
        transform .3s ease;

}


.video-dot.active {

    width: 22px;

    border-radius: 10px;

    background: #e63946;

}


.video-dot:hover {

    transform: scale(1.2);

}


/* =====================================================
   CARD HEADER
===================================================== */

.available {

    display: flex;

    align-items: center;

    gap: 6px;

}


.available-dot {

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: #18d6d0;

    box-shadow:
        0 0 0 4px
        rgba(24,214,208,.12);

}


.ambulance-id {

    color: #71869b;

    font-size: 9px;

    letter-spacing: 1px;

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 760px) {

    .video-slider {

        height: 250px;

    }

}


@media (max-width: 480px) {

    .video-slider {

        height: 220px;

    }


    .video-status {

        top: 9px;

        left: 9px;

        padding: 6px 8px;

        font-size: 6px;

    }


    .video-number {

        top: 9px;

        right: 9px;

        font-size: 8px;

    }


    .video-indicators {

        bottom: 9px;

    }

}/* =====================================================
   VIDEO SLIDER
===================================================== */

.video-slider {
    position: relative;
    width: 100%;
    height: 285px;
    overflow: hidden;
    border-radius: 10px;
    background: #071525;
}

.ambulance-video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0;
    visibility: hidden;

    transition: opacity 0.6s ease;
}

.ambulance-video.active {
    opacity: 1;
    visibility: visible;
}.video-slider {
    position: relative;
    width: 100%;
    height: 285px;
    overflow: hidden;
    border-radius: 10px;
    background: #071525;
}

.ambulance-video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: none;
}

.ambulance-video.active {
    display: block;
}

/* =====================================================
   AMBULANCE VIDEO HEIGHT
===================================================== */

.ambulance-image.video-slider {
    width: 100%;
    height: 430px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.ambulance-image.video-slider .ambulance-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.ambulance-image.video-slider .ambulance-video.active {
    display: block;
}

@media (max-width: 768px) {

    .ambulance-image.video-slider {
        height: 320px;
    }

}

/* =====================================================
   GOOGLE MAP BOOKING
===================================================== */

.map-booking {
    background: #f5f7fa;
}

.map-booking-grid {
    display: grid;
    grid-template-columns: 390px 1fr;
    gap: 24px;
    align-items: stretch;
}


/* =====================================================
   LOCATION FORM
===================================================== */

.location-form {
    background: #ffffff;
    padding: 28px;
    border: 1px solid #e2e6eb;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.location-form .input-group {
    margin-bottom: 20px;
}

.location-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #172033;
}

.location-form input {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid #d9dee7;
    border-radius: 7px;
    outline: none;
    font-family: inherit;
    font-size: 14px;
    background: #ffffff;
    transition: 0.25s ease;
    box-sizing: border-box;
}

.location-form input:focus {
    border-color: #ef3340;
    box-shadow: 0 0 0 3px rgba(239, 51, 64, 0.10);
}


/* =====================================================
   FIND ROUTE BUTTON
===================================================== */

.route-button {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 6px;
    background: #071525;
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: 0.25s ease;
}

.route-button:hover {
    background: #ef3340;
    transform: translateY(-1px);
}

.route-icon {
    font-size: 16px;
}


/* =====================================================
   ROUTE INFORMATION
===================================================== */

.route-info {
    margin-top: 18px;
    padding: 17px 14px;
    background: #f4f6f9;
    border-radius: 6px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.route-info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.route-info small {
    font-size: 10px;
    color: #7c8797;
    font-weight: 600;
}

.route-info strong {
    font-size: 16px;
    color: #071525;
}


/* =====================================================
   BOOK AMBULANCE
===================================================== */

.book-map-button {
    width: 100%;
    height: 50px;
    margin-top: 18px;
    border: none;
    border-radius: 6px;
    background: #ef3340;
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.25s ease;
}

.book-map-button:hover {
    background: #d92532;
    transform: translateY(-1px);
}

.ambulance-icon {
    font-size: 17px;
}


/* =====================================================
   MAP
===================================================== */

.google-map-container {
    position: relative;
    min-height: 500px;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    background: #e9edf2;
}

#map {
    width: 100%;
    height: 100%;
    min-height: 500px;
}


/* =====================================================
   MAP LOADING
===================================================== */

.map-loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    background: #eef1f5;
    color: #172033;
    font-size: 14px;
    font-weight: 600;
    pointer-events: none;
}

.map-loading-icon {
    font-size: 30px;
}


/* =====================================================
   MAP BOOKING MESSAGE
===================================================== */

.map-booking-message {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}


/* =====================================================
   GOOGLE AUTOCOMPLETE
===================================================== */

.pac-container {
    z-index: 99999 !important;
    font-family: Arial, sans-serif;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .map-booking-grid {
        grid-template-columns: 1fr;
    }

    .location-form {
        width: 100%;
        box-sizing: border-box;
    }

    .google-map-container {
        height: 450px;
        min-height: 450px;
    }

    #map {
        min-height: 450px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .map-booking-grid {
        gap: 18px;
    }

    .location-form {
        padding: 20px;
    }

    .google-map-container {
        height: 360px;
        min-height: 360px;
        border-radius: 8px;
    }

    #map {
        min-height: 360px;
    }

    .route-info {
        grid-template-columns: 1fr;
    }

}/* =====================================================
   SERVICES GRID
===================================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


/* =====================================================
   SERVICE CARD
===================================================== */

.service-card {
    position: relative;
    padding: 32px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}


/* =====================================================
   SERVICE NUMBER
===================================================== */

.service-number {
    position: absolute;
    top: 20px;
    right: 24px;

    font-size: 13px;
    font-weight: 800;
    color: #d1d5db;
}


/* =====================================================
   SERVICE ICON
===================================================== */

.service-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    background: #fff1f2;
    border-radius: 14px;

    font-size: 28px;
}


/* =====================================================
   SERVICE TITLE
===================================================== */

.service-card h3 {
    margin: 0 0 12px;

    font-size: 21px;
    font-weight: 800;

    color: #101828;
}


/* =====================================================
   SERVICE DESCRIPTION
===================================================== */

.service-card p {
    margin: 0 0 22px;

    min-height: 72px;

    color: #667085;

    font-size: 14px;
    line-height: 1.7;
}


/* =====================================================
   BOOK NOW
===================================================== */

.service-card a {
    display: inline-flex;
    align-items: center;

    color: #ef3340;

    font-size: 14px;
    font-weight: 800;

    text-decoration: none;

    transition: 0.3s ease;
}

.service-card a:hover {
    gap: 6px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 26px;
    }

    .service-card p {
        min-height: auto;
    }

}/* =====================================================
   TRACKING SECTION
===================================================== */

.tracking {
    background: #f6f8fb;
}

.tracking-container {
    max-width: 1000px;
    margin: 0 auto;
}


/* =====================================================
   TRACKING HEADER
===================================================== */

.tracking-header {
    text-align: center;
    margin-bottom: 40px;
}

.tracking-header .section-label {
    display: inline-block;
    margin-bottom: 12px;
}

.tracking-header h2 {
    margin: 0 0 12px;
    font-size: 42px;
    font-weight: 800;
    color: #101828;
}

.tracking-header p {
    margin: 0;
    color: #667085;
    font-size: 15px;
}


/* =====================================================
   TRACKING BOX
===================================================== */

.tracking-box {
    background: #ffffff;
    border: 1px solid #e4e7ec;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(16, 24, 40, 0.08);
}


/* =====================================================
   BOOKING SUMMARY
===================================================== */

.booking-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 45px;
}

.booking-info {
    padding: 20px;
    background: #f8fafc;
    border-radius: 14px;
    border: 1px solid #eaecf0;
}

.booking-info small {
    display: block;
    margin-bottom: 8px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;

    color: #667085;
}

.booking-info strong {
    display: block;

    font-size: 20px;
    font-weight: 800;

    color: #ef3340;
}


/* =====================================================
   STATUS PROGRESS
===================================================== */

.status-progress {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 35px;
}


/* =====================================================
   STATUS STEP
===================================================== */

.status-step {
    width: 150px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}


/* =====================================================
   STATUS ICON
===================================================== */

.status-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eaecf0;
    color: #667085;

    font-size: 16px;
    font-weight: 800;

    transition: all 0.3s ease;
}


/* ACTIVE */

.status-step.active .status-icon {
    background: #ef3340;
    color: #ffffff;

    box-shadow:
        0 0 0 6px rgba(239, 51, 64, 0.12);
}


/* =====================================================
   STATUS TEXT
===================================================== */

.status-step span {
    margin-top: 12px;

    font-size: 13px;
    font-weight: 700;

    color: #667085;
    line-height: 1.4;
}

.status-step.active span {
    color: #101828;
}


/* =====================================================
   CONNECTOR
===================================================== */

.status-connector {
    flex: 1;

    height: 3px;

    margin-top: 23px;

    background: #eaecf0;
}


/* =====================================================
   TRACKING MESSAGE
===================================================== */

.tracking-message {
    padding: 18px 20px;

    margin-bottom: 25px;

    background: #fff5f5;
    border-left: 4px solid #ef3340;

    border-radius: 8px;

    color: #344054;

    font-size: 14px;
    line-height: 1.6;
}


/* =====================================================
   TRACKING BUTTON
===================================================== */

.tracking-button {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    width: 100%;

    padding: 15px 20px;

    border: none;
    border-radius: 10px;

    background: #101828;
    color: #ffffff;

    font-size: 14px;
    font-weight: 800;

    cursor: pointer;

    transition: all 0.3s ease;
}

.tracking-button:hover {
    background: #ef3340;
    transform: translateY(-2px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 800px) {

    .tracking-header h2 {
        font-size: 34px;
    }

    .tracking-box {
        padding: 25px;
    }

    .status-step {
        width: 110px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .tracking-header h2 {
        font-size: 28px;
    }

    .booking-summary {
        grid-template-columns: 1fr;
        margin-bottom: 35px;
    }

    .status-progress {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .status-step {
        width: 100%;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 14px;
    }

    .status-step span {
        margin-top: 0;
    }

    .status-connector {
        width: 3px;
        height: 25px;

        flex: none;

        margin: 0 0 0 22px;
    }

    .tracking-box {
        padding: 20px;
        border-radius: 15px;
    }

}