/* ============================================================
   Mr. Kunci Sidrap - Custom Styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

:root {
    --navy: #0A192F;
    --navy-light: #112240;
    --gold: #D4AF37;
    --gold-light: #E8C84A;
    --gold-dark: #B8960E;
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-300: #CBD5E1;
    --gray-500: #64748B;
    --gray-700: #334155;
    --text-dark: #0F172A;
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    background: rgba(10, 25, 47, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.3s ease;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-logo-text {
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.5px;
}

.nav-link {
    position: relative;
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 6px 0;
    transition: color 0.2s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: 100%;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #0D2137 40%, #071525 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(212,175,55,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,175,55,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    color: #fff;
}

.hero-title .highlight {
    color: var(--gold);
    position: relative;
    display: inline-block;
}

.btn-wa-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
    border: none;
    cursor: pointer;
}

.btn-wa-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
    color: white;
}

.btn-wa-hero .wa-icon {
    font-size: 1.4rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
    background: var(--gold);
    position: relative;
}

.stat-card {
    text-align: center;
    padding: 32px 20px;
    position: relative;
}

.stat-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(10, 25, 47, 0.2);
}

.stat-card:last-child::after { display: none; }

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(10, 25, 47, 0.75);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================================
   SECTION STYLES
   ============================================================ */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--navy);
    line-height: 1.2;
}

.section-title.light { color: #fff; }

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    margin: 16px 0;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid var(--gray-100);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(10, 25, 47, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-wrap {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(212,175,55,0.06));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid rgba(212,175,55,0.2);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrap {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-color: var(--gold);
}

.service-icon-wrap i {
    font-size: 1.6rem;
    color: var(--gold);
    transition: color 0.3s ease;
}

.service-card:hover .service-icon-wrap i {
    color: #fff;
}

.btn-wa-service {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    justify-content: center;
    margin-top: 20px;
}

.btn-wa-service:hover {
    background: #25D366;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37,211,102,0.3);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,25,47,0.85) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-section {
    background: linear-gradient(135deg, var(--navy) 0%, #0D2137 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(212,175,55,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,175,55,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.step-card {
    position: relative;
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--navy);
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(212,175,55,0.4);
    font-family: 'Playfair Display', serif;
}

/* ============================================================
   REVIEW CARDS
   ============================================================ */
.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(10,25,47,0.1);
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 5rem;
    color: rgba(212,175,55,0.1);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
}

/* ============================================================
   WARNING BOX
   ============================================================ */
.warning-box {
    background: linear-gradient(135deg, #1a0a00, #2d1500);
    border: 1px solid rgba(212,175,55,0.3);
    border-left: 4px solid var(--gold);
    border-radius: 12px;
    padding: 28px 32px;
    position: relative;
    overflow: hidden;
}

.warning-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* ============================================================
   CONTACT / MAP SECTION
   ============================================================ */
.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10,25,47,0.2);
    border: 2px solid rgba(212,175,55,0.2);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #050D1A;
    border-top: 1px solid rgba(212,175,55,0.15);
}

.footer-logo-text {
    font-family: 'Playfair Display', serif;
}

.footer-link {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    transition: color 0.2s;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--gold);
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-decoration: none;
}

.social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 60px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox-overlay.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 24px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
}

/* ============================================================
   FLOATING WA BUTTON
   ============================================================ */
.floating-wa {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    animation: floatBounce 3s ease-in-out infinite;
}

.floating-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37,211,102,0.6);
    color: white;
}

@keyframes floatBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ============================================================
   ADMIN STYLES
   ============================================================ */
.admin-sidebar {
    background: var(--navy);
    min-height: 100vh;
    width: 260px;
    flex-shrink: 0;
}

.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.2s;
    text-decoration: none;
    margin: 2px 0;
}

.admin-nav-link:hover,
.admin-nav-link.active {
    background: rgba(212,175,55,0.12);
    color: var(--gold);
}

.admin-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--gray-100);
    overflow: hidden;
}

.admin-stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--gray-100);
}

/* ============================================================
   MOBILE MENU
   ============================================================ */
#mobile-menu {
    display: none;
    background: var(--navy);
    border-top: 1px solid rgba(212,175,55,0.15);
    padding: 20px;
}

#mobile-menu.open {
    display: block;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-gold { color: var(--gold); }
