@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Form Styling */
.form-control:focus, .form-select:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

.input-group-text {
    font-weight: 500;
}

/* WhatsApp Input Group Focus Ring Fix */
.phone-input-group {
    background-color: var(--bs-body-bg);
    border-radius: var(--bs-border-radius-lg);
}
.phone-input-group:focus-within {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.phone-input-group:focus-within .input-group-text,
.phone-input-group:focus-within .form-control {
    border-color: #86b7fe;
}
.phone-input-group .form-control:focus {
    box-shadow: none;
}

/* Animasi Kotak Detail Harga */
@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Detail Table Styling */
#detail:not(:empty) {
    display: block;
    background-color: var(--bs-tertiary-bg);
    padding: 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid var(--bs-border-color);
    margin-bottom: 1.5rem;
    animation: slideDownFade 0.3s ease-out forwards;
}

#detail table {
    width: 100%;
    font-size: 0.95rem;
}

#detail th {
    width: 35%;
    text-align: left;
    font-weight: 500;
    color: var(--bs-secondary-color);
    padding: 0.25rem 0;
}

#detail td {
    padding: 0.25rem 0;
}

#detail td:nth-child(2) {
    width: 20px;
    text-align: center;
    color: var(--bs-secondary-color);
}

#detail td:last-child {
    text-align: right;
    font-weight: 600;
}

#detail tr:last-child th,
#detail tr:last-child td {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bs-body-color);
    padding-top: 0.75rem;
    border-top: 1px dashed var(--bs-border-color);
    margin-top: 0.5rem;
}

/* FAQ Styling */
#faq {
    margin-top: 2rem;
}

#faq > .h3 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

#faq .accordion-item {
    border: 1px solid var(--bs-border-color);
    border-radius: 0.75rem !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
    background-color: var(--bs-body-bg);
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.02);
}

#faq .accordion-button {
    font-weight: 600;
    padding: 1.25rem 1.5rem;
}

#faq .accordion-button:not(.collapsed) {
    background-color: var(--bs-tertiary-bg);
    color: var(--bs-body-color);
    box-shadow: inset 0 -1px 0 rgba(0,0,0,0.05);
}

#faq .accordion-body {
    color: var(--bs-secondary-color);
    line-height: 1.6;
}

/* Footer */
.footer {
    width: 100vw;
    transition: background-color 0.3s ease;
}

.grecaptcha-badge { 
    visibility: hidden !important;
}

/* Buttons */
.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
}