﻿/* ===== Contact Page ===== */

.contact-hero {
    background: #f5f7f9;
    padding: 60px 0 40px;
    border-bottom: 1px solid #e5e5e5;
}

    .contact-hero h1 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .contact-hero p {
        max-width: 800px;
        color: #555;
        line-height: 1.9;
    }

.contact-page {
    padding: 50px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.contact-box {
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 8px;
    background: #fff;
}

    .contact-box h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .contact-box p {
        line-height: 1.9;
        margin-bottom: 12px;
    }

    .contact-box a {
        color: #0d6efd;
        font-weight: 600;
        text-decoration: none;
    }

.contact-title {
    font-size: 15px;
    color: #444;
}

.manager-note {
    font-size: 13px;
    color: #777;
}

.work-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .work-hours li {
        margin-bottom: 15px;
        line-height: 1.8;
    }

.phone-hours {
    padding-top: 10px;
    border-top: 1px dashed #ddd;
}

.contact-map h2 {
    font-size: 22px;
    margin-bottom: 15px;
}

.map-wrapper {
    width: 100%;
    height: 380px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
}

    .map-wrapper iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

/* ===== Responsive ===== */

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 26px;
    }

    .map-wrapper {
        height: 300px;
    }
}


