﻿/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

    .hero h1 {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 20px;
        max-width: 700px;
        margin: 0 auto;
    }

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    flex-shrink: 0;
}

.info-content h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 8px;
}

.info-content p {
    color: #666;
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
}

    .info-content p a {
        color: #667eea;
        text-decoration: none;
        transition: color 0.3s;
    }

        .info-content p a:hover {
            color: #764ba2;
        }

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

    .contact-form h2 {
        color: #667eea;
        font-size: 32px;
        margin-bottom: 10px;
    }

    .contact-form .subtitle {
        color: #666;
        font-size: 16px;
        margin-bottom: 30px;
    }

.form-group {
    margin-bottom: 25px;
}

    .form-group label {
        display: block;
        color: #333;
        font-weight: 600;
        margin-bottom: 8px;
        font-size: 15px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 15px;
        border: 2px solid #e0e0e0;
        border-radius: 10px;
        font-size: 16px;
        transition: border-color 0.3s;
        font-family: inherit;
    }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #667eea;
        }

    .form-group textarea {
        min-height: 150px;
        resize: vertical;
    }

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

    .submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(102, 126, 234, 0.6);
    }

/* Map Section */
.map-section {
    padding: 0;
    margin: 0;
}

.map-container {
    width: 100%;
    height: 450px;
    background: #e0e0e0;
}

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: white;
}

.faq-container {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    color: #333;
}

    .faq-question:hover {
        background: #f5f5f5;
    }

    .faq-question i {
        transition: transform 0.3s;
        color: #667eea;
    }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
    padding: 0 20px;
}

    .faq-answer.active {
        max-height: 300px;
        padding: 20px;
    }

    .faq-answer p {
        color: #666;
        margin: 0;
    }



/* Office Hours */
.hours-section {
    padding: 60px 20px;
    background: white;
}

.hours-container {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

    .hours-container h2 {
        color: #667eea;
        font-size: 32px;
        margin-bottom: 30px;
    }

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

    .hours-item .day {
        font-weight: 600;
        color: #333;
    }

    .hours-item .time {
        color: #667eea;
        font-weight: 600;
    }

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 25px;
    }

    .hours-grid {
        grid-template-columns: 1fr;
    }

    .social-links a {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}
