/* Contact Page Styles */
:root {
    --main-blue: #0077FF;
    --brand-blue: #004FAA;
    --light-blue: #3B96FF;
    --gray-neutral: #475569;
}

/* Contact Form Section */
.contact-section {
    padding: 5rem 4rem;
    padding-top: 8rem;
    font-family: "DM Sans", sans-serif;
    background: white;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-title {
    font-size: 48px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 16px;
    font-family: inherit;
}

.contact-description {
    font-size: 18px;
    color: #718096;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background-color: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0px 10px 22px 0px #2D4D6C26;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
}

.message-group {
    width: 100%;
}

.form-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    color: #2d3748;
    background: white;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--light-blue);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #a0aec0;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    background: var(--main-blue);
    color: white;
    padding: 10px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    font-family: inherit;
}

.contact-submit-btn:hover {
    background: var(--light-blue);
    letter-spacing: 3px;
}

/* Get In Touch Section */
.get-in-touch-section {
    padding: 60px 20px;
    background: white;
}

.touch-container {
    max-width: 1200px;
    margin: 0 auto;
}

.touch-header {
    text-align: center;
    margin-bottom: 50px;
}

.touch-title {
    font-size: 36px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 16px;
}

.touch-description {
    font-size: 18px;
    color: #718096;
    line-height: 1.6;
}

.contact-info-row {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0rem 6rem;
}

.contact-info-item {
    text-align: center;
}

.info-title {
    font-size: 1em;
    font-weight: 600;
    color: var(--main-blue);
    margin-bottom: 12px;
    text-align: left;
    width: fit-content;
}

.info-value {
    font-size: 0.8em;
    color: #718096;
    line-height: 1.5;
    text-align: left;
    width: fit-content;
}

/* Mobile Responsive Styles */
@media (max-width: 575px) {
    .contact-section {
        padding-top: 8rem;
    }

    /* .contact-title {
        font-size: 48px;
    } */

    .contact-description {
        font-size: 16px;
    }

    .form-row {
        flex-direction: column;
        gap: 16px;
    }

    .contact-form {
        gap: 20px;
    }

    .form-input,
    .form-textarea {
        padding: 14px;
    }

    .contact-submit-btn {
        width: 100%;
        align-self: stretch;
    }

    .get-in-touch-section {
        padding: 40px 16px;
    }

    .touch-title {
        font-size: 28px;
    }

    .contact-info-row {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .contact-info-item {
        min-width: auto;
        width: 100%;
        max-width: 300px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 480px) {

    .contact-section {
        padding-inline: 1.5rem;
    }

    .contact-title {
        font-size: 28px;
    }

    .contact-description {
        font-size: 14px;
    }

    .form-input,
    .form-textarea {
        padding: 12px;
        font-size: 14px;
    }

    .form-label {
        font-size: 14px;
    }

    .contact-submit-btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    .touch-title {
        font-size: 24px;
    }

    .touch-description {
        font-size: 16px;
    }

    .info-title {
        font-size: 18px;
    }

    .info-value {
        font-size: 14px;
    }
}