.bg-navy { background-color: var(--navy); }
.border-gold { border-color: var(--gold); }

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--gray-100);
}
::-webkit-scrollbar-thumb {
    background: var(--navy);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* ============================================================
   WA ORDER MODAL
   ============================================================ */
.wa-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 13, 26, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9990;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.wa-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.wa-modal-box {
    background: #fff;
    border-radius: 24px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    position: relative;
}

.wa-modal-overlay.active .wa-modal-box {
    transform: translateY(0) scale(1);
}

.wa-modal-header {
    background: linear-gradient(135deg, var(--navy) 0%, #0D2137 100%);
    padding: 28px 28px 24px;
    position: relative;
}

.wa-modal-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.wa-modal-body {
    padding: 28px;
}

.wa-form-group {
    margin-bottom: 18px;
}

.wa-form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 7px;
    letter-spacing: 0.3px;
}

.wa-form-label .required {
    color: #ef4444;
    margin-left: 2px;
}

.wa-form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    color: #111827;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fafafa;
}

.wa-form-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    background: #fff;
}

.wa-form-input::placeholder { color: #9ca3af; }

textarea.wa-form-input {
    resize: none;
    min-height: 90px;
}

.wa-modal-footer {
    padding: 0 28px 28px;
    display: flex;
    gap: 12px;
}

.btn-wa-submit {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    padding: 14px 20px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-wa-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
}

.btn-wa-cancel {
    padding: 14px 20px;
    border-radius: 14px;
    border: 1.5px solid #e5e7eb;
    background: white;
    color: #6b7280;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-wa-cancel:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #374151;
}

.wa-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.wa-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.wa-service-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 100px;
    margin-top: 8px;
}

/* ============================================================
   VERIFIKASI MODAL (Step 1)
   ============================================================ */
.verif-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 13, 26, 0.80);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9995;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.verif-overlay.active { opacity: 1; visibility: visible; }

.verif-box {
    background: #fff;
    border-radius: 24px;
    width: 100%;
    max-width: 460px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    transform: translateY(24px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
    overflow: hidden;
    position: relative;
}
.verif-overlay.active .verif-box { transform: translateY(0) scale(1); }

.verif-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 24px 20px;
    background: linear-gradient(135deg, var(--navy) 0%, #0D2137 100%);
}

.verif-pulse-ring {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(212,175,55,0.15);
    animation: verifPulse 2s ease-in-out infinite;
}

@keyframes verifPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.25); opacity: 0.5; }
}

.verif-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 25px rgba(212,175,55,0.5);
}
.verif-icon i { font-size: 1.6rem; color: var(--navy); }

.verif-content { padding: 20px 24px 4px; }

.verif-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 8px;
}

.verif-subtitle {
    font-size: 0.82rem;
    color: #6b7280;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 16px;
}

.verif-items { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }

.verif-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 10px 14px;
}

.verif-item-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.verif-item-label { font-size: 0.7rem; color: #94a3b8; margin-bottom: 1px; }
.verif-item-value { font-size: 0.82rem; font-weight: 600; color: var(--navy); }

.verif-note {
    background: rgba(212,175,55,0.06);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 4px;
}

.verif-footer {
    padding: 16px 24px 24px;
    display: flex;
    gap: 10px;
}

.verif-btn-cancel {
    padding: 12px 18px;
    border-radius: 14px;
    border: 1.5px solid #e5e7eb;
    background: white;
    color: #9ca3af;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.verif-btn-cancel:hover { background: #f9fafb; color: #6b7280; }

.verif-btn-lanjut {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: linear-gradient(135deg, var(--navy), #0D2137);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 12px 16px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(10,25,47,0.3);
}
.verif-btn-lanjut:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(10,25,47,0.4);
    background: linear-gradient(135deg, #112240, #0A192F);
}

/* WA Modal step indicator */
.wa-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px 0;
    gap: 8px;
}
.wa-step {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    color: #94a3b8;
}
.wa-step.active { color: var(--navy); font-weight: 600; }
.wa-step.done   { color: #10b981; }
.wa-step-circle {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.68rem;
    font-weight: 700;
}
.wa-step.active .wa-step-circle { background: var(--navy); color: #fff; }
.wa-step.done .wa-step-circle   { background: #10b981; color: #fff; }
.wa-step-line {
    height: 1px; width: 28px;
    background: linear-gradient(90deg, #10b981, #e5e7eb);
}

/* FAQ */
.faq-item { background: #fff; transition: box-shadow 0.2s; }
.faq-item:hover { box-shadow: 0 4px 20px rgba(10,25,47,0.06); }
.faq-btn { background: none; border: none; cursor: pointer; font-family: 'Poppins', sans-serif; }
.faq-answer { transition: max-height 0.35s ease, padding 0.2s; }
