/* ===== PERADI KHARISMA - PROFESSIONAL CLEAN ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #0A2342;
    --primary-light: #1f3a5f;
    --primary-soft: #2c4c7c;
    --secondary: #C9A959;
    --secondary-dark: #b8963a;
    --light: #f9f7f5;
    --gray: #5d6d7e;
    --gray-light: #e9ecef;
    --white: #ffffff;
    --shadow-sm: 0 4px 24px rgba(10,35,66,0.07);
    --shadow-md: 0 8px 40px rgba(10,35,66,0.11);
    --shadow-lg: 0 16px 60px rgba(10,35,66,0.16);
    --navbar-h: 72px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--white);
    color: #2c3e50;
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
}
body.menu-open { overflow: hidden; }
html { scroll-behavior: smooth; overflow-x: hidden; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-44px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(44px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.revealed { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.93); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-scale.revealed { opacity: 1; transform: scale(1); }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; } .d5 { transition-delay: .5s; }

/* ===== NAVBAR ===== */
.navbar {
    background: #fff;
    box-shadow: 0 1px 0 rgba(10,35,66,0.07);
    position: fixed; top: 0; z-index: 1000; width: 100%;
    transition: box-shadow 0.3s;
    animation: slideDown 0.5s ease forwards;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(10,35,66,0.1); }
.nav-container { display: flex; justify-content: space-between; align-items: center; padding: 0.75rem 1.5rem; max-width: 1400px; margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 0.75rem; z-index: 1001; }

/* === PERUBAHAN 1: Logo navbar dibesarkan dari 128x44 → 180x60 === */
.logo-image { width: 180px; height: 60px; object-fit: contain; }

.menu-toggle { display: none; font-size: 1.6rem; color: var(--primary); cursor: pointer; z-index: 1001; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 8px; transition: background 0.2s; border: 1px solid var(--gray-light); }
.menu-toggle:hover { background: var(--light); }
.menu-toggle.active { border-color: var(--secondary); color: var(--secondary); }
.nav-menu { display: block; }
.nav-list { display: flex; align-items: center; gap: 0.25rem; list-style: none; margin: 0; padding: 0; }
.nav-item { position: relative; list-style: none; }
.nav-link { text-decoration: none; font-weight: 600; color: var(--primary); font-size: 0.85rem; letter-spacing: 0.4px; transition: color 0.2s; padding: 0.5rem 0.75rem; display: flex; align-items: center; gap: 0.3rem; white-space: nowrap; cursor: pointer; border: none; background: none; border-radius: 6px; }
.nav-link i { font-size: .65rem; transition: transform .3s; }
.nav-link:hover { color: var(--secondary); }
.dropdown:hover .nav-link i, .dropdown.active .nav-link i { transform: rotate(180deg); }
.dropdown-menu { position: absolute; top: calc(100% + 6px); left: 0; background: #fff; min-width: 230px; border-radius: 12px; padding: 0.5rem; box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.25s ease; border: 1px solid var(--gray-light); z-index: 100; list-style: none; margin: 0; }
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-item { padding: 0.65rem 1rem; display: block; text-decoration: none; color: var(--primary); transition: all 0.2s; font-size: 0.85rem; font-weight: 500; border-radius: 8px; }
.dropdown-item:hover { background: var(--light); color: var(--secondary); padding-left: 1.25rem; }
.chat-item { margin-left: 0.5rem; }
.chat-btn { background: #25D366; color: #fff !important; padding: 0.55rem 1.15rem !important; border-radius: 50px; font-weight: 700; display: flex; align-items: center; gap: 7px; box-shadow: 0 4px 16px rgba(37,211,102,0.25); transition: all 0.3s; text-decoration: none; font-size: 0.85rem; white-space: nowrap; }
.chat-btn i { font-size: 1.1rem; }
.chat-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); color: #fff !important; }
.nav-backdrop { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.45); z-index: 999; opacity: 0; visibility: hidden; transition: all 0.3s; display: none; }
.nav-backdrop.active { opacity: 1; visibility: visible; display: block; }

/* ===== HERO ===== */
.hero {
    background: linear-gradient(115deg, rgba(10,35,66,0.96) 0%, rgba(44,76,124,0.90) 60%, rgba(10,35,66,0.82) 100%),
                url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
    width: 100%;
    padding-top: var(--navbar-h);
}
.hero-content { width: 100%; max-width: 780px; padding: 3rem 1.25rem; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.6rem; border: 1px solid rgba(201,169,89,0.35); border-radius: 50px; padding: 0.35rem 1rem; margin-bottom: 1.4rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--secondary); }
.hero-eyebrow span { width: 18px; height: 1px; background: var(--secondary); }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 700; line-height: 1.12; margin-bottom: 1.1rem; }
.hero h1 em { color: var(--secondary); font-style: normal; }
.hero p { font-size: 0.95rem; opacity: 0.85; margin-bottom: 2.2rem; max-width: 560px; font-weight: 300; line-height: 1.8; }
.hero-buttons { display: flex; flex-direction: column; gap: 0.85rem; width: 100%; }
.btn-primary, .btn-outline { display: block; width: 100%; text-align: center; padding: 0.82rem 1.8rem; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 0.83rem; letter-spacing: 1px; text-transform: uppercase; transition: all 0.3s; }
.btn-primary { background: var(--secondary); color: var(--primary); box-shadow: 0 6px 20px rgba(201,169,89,0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(201,169,89,0.4); }
.btn-outline { border: 1.5px solid rgba(255,255,255,0.4); color: #fff; }
.btn-outline:hover { border-color: var(--secondary); color: var(--secondary); transform: translateY(-3px); }

/* ===== scroll-margin-top ===== */
section[id] { scroll-margin-top: var(--navbar-h); }
#footer { scroll-margin-top: var(--navbar-h); }

/* ===== SECTION SHARED ===== */
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-tag { font-family: 'Montserrat', sans-serif; color: var(--secondary-dark); text-transform: uppercase; letter-spacing: 4px; font-size: 0.68rem; font-weight: 700; display: block; margin-bottom: 0.5rem; }
.section-header h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--primary); position: relative; display: inline-block; line-height: 1.2; }
.section-header h2::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 48px; height: 2px; background: var(--secondary); border-radius: 2px; }

