/* ==========================================
   SD NEGERI PENGADILAN 1 - BOGOR
   Professional School Website CSS
   ========================================== */

:root {
    --primary: #0d6efd;
    --primary-dark: #0a58ca;
    --secondary: #ffc107;
    --accent: #00b894;
    --dark: #0f172a;
    --gray: #64748b;
    --light: #f8fafc;
    --border: #e2e8f0;
    --radius: 14px;
    --shadow: 0 4px 20px rgba(15, 23, 42, .08);
    --shadow-lg: 0 12px 40px rgba(15, 23, 42, .12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
    color: var(--dark);
    background: #fff;
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: .25s; }
a:hover { color: var(--primary-dark); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ============ TOPBAR ============ */
.topbar {
    background: var(--dark);
    color: #cbd5e1;
    font-size: 13px;
    padding: 10px 0;
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.topbar-info {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
}
.topbar-info > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
    color: #cbd5e1;
}
.topbar-info svg { opacity: .85; flex-shrink: 0; color: var(--secondary); }
.topbar-social { display: flex; gap: 10px; }
.topbar-social a {
    color: #fff;
    background: rgba(255,255,255,.1);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    transition: .25s;
}
.topbar-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-1px);
}

/* ============ HEADER ============ */
.header {
    background: #fff;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 18px;
    border-radius: 12px;
    flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-size: 16px; color: var(--dark); }
.brand-text small { font-size: 12px; color: var(--gray); }

.nav ul { display: flex; gap: 4px; list-style: none; }
.nav a {
    padding: 8px 14px;
    color: var(--dark);
    font-weight: 500;
    font-size: 14px;
    border-radius: 8px;
    display: block;
}
.nav a:hover { background: var(--light); color: var(--primary); }
.nav a.active { background: var(--primary); color: #fff !important; font-weight: 600; }

.btn-cta { padding: 10px 18px !important; font-size: 14px; }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark);
    padding: 6px;
    border-radius: 8px;
}
.menu-toggle:hover { background: var(--light); }
.menu-toggle svg { display: block; }

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: .25s;
    text-align: center;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: var(--dark); color: #fff; }

/* ============ BREADCRUMB ============ */
.breadcrumb-wrap {
    background: #fff;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}
.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-weight: 500;
}
.breadcrumb li:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid #cbd5e1;
    border-bottom: 2px solid #cbd5e1;
    transform: rotate(-45deg);
    margin-left: 4px;
}
.breadcrumb a {
    color: var(--primary);
    font-weight: 600;
    transition: .2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.breadcrumb a svg { width: 12px; height: 12px; opacity: .7; }
.breadcrumb a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}
.breadcrumb li:last-child span {
    color: var(--dark);
    font-weight: 600;
}

/* ============ HERO ============ */
.hero {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #eef4ff 0%, #f0fdfa 100%);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(13,110,253,.12), transparent 40%),
                      radial-gradient(circle at 80% 70%, rgba(0,184,148,.12), transparent 40%);
    pointer-events: none;
}
.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
}
.badge {
    display: inline-block;
    background: rgba(13,110,253,.12);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}
.hero h1 {
    font-size: clamp(28px, 4.5vw, 48px);
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -.5px;
}
.hero h1 span { color: var(--primary); }
.hero p { color: var(--gray); font-size: 17px; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding-top: 24px;
    border-top: 2px solid rgba(13,110,253,.15);
}
.hero-stats div { text-align: center; }
.hero-stats strong { display: block; font-size: 24px; color: var(--primary); font-weight: 800; }
.hero-stats span { font-size: 12px; color: var(--gray); }

.hero-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border-top: 6px solid var(--secondary);
}
.hero-card-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(13,110,253,.12), rgba(0,184,148,.12));
    border-radius: 24px;
    color: var(--primary);
}
.hero-card-icon svg { width: 64px; height: 64px; }
.hero-card h3 { font-size: 24px; margin-bottom: 8px; color: var(--dark); }
.hero-card p { color: var(--gray); font-size: 14px; }

/* ============ SECTIONS ============ */
.section { padding: 80px 0; }
.section-alt { background: var(--light); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.kicker {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}
.section-head h2, .section h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    line-height: 1.25;
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -.5px;
}
.section-head p { color: var(--gray); font-size: 16px; }

.intro-text { max-width: 900px; margin: 0 auto; }
.intro-text p { color: #334155; font-size: 17px; margin-bottom: 18px; line-height: 1.8; }
.intro-text a { font-weight: 600; }

.page-intro { max-width: 800px; margin: 0 auto 50px; text-align: center; }
.page-intro p { color: var(--gray); font-size: 16px; line-height: 1.7; }

/* ============ GRID & CARDS ============ */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }

