/* --- Halaman Contact Saja (Elak kacau Bootstrap) --- */

.wlc-custom-body {
    background-color: #ffffff !important;
    padding-bottom: 80px;
}

.wlc-custom-container {
    max-width: 1200px;
    margin: -80px auto 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* --- Banner Ungu Atas --- */
.wlc-contact-banner {
    background: #bd1d1c !important;
    text-align: center;
    padding: 60px 20px 140px 20px;
    color: #ffffff;
}

.wlc-contact-banner .wlc-badge {
    background: rgba(255, 64, 129, 0.2);
    color: ;
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.wlc-contact-banner h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

/* --- Susunan 4 Kad Info --- */
.wlc-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.wlc-info-card {
    background: #bd1d1c;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    margin-bottom: 10px;
    margin-top: 20px;
}

.text-center {
    text-align: center;
}

.wlc-info-card .wlc-card-icon {
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    color: #C82909;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 1.25rem;
}

.wlc-info-card h3 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 600;
}

.wlc-info-card p {
    font-size: 0.9rem;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

/* --- Split Row Borang & Peta --- */
.wlc-split-row {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: start;
}

.wlc-form-area h2 {
    font-size: 1.8rem;
    color: #0F172A;
    margin-bottom: 8px;
    font-weight: 600;
}

.wlc-form-area .wlc-subtitle {
    font-size: 0.95rem;
    color: #64748B;
    margin-bottom: 30px;
}

/* --- Elemen Borang --- */
.wlc-form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.wlc-form-group {
    margin-bottom: 20px;
}

.wlc-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 8px;
}

.wlc-form-group input,
.wlc-form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    background-color: #ffffff;
    font-size: 0.95rem;
    color: #334155;
    outline: none;
    box-shadow: none !important;
}

.wlc-form-group input:focus,
.wlc-form-group textarea:focus {
    border-color: #0B46D7;
}

.wlc-form-group textarea {
    resize: none;
}

/* --- Butang Hantar --- */
.wlc-submit-btn {
    background-color: #0045E6;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.2s;
}

.wlc-submit-btn:hover {
    background-color: #0037B3;
}

/* --- Google Maps Area --- */
.wlc-map-area {
    width: 100%;
}

.wlc-map-area iframe {
    width: 100%;
    height: 430px;
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    margin-top:20px;
}

/* --- Notifikasi Alert --- */
.wlc-alert {
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}
.wlc-alert-success {
    background-color: #DEF7EC;
    color: #03543F;
}
.wlc-alert-danger {
    background-color: #FDE8E8;
    color: #9B1C1C;
}

/* --- Responsif Skrin Telefon --- */
@media (max-width: 991px) {
    .wlc-split-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .wlc-form-row-2col {
        grid-template-columns: 1fr;
        gap: 0;
    }
}