/* ===== VISI MISI ===== */
.visi-misi-section { padding: 4rem 0; background: #fff; }
.visi-misi-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2rem; }
.visi-card, .misi-card { background: var(--light); border-radius: 20px; padding: 2rem 1.5rem; box-shadow: var(--shadow-sm); transition: 0.35s; border: 1px solid var(--gray-light); }
.visi-card:hover, .misi-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.visi-icon, .misi-icon { width: 56px; height: 56px; background: var(--primary); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.visi-icon i, .misi-icon i { font-size: 1.6rem; color: var(--secondary); }
.visi-card h3, .misi-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--primary); margin-bottom: 0.8rem; }
.visi-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.8; font-style: italic; }
.misi-card ul { list-style: none; padding: 0; }
.misi-card ul li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.8rem; color: var(--gray); font-size: 0.88rem; }
.misi-card ul li i { color: var(--secondary); font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }

/* ===== STRUKTUR ORGANISASI ===== */
.struktur-section { padding: 4rem 0; background: var(--light); }
.struktur-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2rem; }
.struktur-card { background: #fff; border-radius: 20px; padding: 2rem 1.5rem; box-shadow: var(--shadow-sm); transition: 0.35s; border: 1px solid var(--gray-light); text-align: center; position: relative; overflow: hidden; }
.struktur-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--secondary); transform: scaleX(0); transition: transform 0.4s; }
.struktur-card:hover::after { transform: scaleX(1); }
.struktur-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }

/* === PERUBAHAN 3: Avatar dibesarkan dari 130x130 → 160x160 === */
.struktur-avatar { width: 160px; height: 160px; border-radius: 50%; margin: 0 auto 1.2rem; overflow: hidden; border: 3px solid var(--gray-light); box-shadow: var(--shadow-md); transition: border-color 0.3s; }
.struktur-card:hover .struktur-avatar { border-color: var(--secondary); }
.struktur-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }

.struktur-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700; color: var(--primary); margin-bottom: 0.3rem; }
.struktur-title { display: inline-block; background: var(--primary); color: var(--secondary); font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 0.28rem 0.9rem; border-radius: 50px; margin-bottom: 0.9rem; }

/* === PERUBAHAN 4: Tulisan quote/marwah dibesarkan dari 0.98rem → 1.08rem === */
.struktur-card p,
.struktur-quote { color: var(--gray); font-style: italic; line-height: 1.7; font-family: 'Cormorant Garamond', serif; font-size: 1.08rem; }

/* ===== LEGALITAS ===== */
.legalitas-section { padding: 4rem 0; background: #fff; }
.legal-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2rem; }
.legal-card { background: #fff; border-radius: 16px; border: 1px solid var(--gray-light); box-shadow: var(--shadow-sm); overflow: hidden; display: flex; flex-direction: column; transition: 0.35s; }
.legal-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(201,169,89,0.3); }
.legal-img-wrap { position: relative; height: 200px; overflow: hidden; flex-shrink: 0; background: var(--light); }
.legal-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.legal-card:hover .legal-img-wrap img { transform: scale(1.04); }
.legal-badge { position: absolute; top: 12px; left: 12px; background: var(--primary); color: var(--secondary); font-size: 0.65rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 0.28rem 0.8rem; border-radius: 50px; }
.legal-body { padding: 1.3rem; flex: 1; display: flex; flex-direction: column; }
.legal-cat { font-size: 0.65rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--secondary-dark); margin-bottom: 0.4rem; }
.legal-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; line-height: 1.3; }
.legal-body p { font-size: 0.82rem; color: var(--gray); line-height: 1.7; flex: 1; margin-bottom: 1rem; }
.legal-meta-row { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 1rem; }
.legal-meta-row span { font-size: 0.72rem; color: var(--gray); display: flex; align-items: center; gap: 0.3rem; }
.legal-meta-row i { color: var(--primary-soft); }
.legal-actions { display: flex; gap: 0.6rem; margin-top: auto; }

