/* Contact Page Styles */
.contact-form-section {
    background: #e8e4d2;
    padding: 4rem 0;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #264570;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
}

.contact-form-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: #264570;
    margin: 0;
}

.contact-form-wrapper {
    background: rgb(255 255 255 / 24%);
    padding: 2rem;
}

/* Success/Error Messages */
.contact-form-success,
.contact-form-errors {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
}

.contact-form-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #15803d;
}

.contact-form-errors {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #dc2626;
}

.success-icon,
.error-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.contact-form-errors ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-form-errors li {
    margin: 0.25rem 0;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #264570;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input,
.form-select {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(38, 69, 112, 0.2);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    color: #264570;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus,
.form-select:focus {
    border-color: #264570;
    box-shadow: 0 0 0 3px rgba(38, 69, 112, 0.1);
    background: #fff;
}

.form-input::placeholder {
    color: rgba(38, 69, 112, 0.6);
    font-style: italic;
    font-weight: 300;
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23264570' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.25rem;
    padding-right: 3rem;
    appearance: none;
}

.form-select option:first-child {
    color: rgba(38, 69, 112, 0.6);
    font-style: italic;
    font-weight: 300;
}

.form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: white;
    background: linear-gradient(135deg, #264570 0%, #1e3a5f 100%);
    border: none;
    border-radius: 0.5rem;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 1rem;
}

.form-submit:hover {
    background: linear-gradient(135deg, #1e3a5f 0%, #264570 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(38, 69, 112, 0.3);
}

.form-submit:active {
    transform: translateY(0);
}

.submit-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.form-submit:hover .submit-icon {
    transform: translateX(2px);
}


/* Responsive Design */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 0 1rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .contact-form-title {
        font-size: 2rem;
    }
    

}
