
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* :root {
    --primary: #087f8c;
    --primary-dark: #05616c;
    --secondary: #0b2f3a;
    --accent: #e53935;
    --white: #ffffff;
    --light: #f5fbfc;
    --border: #e5eef0;
    --text: #23383d;
    --muted: #718287;
    --transition: all 0.3s ease;
} */
:root {
    --primary: #ed1c24;        /* Logo Red */
    --primary-dark: #c81018;   /* Dark Red */
    --secondary: #111111;      /* Logo Black */
    --green: #08b957;          /* Logo Green */
    --green-dark: #079447;
    --white: #ffffff;
    --light: #f8faf9;
    --light-green: #effbf4;
    --light-red: #fff3f3;
    --border: #e8e8e8;
    --text: #242424;
    --muted: #707070;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, sans-serif;
    color: var(--text);
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

.container {
    width: min(1350px, calc(100% - 40px));
    margin: 0 auto;
}

.img-fluid{
    max-width: 100%;
    height: auto;
}
/* ==========================================
   TOP BAR
========================================== */

.topbar {
    background: var(--secondary);
    color: #fff;
    font-size: 13px;
}

.topbar-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar-left,
.topbar-right,
.social-links {
    display: flex;
    align-items: center;
}

.topbar-left {
    gap: 18px;
}

.enquiry-link,
.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.enquiry-link i,
.phone-link i {
    color: #30c56b;
    font-size: 13px;
}

.enquiry-link:hover,
.phone-link:hover {
    color: #30c56b;
}

.topbar-divider {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.25);
}

.topbar-right {
    gap: 14px;
}

.follow-text {
    color: rgba(255,255,255,0.8);
}

.social-links {
    gap: 7px;
}

.social-links a {
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 50%;
    font-size: 12px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}


/* ==========================================
   MAIN HEADER
========================================== */

.main-header {
    background: #fff;
    position: relative;
    z-index: 999;
    border-bottom: 1px solid var(--border);
}

.navbar {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* ==========================================
   LOGO
========================================== */

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    width: 190px;
    max-width: 100%;
    height: auto;
    display: block;
}


/* ==========================================
   NAV MENU
========================================== */

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-left: auto;
}

.nav-link {
    position: relative;
    padding: 30px 11px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #29444a;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 11px;
    right: 11px;
    bottom: 20px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.dropdown-toggle i {
    font-size: 9px;
    transition: var(--transition);
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}


/* ==========================================
   DROPDOWN
========================================== */

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% - 5px);
    left: 0;
    width: 270px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 18px 45px rgba(11,47,58,0.13);

    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);

    transition: var(--transition);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 13px;
    border-radius: 7px;
    color: #334c52;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-menu a i {
    width: 20px;
    text-align: center;
    color: var(--primary);
}

.dropdown-menu a:hover {
    color: var(--primary);
    background: var(--light);
    padding-left: 17px;
}


/* ==========================================
   NAV ACTIONS
========================================== */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-call {
    display: flex;
    align-items: center;
    gap: 9px;
}

.call-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #eaf8f9;
    font-size: 14px;
}

.call-content {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.call-content small {
    font-size: 9px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.call-content strong {
    font-size: 12px;
    color: var(--secondary);
}

.book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 45px;
    padding: 0 17px;
    color: #fff;
    background: var(--primary);
    border-radius: 7px;
    font-size: 12px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 7px 18px rgba(8,127,140,0.18);
}

.book-btn i {
    font-size: 11px;
    transition: var(--transition);
}

.book-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(8,127,140,0.25);
}

.book-btn:hover i {
    transform: translateX(3px);
}


/* ==========================================
   MOBILE TOGGLE
========================================== */

.menu-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--secondary);
    border-radius: 10px;
    transition: var(--transition);
}


/* Mobile CTA hidden desktop */

.mobile-nav-cta {
    display: none;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1150px) {

    .nav-link {
        padding-left: 7px;
        padding-right: 7px;
        font-size: 13px;
    }

    .nav-link::after {
        left: 7px;
        right: 7px;
    }

    .nav-actions {
        gap: 7px;
    }

    .call-content {
        display: none;
    }

    .book-btn {
        padding: 0 13px;
    }
}


