/* -- BODY SECTION -- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

a {
    text-decoration: none;
}

@media (max-width: 485px) {
    html {
        zoom: 0.75;
    }
}








/* -- NAVBAR SECTION -- */

.navbar-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background-color: rgba(255, 255, 255, 0.80);
    transition: background-color 0.4s, padding 0.3s;
    z-index: 1000;
    flex-wrap: wrap;
    min-height: 90px;
}

.navbar-navbar-scrolled {
    background-color: white;
}

.navbar-logo img {
    height: 50px;
}

.navbar-nav-links {
    display: flex;
    gap: 0px;
}

.navbar-nav-links a {
    margin: 10px 5px;
    padding: 10px 10px;
    color: black;
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(15px, 1vw, 18px);
    position: relative;
    transition: font-weight 0.3s;
}

.navbar-nav-links a:hover {
    font-weight: 700;
}

.navbar-nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: currentColor;
    transition: width 0.3s ease;
}

.navbar-nav-links a:hover::after {
    width: 100%;
}

.navbar-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1100;
}

.navbar-hamburger div {
    width: 25px;
    height: 3px;
    background-color: black;
    transition: all 0.3s ease;
}

.navbar-hamburger-open div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-hamburger-open div:nth-child(2) {
    opacity: 0;
}

.navbar-hamburger-open div:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 869px) {
    .navbar-navbar {
        background-color: white;
        padding: 15px 20px;
        min-height: 70px;
    }

    .navbar-logo img {
        content: url('images/main/nav-img-logo.png');
    }

    .navbar-nav-links {
        width: 100%;
        flex-direction: column;
        display: none;
        margin-top: 15px;
        border-radius: 5px;
        overflow: hidden;
        gap: 0;
    }

    .navbar-nav-links a {
        padding: 20px 0;
        width: 100%;
        border-bottom: 1px solid black;
        font-size: clamp(16px, 2.5vw, 18px);
        font-weight: 500;
    }

    .navbar-nav-links a:last-child {
        border-bottom: none;
    }

    .navbar-nav-links-active {
        display: flex;
    }

    .navbar-hamburger {
        display: flex;
    }
}









/* -- CONTACT US SECTION -- */

.contact-section-container {
    width: 100%;
    padding: 100px 25px;
}

.contact-section-black-section {
    width: 100%;
    padding: 50px;
    background-color: black;
    text-align: center;
}

.contact-section-heading {
    font-size: clamp(24px, 5vw, 44px);
    color: white;
    margin-bottom: 40px;
}

.contact-section-btn {
    font-family: 'Montserrat', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: white;
    color: rgba(0, 0, 0, 0.80);
    padding: 20px;
    font-size: clamp(18px, 2vw, 22px);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    font-weight: 500;
}

.contact-section-btn:hover {
    background-color: rgb(127, 255, 212);
    transform: translateY(-2px);
}

.contact-section-btn-icon {
    width: 22px;
    height: 22px;
    stroke: black;
}









/* -- FOOTER SECTION -- */

.footer-container {
    padding: 50px 25px 0;
    background-color: #f3f3f3;
    color: black;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-left,
.footer-right {
    flex: 1;
    padding: 40px;
    min-width: 320px;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
    gap: 22px;
}

.footer-logo {
    width: 110px;
}

.footer-company-name {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: clamp(20px, 2vw, 26px);
}

.footer-tagline {
    font-size: clamp(14px, 1.1vw, 18px);
    color: black;
    line-height: 1.5;
}

.footer-sitemap-heading {
    font-weight: 700;
    margin-bottom: 30px;
    font-size: clamp(16px, 1.2vw, 20px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
}

.footer-link {
    color: black;
    text-decoration: none;
    font-size: clamp(15px, 1vw, 18px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid black;
    padding-bottom: 10px;
    transition: color 0.3s, font-weight 0.3s;
}

.footer-link:hover {
    font-weight: 700;
}

.footer-link-icon {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.footer-link:hover .footer-link-icon {
    transform: translateX(6px);
}

.footer-contact-info {
    padding-top: 15px;
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.7;
}

.footer-email {
    display: inline-block;
    margin-bottom: 22px;
    color: black;
    text-decoration: none;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
    font-size: clamp(14px, 1vw, 16px);
}

.footer-social-icon {
    width: 32px;
    height: 32px;
}

.footer-heading {
    margin-top: 0;
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 700;
}

.footer-text {
    margin-bottom: 25px;
    font-size: clamp(14px, 1vw, 18px);
    line-height: 1.6;
}

.footer-form {
    display: flex;
    flex-direction: column;
}

.footer-input {
    font-family: 'Montserrat', sans-serif;
    padding: 20px;
    margin-bottom: 25px;
    font-size: clamp(16px, 1vw, 20px);
    border: none;
    border-bottom: 2px solid black;
    background: white;
}

.footer-input:focus {
    outline: none;
    border-bottom-color: black;
}

.footer-button {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
    padding: 14px;
    height: 65px;
    background-color: black;
    border: 1px solid black;
    color: white;
    cursor: pointer;
    font-weight: 600;
    font-size: clamp(16px, 1vw, 20px);
    transition: background-color 0.3s ease;
}

.footer-button:hover {
    background-color: rgb(25, 25, 112);
}

.footer-disclaimer {
    text-align: center;
    font-size: clamp(12px, 0.9vw, 16px);
    color: #555;
    margin-top: 15px;
    line-height: 1.6;
}

.footer-disclaimer-link {
    color: black;
    text-decoration: none;
}

.footer-disclaimer-link:hover {
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: clamp(14px, 1vw, 16px);
    border-top: 1px solid #444;
    padding: 20px 30px;
    flex-wrap: wrap;
}

.footer-policy-links {
    display: flex;
    gap: 25px;
}

.footer-policy-link {
    color: black;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s, font-weight 0.3s;
    font-size: clamp(14px, 1vw, 16px);
}

.footer-policy-link:hover {
    text-decoration: underline;
}

.footer-policy-icon {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    transition: transform 0.3s ease;
    margin-left: 6px;
}

.footer-policy-link:hover .footer-policy-icon {
    transform: translateX(6px);
}

@media (max-width: 600px) {
    .footer-container {
        padding: 15px;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-left,
    .footer-right {
        padding: 15px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-policy-links {
        justify-content: center;
    }
}