* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* SECTION */
.contact-section {
    padding: 60px 0;
    background: #f5f5f5;
}

.container {
    width: 90%;
    margin: auto;
}

/* TITLE */
.page-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
    color: #8b0000;
}

.subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

/* GRID */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

/* BOX */
.map-box, .office-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-box h3,
.office-box h3 {
    margin-bottom: 15px;
    color: #333;
}

/* OFFICE IMAGE */
.office-box img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

/* INFO SECTION */
.info-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.info-card {
    background: #fff;
    padding: 25px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 28px;
    color: #8b0000;
    margin-bottom: 10px;
}

.info-card h4 {
    margin-bottom: 5px;
    color: #333;
}

/* RESPONSIVE */
@media(max-width: 900px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .info-box {
        grid-template-columns: 1fr;
    }

    .office-box img {
        height: 250px;
    }
}

.map-box iframe {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-radius: 12px;
}

.map-box iframe {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.map-box {
    background: #fff;
    min-height: 350px;
    position: relative;
}

.map-box iframe {
    width: 100%;
    height: 350px;
    display: block;
}

.waze-link {
    display: inline-block;
    margin-top: 5px;
    padding: 6px 10px;
    background: #00cfff;
    color: #fff;
    border-radius: 15px;
}

.waze-link:hover {
    background: #00a6cc;
}

.waze-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 10px 15px;
    background: #00cfff;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: 0.3s;
}

.waze-btn i {
    font-size: 18px;
}

.waze-btn:hover {
    background: #00a6cc;
    transform: translateY(-2px);
}

.contact-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
    display: inline-block;
    margin-top: 5px;
}

.contact-link:hover {
    color: #8b0000;
    transform: translateY(-2px);
}

.contact-link[href^="tel"] {
    background: #8b0000;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
}

.contact-link[href^="mailto"] {
    background: #ffb300;
    color: #000;
    padding: 6px 12px;
    border-radius: 20px;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;

    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

/* WAZE */
.btn-contact.waze {
    background: #00cfff;
}

.btn-contact.waze:hover {
    background: #00a6cc;
}

/* PHONE */
.btn-contact.phone {
    background: #8b0000;
}

.btn-contact.phone:hover {
    background: #6b0000;
}

/* EMAIL */
.btn-contact.email {
    background: #ffb300;
    color: #000;
}

.btn-contact.email:hover {
    background: #e6a000;
}

.office-box img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
}