.contact-section {
    background: #f7f7f7;
}

.contact-wrapper {
    max-width: 1140px;
    margin: 0 auto;
}

.contact-info-box {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    padding: 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.map-container {
    position: relative;
    height: 340px;
    border-radius: 12px;
    overflow: hidden;
}

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

.contact-details {
    margin-top: 30px;
}

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

.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 18px;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: #111;
    color: #fff;
}

.contact-text span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #777;
    text-transform: uppercase;
}

.contact-text p {
    font-size: 0.95rem;
    margin: 4px 0 0;
    color: #333;
}

/* ================================
   RIGHT – FORM
================================ */

.contact-form-box {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    padding: 40px;
    height: 100%;
}

.contact-form-box h5 {
    margin-bottom: 30px;
    font-weight: 600;
}

/* Inputs */
.contact-form-box .form-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #444;
}

.contact-form-box .form-control,
.contact-form-box .form-select {
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
}

.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus {
    border-color: #111;
    box-shadow: none;
}

/* Button */
.contact-form-box .btn {
    padding: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: 8px;
}

/* Success Message */
.success-msg {
    color: #2e7d32;
    font-weight: 500;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 991px) {
    .map-container {
        height: 260px;
    }

    .contact-form-box,
    .contact-info-box {
        padding: 28px;
    }
}

@media (max-width: 576px) {
    .contact-form-box {
        padding: 24px;
    }
}

.is-invalid {
    border-color: #dc3545;
}

/* ================================
   Social Media
================================ */

.contact-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 1rem;
}

.contact-social a i {
    color: var(--primary-color);
    font-size: 24px;
    transition: color 0.35s ease;
}

.contact-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}

.contact-social a:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 14px 30px rgba(0,0,0,0.15);
    background: var(--accent-color);
}

.contact-social a:hover i {
    color: #ffffff;
}

.contact-social a[aria-label="Facebook"] i {
    color: #1877F2;
}

.contact-social a[aria-label="Instagram"] i {
    color: #E4405F;
}

.contact-social a[aria-label="LinkedIn"] i {
    color: #0A66C2;
}

.contact-social a[aria-label="WhatsApp"] i {
    color: #25D366;
}

.contact-social a[aria-label="Google Business"] i {
    color: #4285F4;
}

.contact-social a:hover .fa-instagram { color: #fff; }
.contact-social a:hover .fa-facebook-f { color: #fff; }
.contact-social a:hover .fa-linkedin-in { color: #fff; }
.contact-social a:hover .fa-whatsapp { color: #fff; }