@media (max-width: 992px) {

    .navbar {
        min-height: 74px;
    }

    .nav-actions {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 20px;
        right: 20px;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;

        background: #fff;
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 10px;

        box-shadow: 0 20px 45px rgba(11,47,58,0.12);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: var(--transition);
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-link {
        width: 100%;
        padding: 13px 12px;
        justify-content: space-between;
        border-radius: 6px;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        background: var(--light);
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: 0;
        box-shadow: none;
        padding: 4px 0 4px 10px;
    }

    .nav-dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 10px 12px;
    }

    .mobile-nav-cta {
        display: flex;
        gap: 8px;
        padding: 10px 4px 4px;
    }

    .nav-call-btn,
    .nav-book-btn {
        flex: 1;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        border-radius: 6px;
        font-size: 12px;
        font-weight: 700;
    }

    .nav-call-btn {
        color: var(--primary);
        background: #eaf8f9;
    }

    .nav-book-btn {
        color: #fff;
        background: var(--primary);
    }
}


@media (max-width: 600px) {

    .container {
        width: min(100% - 28px, 1200px);
    }

    .topbar-inner {
        min-height: 40px;
    }

    .topbar-left {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }

    .topbar-right {
        display: none;
    }

    .topbar-divider {
        display: none;
    }

    .enquiry-link span {
        display: inline;
    }

    .phone-link {
        font-size: 12px;
    }

    .logo img {
        width: 160px;
    }

    .navbar {
        min-height: 68px;
    }

    .nav-menu {
        left: 14px;
        right: 14px;
    }
}


@media (max-width: 400px) {

    .phone-link span {
        font-size: 11px;
    }

    .logo img {
        width: 145px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }
}


/* ==========================================
   FOOTER
========================================== */

.site-footer {
    position: relative;
    padding: 29px 0 0;
    background: #151d1a;
    color: #fff;
    overflow: hidden;
}


.site-footer::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            #ed1c24 0%,
            #ed1c24 48%,
            #08b957 52%,
            #08b957 100%
        );
}


/* ==========================================
   FOOTER MAIN
========================================== */

.footer-main {
    display: grid;

    grid-template-columns:
        1.45fr
        1fr
        1.25fr
        1.25fr;

    gap: 45px;

    padding-bottom: 45px;

    border-bottom: 1px solid rgba(255,255,255,.08);
}


/* ==========================================
   LOGO
========================================== */

.footer-logo {
    display: inline-block;

    margin-bottom: 14px;
    background: #fff;
    border-radius: 10px;
}


.footer-logo img {
    width: 160px;

    max-width: 100%;

    display: block;
}


.footer-about > p {
    max-width: 300px;
    margin: 0;
    color: #f7fffc;
    font-size: 14px;
    line-height: 1.8;
}


/* ==========================================
   EMERGENCY
========================================== */

.footer-emergency {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 11px;
}


.footer-emergency-icon {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 7px;

    background: rgba(237,28,36,.12);

    color: #ed1c24;

    font-size: 10px;
}


.footer-emergency small {
    display: block;
    margin-bottom: 2px;
    color: #737d79;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
}


.footer-emergency a {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}


/* ==========================================
   FOOTER COLUMNS
========================================== */
.footer-column h3 {
    position: relative;
    margin: 3px 0 7px;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
}

.footer-column h3::after {
    content: "";

    display: block;

    width: 22px;
    height: 2px;

    margin-top: 7px;

    background: #ed1c24;
}


.footer-column:nth-child(4) h3::after {
    background: #08b957;
}


.footer-column ul {
    margin: 0;
    padding: 0;

    list-style: none;
}


.footer-column li {
    margin-bottom: 10px;
}


.footer-column a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #f5fffb;
    font-size: 14px;
    transition: .3s ease;
}


.footer-column a i {
    color: #ed1c24;

    font-size: 6px;

    transition: .3s ease;
}


.footer-column a:hover {
    color: #fff;

    transform: translateX(3px);
}


.footer-column a:hover i {
    color: #08b957;
}


/* ==========================================
   INFO ROW
========================================== */

.footer-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}


.footer-info {
    display: flex;
    align-items: center;

    gap: 9px;
}


.footer-info-icon {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 7px;

    background: rgba(237,28,36,.10);

    color: #ed1c24;

    font-size: 9px;
}


.footer-info-icon.green {
    background: rgba(8,185,87,.10);

    color: #08b957;
}


.footer-info small,
.footer-social small {
    display: block;
    margin-bottom: 3px;
    color: #69736f;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .6px;
}


.footer-info p,
.footer-info a {
    margin: 0;
    color: #a0aaa6;
    font-size: 14px;
}


