/* =========================
   HERO
========================= */
.contact-hero {
    background: linear-gradient(135deg, #27ae60, #1e8f4c);
    padding: 60px 0;
}
.page-contact .mini-map {
   color: #0a0a0a;
}
/* =========================
   CONTACT INFO BOX
========================= */
.contact-info-box {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.07);
}

.contact-info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}

.contact-info-item i {
    width: 38px;
    height: 38px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
}

/* =========================
   SOCIAL ICON
========================= */
.social-icon {
    width: 38px;
    height: 38px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-dark);
    transition: 0.2s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

.social-icon:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(39,174,96,0.25);
}

.social-icon img {
    width: 20px;
    height: 20px;
}

/* =========================
    FORM
========================= */
.contact-form {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.06);
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 10px !important;
}

/* =========================
    MAP
========================= */
.map-wrapper iframe {
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.07);
}