.feature { text-align: center; }
.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(13,110,253,.1), rgba(0,184,148,.1));
    border-radius: 18px;
    color: var(--primary);
    transition: .3s;
}
.feature:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    transform: scale(1.05) rotate(5deg);
}
.feature h3 { font-size: 18px; margin-bottom: 10px; }
.feature p { color: var(--gray); font-size: 14px; }

.fasilitas-card { text-align: center; }
.fasilitas-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(13,110,253,.1), rgba(0,184,148,.1));
    border-radius: 18px;
    color: var(--primary);
    transition: .3s;
}
.fasilitas-card:hover .fasilitas-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    transform: scale(1.05) rotate(-5deg);
}
.fasilitas-card h3 { font-size: 16px; margin-bottom: 8px; }
.fasilitas-card p { font-size: 13px; color: var(--gray); }

/* ============ GURU PAGE ============ */
.guru-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.guru-card {
    text-align: center;
    padding: 32px 20px 24px;
    position: relative;
    overflow: hidden;
}
.guru-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: .08;
    z-index: 0;
}
.guru-card > * { position: relative; z-index: 1; }

.guru-avatar {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    margin: 0 auto 18px;
    border: 4px solid #fff;
    box-shadow: 0 6px 20px rgba(13,110,253,.25);
    transition: .3s;
}
.guru-card:hover .guru-avatar {
    transform: scale(1.08);
    box-shadow: 0 10px 28px rgba(13,110,253,.4);
}

.guru-card h3 {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    color: var(--dark);
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guru-jabatan {
    display: inline-block;
    background: rgba(13,110,253,.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.guru-card .guru-mapel {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px dashed var(--border);
}

.guru-card.kepsek {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, #fff 0%, #f0f7ff 100%);
}
.guru-card.kepsek .guru-jabatan {
    background: var(--primary);
    color: #fff;
}
.guru-card.kepsek::after {
    content: 'KEPALA SEKOLAH';
    position: absolute;
    top: 16px;
    right: -32px;
    background: var(--secondary);
    color: var(--dark);
    padding: 4px 40px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    transform: rotate(45deg);
    z-index: 2;
}

/* ============ BERITA ============ */
.berita-card { padding: 0; overflow: hidden; }
.berita-thumb {
    height: 180px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    position: relative;
}
.badge-kategori {
    position: absolute;
    top: 14px; left: 14px;
    background: #fff;
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}
.berita-body { padding: 22px; }
.berita-body time { color: var(--gray); font-size: 12px; display: block; margin-bottom: 8px; }
.berita-body h3 { font-size: 17px; line-height: 1.4; margin-bottom: 10px; }
.berita-body h3 a { color: var(--dark); }
.berita-body h3 a:hover { color: var(--primary); }
.berita-body p { color: var(--gray); font-size: 14px; margin-bottom: 14px; }
.link-more { font-weight: 600; font-size: 14px; }
.link-more::after { content: ' \2192'; }

.galeri-card { padding: 0; overflow: hidden; }
.galeri-thumb {
    height: 200px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    position: relative;
}
.galeri-card h3 { padding: 18px; font-size: 15px; }

/* ============ PAGE HERO ============ */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 70px 0 60px;
    text-align: center;
}
.page-hero h1 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 12px; font-weight: 800; }
.page-hero p { opacity: .9; font-size: 16px; }

/* ============ CTA SECTION ============ */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff;
    padding: 60px 0;
}
.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.cta-inner h2 { font-size: clamp(22px, 3vw, 32px); margin-bottom: 8px; }
.cta-inner p { opacity: .95; }

/* ============ FAQ ============ */
.faq { max-width: 800px; margin: 0 auto; }
.faq details {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 22px;
    margin-bottom: 12px;
    transition: .25s;
}
.faq details[open] { box-shadow: var(--shadow); border-color: var(--primary); }
.faq summary {
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    color: var(--dark);
    list-style: none;
    position: relative;
    padding-right: 30px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 22px;
    color: var(--primary);
    transition: .25s;
}
.faq details[open] summary::after { content: '\2212'; }
.faq p { margin-top: 12px; color: var(--gray); font-size: 15px; }

/* ============ AREA TAGS ============ */
.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.area-tags .tag {
    background: var(--light);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--border);
    transition: .25s;
}
.area-tags .tag:hover { background: var(--primary); color: #fff; }

/* ============ PROFIL / VISI-MISI ============ */
.profil-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }
.profil-card { background: var(--light); padding: 32px; border-radius: var(--radius); border: 1px solid var(--border); }
.profil-card h3 { margin-bottom: 20px; font-size: 20px; }

.profil-side-card {
    background: #fff;
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    margin-bottom: 20px;
}
.profil-side-card h3 { font-size: 18px; margin-bottom: 12px; color: var(--primary); }
.profil-side-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }

