@import url('variables.css');

.navlink {
    text-decoration: none;
    color: var(--color-text-gray);
    font-weight: 700;
}

/* HERO SECTION */

.hero--section {
    background-image: url('../assets/images/contactus/contact-us-banner.png');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    padding-bottom: 80px;
    height: auto;
}

.hero--right-card {
    height: fit-content;
    width: 100%;
}

@media(max-width: 991px) {
    .hero--section {
        /* padding-top: 100px !important; */
    }
    
    .hero--right-card {
        margin-top: 40px;
        align-self: center !important;
    }
}

@media(min-width: 1550px) {
    .hero--section {
        height: 80vh;
    }
}




/* CONTACT US FORM SECTION */

.contact-section {
    background: #fff;
    /* padding: 40px; */
    border-radius: 10px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #111;
}

.custom-input,
.custom-select,
.custom-textarea {
    width: 100%;
    border: 1px solid #d8d8d8;
    border-radius: 30px;
    padding: 12px 18px;
    outline: none;
    font-size: 14px;
    transition: 0.3s;
}

.custom-textarea {
    min-height: 110px;
    resize: none;
    border-radius: 20px;
}

.custom-input:focus,
.custom-select:focus,
.custom-textarea:focus {
    border-color: var(--color-accent-blue);
    box-shadow: 0 0 0 3px rgba(0, 167, 181, 0.15);
}

.form-label {
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
    font-size: 15px;
}

.required {
    color: red;
}

.terms {
    font-size: 14px;
}

.terms a {
    color: var(--color-accent-blue);
    /* text-decoration: none; */
}

.submit-btn {
    width: 100%;
    background: var(--color-primary-blue);
    border: none;
    padding: 14px;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}

.submit-btn:hover {
    background: var(--color-primary-hover-blue);
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-icon {
    width: 38px;
    height: 38px;
    background: rgba(0, 167, 181, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-blue);
    flex-shrink: 0;
}

.info-text {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

.map-box {
    overflow: hidden;
    border-radius: 20px;
    height: 260px;
    margin-top: 15px;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media(max-width: 991px) {
    .contact-section {
        /* padding: 5px; */
    }

    .right-side {
        margin-top: 40px;
    }
}


/* FAQ SECTION */

.faq-section {
    /* background: #dfeeee; */
    padding: 60px 0;
    /* width: 75%; */
    margin: auto;
}

.small-title {
    color: var(--color-primary-blue);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-title {
    font-size: 50px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--color-text-darkblue);
    margin-bottom: 40px;
}

/* Call Card */

.call-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    /* max-width: 420px; */
}

.call-icon {
    width: 70px;
    height: 70px;
    /* background: rgba(0, 135, 154, 0.1); */
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.call-icon i {
    font-size: 34px;
    color: var(--color-primary-blue);
}

.call-title {
    font-size: 39px;
    font-weight: 400;
    color: #111;
    margin-bottom: 20px;
}

.call-text {
    color: #7b7b7b;
    margin-bottom: 25px;
}

.call-btn {
    width: 100%;
    border: none;
    background: var(--color-primary-blue);
    color: #fff;
    padding: 10px;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.3s;
}

.call-btn:hover {
    background: var(--color-primary-hover-blue);
}

/* Accordion */

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #fff;
    border: 1px solid #d6d6d6;
    border-radius: 14px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    text-align: left;
}

.faq-question h4 {
    font-size: 18px;
    line-height: 1.5;
    color: #005d7c;
    margin: 0;
    font-weight: 500;
}

.faq-icon {
    font-size: 22px;
    color: #666;
    transition: 0.3s;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-answer-content {
    padding: 0 26px 26px;
    color: #6d6d6d;
    line-height: 1.8;
    font-size: 16px;
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Responsive */

@media(max-width: 1199px) {
    .main-title {
        font-size: 46px;
    }

    .faq-question h4 {
        font-size: 16px;
    }
}

@media(max-width: 991px) {

    .left-side {
        margin-bottom: 40px;
    }

    .main-title {
        font-size: 40px;
    }
}

@media(max-width: 576px) {

    .faq-section {
        padding: 40px 0;
    }

    .main-title {
        font-size: 34px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h4 {
        font-size: 18px;
    }

    .call-title {
        font-size: 34px;
    }

    .faq-answer-content {
        padding: 0 20px 20px;
    }
}

