﻿/*========================================================

CONTACT PAGE

========================================================*/

.contact-main {
    padding: 100px 0;
    background: #f8fbff;
}

.contact-layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: start;
}

.contact-sidebar h2 {
    margin-bottom: 20px;
}

.contact-sidebar > p {
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 28px;
    border-radius: 20px;
    margin-bottom: 22px;
    box-shadow: var(--shadow-sm);
    transition: .35s;
}

    .contact-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

.contact-icon {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient( 135deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-card h4 {
    margin-bottom: 12px;
    font-size: 19px;
}

.contact-card p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-form-area {
    background: #fff;
    padding: 50px;
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
}

.form-header {
    margin-bottom: 40px;
}

    .form-header span {
        display: inline-block;
        padding: 8px 18px;
        background: var(--primary-light);
        border-radius: 50px;
        font-size: 13px;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 18px;
    }

    .form-header h2 {
        margin-bottom: 20px;
    }
@media(max-width:991px) {

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-form-area {
        margin-top: 20px;
    }
}

@media(max-width:768px) {

    .contact-form-area {
        padding: 30px;
    }

    .contact-card {
        padding: 22px;
    }
}

/*==================================================
BUSINESS FORM
==================================================*/

.business-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-section {
    border-bottom: 1px solid #eef2f7;
    padding-bottom: 35px;
}

    .form-section:last-child {
        border-bottom: none;
    }

    .form-section h3 {
        margin-bottom: 25px;
        color: var(--primary);
        font-size: 22px;
    }

.form-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group label {
        margin-bottom: 8px;
        font-weight: 600;
    }

    .form-group input,
    .form-group select,
    .business-form textarea {
        width: 100%;
        padding: 15px 18px;
        border: 1px solid #d8e2ef;
        border-radius: 12px;
        font-size: 15px;
        transition: .3s;
    }

        .form-group input:focus,
        .form-group select:focus,
        .business-form textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(11,61,145,.08);
        }

.business-form textarea {
    resize: vertical;
}

.pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.pill-option {
    cursor: pointer;
}

    .pill-option input {
        display: none;
    }

    .pill-option span {
        display: inline-block;
        padding: 12px 18px;
        border-radius: 50px;
        background: #f5f8fc;
        border: 1px solid #dce5f5;
        transition: .3s;
        font-weight: 500;
    }

    .pill-option input:checked + span {
        background: var(--primary);
        color: #fff;
        border-color: var(--primary);
    }

.form-consent {
    font-size: 15px;
}

.submit-btn {
    align-self: flex-start;
    padding: 16px 40px;
}

.hidden-field {
    display: none;
}

@media(max-width:768px) {

    .form-grid {
        grid-template-columns: 1fr;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}
/*==================================================
POPUPS
==================================================*/

.popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 99999;
}

    .popup.active {
        opacity: 1;
        visibility: visible;
    }

.popup-box {
    width: 520px;
    background: #fff;
    padding: 50px;
    border-radius: 24px;
    text-align: center;
}

    .popup-box i {
        font-size: 70px;
        color: var(--success);
        margin-bottom: 25px;
    }

    .popup-box h2 {
        margin-bottom: 15px;
    }

    .popup-box p {
        margin-bottom: 30px;
    }
.office-location {
    background: #fff;
}

.map-wrapper {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
}

    .map-wrapper iframe {
        width: 100%;
        height: 520px;
        border: none;
    }
/*==================================================
BUSINESS SUPPORT
==================================================*/

.support-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.support-card {
    background: #fff;
    padding: 40px;
    border-radius: 22px;
    text-align: center;
    transition: .35s;
    box-shadow: var(--shadow-sm);
}

    .support-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

    .support-card i {
        width: 80px;
        height: 80px;
        margin: auto;
        margin-bottom: 25px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--primary-light);
        color: var(--primary);
        font-size: 34px;
    }

    .support-card h3 {
        margin-bottom: 18px;
    }

.actions-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
    margin-top: 60px;
}

.action-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: var(--shadow-sm);
    transition: .3s;
    font-weight: 600;
}

    .action-card:hover {
        background: var(--primary);
        color: #fff;
    }

    .action-card i {
        font-size: 22px;
    }
.faq-list {
    max-width: 900px;
    margin: auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 18px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}

.faq-answer {
    display: none;
    padding: 0 30px 30px;
}

.faq-item.active .faq-answer {
    display: block;
}
/*==================================================
EXPORT ASSISTANCE
==================================================*/

.export-assistance {
    background: #ffffff;
}

.assistance-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.assist-card {
    background: #fff;
    border-radius: 22px;
    padding: 40px;
    text-align: center;
    border: 1px solid #edf2f7;
    transition: .35s;
}

    .assist-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary);
    }

.assist-icon {
    width: 85px;
    height: 85px;
    margin: auto;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: linear-gradient( 135deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: 34px;
}

.assist-card h3 {
    margin-bottom: 18px;
}

.contact-strip {
    background: var(--primary);
    color: #fff;
    padding: 22px 0;
}

.strip-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

    .strip-wrapper div {
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 600;
    }

.hero-background-div {
    /* Set the path to your image */
    background-image: url('assets/images/contact/herobg.png');
    /* Prevent the image from repeating like a grid tile */
    background-repeat: no-repeat;
    /* Keep the image centered within the element */
    background-position: center;
    /* Scale the image to perfectly fill the container */
    background-size: cover;
    /* Ensure the div has size if it doesn't contain text/content */
    width: 100%;
    height: 870px;
}