.info-list { list-style: none; }
.info-list li {
    display: flex; justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed var(--border);
    gap: 12px;
    font-size: 14px;
}
.info-list li:last-child { border-bottom: none; }
.info-list li span { color: var(--gray); }
.info-list li strong { text-align: right; color: var(--dark); }

.vm-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 30px; }
.vm-card { padding: 40px 30px; }
.vm-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(13,110,253,.1), rgba(0,184,148,.1));
    border-radius: 20px;
    color: var(--primary);
}
.vm-card h2 { margin-bottom: 16px; }
.vm-card p { color: var(--gray); font-size: 17px; line-height: 1.7; }
.vm-list { padding-left: 20px; }
.vm-list li { margin-bottom: 10px; color: var(--gray); }

/* ============ PPDB ============ */
.ppdb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 50px; }
.ppdb-info h2 { font-size: 20px; margin-bottom: 18px; color: var(--primary); }
.ppdb-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
}
.ppdb-cta h2 { margin-bottom: 10px; }
.ppdb-cta p { opacity: .9; margin-bottom: 0; }

/* ============ KONTAK ============ */
.kontak-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 30px; }
.kontak-card h2 { margin-bottom: 20px; font-size: 20px; }
.kontak-map { padding: 0; overflow: hidden; min-height: 400px; }
.kontak-map iframe { width: 100%; height: 100%; min-height: 400px; border: 0; display: block; }

/* ============ ARTICLE ============ */
.article-container { max-width: 800px; }
.article { font-size: 17px; line-height: 1.9; color: #334155; margin-bottom: 30px; }
.article p { margin-bottom: 18px; }

/* ============ SITEMAP ============ */
.sitemap { list-style: none; columns: 2; column-gap: 40px; }
.sitemap li { padding: 8px 0; break-inside: avoid; font-size: 15px; }

.center { text-align: center; margin-top: 40px; }

/* ============ FOOTER ============ */
.footer { background: var(--dark); color: #cbd5e1; padding: 60px 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-col h4 { color: #fff; font-size: 16px; margin-bottom: 20px; font-weight: 700; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; font-size: 14px; }
.footer-col ul li a { color: #cbd5e1; display: inline-block; }
.footer-col ul li a:hover { color: var(--secondary); padding-left: 4px; }
.footer-col p { font-size: 14px; margin-bottom: 12px; line-height: 1.6; }

.brand-footer { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.brand-footer .brand-logo {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 18px;
    border-radius: 12px;
    flex-shrink: 0;
}
.brand-footer .brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-footer .brand-text strong { color: #fff; font-size: 16px; font-weight: 700; }
.brand-footer .brand-text small { color: #94a3b8; font-size: 12px; }
.footer-meta { font-size: 13px; color: #94a3b8; margin-top: 8px; }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #cbd5e1;
}
.footer-contact .fc-icon { flex-shrink: 0; margin-top: 3px; color: var(--secondary); opacity: .9; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.footer-bottom-inner {
    display: flex; justify-content: space-between;
    gap: 16px; flex-wrap: wrap;
    font-size: 13px; color: #94a3b8;
}
.footer-bottom-inner p { margin: 0; }

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
    z-index: 9999;
    transition: all .3s ease;
    text-decoration: none;
    line-height: 1;
}
.wa-float svg { width: 32px; height: 32px; display: block; fill: currentColor; }
.wa-float:hover {
    transform: scale(1.1);
    color: #fff !important;
    box-shadow: 0 12px 32px rgba(37, 211, 102, .6);
}
.wa-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(37, 211, 102, .3);
    animation: waPulse 2s infinite;
    z-index: -1;
}
@keyframes waPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-image { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .vm-grid { grid-template-columns: 1fr; }
    .profil-grid { grid-template-columns: 1fr; }
    .kontak-grid { grid-template-columns: 1fr; }
    .ppdb-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav {
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #fff;
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s;
    }
    .nav.open { max-height: 600px; }
    .nav ul { flex-direction: column; padding: 16px; gap: 4px; }
    .nav a { display: block; padding: 12px 16px; font-size: 15px; }
    .menu-toggle { display: block; }
    .btn-cta { display: none; }

    .hero { padding: 50px 0; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .section { padding: 50px 0; }
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .ppdb-grid { grid-template-columns: 1fr; }
    .footer { padding: 40px 0 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; padding-bottom: 30px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; gap: 8px; }
    .sitemap { columns: 1; }
    .cta-inner { flex-direction: column; text-align: center; }
    .topbar-info span:last-child { display: none; }
    .wa-float { bottom: 16px; right: 16px; width: 54px; height: 54px; }
    .wa-float svg { width: 28px; height: 28px; }
}