/* Contact Hero */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-bg.webp') no-repeat;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: white;
}

.contact-hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Options */
.contact-options {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card .icon {
    font-size: 2.5em;
    color: #007bff;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.contact-card a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    display: block;
    margin: 15px 0;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-card .hours,
.contact-card .response-time,
.contact-card .members {
    color: #6c757d;
    font-size: 0.9em;
    margin-top: 10px;
}

/* Contact Form */
.contact-form {
    padding: 80px 0;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 10px;
}

.form-header p {
    color: #6c757d;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #007bff;
    outline: none;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9em;
    color: #6c757d;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.submit-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #0056b3;
}

/* FAQ Quick Access */
.faq-quick-access {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.faq-quick-access h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 15px;
}

.faq-quick-access p {
    color: #6c757d;
    margin-bottom: 30px;
}

.faq-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #007bff;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.faq-btn:hover {
    background: #0056b3;
}

/* Map Section */
.map-section {
    padding: 80px 0;
}

.map-section h2 {
    text-align: center;
    font-size: 2em;
    color: #333;
    margin-bottom: 40px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.address-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.address-info h3 {
    color: #333;
    margin-bottom: 15px;
}

.address-info p {
    color: #6c757d;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0;
    }

    .contact-hero h1 {
        font-size: 2.5em;
    }

    .options-grid {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        padding: 20px;
    }

    .submit-btn {
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 2em;
    }

    .contact-hero p {
        font-size: 1em;
    }

    .form-header h2 {
        font-size: 1.5em;
    }
}
