@font-face {
    font-family: "LTWave-Regular";
    src: url("../fonts/LTWave-Regular.ttf");
}

@font-face {
    font-family: "LTWave-Bold";
    src: url("../fonts/LTWave-Bold.ttf");
}

body {
    font-family: 'LTWave-Regular', sans-serif;
    background-color: #ffffff;
    color: #003366;
    --bs-nav-link-font-size: 1.1rem;
}

.navbar {
    background-color: #ffffff;
    padding-top: 14px !important;
    --bs-navbar-nav-link-padding-x: 1rem;
    border-bottom: 1px solid rgb(214, 218, 220);
}

.navbar-brand img {
    height: 50px;
}

.nav-link {
    color: #003366;
}

.btn-green {
    background-color: #00a65c;
    border-color: #00a65c;
    color: white;
}

    .btn-green:hover {
        background-color: #008c4e;
        border-color: #008c4e;
        color: white;
    }

.location-icon {
    color: #00a65c;
    margin-right: 10px;
}

.form-control {
    border-radius: 4px;
    border: 1px solid #ccc;
    padding: 10px 12px;
}

    .form-control:focus {
        border-color: #00a65c;
        box-shadow: 0 0 0 0.2rem rgba(0, 166, 92, 0.25);
    }

.form-select {
    border-radius: 4px;
    border: 1px solid #ccc;
    padding: 10px 12px;
}

    .form-select:focus {
        border-color: #00a65c;
        box-shadow: 0 0 0 0.2rem rgba(0, 166, 92, 0.25);
    }

.form-group {
    margin-bottom: 20px;
}

label {
    margin-bottom: 8px;
    color: #003366;
    font-weight: 500;
    font-size: 0.95rem;
}

.payment-section {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    .payment-section h3 {
        color: #003366;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 2px solid #e7e9ea;
    }

.banner {
    background-color: #003366;
    color: white;
    padding: 20px;
}

.footer {
    background-color: #e2eef2;
    padding: 20px 0 0px 10px;
}

    .footer a {
        color: #003366;
        text-decoration: none;
    }

.social-icon {
    margin-right: 10px;
}

.green-line {
    height: 2px;
    background-color: #00a65c;
}

.asterisk {
    color: red;
}

.copy {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    overflow: hidden;
    ;

    & ul {
        display: flex;
        align-items: center;
        justify-content: center;
        text-wrap: nowrap;

        & li {
            margin: 0 20px;
            color: #39586a;
            font-weight: 400;
            font-style: normal;
            list-style: none;
        }
    }
}

.sub-menu {
    height: auto;
    max-height: 0;
    position: absolute;
    background: #fff;
    width: max-content;
    top: 100%;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
    margin-left: 0rem;
}

.dropdown-item-has-children::after {
    content: "\f178";
    font-family: "font awesome 7 Free";
    font-weight: 900;
    box-shadow: none;
    color: #2d996e;
    font-size: .8rem;
    padding-left: 0.5%;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.dropdown-item-has-children:hover .sub-menu {
    max-height: 500px;
    opacity: 1;
    z-index: 999;
    pointer-events: auto;
    position: absolute;
    top: 0px;
    left: calc(100% - 2px);
    list-style: none;
    border: 1px solid #e7e9ea;
    padding-left: 0px !important;
}

main.container {
    min-height: calc(100vh - 190px);
    margin-block: 30px;
}

@media only screen and (max-width: 990px) {

    main.container {
        min-height: calc(100vh - 190px);
        margin-top: 15px;
        margin-bottom: 15px;
    }

    #navbarNav {
        margin-left: 0;
        position: absolute;
        top: 68px;
        background: #fff;
        right: 0;
        left: 0;
        height: calc(100vh - 65px);
        overflow: scroll;
    }

    .nav-item {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid #e7e9ea;
        position: relative;
        z-index: 5;
        background-color: #fff;

        & a {
            font-size: 20px;
            display: block;
            width: 100%;
            padding: 15px 25px;
        }
    }

        .nav-item:has(.show) {
            background-color: #f2f6f7;

            & a {
                --bs-navbar-active-color: #229E76;
                border-bottom: 1px solid #39586a;
            }
        }


        .nav-item ul {
            border-width: 0px;
        }

            .nav-item ul li a {
                font-size: 14px;
                display: block;
                width: 70%;
                padding: 8px 25px;
                color: #39586a !important;
                border-bottom: none !important;
                background-color: transparent !important;
                ;
            }

    .copy {
        display: block;

        & ul {
            display: none;
        }
    }

    main.container {
        padding-inline: 20px;
    }
}

.green-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #00a65c;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: none;
    outline: none;
    cursor: pointer;
}

.green-button:disabled {
    border: 1px solid;
}

    .green-button:hover {
        background-color: #00863c;
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .green-button i {
        font-size: 1.2rem;
    }

.green-button.disabled {
    background-color: #1f6f49;
    opacity: 0.7;
    cursor: not-allowed;
}
