/* Contact Section */
.contact-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    overflow: hidden;
}

.contact-section-pattern
{    
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}
.contact-section-pattern img
{
    height: 100%;
}

.contact-container {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 80px;
    width: 80%;
    z-index: 1;
}

.contact-header
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.contact-title {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 72px;
}

/* Form Styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 8px;
    color: #000000;
}

.form-group input,
.form-group textarea {
    border: none;
    border-bottom: 1px solid #CACACA;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 18px;
    padding: 8px 0;
    outline: none;
    background: transparent;
}

.full-width {
    width: 100%;
}

.submit-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    border-radius: 8px;
    padding: 12px 16px;

    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 20px;
}

/* stay connected section */
.stay-connected {
    background: url('/assets/images/connected-background.png') no-repeat center center;
    background-size: cover;
    padding: 60px 20px;
    margin-bottom: 24px;
    font-family: 'Jost', sans-serif;
}

.stay-connected .container {
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 40px;
}

.stay-connected .title {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 1.3;
}

.contact-info {
    display: flex;
    gap: 80px;
}

.info-block
{
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 16px;
}

.info-block {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 22px;
}
.info-block h4 {
    margin-bottom: 8px;
}

.info-block .line {
    display: block;
    width: 24px;
    height: 3px;
    background: #000000;
    margin-bottom: 8px;
}


@media (max-width: 1439px) {
    .contact-title {
        font-size: 62px;
    }
    .stay-connected {
        padding: 40px 20px;
    }
    .stay-connected .title {
        font-size: 48px;
    }
    .stay-connected .container {
        justify-content: space-between;
    }
    .contact-info {
        gap: 40px;
    }
    .info-block {
        font-size: 20px;
    }
    .contact-section-pattern img {
        height: 70%;
    }
}

@media (max-width: 1023px)
{
    .contact-title {
        font-size: 48px;
    }
    .contact-container {
        width: 90%;
    }
    .stay-connected .container {
        justify-content: space-around;
    }
    .stay-connected .title {
        font-size: 44px;
    }
    .contact-info {
        flex-direction: column;
        gap: 16px;
    }
    .info-block {
        gap: 8px;
        padding: 8px;
    }
    .info-block p{
        margin-bottom: 4px;
    }
}

@media (max-width: 767px) {
    .contact-section {
        padding: 40px 20px;
    }
    .form-row {
        gap: 16px;
    }
    .contact-title {
        font-size: 46px;
    }
    .contact-form {
        gap: 24px;
    }
    .form-group label {
        margin-bottom: 0;
    }
    .submit-btn{
        width: 150px;
        padding: 8px 16px;
    }
    .stay-connected .container {
        flex-direction: column;
    }
    .contact-container {
        gap: 48px;
    }
    .stay-connected .title {
        font-size: 42px;
    }

    .contact-section-pattern
    {
        width: 50%;
    }
    .contact-section-pattern img
    {
        height: 65%;
    }
}

@media (max-width: 424px) {    
    .contact-title {
        font-size: 40px;
    }
    .stay-connected .title {
        font-size: 38px;
    }
    .info-block {
        font-size: 18px;
    }
}

@media (max-width: 374px) {    
    .contact-title {
        font-size: 34px;
    }
    .stay-connected .title {
        font-size: 32px;
    }
    .info-block {
        font-size: 18px;
    }
}
