/* =========================
   PAGE
========================= */

.contact-section {
    padding: 90px 8%;
    background: #f8f8f6;
}

/* =========================
   HEADER
========================= */

.contact-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 60px;
}

.subtitle {
    color: #c59d5f;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-header h1 {
    font-size: 48px;
    color: #222;
    margin: 12px 0;
}

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

/* =========================
   LAYOUT
========================= */

.contact-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 35px;
    align-items: stretch;
}

/* =========================
   CONTACT CARD
========================= */

.contact-card {
    background: white;
    padding: 35px;
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 30px;
}

.icon-circle {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 50%;
    background: #2c6e49;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle i {
    font-size: 18px;
}

.info-item h4 {
    margin: 0 0 5px;
    color: #222;
    font-size: 17px;
}

.info-item p {
    margin: 0;
    color: #666;
    line-height: 1.7;
}

.opening-hours-box{
    align-items: flex-start;
}

.hours-content{
    width: 100%;
}

.hours-card{
    margin-top: 10px;
    padding: 14px 16px;

    background: #f8f9fb;
    border: 1px solid #eee;
    border-radius: 12px;

    font-size: 14px;
    line-height: 1.9;
    color: #444;

    white-space: pre-line;
}

/* make it feel structured like a schedule */
.hours-card br{
    margin-bottom: 6px;
}

/* =========================
   SOCIAL LINKS
========================= */

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    text-decoration: none;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;

    transition: all .3s ease;
}

/* Instagram */

.instagram {
    background: linear-gradient(
        135deg,
        #f09433,
        #e6683c,
        #dc2743,
        #cc2366,
        #bc1888
    );
}

/* Facebook */

.facebook {
    background: #1877F2;
}

/* WhatsApp */

.whatsapp {
    background: #25D366;
}

.social-links a:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 10px 20px rgba(0,0,0,.15);
}

/* =========================
   MAP CARD
========================= */

.map-card {
    position: relative;
    min-height: 550px;

    border-radius: 22px;
    overflow: hidden;

    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.map-card iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location {
    background: linear-gradient(
        135deg,
        #EA4335,
        #FBBC05
    );
}

/* =========================
   MAP OVERLAY
========================= */

.map-overlay {
    position: absolute;

    bottom: 25px;
    left: 25px;

    background: rgba(255,255,255,.95);

    padding: 20px;
    border-radius: 16px;

    max-width: 280px;

    backdrop-filter: blur(8px);

    box-shadow: 0 8px 25px rgba(0,0,0,.12);
}

.map-overlay h3 {
    margin: 0 0 10px;
    color: #222;
}

.map-overlay p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}

/* =========================
   BUTTON
========================= */

.directions-btn {
    display: inline-block;

    padding: 10px 18px;

    background: #2c6e49;
    color: white;

    text-decoration: none;
    border-radius: 8px;

    transition: .3s;
}

.directions-btn:hover {
    background: #24583b;
    transform: translateY(-2px);
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .map-card {
        min-height: 400px;
    }

    .contact-header h1 {
        font-size: 40px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 576px) {

    .contact-section {
        padding: 60px 20px;
    }

    .contact-header h1 {
        font-size: 32px;
    }

    .contact-card {
        padding: 25px;
    }

    .icon-circle {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .map-overlay {
        left: 15px;
        right: 15px;
        max-width: unset;
    }
}