/* --- GLOBAL FIXES --- */
html, body {
    overflow-x: hidden; /* Mencegah scroll samping akibat animasi AOS */
    width: 100%;
    position: relative;
}

/* Custom Utilities */
body {
    font-family: 'Inter', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
}

.glass-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Modal Transitions */
.modal {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

/* Custom Inputs */
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s;
    background-color: #f8fafc;
}

.form-input:focus {
    border-color: #0071BC;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(0, 113, 188, 0.1);
}

.form-input[readonly] {
    background-color: #f1f5f9 !important;
    color: #64748b;
    border-color: #e2e8f0;
    cursor: not-allowed;
}

select.form-input {
    background-color: #fff !important;
}

/* Card Hover Effects */
.hover-card {
    transition: all 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}