/* --- CSS Khusus Header Contact Us --- */
.page-header-contact {
    background-image: url('../images/header/contact-us.png');
    background-size: cover;
    background-position: center 30%;
    height: 450px;
    position: relative;
    overflow: hidden;
}

/* Overlay #0F0E0E dengan Opacity 0.42 */
.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 14, 14, 0.42); 
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-title {
    color: rgba(255, 255, 255, 0.85);
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: 12px;
    text-transform: uppercase;
    margin-bottom: 40px; /* Offset to visually center above the diagonal */
}

/* Efek Shape Divider Diagonal di Bawah */
.shape-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
}

.shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

/* Efek hover untuk link dan input form */
.hover-primary:hover { color: var(--primary-blue, #003380) !important; }
.form-control:focus, .form-select:focus {
    border-color: var(--primary-blue, #003380);
    box-shadow: 0 0 0 0.25rem rgba(0, 51, 128, 0.25);
}