/* Contact Page Styles */

/* Hero Section */
.contact-hero-section {
    position: relative;
    width: 100%;
    min-height: 400px;
    background-image: url('../../assets/images/contact/hero.png');
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .contact-hero-section {
        min-height: 300px;
    }
}

/* Contact Section */
.contact-section {
    background-color: #ffffff;
    padding: 2rem 2rem 5rem 2rem;
}

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

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 1rem;
}

.contact-intro {
    font-size: 1.125rem;
    color: #333;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-email-link {
    color: #1a1a2e;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-email-link:hover {
    color: #2a2a4e;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 0.95rem;
    color: #1a1a2e;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid #1a1a2e;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    color: #1a1a2e;
    background-color: #ffffff;
}

.form-group.has-error input,
.form-group.has-error textarea {
    border-color: #dc3545;
}

.form-group.has-error input::placeholder,
.form-group.has-error textarea::placeholder {
    color: #dc3545;
    opacity: 1;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #87ceeb;
}

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

.submit-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.contact-submit-btn {
    padding: 1rem 2.5rem;
    background-color: #1a1a2e;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-submit-btn:hover {
    background-color: #2a2a4e;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.contact-privacy {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
}

.contact-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.email-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 1.5rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-intro {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-graphic {
        min-height: 300px;
    }
    
    .submit-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