.footer-info a:hover {
    color: #fff;
}


/* ==========================================
   SOCIAL
========================================== */

.footer-social {
    margin-left: auto;
}


.social-links {
    display: flex;

    gap: 6px;
}


.social-links a {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.09);

    border-radius: 7px;

    background: rgba(255,255,255,.025);

    color: #87918d;

    font-size: 9px;

    transition: .3s ease;
}


.social-links a:hover {
    border-color: #ed1c24;

    background: #ed1c24;

    color: #fff;

    transform: translateY(-3px);
}


/* ==========================================
   FOOTER BOTTOM
========================================== */

.footer-bottom {
    display: flex;
    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 17px 0;
}


.footer-bottom p {
    margin: 0;
    color: #fcfffd;
    font-size: 14px;
}


.footer-legal {
    display: flex;
    align-items: center;

    gap: 10px;
}


.footer-legal a {
    color: #f2f8f5;
    font-size: 14px;
    transition: .3s ease;
}


.footer-legal a:hover {
    color: #fff;
}


.footer-legal span {
    width: 2px;
    height: 2px;

    border-radius: 50%;

    background: #47514d;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 950px) {

    .final-contact-box {
        align-items: flex-start;

        flex-direction: column;
    }

    .final-contact-actions {
        width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-info-row {
        flex-wrap: wrap;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .final-contact-section {
        padding-top: 55px;
    }

    .final-contact-box {
        padding: 25px 20px;
    }

    .final-contact-content h2 {
        font-size: 23px;
    }

    .final-contact-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .final-call-btn,
    .final-whatsapp-btn {
        width: 100%;
    }

    .site-footer {
        padding-top: 50px;
    }

    .footer-main {
        grid-template-columns: 1fr;

        gap: 30px;

        padding-bottom: 30px;
    }

    .footer-info-row {
        align-items: flex-start;

        flex-direction: column;

        gap: 18px;
    }

    .footer-social {
        margin-left: 0;
    }

    .footer-bottom {
        align-items: flex-start;

        flex-direction: column;

        gap: 10px;
    }

    .footer-legal {
        flex-wrap: wrap;

        gap: 7px;
    }

}
/* ==========================================
   WHATSAPP STICKY
========================================== */

.whatsapp-sticky {
    position: fixed;

    right: 22px;
    bottom: 25px;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #08b957;
    color: #fff;

    font-size: 25px;

    text-decoration: none;

    z-index: 9999;

    box-shadow:
        0 8px 25px rgba(8, 185, 87, .28);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}


/* WhatsApp Icon */

.whatsapp-sticky i {
    position: relative;

    z-index: 3;

    line-height: 1;
}


/* ==========================================
   PULSE RING
========================================== */

.whatsapp-pulse {
    position: absolute;

    inset: 0;

    border-radius: 50%;

    border: 2px solid #08b957;

    animation: whatsappPulse 2s infinite;

    pointer-events: none;
}


@keyframes whatsappPulse {

    0% {
        transform: scale(1);
        opacity: .8;
    }

    70% {
        transform: scale(1.55);
        opacity: 0;
    }

    100% {
        transform: scale(1.55);
        opacity: 0;
    }

}


/* ==========================================
   FLOATING EFFECT
========================================== */

.whatsapp-sticky {
    animation: whatsappFloat 3s ease-in-out infinite;
}


@keyframes whatsappFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

}


/* ==========================================
   HOVER
========================================== */

.whatsapp-sticky:hover {
    color: #fff;

    transform: scale(1.1);

    animation-play-state: paused;

    box-shadow:
        0 12px 35px rgba(8, 185, 87, .40);
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .whatsapp-sticky {
        right: 15px;
        bottom: 18px;

        width: 48px;
        height: 48px;

        font-size: 23px;
    }

}
/* ==========================================
   AMBULANCE MODAL
========================================== */

.ambulance-modal {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 20px;

    visibility: hidden;
    opacity: 0;

    transition:
        opacity .35s ease,
        visibility .35s ease;
}


/* Active */

.ambulance-modal.active {
    visibility: visible;
    opacity: 1;
}


/* ==========================================
   BACKGROUND OVERLAY
========================================== */

.ambulance-modal-overlay {
    position: absolute;

    inset: 0;

    background:
        rgba(10, 20, 16, .72);

    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}


/* ==========================================
   MODAL BOX
========================================== */

.ambulance-modal-box {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 720px;

    max-height: 92vh;

    overflow-y: auto;

    padding: 26px;

    border: 1px solid rgba(255,255,255,.65);

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f7fbf9
        );

    box-shadow:
        0 30px 80px rgba(0,0,0,.25);

    transform:
        translateY(30px)
        scale(.96);

    opacity: 0;

    transition:
        transform .4s cubic-bezier(.2,.8,.2,1),
        opacity .3s ease;
}

