/* ============================================================
   CONTACT-SECTION.CSS - Contact page (contact.html) specific styles
   ============================================================ */

/* === CONTACT MAIN SECTION === */
.cta-section-container {
    display: flex;
    padding-top: 40px;
}

.contact-info-wrapper {
    margin-bottom: 120px;
    min-width: 380px;
}

.ask-us-about-section-wrapper {
    position: relative;
}

.contact-section-left {
    position: absolute;
    left: calc(50% - 800px);
}

.contact-info-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 100px;
    margin-bottom: 16px;
}

.ask-us-about-section-wrapper h2 {
    color: var(--outline-color);
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 32px;
}

.ask-us-about-info-wrapper {
    display: flex;
    align-items: center;
    max-width: 540px;
}

.ask-us-about-info-wrapper:not(:last-child) {
    margin-bottom: 8px;
}

.ask-us-about-info-wrapper img {
    margin-right: 23px;
}

/* === CONTACT FORM === */
.contact-filing-form .input-name,
.contact-filing-form .input-email,
.contact-filing-form .input-company-name,
.contact-filing-form .input-title,
.contact-filing-form textarea {
    width: 100%;
    padding-left: 14px;
    padding-top: 17px;
    padding-bottom: 17px;
    background-color: transparent;
    font-size: 15px;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: -0.12px;
    color: var(--white-color);
    border: none;
    border-bottom: 1px solid var(--white-color);
}

.contact-filing-form textarea {
    padding-bottom: 41px;
    resize: none;
}

.contact-filing-form input::placeholder,
.contact-filing-form textarea::placeholder {
    opacity: 0.6;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: -0.12px;
}

.contact-filing-form textarea {
    margin-bottom: 24px;
}

.contact-filing-form button {
    padding: 8px 30px;
    border: 2px solid transparent;
    color: var(--deep-jungle-green);
    background-color: var(--white-color);
    border-radius: 24px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    line-height: 28px;
    cursor: pointer;
}

.contact-filing-form button:hover {
    border-color: var(--white-color);
    background-color: transparent;
    color: var(--white-color);
}

.contact-section-right {
    position: absolute;
    top: calc(50% + 130px);
    left: calc(50% + 600px);
}

/* ============================================================
   RESPONSIVE - CONTACT PAGE
   ============================================================ */

/* Tablet */
@media (max-width: 768px) {
    .cta-section-container {
        flex-direction: column;
        padding-top: 24px;
    }

    .contact-info-wrapper {
        margin-bottom: 48px;
        min-width: auto;
    }

    .contact-info-title {
        font-size: 48px;
        line-height: 64px;
    }

    .contact-section-left,
    .contact-section-right {
        display: none;
    }

    .ask-us-about-info-wrapper {
        max-width: 100%;
    }

    .ask-us-about-section-wrapper h2 {
        font-size: 24px;
        line-height: 36px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .contact-info-title {
        font-size: 32px;
        line-height: 48px;
    }

    .ask-us-about-section-wrapper h2 {
        font-size: 20px;
        line-height: 32px;
        margin-bottom: 24px;
    }

    .ask-us-about-info-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .ask-us-about-info-wrapper img {
        margin-right: 0;
        margin-bottom: 12px;
    }

    .ask-us-about-info-wrapper:not(:last-child) {
        margin-bottom: 24px;
    }

    .contact-filing-form button {
        width: 100%;
    }
}
