.contact-page .container {
    padding-top: 120px;
}

.contact-heading {
    font-weight: 600;
    font-size: 40px;
    line-height: 60px;
    margin-bottom: 32px;
    color: #0a40a1;
}

.overlay-circle img {
    position: absolute;
    bottom: 0;
    right: 0;
    mix-blend-mode: color-dodge;
}

.contact-reach-wrapper {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

/* =========================================
   CONTACT FORM
   ========================================= */

.contact-form {
    position: relative;
    flex: 1;
    width: 100%;
    background: #1d6dd0;
    padding: 40px;
    max-width: 747px;
    border-radius: 24px;
    overflow: hidden;
}

.form-wrapper {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    width: 100%;
    padding: 40px 0px;
}

.long-textarea{
    width: 100%;
}

.form-column {
    width: calc(50% - 30px);
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: space-between;
}

.contact-form h3 {
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 12px;
    color: #ffffff;
}

.contact-form input,
.contact-form textarea {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #ffffff;
    border: none;
    outline: none;
    background: none;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 8px;
    width: 100%;
    font-family: 'manrope';
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #ffffff;
    opacity: 0.5;
    font-family: 'manrope';
}

.contact-form textarea {
    resize: vertical;
    min-height: 80px;
    max-height: 80px;
}

.contact-num-wrapper {
    display: flex;
    gap: 12px;
}

.country-code-select {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #ffffff;
    border: none;
    outline: none;
    background: none;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 8px;
    max-width: 100%;
    cursor: pointer;
}

.purposedropdown-select {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #ffffff;
    border: none;
    outline: none;
    background: none;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 8px;
    width: 100%;
    cursor: pointer;
}


.form-group select.dropdown-contact {
    padding: 12px 45px 12px 10px;
    border-radius: 999px;
    border: 1px solid #fefefe;
    color: #fff;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-color: transparent;
    background-image: url('/wp-content/uploads/2026/05/contact-purpose.svg');
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
}

.country-code-select option {
    background: #1d6dd0;
    color: #ffffff;
}

.contact-form__submit {
    padding: 10px 33px;
    background: #ffffff;
    color: #1d6dd0;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 32px;
    cursor: pointer;
    transition: all 0.2s ease;
    max-width: 115px;
}

.contact-form__submit:hover {
    background: #e0e0e0;
    transform: translateY(-1px);
}

.mobile-submit {
    display: none;
}

/* =========================================
   REACH US
   ========================================= */

.reach-us__wrapper {
    max-width: 440px;
    width: 100%;
    align-self: flex-end;
}

.reach-us__address {
    font-style: normal;
    color: #1d6dd0;
    margin-bottom: 36px;
}

.reach-us__address h2 {
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
}

.reach-us__address p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.reach-us__map-container {
    border-radius: 20px;
    overflow: hidden;
    max-height: 237px;
    margin-top: 24px;
    border: 1px solid #1d6dd0;
}

.reach-us__map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 237px;
}

/* =========================================
   THANK YOU SECTION
   ========================================= */

.thanyou-paywall {
    display: none;
    width: 100%;
    animation: fadeUp 0.6s ease;
}

.thanyou-paywall.active {
    display: block;
}

#thankyouSection {
    display: none;
}

#thankyouSection.active {
    display: flex;
    /* or block, whatever your layout needs */
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.thank-section-wrapper {
    display: flex;
    gap: 50px;
}

.thank-wrapper {
    text-align: center;
    background: #1d6dd0;
    max-width: 747px;
    width: 100%;
    flex: 1;
    color: #ffffff;
    border-radius: 24px;
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.thank-you-gif {
    max-width: 130px;
    width: 100%;
    height: auto;
    margin-bottom: 32px;
}

.thank-you-content {
    max-width: 420px;
}

.thank-you-content h1,
.thank-you-content h2 {
    font-size: 40px;
    line-height: 52px;
    margin-bottom: 16px;
    color: #ffffff;
}

.thank-you-content p {
    line-height: 26px;
    opacity: 0.9;
    color: #ffffff;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 768px) {

    .contact-us>.container {
        padding-top: 50px;
    }

    .contact-heading {
        font-weight: 500;
        font-size: 24px;
        line-height: 34px;
    }

    .contact-reach-wrapper,
    .thank-section-wrapper {
        flex-direction: column;
        gap: 80px;
    }

    .form-wrapper {
        flex-direction: column;
        gap: 32px;
        padding: 40px 0px;
    }

    .form-column {
        width: 100%;
        gap: 32px;
    }

    .desktop-submit {
        display: none;
    }

    .mobile-submit {
        display: block;
    }

    .thank-wrapper {
        padding: 60px 32px;
    }

    .thank-you-content h1,
    .thank-you-content h2 {
        font-size: 28px;
        line-height: 38px;
    }

    .overlay-circle img {
        max-width: 230px;
    }
}