.ambulance-modal.active .ambulance-modal-box {
    transform:
        translateY(0)
        scale(1);

    opacity: 1;
}


/* ==========================================
   CLOSE BUTTON
========================================== */

.ambulance-modal-close {
    position: absolute;

    top: 15px;
    right: 15px;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;

    border-radius: 50%;

    background: #f2f5f3;

    color: #66716c;

    cursor: pointer;

    transition: .3s ease;
}

.ambulance-modal-close:hover {
    background: #ed1c24;

    color: #fff;

    transform: rotate(90deg);
}


/* ==========================================
   HEADER
========================================== */

.ambulance-modal-header {
    display: flex;

    align-items: center;

    gap: 13px;

    padding-right: 35px;

    margin-bottom: 22px;
}

.ambulance-modal-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #fff0f1;
    color: #ed1c24;
    font-size: 15px;
    box-shadow:
        inset 0 0 0 1px rgba(237,28,36,.07);
}

.ambulance-modal-header span {
    display: block;
    margin-bottom: 3px;
    color: #08a957;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

.ambulance-modal-header h2 {
    margin: 0 0 3px;
    color: #18221d;
    font-size: 23px;
    line-height: 1.2;
    font-weight: 600;
}

.ambulance-modal-header p {
    margin: 0;
    color: #7b8580;
    font-size: 13px;
}


/* ==========================================
   FORM GRID
========================================== */

.ambulance-form-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 13px;
}

.ambulance-field {
    width: 100%;
}

.ambulance-field label {
    display: block;
    margin-bottom: 5px;
    color: #3d4943;
    font-size: 14px;
    font-weight: 600;
}


/* ==========================================
   INPUT
========================================== */

.ambulance-input {
    display: flex;

    align-items: center;

    min-height: 40px;

    padding: 0 11px;

    border: 1px solid #e1e9e5;

    border-radius: 7px;

    background: #fff;

    transition: .3s ease;
}

.ambulance-input:focus-within {
    border-color: #08a957;

    box-shadow:
        0 0 0 3px rgba(8,169,87,.07);
}

.ambulance-input > i {
    width: 20px;

    color: #98a29d;

    font-size: 9px;
}

.ambulance-input input,
.ambulance-input select {
    width: 100%;
    height: 38px;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #35413b;
    font-family: inherit;
    font-size: 14px;
}

.ambulance-input select {
    cursor: pointer;
}


/* ==========================================
   SUBMIT
========================================== */

.ambulance-modal-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    padding: 9px 16px;
    border: 0;
    border-radius: 7px;
    background:
        linear-gradient(
            100deg,
            #ed1c24,
            #d8151d
        );
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow:
        0 9px 22px rgba(237,28,36,.17);
    transition: .3s ease;
}

.ambulance-modal-submit span {
    display: flex;

    align-items: center;

    gap: 7px;
}

.ambulance-modal-submit:hover {
    transform: translateY(-2px);

    box-shadow:
        0 13px 28px rgba(237,28,36,.23);
}


/* ==========================================
   NOTE
========================================== */

.ambulance-modal-note {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 10px;
    color: #363d3a;
    font-size: 13px;
    line-height: 1.5;
}

.ambulance-modal-note i {
    color: #08a957;

    font-size: 9px;
}


/* ==========================================
   BODY WHEN MODAL OPEN
========================================== */

body.ambulance-modal-open {
    overflow: hidden;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 600px) {

    .ambulance-modal {
        padding: 12px;
    }

    .ambulance-modal-box {
        padding: 20px 15px;

        max-height: 94vh;

        border-radius: 14px;
    }

    .ambulance-modal-header {
        align-items: flex-start;

        margin-bottom: 18px;
    }

    .ambulance-modal-icon {
        width: 42px;
        height: 42px;

        min-width: 42px;

        font-size: 15px;
    }

    .ambulance-modal-header h2 {
        font-size: 21px;
    }

    .ambulance-modal-header p {
        font-size: 8px;

        line-height: 1.5;
    }

    .ambulance-form-grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }

}