/* ===== BTN-LV ===== */
.btn-lv {
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.76rem;
    padding: 0.55rem 1.1rem;
    border-radius: 50px;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    -webkit-text-decoration: none;
}
.btn-lv:hover, .btn-lv:focus, .btn-lv:visited, .btn-lv:active { text-decoration: none; }
.btn-lv-primary { background: var(--primary); color: #fff; }
.btn-lv-primary:hover { background: var(--primary-soft); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(10,35,66,0.2); color: #fff; }
.btn-lv-outline { background: transparent; color: var(--primary); border: 1.5px solid var(--gray-light); }
.btn-lv-outline:hover { border-color: var(--primary); background: var(--primary); color: #fff; transform: translateY(-2px); }

/* Extra legal card variants */
.legal-img-navy { background: #1a2a4a; }
.legal-img-black { background: #111; }
.legal-img-law { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-soft) 100%); display: flex; align-items: center; justify-content: center; }
.legal-img-contain { object-fit: contain !important; padding: 1.5rem; }
.legal-icon-placeholder { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.legal-icon-placeholder i { font-size: 4rem; color: rgba(255,255,255,0.25); }
.legal-badge-blue { background: #1a4a8a !important; color: #93c5fd !important; }
.legal-badge-gold { background: rgba(201,169,89,0.2) !important; color: var(--secondary) !important; border: 1px solid rgba(201,169,89,0.4); }
.legal-status-tag { cursor: default; color: #16a34a !important; border-color: #86efac !important; background: #f0fdf4 !important; }
.legal-status-tag i { color: #16a34a; }

/* ===== MODAL LEGALITAS ===== */
.modal-legal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 2000; opacity: 0; transition: opacity 0.35s cubic-bezier(.4,0,.2,1); }
.modal-legal.active { display: flex; opacity: 1; align-items: center; justify-content: center; padding: 1rem; }
.modal-overlay { position: absolute; inset: 0; background: rgba(5,18,40,0.75); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); cursor: pointer; }
.modal-content-legal { position: relative; background: #fff; border-radius: 20px; box-shadow: 0 24px 80px rgba(10,35,66,0.3); width: 100%; max-width: 720px; max-height: 92vh; display: flex; flex-direction: column; animation: slideUp 0.35s cubic-bezier(.4,0,.2,1); z-index: 2001; overflow: hidden; }
@keyframes slideUp { from { opacity: 0; transform: translateY(32px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }

.modal-header-legal { display: flex; justify-content: space-between; align-items: flex-start; padding: 1.25rem 1.5rem 1rem; border-bottom: 1px solid var(--gray-light); gap: 1rem; background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%); }
.modal-header-info { flex: 1; min-width: 0; }
.modal-badge-legal { display: inline-flex; align-items: center; gap: 0.35rem; background: rgba(201,169,89,0.12); color: var(--secondary-dark); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; padding: 0.3rem 0.75rem; border-radius: 50px; border: 1px solid rgba(201,169,89,0.3); margin-bottom: 0.5rem; }
.modal-header-legal h2 { font-family: 'Cormorant Garamond', serif; color: var(--primary); font-size: 1.15rem; font-weight: 700; line-height: 1.3; margin: 0 0 0.35rem; }
.modal-meta-legal { font-size: 0.75rem; color: var(--gray); display: flex; gap: 1rem; flex-wrap: wrap; }
.modal-meta-legal span { display: flex; align-items: center; gap: 0.3rem; }
.modal-header-actions { display: flex; align-items: center; gap: 0.4rem; flex-shrink: 0; }
.modal-action-btn { background: var(--light); border: 1px solid var(--gray-light); color: var(--primary); font-size: 0.8rem; cursor: pointer; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 8px; transition: all 0.2s; }
.modal-action-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: scale(1.05); }
.modal-close-legal { background: none; border: 1px solid var(--gray-light); color: var(--gray); font-size: 1rem; cursor: pointer; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 8px; transition: all 0.2s; }
.modal-close-legal:hover { background: #fee2e2; color: #dc2626; border-color: #fca5a5; }

.modal-body-legal { flex: 1; overflow: auto; padding: 1.25rem; display: flex; flex-direction: column; align-items: center; background: #f0f2f5; min-height: 300px; max-height: 50vh; }
.modal-img-container { display: flex; align-items: center; justify-content: center; transition: transform 0.25s cubic-bezier(.4,0,.2,1); cursor: zoom-in; }
.modal-img-container.zoomed { cursor: zoom-out; }
.modal-img-container img { max-width: 100%; border-radius: 10px; box-shadow: 0 8px 30px rgba(10,35,66,0.15); display: block; transition: transform 0.25s cubic-bezier(.4,0,.2,1); }
.modal-zoom-hint { margin-top: 0.75rem; font-size: 0.7rem; color: #94a3b8; display: flex; align-items: center; gap: 0.35rem; }

.modal-footer-legal { padding: 1rem 1.5rem; border-top: 1px solid var(--gray-light); display: flex; align-items: center; justify-content: space-between; gap: 1rem; background: #fafbff; }
.modal-footer-left { display: flex; align-items: center; }
.modal-verified { font-size: 0.72rem; font-weight: 600; color: #16a34a; display: flex; align-items: center; gap: 0.4rem; }
.modal-verified i { font-size: 0.85rem; }
.modal-footer-btns { display: flex; gap: 0.75rem; }
.modal-footer-btns .btn-lv-primary { padding: 0.5rem 1.2rem; font-size: 0.8rem; }

/* Toast */
.toast-notif { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--primary); color: #fff; padding: 0.75rem 1.5rem; border-radius: 50px; font-size: 0.82rem; font-weight: 600; box-shadow: 0 8px 24px rgba(10,35,66,0.25); opacity: 0; pointer-events: none; transition: all 0.35s cubic-bezier(.4,0,.2,1); z-index: 9999; display: flex; align-items: center; gap: 0.5rem; }
.toast-notif.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.btn-download-modal { background: var(--primary); color: #fff; border: none; padding: 0.72rem 1.5rem; border-radius: 50px; font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; transition: all 0.3s; font-family: 'Montserrat', sans-serif; }
.btn-download-modal:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(10,35,66,0.2); }

/* ===== BUHASCHOOL ===== */
.buhaschool-section { padding: 4rem 0; background: var(--light); }
.buhaschool-hero { background: var(--primary); border-radius: 24px; padding: 2.5rem 2rem; color: #fff; position: relative; overflow: hidden; margin-bottom: 2.5rem; }
.buhaschool-hero::before { content: ''; position: absolute; top: -60px; right: -60px; width: 220px; height: 220px; border: 40px solid rgba(201,169,89,0.08); border-radius: 50%; pointer-events: none; }
.buhaschool-hero::after { content: ''; position: absolute; bottom: -80px; left: -30px; width: 280px; height: 280px; border: 50px solid rgba(255,255,255,0.03); border-radius: 50%; pointer-events: none; }
.buhaschool-hero-inner { position: relative; z-index: 2; }
.buhaschool-logo-wrap { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 1rem; }
.buhaschool-logo-img { width: 90px; height: 90px; object-fit: contain; border-radius: 50%; border: 2px solid rgba(201,169,89,0.4); background: rgba(255,255,255,0.05); padding: 4px; flex-shrink: 0; }
.school-badge { display: inline-flex; align-items: center; gap: 0.5rem; border: 1px solid rgba(201,169,89,0.35); border-radius: 50px; padding: 0.32rem 0.9rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--secondary); }
.buhaschool-hero h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; margin-bottom: 0.7rem; line-height: 1.2; }
.buhaschool-hero h3 span { color: var(--secondary); }
.buhaschool-hero p { opacity: 0.82; font-size: 0.9rem; line-height: 1.78; max-width: 640px; margin-bottom: 1.8rem; font-weight: 300; }
.school-stats { display: flex; flex-wrap: wrap; gap: 2rem; }
.stat-item .stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--secondary); display: block; line-height: 1; }
.stat-item .stat-label { font-size: 0.7rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 1px; display: block; margin-top: 0.2rem; }
.school-programs-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
.program-card { background: #fff; border-radius: 16px; padding: 1.5rem; border: 1px solid var(--gray-light); box-shadow: var(--shadow-sm); transition: 0.35s; }
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(201,169,89,0.25); }
.program-icon { width: 50px; height: 50px; background: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 1.2rem; color: var(--secondary); }
.program-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 700; color: var(--primary); margin-bottom: 0.45rem; line-height: 1.3; }
.program-card p { font-size: 0.83rem; color: var(--gray); line-height: 1.68; margin-bottom: 0.9rem; }
.program-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.meta-tag { background: var(--light); color: var(--primary-soft); font-size: 0.7rem; font-weight: 600; padding: 0.22rem 0.7rem; border-radius: 50px; display: flex; align-items: center; gap: 0.3rem; border: 1px solid var(--gray-light); }
.meta-tag.gold { background: rgba(201,169,89,0.08); color: var(--secondary-dark); border-color: rgba(201,169,89,0.2); }

.school-programs-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
.program-card { background: #fff; border-radius: 16px; padding: 1.5rem; border: 1px solid var(--gray-light); box-shadow: var(--shadow-sm); transition: 0.35s; }
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(201,169,89,0.25); }
.program-icon { width: 50px; height: 50px; background: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 1.2rem; color: var(--secondary); }
.program-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 700; color: var(--primary); margin-bottom: 0.45rem; line-height: 1.3; }
.program-card p { font-size: 0.83rem; color: var(--gray); line-height: 1.68; margin-bottom: 0.9rem; }
.program-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.meta-tag { background: var(--light); color: var(--primary-soft); font-size: 0.7rem; font-weight: 600; padding: 0.22rem 0.7rem; border-radius: 50px; display: flex; align-items: center; gap: 0.3rem; border: 1px solid var(--gray-light); }
.meta-tag.gold { background: rgba(201,169,89,0.08); color: var(--secondary-dark); border-color: rgba(201,169,89,0.2); }

/* ===== LAW OFFICE ===== */
.lawoffice-section { padding: 4rem 0; background: #fff; }
.lawoffice-intro { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2.5rem; align-items: center; }
.lawoffice-text .tagline { font-size: 0.7rem; color: var(--secondary-dark); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.7rem; }
.lawoffice-text .tagline::before { content: ''; width: 24px; height: 2px; background: var(--secondary); border-radius: 2px; flex-shrink: 0; }
.lawoffice-text h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 700; color: var(--primary); margin-bottom: 0.8rem; line-height: 1.25; }
.lawoffice-text h3 span { color: var(--secondary-dark); }
.lawoffice-text p { font-size: 0.88rem; color: var(--gray); line-height: 1.82; margin-bottom: 0.7rem; }
.lawoffice-visual { background: var(--primary); border-radius: 20px; padding: 2rem; color: #fff; position: relative; overflow: hidden; }
.lawoffice-visual::before { content: '"'; position: absolute; top: -24px; right: 16px; font-size: 9rem; color: rgba(201,169,89,0.1); font-family: Georgia, serif; line-height: 1; pointer-events: none; }
.lawoffice-quote { position: relative; z-index: 2; font-size: 1rem; line-height: 1.75; font-style: italic; opacity: 0.88; margin-bottom: 0.8rem; }
.lawoffice-quote-author { font-size: 0.72rem; color: var(--secondary); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }

.services-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.service-card { background: var(--light); border-radius: 14px; padding: 1.3rem; border: 1px solid var(--gray-light); transition: 0.3s; display: flex; align-items: flex-start; gap: 1rem; }
.service-card:hover { background: #fff; box-shadow: var(--shadow-md); transform: translateY(-5px); border-color: rgba(201,169,89,0.2); }
.service-icon { width: 46px; height: 46px; background: #fff; border: 1px solid var(--gray-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--primary); flex-shrink: 0; transition: 0.3s; }
.service-card:hover .service-icon { background: var(--primary); color: var(--secondary); border-color: var(--primary); }
.service-info h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 0.3rem; }
.service-info p { font-size: 0.8rem; color: var(--gray); line-height: 1.65; }

/* ===== BERITA ===== */
.berita-section { padding: 4rem 0; background: var(--light); }
.berita-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2rem; }
.berita-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); transition: 0.35s; border: 1px solid var(--gray-light); display: flex; flex-direction: column; }
.berita-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.berita-poster { position: relative; height: 210px; overflow: hidden; flex-shrink: 0; }
.berita-poster img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.berita-card:hover .berita-poster img { transform: scale(1.05); }
.berita-kategori { position: absolute; top: 10px; left: 10px; background: var(--primary); color: var(--secondary); padding: 0.25rem 0.85rem; border-radius: 50px; font-size: 0.68rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.berita-content { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.berita-meta { display: flex; flex-wrap: wrap; gap: 0.75rem; color: var(--gray); font-size: 0.72rem; margin-bottom: 0.7rem; }
.berita-meta i { color: var(--primary-soft); margin-right: 0.2rem; }
.berita-content h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 700; color: var(--primary); margin-bottom: 0.65rem; line-height: 1.35; }
.berita-content p { font-size: 0.82rem; color: var(--gray); flex: 1; line-height: 1.7; margin-bottom: 1rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.berita-footer { display: flex; flex-direction: column; gap: 0.7rem; margin-top: auto; padding-top: 0.9rem; border-top: 1px solid var(--gray-light); }
.btn-berita { text-decoration: none; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; transition: 0.25s; cursor: pointer; border: none; background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%); color: #fff; font-size: 0.78rem; width: 100%; font-family: 'Montserrat', sans-serif; padding: 0.6rem 1.2rem; border-radius: 50px; letter-spacing: 0.3px; box-shadow: 0 4px 14px rgba(201,169,89,0.25); }
.btn-berita:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(201,169,89,0.4); gap: 0.75rem; color: #fff; }
.berita-share { display: flex; gap: 0.8rem; justify-content: center; }
.berita-share a { color: var(--gray); transition: 0.25s; font-size: 1.1rem; }
.berita-share a:hover { color: #25D366; transform: translateY(-2px); }

/* ===== MODAL BERITA ===== */
.modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; display: none; align-items: center; justify-content: center; background: rgba(10,35,66,0.75); z-index: 9999; padding: 1rem; overflow-y: auto; }
.modal.active { display: flex; }
.modal-card { width: 100%; max-width: 900px; max-height: 90vh; background: #fff; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; background: #fff; border-bottom: 1px solid var(--gray-light); flex-shrink: 0; }
.modal-header strong { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--primary); padding-right: 1rem; }
.modal-close { background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--gray); transition: all 0.2s; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border-radius: 50%; flex-shrink: 0; }
.modal-close:hover { background: var(--light); color: var(--primary); }
.modal-body { display: grid; grid-template-columns: 1fr; gap: 1rem; padding: 1.25rem; overflow-y: auto; flex: 1; }
.modal-body img { width: 100%; max-height: 260px; object-fit: contain; border-radius: 10px; background: var(--light); padding: 0.5rem; }
.modal-body p { color: var(--gray); line-height: 1.75; font-size: 0.88rem; }
#modalMeta { color: var(--gray); font-size: 0.78rem; margin-top: 0.2rem; }

/* ===== CTA ===== */
.cta-wa { background: var(--primary); color: #fff; padding: 3rem 0; text-align: center; }
.cta-wa h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 700; margin-bottom: 0.6rem; }
.cta-wa p { opacity: 0.8; font-size: 0.95rem; margin-bottom: 1.8rem; font-weight: 300; }
.big-wa-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: #fff; color: var(--primary); padding: 0.85rem 2.2rem; border-radius: 50px; font-size: 1rem; font-weight: 700; box-shadow: 0 10px 30px rgba(0,0,0,0.2); transition: 0.3s; text-decoration: none; }
.big-wa-btn i { font-size: 1.3rem; color: #25D366; }
.big-wa-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(0,0,0,0.25); }

/* ===== FOOTER ===== */
footer { background: #07192b; color: #8fa3b8; padding: 3rem 0 1.2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 1.8rem; margin-bottom: 2rem; }

/* === PERUBAHAN 2: Footer logo pakai logoperadi.PNG — lebih besar & transparan agar logo tampil proporsional === */
.footer-logo {
    width: auto;
    height: 64px;
    max-width: 180px;
    object-fit: contain;
    background: #ffffff;
    padding: 6px 10px;
    border-radius: 8px;
}

.footer-col p { font-size: 0.8rem; line-height: 1.8; margin-top: 0.8rem; }
.footer-col h4 { font-family: 'Cormorant Garamond', serif; color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; position: relative; padding-bottom: 0.5rem; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 32px; height: 2px; background: var(--secondary); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; font-size: 0.82rem; }
.footer-col ul li a { color: #8fa3b8; text-decoration: none; transition: 0.2s; display: flex; align-items: center; gap: 0.5rem; }
.footer-col ul li a:hover { color: var(--secondary); padding-left: 4px; }
.footer-col ul li a i { font-size: 0.65rem; opacity: 0.6; flex-shrink: 0; }
.footer-col ul li > i { flex-shrink: 0; opacity: 0.6; margin-right: 0.3rem; }
.social-links { display: flex; gap: 0.6rem; margin-top: 1rem; flex-wrap: wrap; }
.social-links a { width: 34px; height: 34px; background: rgba(255,255,255,0.07); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; transition: 0.3s; text-decoration: none; font-size: 0.9rem; }
.social-links a:hover { background: var(--secondary); transform: translateY(-3px); color: var(--primary); }
.footer-bottom { text-align: center; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.07); }
.footer-bottom p { font-size: 0.78rem; }

/* ===== WA FLOAT ===== */
.wa-float { position: fixed; bottom: 1.5rem; right: 1.5rem; width: 54px; height: 54px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.55rem; text-decoration: none; box-shadow: 0 6px 24px rgba(37,211,102,0.4); z-index: 900; transition: all 0.3s; animation: pwa 2.5s infinite; }
@keyframes pwa { 0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); } 50% { box-shadow: 0 6px 32px rgba(37,211,102,0.6), 0 0 0 10px rgba(37,211,102,0.07); } }
.wa-float:hover { transform: scale(1.1) translateY(-3px); }

/* ===== ANIM ===== */
@keyframes slideDown { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ===== RESPONSIVE ===== */
@media (min-width: 576px) {
    .hero-buttons { flex-direction: row; width: auto; }
    .btn-primary, .btn-outline { width: auto; }
    .legal-actions { flex-direction: row; }
    .berita-footer { flex-direction: row; justify-content: space-between; align-items: center; }
    .berita-share { justify-content: flex-end; }
}
@media (min-width: 768px) {
    .container { padding: 0 2rem; }
    .hero { min-height: 100vh; }
    .hero h1 { font-size: 3.5rem; }
    .section-header h2 { font-size: 2.4rem; }
    .section-header { margin-bottom: 3rem; }
    .visi-misi-grid { grid-template-columns: repeat(2,1fr); gap: 2rem; }
    .struktur-grid { grid-template-columns: repeat(2,1fr); gap: 2rem; }
    .legal-grid { grid-template-columns: repeat(2,1fr); gap: 1.8rem; }
    .berita-grid { grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
    .lawoffice-intro { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .school-programs-grid { grid-template-columns: repeat(2,1fr); }
    .services-grid { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: repeat(2,1fr); }
    .modal-body { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .modal-body img { max-height: 380px; }
    .modal-content-legal { max-width: 600px; }
    .modal-info-grid { grid-template-columns: 1fr 1fr; }
    .visi-misi-section, .struktur-section, .legalitas-section, .buhaschool-section, .lawoffice-section, .berita-section { padding: 5rem 0; }
    .cta-wa { padding: 4rem 0; }
    .cta-wa h3 { font-size: 2.3rem; }
}
@media (min-width: 1024px) {
    .hero { min-height: 100vh; }
    .hero h1 { font-size: 4.5rem; }
    .section-header h2 { font-size: 2.8rem; }
    .struktur-grid { grid-template-columns: repeat(2,1fr); gap: 2.5rem; max-width: 820px; margin-left: auto; margin-right: auto; }
    .legal-grid { grid-template-columns: repeat(3,1fr); }
    .berita-grid { grid-template-columns: repeat(3,1fr); gap: 2rem; }
    .school-programs-grid { grid-template-columns: repeat(3,1fr); }
    .services-grid { grid-template-columns: repeat(3,1fr); }
    .footer-grid { grid-template-columns: 1.8fr 1fr 1.2fr 1.5fr; gap: 2.5rem; }
    .modal-content-legal { max-width: 700px; }
    .visi-misi-section, .struktur-section, .legalitas-section, .buhaschool-section, .lawoffice-section, .berita-section { padding: 6rem 0; }
    .cta-wa { padding: 5rem 0; }
    .cta-wa h3 { font-size: 2.6rem; }
}
@media (min-width: 1280px) {
    .hero h1 { font-size: 5.2rem; }
    .big-wa-btn { padding: 1.1rem 3.2rem; font-size: 1.08rem; }
}

/* ===== MOBILE NAV ===== */
@media (max-width: 1023px) {
    :root { --navbar-h: 68px; }
    .menu-toggle { display: flex !important; }
    .nav-menu {
        position: fixed; top: 0; right: -100%;
        width: 82%; max-width: 360px; height: 100vh;
        background: #fff;
        box-shadow: -5px 0 28px rgba(10,35,66,0.12);
        transition: right 0.25s cubic-bezier(0.4,0,0.2,1);
        z-index: 1000; overflow-y: auto;
        padding: 78px 0 28px;
        border-left: 1px solid var(--gray-light);
    }
    .nav-menu.active { right: 0; }
    .nav-list { flex-direction: column; align-items: flex-start; gap: 0; padding: 0 1.4rem; width: 100%; }
    .nav-item { width: 100%; border-bottom: 1px solid var(--gray-light); }
    .nav-item:last-child { border-bottom: none; }
    .nav-link { width: 100%; padding: 0.9rem 0; font-size: 0.92rem; justify-content: space-between; }
    .dropdown-menu {
        position: static; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; padding: 0; margin: 0; border: none; background: none;
        overflow: hidden; width: 100%; border-radius: 0;
        max-height: 0;
        transition: max-height 0.18s cubic-bezier(0.4,0,1,1), padding 0.18s cubic-bezier(0.4,0,1,1);
    }
    .dropdown.active .dropdown-menu {
        max-height: 260px; padding: 0.4rem 0 0.7rem 0.8rem;
        transition: max-height 0.25s cubic-bezier(0,0,0.2,1), padding 0.25s cubic-bezier(0,0,0.2,1);
    }
    .dropdown-item { padding: 0.6rem 0.8rem; font-size: 0.85rem; border-radius: 8px; margin-bottom: 2px; }
    .chat-item { margin: 1.2rem 0 0.4rem; border-bottom: none; }
    .chat-btn { width: 100%; justify-content: center; padding: 0.85rem !important; font-size: 0.9rem; }

    /* Logo navbar mobile sedikit dikecilkan agar pas */
    .logo-image { width: 148px; height: 50px; }
}

@media (max-width: 480px) {
    .nav-menu { width: 88%; max-width: none; }
    .logo-image { width: 130px; height: 44px; }
    .modal-content-legal { max-width: 96vw; max-height: 96vh; border-radius: 16px; }
    .modal-footer-legal { flex-direction: column; align-items: stretch; }
    .modal-footer-btns { flex-direction: column; }
    .modal-info-grid { grid-template-columns: 1fr; }
    .legal-actions { flex-direction: column; }
    .btn-lv { width: 100%; justify-content: center; }
}

/* ===== EXTRA LEGAL CARD VARIANTS ===== */
.legal-img-navy { background: #1a2a4a; }
.legal-img-white { background: #f8f9fb; border-bottom: 1px solid var(--gray-light); }
.legal-img-doc { background: linear-gradient(145deg, #eef2ff 0%, #e0e8ff 100%); display: flex; align-items: center; justify-content: center; border-bottom: 1px solid #c7d2fe; }
.legal-img-contain { object-fit: contain !important; padding: 1.5rem; }
.legal-badge-blue { background: #1a4a8a !important; color: #93c5fd !important; }
.legal-badge-gold { background: rgba(201,169,89,0.15) !important; color: var(--secondary-dark) !important; border: 1px solid rgba(201,169,89,0.4); }
.legal-badge-doc { background: #2563eb !important; color: #fff !important; }
.legal-doc-preview { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem; width: 100%; height: 100%; padding: 1.5rem; }
.legal-doc-icon { font-size: 2.8rem; color: #2563eb; }
.legal-doc-label { font-size: 0.68rem; font-weight: 800; letter-spacing: 2.5px; color: #2563eb; background: rgba(37,99,235,0.12); padding: 0.2rem 0.75rem; border-radius: 50px; border: 1px solid rgba(37,99,235,0.2); }
.legal-doc-lines { display: flex; flex-direction: column; gap: 0.35rem; width: 100%; margin-top: 0.25rem; }
.ldl { height: 5px; background: rgba(37,99,235,0.12); border-radius: 4px; width: 100%; }
.ldl-title { height: 8px; background: rgba(37,99,235,0.22); }
.ldl-short { width: 68%; }
.ldl-mid { width: 84%; }
.ldl-sm { width: 52%; }

/* ===== MODAL SURAT PERNYATAAN ===== */
.modal-surat { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 2100; }
.modal-surat.active { display: flex; align-items: center; justify-content: center; padding: 1rem; }
.modal-overlay-surat { position: fixed; inset: 0; background: rgba(5,18,40,0.82); backdrop-filter: blur(5px); cursor: pointer; }
.modal-content-surat { position: relative; background: #fff; border-radius: 20px; box-shadow: 0 24px 80px rgba(10,35,66,0.3); width: 100%; max-width: 660px; max-height: 92vh; display: flex; flex-direction: column; animation: slideUp 0.28s cubic-bezier(.4,0,.2,1); z-index: 2101; overflow: hidden; }
.modal-header-surat { display: flex; justify-content: space-between; align-items: flex-start; padding: 1.2rem 1.5rem 1rem; border-bottom: 1px solid var(--gray-light); gap: 1rem; background: linear-gradient(135deg, #eef2ff 0%, #fff 100%); flex-shrink: 0; }
.modal-badge-surat { display: block; background: rgba(37,99,235,0.1); color: #2563eb; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; padding: 0.28rem 0.75rem; border-radius: 50px; border: 1px solid rgba(37,99,235,0.2); margin-bottom: 0.35rem; }
.modal-header-surat h2 { font-family: 'Cormorant Garamond', serif; color: var(--primary); font-size: 1.05rem; font-weight: 700; line-height: 1.3; margin: 0; }
.modal-close-surat { background: none; border: 1px solid var(--gray-light); color: var(--gray); font-size: 1rem; cursor: pointer; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 8px; transition: all 0.2s; flex-shrink: 0; }
.modal-close-surat:hover { background: #fee2e2; color: #dc2626; border-color: #fca5a5; }
.modal-body-surat { flex: 1; overflow-y: auto; padding: 1.25rem 1.5rem; background: #fafbff; }
.modal-footer-surat { padding: 0.9rem 1.5rem; border-top: 1px solid var(--gray-light); display: flex; align-items: center; justify-content: space-between; gap: 1rem; background: #fff; flex-wrap: wrap; flex-shrink: 0; }
.surat-note { font-size: 0.7rem; color: var(--gray); display: flex; align-items: center; gap: 0.4rem; flex: 1; }
.surat-note i { color: #2563eb; flex-shrink: 0; }
.surat-preview { background: #fff; border: 1px solid #e2e8f0; border-radius: 10px; padding: 1.75rem; font-size: 0.8rem; line-height: 1.85; color: #1e293b; }
.surat-kop { text-align: center; margin-bottom: 1.25rem; padding-bottom: 0.9rem; border-bottom: 2px solid var(--primary); }
.surat-judul { font-size: 1rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--primary); margin-bottom: 0.2rem; }
.surat-subjudul { font-size: 0.75rem; font-weight: 600; color: var(--primary-soft); }
.surat-intro { margin-bottom: 0.75rem; }
.surat-identitas { margin-bottom: 1rem; padding: 0.75rem 0.9rem; background: #f8faff; border-radius: 8px; border-left: 3px solid var(--primary); }
.si-row { display: flex; gap: 0.5rem; margin-bottom: 0.25rem; align-items: baseline; flex-wrap: wrap; }
.si-label { font-weight: 600; min-width: 155px; font-size: 0.75rem; color: var(--primary); flex-shrink: 0; }
.si-sep { font-weight: 600; flex-shrink: 0; }
.si-val { flex: 1; min-width: 100px; }
.si-blank { color: #94a3b8; font-style: italic; border-bottom: 1px dashed #cbd5e1; }
.surat-isi ol { padding-left: 1.2rem; margin: 0.5rem 0 0.75rem; }
.surat-isi ol li { margin-bottom: 0.4rem; }
.surat-isi p { margin-bottom: 0.55rem; }
.surat-ttd { display: flex; justify-content: flex-end; margin-top: 1.5rem; }
.surat-ttd-right { text-align: center; min-width: 200px; }
.surat-materai { border: 2px dashed #94a3b8; border-radius: 8px; width: 88px; height: 54px; display: flex; align-items: center; justify-content: center; margin: 0.6rem auto; font-size: 0.62rem; color: #94a3b8; font-style: italic; }
.surat-nama-ttd { border-bottom: 1px solid #1e293b; padding-bottom: 0.2rem; margin: 0.5rem 0 0.25rem; }

@media (max-width: 480px) {
    .modal-content-surat { max-width: 96vw; max-height: 96vh; border-radius: 14px; }
    .modal-footer-surat { flex-direction: column; align-items: stretch; }
    .modal-footer-surat .btn-lv { width: 100%; justify-content: center; }
    .si-label { min-width: 110px; }
}

@media print {
    .navbar, .hero-buttons, .chat-btn, .btn-lv, .berita-share, .social-links, .cta-wa, .modal, .menu-toggle, .nav-backdrop, .wa-float { display: none !important; }
}

/* ===== FOOTER KONTAK ===== */
.footer-col ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
    font-size: 0.82rem;
    line-height: 1.6;
}
.footer-col ul li > i,
.footer-col ul li > .fas,
.footer-col ul li > .fab {
    flex-shrink: 0;
    width: 16px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--secondary);
    opacity: 1;
    margin-top: 0.18rem;
}
.footer-col ul li span,
.footer-col ul li a {
    flex: 1;
    min-width: 0;
    color: #8fa3b8;
    font-size: 0.8rem;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--secondary); }
.footer-col ul li span[style] { color: #8fa3b8 !important; font-size: 0.8rem !important; }
.footer-col ul li a i {
    width: auto;
    font-size: 0.65rem;
    color: #8fa3b8;
    opacity: 0.6;
    margin-top: 0;
    flex-shrink: 0;
}