@font-face {
    font-family: "Inter";
    src: url("../assets/fonts/Inter-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../assets/fonts/Inter-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../assets/fonts/Inter-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-primary: #003385;
    --color-primary-hover: #2644A2;
    --color-primary-light: #D9E1EE;
    --color-primary-light-bg: #F2F5F9;
    --color-secondary: #31AA40;
    --color-secondary-light: #EAf6EC;
    --color-border: #E5E5E5;
    --color-bg-alternate: #FAFAFA;
    --text-black: #000000;
    --text-white: #FFFFFF;
    --text-light-gray: #737373;
    --text-dark-gray: #4B5563;

}

::selection {
    background-color: var(--color-secondary);
    color: var(--text-white);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    background: none;
    border: none;
}

ul {
    list-style: none;
}

.text-dark-grey {
    color: var(--text-light-gray) !important;
}

.text-black {
    color: var(--text-black) !important;
}

.text-green {
    color: var(--color-secondary) !important;
}

.font-default {
    font-family: Arial, Helvetica, sans-serif !important;
}

.font-semibold {
    font-weight: 600 !important;
}

.font-bold {
    font-weight: 700 !important;
}

/* Mobile WhatsApp button */

.mobile-wa-btn {
    display: none;
    position: fixed;
    bottom: 48px;
    right: 24px;
    z-index: 900;
    height: 48px;
    width: 48px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}

/* Banner Styles */

.banner {
    padding: 84px 24px 0;
    max-width: 1248px;
    margin: 0 auto;
}

.banner-img,
.banner-img-mobile {
    width: 100%;
    border-radius: 20px;
}

.banner-aspect-ratio {
    object-fit: contain;
    aspect-ratio: 16/7;
    background: #dee3e6;
}

.banner-img-mobile {
    display: none;
}

/* Contact us/Google maps Styles */

.gmaps {
    max-width: 1248px;
    margin: 0 auto;
    padding: 80px 24px;
}

.gmaps__title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.gmaps__desc {
    font-size: 1.125rem;
    line-height: 1.625;
    text-align: center;
    color: var(--text-light-gray);
    margin-bottom: 24px;
}

.gmaps__container {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.gmaps__iframe {
    height: 100%;
    width: 100%;
    border: none;
    border-radius: 16px;
}

.gmaps__text-container {
    background-color: var(--color-primary-light-bg);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gmaps__text-container-title {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-primary);
}

.gmaps__text-container-item {
    display: flex;
    gap: 16px;
}

.gmaps__icon-container {
    background-color: var(--color-primary-light);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.gmaps__item-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.gmaps__item-desc {
    color: var(--text-light-gray);
    line-height: 1.625;
}

@media (max-width: 992px) {
    .banner {
        padding: 84px 0 0;
    }

    .banner-img,
    .banner-img-mobile {
        border-radius: unset;
    }

    .mobile-wa-btn {
        display: flex;
    }

    .gmaps {
        padding: 48px 24px;
    }

    .gmaps__iframe {
        height: 300px;
    }

    .gmaps__container {
        margin-top: 32px;
        grid-template-columns: repeat(1, 1fr);
    }

    .gmaps__title {
        font-size: 2rem;
    }

    .gmaps__text-container {
        padding: 24px;
    }
}

@media (max-width: 576px) {
    .banner-img {
        display: none;
    }

    .banner-img-mobile {
        display: block;
    }

    .gmaps__text-container {
        padding: 20px;
    }
}