.contact-us-section {
    background-color: var(--site-main-color-lighter, #f8f9fa);
}

/* Send button */
.contact-us-section .btn-primary {
    background-color: var(--site-main-color, #1f3c88);
    border-color: var(--site-main-color, #1f3c88);
}

.contact-us-section .btn-primary:hover {
    background-color: var(--site-main-color-dark, #1e0a49);
    border-color: var(--site-main-color-dark, #1e0a49);
}

.title-line-wrapper {
    position: relative;
    width: 40%;
    margin: 15px auto 0;
    height: 20px;
}

.title-line {
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--site-main-color, #1f3c88);
    top: 50%;
    transform: translateY(-50%);
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-input {
    padding: 12px 15px;
    border-radius: 10px;
}

.info-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.info-item {
    background: #fff;
    padding: 10px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    gap: 10px;
    align-items: center;
    word-break: break-word;
    line-height: 1.5;
}

.info-item h6 {
    margin-bottom: 4px;
    font-weight: 600;
}

.info-item p {
    font-size: 14px;
    color: #555;
}

.icon-circle {
    width: 55px;
    height: 55px;
    min-width: 55px;
    flex-shrink: 0;
    background: var(--site-main-color, #1f3c88);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-right: 10px;
}

/* ROBOT CHECK UI */
.robot-check input { display: none; }

.checkbox-box {
    width: 22px;
    height: 22px;
    border: 2px solid #999;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.loader {
    width: 14px;
    height: 14px;
    border: 2px solid #ccc;
    border-top-color: var(--site-main-color, #1f3c88);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
}

.checkmark {
    display: none;
    color: var(--site-main-color, #1f3c88);
    font-size: 14px;
}

/* MAP CARD */
.map-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 240px;
}

.map-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .title-line-wrapper {
        width: 70%;
    }

    .map-card {
        height: 200px;
    }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
