#contact-us {
    padding-top: 100px;
    padding-bottom: 80px;
}

.contact-us-inner {
    display: flex;
    gap: 60px;
    align-items: center;
}

.contact-us-left {
    flex: 1;
}

.contact-us-title {
    color: #fb0a01;
    font-size: 3rem;
    font-family: zlb;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.contact-us-subtitle {
    color: #fb0a01;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: zlb;
    margin-bottom: 1rem;
}

.contact-us-desc {
    font-size: 1rem;
    color: #606060;
    font-family: jkt;
    margin-bottom: 0.75rem;
}

.contact-us-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 2rem;
}

.contact-info-item h4 {
    color: #fb0a01;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 6px;
    font-family: jkt;
}

.contact-info-item p {
    font-size: 0.8rem;
    color: #999898;
    font-family: jkt;
}

.contact-socials {
    display: flex;
    gap: 8px;
    margin-top: 1rem;
}

.contact-socials a {
    color: #fb0a01;
    font-size: 1rem;
    text-decoration: none;
    transition: opacity 0.2s;
}

.contact-socials a:hover {
    opacity: 0.7;
}

.contact-socials a img {
    height: 25px;
}

.contact-us-right {
    flex: 0 0 420px;
    position: relative;
}

.contact-form-wrapper {
    position: relative;
    padding: 30px;
}

.form-border-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.form-bg-ellipse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.form-bg-ellipse img {
    width: 100%;
}

.contact-form-inner {
    position: relative;
    z-index: 2;
    background: transparent;
    padding: 5px;
}

.form-title {
    font-size: 1rem;
    font-weight: 700;
    color: #606060;
    margin-bottom: 6px;
    font-family: zlb;
}

.form-desc {
    font-size: 0.7rem;
    color: #999898;
    margin-bottom: 1rem;
    font-family: jkt;
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: #333;
    margin-bottom: 4px;
    font-weight: 500;
}

.form-group .form-control {
    width: 100%;
    border: none;
    border-bottom: 1.5px solid #ccc;
    border-radius: 0;
    padding: 6px 0;
    font-size: 0.85rem;
    outline: none;
    background: transparent;
    transition: border-color 0.2s;
}

.form-group .form-control:focus {
    border-bottom-color: #fb0a01;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    gap: 12px;
}

.form-captcha {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #444;
    padding: 8px 12px;
    border-radius: 4px;
    flex: 1;
}

.form-captcha::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 3px;
    flex-shrink: 0;
}

.btn-kirim {
    background: #fb0a01;
    color: #fff;
    border: none;
    padding: 5px 35px;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-family: jkt;
    white-space: nowrap;
}

.mapouter {
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .contact-us-inner {
        flex-direction: column;
    }
    .contact-us-right {
        flex: 1;
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .contact-us-info-grid {
        grid-template-columns: 1fr;
    }
    .contact-us-title {
        font-size: 2rem;
    }
    .contact-us-subtitle {
        font-size: 1.2rem;
    }
    .contact-us-desc {
        font-size: 0.8rem;
    }
}
