/* Contact Page Specific Styles */
.contact-sec {
    float: left;
    width: 100%;
    padding: 60px 0 80px;
    background: #f5f8fc;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.contact-info {
    width: 30%;
    text-align: left;
}

.contact-form {
    width: 65%;
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
}

.contact-info-block {
    margin-bottom: 30px;
}

.contact-info-block h3 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 15px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 800;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-info-icon {
    width: 42px;
    height: 42px;
    background: #e8e8e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-info-icon img {
    width: 20px;
}

.contact-info-content {
    font-size: 16px;
    line-height: 24px;
    color: #474747;
}

.contact-info-content p {
    margin-bottom: 5px;
}

.input-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.input-group {
    width: 48%;
}

.input-full {
    width: 100%;
    margin-bottom: 20px;
}

.input-group label, .input-full label {
    display: block;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 8px;
    text-align: left;
    font-weight: 600;
}

.input-group input, .input-full input, .input-full select, .input-full textarea {
    width: 100%;
    height: 50px;
    border: 1px solid #e1e6f0;
    border-radius: 8px;
    padding: 0 15px;
    font-size: 16px;
    font-family: 'Gabarito';
}

.input-full textarea {
    height: 150px;
    padding: 15px;
    resize: none;
}

.submit-btn {
    margin-top: 20px;
    text-align: center;
}

.map-container {
    float: left;
    width: 100%;
    height: 450px;
    margin-top: 60px;
    border-radius: 15px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media only screen and (max-width: 1023px) {
    .contact-container {
        margin-top: 30px;
    }
    
    .contact-info {
        width: 35%;
    }
    
    .contact-form {
        width: 60%;
        padding: 30px;
    }
    
    .map-container {
        height: 400px;
        margin-top: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .contact-sec {
        padding: 40px 0 50px;
    }
    
    .contact-container {
        flex-direction: column;
        margin-top: 20px;
    }
    
    .contact-info, .contact-form {
        width: 100%;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .input-row {
        flex-direction: column;
        margin-bottom: 0;
    }
    
    .input-group {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .map-container {
        height: 300px;
        margin-top: 30px;
    }
}
.contact-thanks {
    text-align: left;
}

.contact-thanks h3 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 16px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 800;
}

.contact-thanks p {
    font-size: 18px;
    line-height: 28px;
    color: #474747;
}

.form-status {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
}

.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.error-field {
    border-color: #dc3545 !important;
}

.disabled {
    opacity: 0.7;
    pointer-events: none;
}
