/* Contact Page Styles */

.btn-transparent {
    margin-left: 15px;
}

.contact-section {
    position: relative;
    min-height: 100vh;
    background: #F6F7FC;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.1;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 791px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: white;
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.contact-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 43px;
    line-height: 1.28;
    color: #1E1E1E;
    margin: 0 0 20px 0;
}

.contact-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 19px;
    line-height: 1.37;
    color: #1E1E1E;
    margin: 0;
    max-width: 317px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.form-group.full-width {
    width: 100%;
}

.form-label {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 10px;
    line-height: 1.2;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 1px solid #13167C;
    background: rgba(19, 22, 124, 0.05);
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 10px;
    line-height: 1.36;
    color: #1E1E1E;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    background: rgba(19, 22, 124, 0.1);
    border-bottom-color: #069CD8;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #B8B8B8;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 10px;
    line-height: 1.36;
}

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

.contact-submit-btn {
    background: #13167C;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 15px 30px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.36;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 331px;
    margin: 0 auto;
    margin-top: 10px;
}

.contact-submit-btn:hover:not(:disabled) {
    background: #0F125A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(19, 22, 124, 0.3);
}

.contact-submit-btn:disabled {
    background: #9E9E9E;
    cursor: not-allowed;
    opacity: 0.6;
}

/* reCAPTCHA Styling */
.g-recaptcha {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.g-recaptcha > div {
    margin: 0 auto;
}

.text-danger {
    color: #dc3545;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section {
        padding: 40px 15px;
    }
    
    .contact-form-wrapper {
        padding: 40px 30px;
        border-radius: 20px;
    }
    
    .contact-title {
        font-size: 32px;
    }
    
    .contact-subtitle {
        font-size: 16px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-submit-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .contact-title {
        font-size: 28px;
    }
    
    .contact-subtitle {
        font-size: 14px;
    }
}
