header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 99;
    width: calc(100% - 20px);
    margin: 10px;
    margin-top: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 0px 20px;
    border-radius: 0px 0px 20px 20px;
}

header .logo {
    height: 60px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    flex-direction: row;
    flex-wrap: nowrap;
    text-decoration: none;
}

header .logo img {
    height: 70%;
    object-fit: contain;
}

header .logo h1 {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0px;
    flex-direction: column;
    font-size: 22px;
    font-weight: 400;
}

header .logo h1 span {
    font-size: 22px;
}

header .container .emergency {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0px;
    flex-direction: row;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 0px 0px 20px 20px;
}

header .container .emergency p {
    padding: 10px 30px;
    border-radius: 0px 0px 20px 20px;
    background-color: #b0190c;
    color: #fff;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-16px);
    }
    60% {
        transform: translateY(-10px);
    }
}

header .container .emergency label {
    padding: 5px 15px;
}

header .container .emergency hr {
    height: 20px;
    width: 2px;
    background-color: #ccc;
    border: none;
}

header .container {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: column;
    gap: 20px;
}

header .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-direction: row;
    flex-wrap: nowrap;
    min-width: 70%;
    max-width: 800px;
}

header .nav button {
    background-color: #b3c0c7;
    padding: 6px 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    border: none;
    color: #fff;
}

header .nav .pages {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-direction: row;
    flex-wrap: nowrap;
    flex-grow: 1;
    max-width: 700px;
}

header .nav .pages a {
    text-decoration: none;
    color: #000;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

header .nav .pages a:hover {
    color: #b0190c;
    border-bottom: 2px solid #b0190c;
    transition: 0.3s;
}

footer {
    display: flex;
    justify-content: flex-start;
    gap: 6vw;
    align-content: stretch;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    background-color: #202529;
    color: #fff;
    border-top: 10px solid #b0190c;
    padding: 0px 4rem;
}

footer .quick-links,
footer .location,
footer .contact,
footer .about {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
}

footer .quick-links p,
footer .location p {
    padding-bottom: 20px;
}

footer a,
footer .location b {
    font-size: 14px;
    text-decoration: none;
    color: #fff;
    font-weight: 300;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

footer .about {
    min-height: 100%;
    justify-content: space-between;
}

footer .logo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-direction: row;
    flex-wrap: nowrap;
    background-color: #fff;
    color: #000;
    padding: 2rem 20px;
    border-radius: 0px 0px 20px 20px;
}

footer .logo img {
    height: 100%;
    object-fit: contain;
    max-width: 340px;
}

footer .logo h1 {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0px;
    flex-direction: column;
    font-size: 18px;
    font-weight: 400;
}

footer .details {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
    background-color: #b0190c;
    padding: 2rem;
    padding-bottom: 4rem;
    max-width: 400px;
    border-radius: 20px;
}

footer .details p span {
    color: #d0d0d0;
}

footer .details label {
    font-size: 16px;
}

footer .details td {
    font-size: 12px;
    padding: 2px 3px;
}

footer .details hr {
    width: 30%;
    background-color: #403f44;
    border: none;
    height: 2px;
}

footer .contact hr {
    background-color: transparent;
    border: none;
    height: 10px;
}

footer .contact .fa-square-phone {
    color: #2bbea5;
}

footer .contact .fa-envelope {
    color: #b0190c;
}

footer .contact button {
    width: 100%;
    border: none;
    border-radius: 5px;
    padding: 5px 20px;
    height: 37px;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .contact button.book {
    font-size: 14px;
    background-color: #b0190c;
    color: #fff;
}

footer .location .map {
    width: 100%;
    min-width: 240px;
    height: 140px;
    background-color: #707070;
    border-radius: 10px;
    overflow: hidden;
}

.side-nav {
    position: fixed;
    top: 0;
    right: 0;
    padding: 2rem;
    background-color: #043148d9;
    backdrop-filter: blur(5px);
    z-index: 99;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 20px;
    flex-direction: column;
    height: 100%;
    min-width: 280px;
    width: 100%;
    max-width: 400px;
    padding-left: 0px;
    transform: translateX(100%);
    transition: 0.3s;
}

.side-nav.active {
    transform: translateX(0%);
    transition: 0.3s;
}

.side-nav .nav {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
    width: 100%;
}

.side-nav .nav a {
    color: #fff;
    text-decoration: none;
    font-size: 21px;
    padding: 10px 0px;
    padding-left: 2rem;
    padding-right: 20px;
    border-radius: 0px 20px 20px 0px;
    transition: 0.3s;
}

.side-nav .nav a:hover {
    background-color: #d1d9dd;
    color: #202529;
    transition: 0.3s;
}

.side-nav button {
    background-color: #202529;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 10px;
}

.mobile {
    display: none;
}

.call-btn {
    display: none;
}

header .logo h1 {
    display: none;
}

.call-nav {
    display: none;
}

.floater-1 .social {
    animation: glow 1s infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 5px -5px #b0190c69;
    }
    to {
        box-shadow: 0 0 5px 5px #b0190c69;
    }
}

@media screen and (max-width: 1150px) {
    header .logo h1 {
        display: flex;
        font-size: 1rem;
        text-decoration: none;
        color: #202529;
        line-height: 1.2rem;
    }

    header .logo h1 span {
        font-size: 0.8rem;
    }

    .call-btn {
        display: block;
        position: fixed;
        bottom: 80px;
        right: 10px;
        width: fit-content;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: #fff;
        color: #b0190c;
        z-index: 999;
        border: none;
        box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px,
            rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    }

    .call-btn i {
        font-size: 24px;
    }

    .call-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding: 30px 20px;
        background-color: #1aaf87;
        color: #fff;
        flex-direction: column;
        padding-bottom: 120px;
        transform: translateY(100%);
        transition: 0.6s;
        z-index: 998;
    }

    .call-nav div {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px;
        flex-direction: column;
    }

    .call-nav hr {
        height: 2px;
        background-color: #2fbf99;
        width: 90%;
        border: none;
    }

    .call-nav.active {
        transform: translateY(0%);
        transition: 0.6s;
    }

    .call-nav a {
        text-decoration: none;
        color: inherit;
        font-size: inherit;
    }

    header .container .emergency,
    header .nav .pages {
        display: none;
    }

    header .logo img {
        display: none;
        max-width: 100%;
    }

    header .container {
        width: fit-content;
        flex-grow: 0;
    }

    header .nav button {
        margin: 0px;
        background-color: transparent;
        color: #202529;
    }

    header .nav button i {
        font-size: 1.5rem;
    }

    .floater-1 {
        bottom: 0px;
        gap: 80px;
    }

    .floater-1 hr {
        display: none;
    }

    .floater-2 {
        display: none;
    }

    footer {
        padding: 10px;
        padding-top: 0px;
    }

    footer .logo img {
        max-width: 270px;
    }

    .mobile {
        display: flex !important;
    }
}
