﻿body {
}
/* =========================
   CONTACT HERO / BREADCRUMB
========================= */

.contact-hero {
    position: relative;
    width: 100%;
    height: 380px;
    background: url("/images/breadcrumb/contact-badminton.jpg") center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.45) );
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

    .contact-hero-content h1 {
        font-size: 48px;
        font-weight: 700;
        color: #ffffff;
        padding: 14px 40px;
        background: rgba(0, 0, 0, 0.55);
        border-radius: 6px;
        letter-spacing: 1px;
    }

    /* Small breadcrumb text */
    .contact-hero-content p {
        margin-top: 12px;
        color: #f5c400;
        font-weight: 500;
    }

/* Responsive */
@media (max-width: 768px) {
    .contact-hero {
        height: 260px;
    }

    .contact-hero-content h1 {
        font-size: 30px;
        padding: 10px 22px;
    }
}


/* =========================
   CONTACT INFO BOXES
========================= */

.contact-info-section {
    padding: 70px 0;
    background: #f4f4f4;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-box {
    background: #ffffff;
    padding: 40px 25px;
    text-align: center;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

    .contact-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

.contact-icon {
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #111;
    border: 2px solid #eee;
}

.contact-box h4 {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 18px;
    color: #333;
}

.contact-box p {
    font-size: 14px;
    color: #4a4a4a;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================
   CONTACT MAP SECTION
========================= */

.contact-map-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .map-wrapper:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    }

    .map-wrapper iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

