/* ===== KONSULTASI PAGE STYLES ===== */

body, h1, h2, h3, h4, h5, h6, .display-2, .lead, p {
    font-family: 'Nunito Sans', sans-serif !important;
}

/* Navbar default (solid blue) */
#navbar-main {
    background: #0093dd;
    transition: all 0.3s ease;
}

/* Menu default */
.menu-link {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    color: #ffffff !important;
    transition: all 0.3s ease;
}

/* Supaya konten tidak ketutup navbar */
body {
    padding-top: 100px;
}

.footer {
    background-color: #0093dd !important;
}

/* ===== RESPONSIVE STYLES ===== */

/* Responsive display heading */
.display-3 {
    font-size: 1.75rem;
}

@media (min-width: 768px) {
    .display-md-2 {
        font-size: 3.5rem !important;
    }
}

/* Form improvements */
.form-control, .form-control:focus {
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #0093dd;
    box-shadow: 0 0 0 0.2rem rgba(0, 147, 221, 0.25);
}

/* Responsive form groups */
.form-group label {
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.form-group label sup {
    color: #e74c3c;
    margin-left: 2px;
}

/* Input group improvements */
.input-group .form-control {
    min-height: 38px;
}

/* Responsive section padding */
.section-header {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@media (max-width: 576px) {
    .section-header {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .display-3 {
        font-size: 1.5rem;
    }
    
    body {
        padding-top: 80px;
    }
}

/* Responsive button */
.btn {
    min-width: 120px;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #0093dd;
    border-color: #0093dd;
}

.btn-primary:hover {
    background-color: #0077b6;
    border-color: #0077b6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 147, 221, 0.3);
}

/* Responsive footer */
.footer .col-lg-6 {
    margin-bottom: 1.5rem;
}

@media (max-width: 991px) {
    .footer .col-lg-6 {
        margin-bottom: 2rem;
    }
}

/* Responsive image */
img.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Modal responsive */
.modal-dialog {
    margin: 1rem auto;
}

@media (max-width: 576px) {
    .modal-dialog {
        margin: 0.5rem;
    }
}

/* Captcha image styling */
img[alt="captcha"] {
    display: block;
    margin: 0 auto;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
}

@media (min-width: 576px) {
    img[alt="captcha"] {
        margin: 0;
    }
}

/* Navbar toggler styling for mobile */
.navbar-toggler {
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid #ccc;
    border-radius: 0.25rem;
}

#navbar-main.scrolled .navbar-toggler {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}