/* =========================
   CONTACT PAGE STYLES
   ========================= */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.contact-hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-hero-content h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.contact-hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 2rem;
    background-color: white;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* Contact Form */
.contact-form-container h2 {
    color: #222;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #222;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    align-self: flex-start;
    padding: 12px 30px;
}

/* Contact Info */
.contact-info-container h2 {
    color: #222;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: #007bff;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.info-text h3 {
    color: #222;
    margin-bottom: 0.5rem;
}

.info-text p {
    color: #666;
    line-height: 1.6;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 768px) {
    .contact-hero-content h1 {
        font-size: 2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 3rem 1rem;
    }

    .contact-hero-content h1 {
        font-size: 1.5rem;
    }

    .contact-hero-content p {
        font-size: 1rem;
    }

    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-container {
        gap: 1.5rem;
    }

    .contact-form-container h2,
    .contact-info-container h2 {
        font-size: 1.3rem;
    }

    .info-item {
        gap: 1rem;
    }

    .info-item i {
        font-size: 1.2rem;
    }
}
