/* Contact Page Specific Styles */

/* Contact Hero Section */
.contact-hero {
    height: 60vh;
    min-height: 400px;
    background:
        linear-gradient(rgba(15, 23, 42, 0.6), rgba(29, 78, 216, 0.5)),
        url('../images/contact.png') center/cover no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--secondary-white);
    position: relative;
    overflow: hidden;
}

.contact-hero-content {
    max-width: 800px;
    z-index: 2;
    position: relative;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Info */
.contact-info {
    background: var(--secondary-light);
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: center;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.contact-info p {
    margin-bottom: 1.5rem;
    color: var(--text-medium-gray);
}

.contact-info a {
    color: var(--accent-blue);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-page-form {
    background: var(--secondary-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-page-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--primary-dark);
    text-align: center;
}

.contact-page-form input,
.contact-page-form textarea,
.contact-page-form select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.contact-page-form input:focus,
.contact-page-form textarea:focus,
.contact-page-form select:focus {
    outline: none;
    border-color: var(--accent-blue);
}

.contact-page-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-dark);
}

/* Mobile Responsive for Contact Page */
@media (max-width: 768px) {
    .contact-hero {
        height: 50vh;
        min-height: 350px;
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }

    .contact-hero h1 {
        font-size: 2.2rem;
    }

    .contact-hero p {
        font-size: 1.1rem;
    }

    .contact-page-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        background-size: 120%;
        background-position: center 30%;
    }

    .contact-hero h1 {
        font-size: 1.8rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .contact-page-form {
        padding: 1.5rem;
    }

    .contact-info {
        padding: 2rem;
    }
}