﻿/* Contact Hero */
.contact-hero {
    background-color: #f0f9ff;
    padding: 60px 0;
    text-align: center;
}

    .contact-hero h1 {
        color: #059669;
        margin-bottom: 20px;
    }

    .contact-hero p {
        color: #6aac7b;
        font-size: 20px;
        max-width: 800px;
        margin: 0 auto;
        font-weight: bold;
    }

/* Contact Main */
.contact-main {
    padding: 80px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Form */
.contact-form-section h2 {
    color: #059669;
    margin-bottom: 30px;
    font-size: 32px !important;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: bold;
        color: #333;
        font-size: 16px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 15px 20px;
        border: 2px solid #e9ecef;
        border-radius: 8px;
        font-family: 'peyda';
        font-size: 16px;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
        background-color: white;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #059669;
            box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
        }

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

    .form-group select {
        cursor: pointer;
    }

.submit-btn {
    background-color: #059669;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-family: 'peyda';
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

    .submit-btn:hover {
        background-color: #047857;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
    }

/* Contact Info */
.contact-info h2 {
    color: #059669;
    margin-bottom: 30px;
    font-size: 32px !important;
}

.contact-cards {
    display: grid;
    gap: 25px;
}

.contact-card {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .contact-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.contact-card h3 {
    color: #333;
    font-size: 20px !important;
    margin: 0;
}

.contact-card p {
    color: #666;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

.contact-card a {
    color: #059669;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

    .contact-card a:hover {
        color: #047857;
    }

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

    .map-section h2 {
        text-align: center;
        color: #059669;
        margin-bottom: 40px;
        font-size: 32px !important;
    }

.map-container {
    background-color: #e9ecef;
    height: 400px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 18px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.map-placeholder {
    text-align: center;
}

    .map-placeholder::before {
        content: "🗺️";
        font-size: 48px;
        display: block;
        margin-bottom: 10px;
    }

.address-info {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

    .address-info h3 {
        color: #059669;
        margin-bottom: 15px;
        font-size: 24px !important;
    }

    .address-info p {
        color: #666;
        font-size: 16px;
        line-height: 1.8;
    }

/* Office Hours */
.office-hours {
    padding: 80px 0;
}

    .office-hours h2 {
        text-align: center;
        color: #059669;
        margin-bottom: 50px;
        font-size: 32px !important;
    }

.hours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.hours-card {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

    .hours-card:hover {
        transform: translateY(-5px);
    }

    .hours-card h3 {
        color: #059669;
        margin-bottom: 20px;
        font-size: 22px !important;
    }

.hours-list {
    list-style: none;
}

    .hours-list li {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        border-bottom: 1px solid #f0f0f0;
        font-size: 16px;
    }

        .hours-list li:last-child {
            border-bottom: none;
        }

.day {
    font-weight: bold;
    color: #333;
}

.time {
    color: #666;
}

.emergency-note {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
    text-align: center;
}

    .emergency-note h4 {
        color: #856404;
        margin-bottom: 10px;
        font-size: 18px !important;
    }

    .emergency-note p {
        color: #856404;
        margin: 0;
    }

/* Contact FAQ */
.contact-faq {
    padding: 80px 0;
    background-color: #f8f9fa;
}

    .contact-faq h2 {
        text-align: center;
        color: #059669;
        margin-bottom: 50px;
        font-size: 32px !important;
    }

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

    .faq-item:hover {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    cursor: pointer;
    font-weight: bold;
    color: #333;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

    .faq-question:hover {
        background-color: #f8f9fa;
    }

.faq-toggle {
    width: 30px;
    height: 30px;
    background-color: #059669;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item:hover .faq-toggle {
    background-color: #047857;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #f8f9fa;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 25px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    font-size: 16px;
}




/* Extra Small Mobile */
@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 28px !important;
    }

    .contact-hero p {
        font-size: 14px;
    }

    h2 {
        font-size: 24px !important;
    }

    .contact-form {
        padding: 20px;
    }

    .contact-card {
        padding: 20px;
    }

    .hours-card {
        padding: 20px;
    }
}
