:root {
    --primary: #0e5e43;
    --primary-light: #12805c;
    --primary-accent: #10b981;
    --primary-dark: #083827;
    --primary-deep: #062319;
    --primary-soft: #edf9f4;
    --accent-gold: #eab308;
    --accent-mint: #a7f3d0;
    --text-main: #1e293b;
    --text-body: #475569;
    --text-muted: #8492a6;
    --bg-light: #f8fafc;
    --border-light: #e2e8f0;
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --font-serif: 'Merriweather', Georgia, serif;
    --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.06), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.09);
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--text-body);
    background-color: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Top Navbar */
.navbar-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.85);
    transition: all 0.3s ease;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 82px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-img {
    height: 51px;
    max-height: 52px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 34px;
}

.nav-menu li a {
    font-size: 14.5px;
    font-weight: 500;
    color: #334155;
    position: relative;
    padding: 8px 0;
    transition: color 0.2s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 2.5px;
    background-color: var(--primary);
    border-radius: 4px;
}

.btn-hubungi {
    background-color: var(--primary-dark);
    color: #ffffff !important;
    border-radius: var(--radius-full);
    padding: 10px 24px;
    font-size: 13.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(8, 56, 39, 0.25);
}

.btn-hubungi:hover {
    background-color: var(--primary-deep);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(8, 56, 39, 0.35);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-dark);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 520px;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 95px 20px 150px;
    overflow: hidden;
}

/* Hero Wave & Organic Edge Ornament */
.hero-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    pointer-events: none;
    z-index: 1;
}

.hero-wave-bottom svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-corner-leaf-left {
    position: absolute;
    left: -40px;
    bottom: 20px;
    width: 220px;
    opacity: 0.15;
    pointer-events: none;
}

.hero-corner-leaf-right {
    position: absolute;
    right: -40px;
    bottom: 20px;
    width: 220px;
    opacity: 0.15;
    transform: scaleX(-1);
    pointer-events: none;
}

.hero-content {
    max-width: 840px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.hero-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-mint);
    margin-bottom: 12px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    color: #ffffff;
    text-transform: uppercase;
}

.hero-desc {
    font-size: 16px;
    color: #e2e8f0;
    line-height: 1.65;
    max-width: 700px;
    margin: 0 auto 34px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background-color: var(--primary-accent);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: var(--radius-full);
    font-size: 14.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.45);
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.55);
    color: #ffffff;
}

.btn-hero-glass {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-size: 14.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-hero-glass:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: #ffffff;
}

/* Floating Stats Counter Card */
.stats-wrapper {
    position: relative;
    margin-top: -65px;
    z-index: 20;
    margin-bottom: 50px;
}

.stats-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 32px 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    border: 1px solid rgba(241, 245, 249, 0.85);
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: var(--border-light);
}

.stat-svg-icon {
    width: 48px;
    height: 48px;
    color: var(--primary);
    flex-shrink: 0;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
}

/* Section Headings */
.section-tag {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: inline-block;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 34px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.25;
    letter-spacing: -0.3px;
}

.section-title .highlight-green {
    color: var(--primary);
    font-family: var(--font-serif);
}

.section-desc {
    font-size: 14.5px;
    color: var(--text-body);
    line-height: 1.6;
    margin-top: 6px;
}

.btn-section-dark {
    background-color: var(--primary-dark);
    color: #ffffff;
    border-radius: var(--radius-full);
    padding: 10px 24px;
    font-size: 13.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-section-dark:hover {
    background-color: var(--primary-deep);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(8, 56, 39, 0.25);
    color: #ffffff;
}

/* Section: Tentang Kami */
.about-section {
    padding: 40px 0 90px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .section-title {
    margin-bottom: 18px;
}

.about-paragraph {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-body);
    text-align: justify;
    margin-bottom: 28px;
}

.about-visual {
    position: relative;
}

.about-image-card {
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #ffffff;
    height: 380px;
    position: relative;
}

.about-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Realistic Floating Quote Card with 3D Leaf */
.quote-float-card {
    position: absolute;
    bottom: -25px;
    left: -25px;
    background: #ffffff;
    border-radius: 20px;
    padding: 22px 28px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(241, 245, 249, 0.9);
    max-width: 340px;
    z-index: 10;
}

.quote-float-card .quote-mark-icon {
    color: var(--primary);
    font-size: 26px;
    line-height: 1;
    margin-bottom: 8px;
}

.quote-float-card p {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.55;
}

/* Realistic 3D Leaf Pernak-Pernik */
.leaf-ornament-wrap {
    position: absolute;
    right: -25px;
    bottom: -15px;
    width: 75px;
    height: 75px;
    pointer-events: none;
    filter: drop-shadow(0 10px 15px rgba(14, 94, 67, 0.35));
}

/* Section: Lembaga Pendidikan / Sekolah */
.schools-section {
    background-color: var(--bg-light);
    padding: 85px 0;
}

.section-header-flex {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 20px;
}

.schools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.school-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
}

.school-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-accent);
    box-shadow: var(--shadow-md);
}

.school-card-main {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.school-logo-wrap {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 10px;
    padding: 4px;
    border: 1px solid #edf2f7;
}

.school-logo-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.school-info {
    flex: 1;
    min-width: 0;
}

.school-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
}

.school-meta {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.school-arrow {
    color: #cbd5e1;
    font-size: 13px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.school-card:hover .school-arrow {
    color: var(--primary);
    transform: translateX(3px);
}

/* Section: Unit Usaha with Mosque Silhouette & Leaves Pattern */
.unit-section {
    padding: 50px 0 80px;
}

.unit-banner {
    background: linear-gradient(135deg, #0f583e 0%, #0d4d36 50%, #073324 100%);
    border-radius: 28px;
    padding: 48px 50px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(8, 56, 39, 0.25);
}

/* Silhouette Islamic Architectural Skyline Pattern */
.unit-skyline-bg {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 45%;
    opacity: 0.12;
    pointer-events: none;
    background-size: cover;
    background-position: right center;
}

/* Stylized Golden/Green Twin Leaves on Left */
.unit-leaves-ornament {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 90px;
    height: 90px;
    opacity: 0.85;
    pointer-events: none;
}

.unit-banner-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    gap: 36px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.unit-left {
    padding-left: 55px;
}

.unit-left .section-tag {
    color: var(--accent-mint);
}

.unit-left .section-title {
    color: #ffffff;
    margin-bottom: 8px;
    font-family: var(--font-serif);
}

.unit-left .section-desc {
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 24px;
    font-size: 14px;
}

.btn-unit-dark {
    background-color: #062319;
    color: #ffffff;
    border-radius: var(--radius-full);
    padding: 10px 24px;
    font-size: 13.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-unit-dark:hover {
    background-color: #03140e;
    transform: translateY(-2px);
    color: #ffffff;
}

.unit-card-center {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.unit-card-center:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

.unit-logo-flex {
    display: flex;
    align-items: center;
    gap: 14px;
}

.unit-berdaya-img {
    max-height: 50px;
    max-width: 170px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.unit-arrow-icon {
    color: var(--primary);
    font-size: 18px;
}

.unit-quote-right {
    text-align: center;
    padding: 10px 20px;
    position: relative;
}

.unit-quote-icon {
    font-size: 28px;
    color: var(--accent-mint);
    opacity: 0.85;
    margin-bottom: 6px;
    line-height: 1;
}

.unit-quote-right p {
    font-size: 15.5px;
    font-weight: 500;
    line-height: 1.6;
    color: #ffffff;
}

/* Section: Berita & Kegiatan */
.news-section {
    padding: 40px 0 90px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.news-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-accent);
    box-shadow: var(--shadow-lg);
}

.news-thumb-wrap {
    margin: 12px;
    border-radius: 14px;
    overflow: hidden;
    height: 400px;
    background: #f1f5f9;
    position: relative;
}

.news-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover .news-thumb-wrap img {
    transform: scale(1.05);
}

/* Special Quote Banner for News Card 2 */
.news-quote-banner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #106f4e 0%, #0b4f37 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: #ffffff;
    position: relative;
}

.news-quote-banner .quote-gold-icon {
    color: var(--accent-gold);
    font-size: 22px;
    margin-bottom: 6px;
}

.news-quote-banner p {
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.5;
    color: #ffffff;
}

.news-quote-banner .quote-gold-icon-bottom {
    color: var(--accent-gold);
    font-size: 16px;
    position: absolute;
    right: 18px;
    bottom: 12px;
}

.news-card-body {
    padding: 4px 20px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 6px;
}

.news-title {
    font-family: var(--font-heading);
    font-size: 16.5px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-excerpt {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-readmore {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.news-card:hover .news-readmore {
    gap: 10px;
}

/* Footer with Islamic Geometric Pattern */
.footer-main {
    background-color: var(--primary-deep);
    color: #94a3b8;
    padding: 70px 0 0;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

/* Islamic Geometric Girih/Star Pattern Watermark on Right */
.footer-islamic-pattern {
    position: absolute;
    right: -60px;
    top: -60px;
    bottom: 0;
    width: 480px;
    opacity: 0.08;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1.2fr 1.1fr;
    gap: 48px;
    padding-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-brand .footer-logo-wrap {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    /*background: #ffffff;*/
    /*padding: 8px 14px;*/
    /*border-radius: 12px;*/
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease;
}

.footer-logo-img:hover {
    transform: scale(1.02);
}

.footer-slogan {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 22px;
    max-width: 320px;
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 15px;
    transition: all 0.25s ease;
}

.footer-social-btn:hover {
    background: var(--primary-accent);
    transform: translateY(-3px);
    color: #ffffff;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.2px;
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #cbd5e1;
    font-size: 13.5px;
    line-height: 1.5;
}

.footer-contact-item i {
    color: var(--accent-mint);
    font-size: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-map-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-map-card iframe {
    width: 100%;
    height: 150px;
    border: 0;
    display: block;
}

.footer-map-btn-wrap {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
}

.btn-map-link {
    background-color: var(--primary-dark);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
}

.btn-map-link:hover {
    background-color: var(--primary-accent);
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    position: relative;
    z-index: 2;
}

.footer-bottom-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #94a3b8;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-bottom-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
}

.footer-bottom-nav a {
    color: #cbd5e1;
    transition: color 0.2s ease;
}

.footer-bottom-nav a:hover {
    color: var(--accent-mint);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .schools-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-visual {
        max-width: 600px;
        margin: 0 auto;
    }

    .unit-banner-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .unit-left {
        padding-left: 0;
    }

    .unit-left .btn-unit-dark {
        margin: 0 auto;
    }

    .unit-leaves-ornament {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .navbar-content {
        height: 70px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 20px 24px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid var(--border-light);
        gap: 16px;
        align-items: flex-start;
    }

    .nav-menu.show {
        display: flex;
    }

    .btn-hubungi {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-desc {
        font-size: 14px;
    }

    .stats-card {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 18px;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .stat-item {
        justify-content: flex-start;
    }

    .schools-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-bottom-nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px;
    }

    .quote-float-card {
        left: 10px;
        bottom: 10px;
        max-width: calc(100% - 20px);
    }
}

@media (max-width: 520px) {
    .schools-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }
}


.img-footer {
    height: 70vh;
    opacity: .2;
    position: absolute;
    bottom: 0;
    right: 0;
}

.unit-banner:before {
    background: linear-gradient(135deg, #0f583eed 0%, #0d4d36c9 50%, #073324ed 100%);
    position: absolute;
    content: "";
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   PPDB (Penerimaan Peserta Didik Baru) Styles - Unified with Home Design System
   ========================================================================== */

.ppdb-hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-dark) 50%, var(--primary) 100%);
    color: #ffffff;
    padding: 60px 20px 100px;
    text-align: center;
    overflow: hidden;
}

.ppdb-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.ppdb-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-mint);
    background: rgba(167, 243, 208, 0.12);
    border: 1px solid rgba(167, 243, 208, 0.25);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.ppdb-hero-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #ffffff;
}

.ppdb-hero-desc {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto;
}

/* PPDB Section */
.ppdb-section {
    padding: 50px 0 80px;
    background-color: var(--bg-light);
    min-height: 500px;
}

/* Filter & Search Bar */
.ppdb-filter-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    margin-bottom: 36px;
    margin-top: -65px;
    position: relative;
    z-index: 10;
}

.ppdb-search-box {
    position: relative;
    margin-bottom: 20px;
}

.ppdb-search-box i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 16px;
}

.ppdb-search-input {
    width: 100%;
    padding: 14px 18px 14px 48px;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-full);
    font-size: 14.5px;
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: #f8fafc;
    transition: all 0.25s ease;
}

.ppdb-search-input:focus {
    outline: none;
    border-color: var(--primary-accent);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

.ppdb-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.ppdb-tab-btn {
    padding: 9px 20px;
    border: 1.5px solid var(--border-light);
    background-color: #ffffff;
    color: var(--text-body);
    font-size: 13.5px;
    font-weight: 600;
    font-family: var(--font-main);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ppdb-tab-btn:hover {
    border-color: var(--primary-light);
    color: var(--primary);
    background-color: var(--primary-soft);
}

.ppdb-tab-btn.active {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(14, 94, 67, 0.25);
}

/* School Cards Grid */
.ppdb-school-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.ppdb-school-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 24px 24px 15px 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    cursor: pointer;
}

.ppdb-school-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary-accent);
    transition: width 0.25s ease;
}

.ppdb-school-card.jenjang-tk::before { background-color: #0284c7; }
.ppdb-school-card.jenjang-sd::before { background-color: #e11d48; }
.ppdb-school-card.jenjang-smp::before { background-color: #d97706; }
.ppdb-school-card.jenjang-sma::before { background-color: var(--primary); }

.ppdb-school-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(14, 94, 67, 0.2);
}

.ppdb-school-card:hover::before {
    width: 8px;
}



/* Card Header & Logo */
.ppdb-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.ppdb-card-header .ppdb-badge {
    margin-bottom: 0;
}

.ppdb-school-logo-wrap {
        position: absolute;
    right: 15px;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.ppdb-school-card:hover .ppdb-school-logo-wrap {
    transform: scale(1.06);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(14, 94, 67, 0.12);
    border-color: rgba(14, 94, 67, 0.25);
}

.ppdb-school-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.ppdb-school-logo-icon {
    font-size: 22px;
    color: var(--primary);
}

.ppdb-school-card.jenjang-tk .ppdb-school-logo-icon { color: #0284c7; }
.ppdb-school-card.jenjang-sd .ppdb-school-logo-icon { color: #e11d48; }
.ppdb-school-card.jenjang-smp .ppdb-school-logo-icon { color: #d97706; }
.ppdb-school-card.jenjang-sma .ppdb-school-logo-icon { color: var(--primary); }

.ppdb-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffffff;
    margin-bottom: 12px;
}

.ppdb-badge.tk { background-color: #0284c7; }
.ppdb-badge.sd { background-color: #e11d48; }
.ppdb-badge.smp { background-color: #d97706; }
.ppdb-badge.sma { background-color: var(--primary); }

.ppdb-school-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.35;
    margin-bottom: 10px;
}

.ppdb-school-loc {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
}

.ppdb-school-loc i {
    color: var(--primary-accent);
}

.ppdb-card-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border-light);
    color: var(--primary);
    font-weight: 600;
    font-size: 13.5px;
    transition: all 0.2s ease;
}

.ppdb-school-card:hover .ppdb-card-action {
    color: var(--primary-accent);
}

.ppdb-school-card:hover .ppdb-card-action i {
    transform: translateX(4px);
}

.ppdb-card-action i {
    transition: transform 0.2s ease;
}

/* PPDB Selection Banner in Form Page */
.ppdb-selection-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #ffffff;
    border-radius: var(--radius-md);
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
    box-shadow: var(--shadow-md);
    margin-top: -65px;
    margin-bottom: 36px;
    position: relative;
    z-index: 10;
}

.ppdb-selection-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-mint);
    font-weight: 700;
    margin-bottom: 4px;
}

.ppdb-selection-school {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.btn-ppdb-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-size: 13.5px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.btn-ppdb-back:hover {
    background: #ffffff;
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* PPDB Form Container */
.ppdb-form-wrapper {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 40px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    margin-bottom: 60px;
}

.ppdb-section-card {
    background: #f8fafc;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 28px;
    margin-bottom: 30px;
    transition: border-color 0.25s ease;
}

.ppdb-section-card:hover {
    border-color: #cbd5e1;
}

.ppdb-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 14px;
    border-bottom: 1.5px solid var(--border-light);
}

.ppdb-section-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.ppdb-section-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

.ppdb-section-info {
    font-size: 13.5px;
    color: var(--text-muted);
    background: #ffffff;
    padding: 10px 16px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-accent);
    margin-bottom: 20px;
}

.ppdb-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ppdb-form-grid .full-width {
    grid-column: 1 / -1;
}

.ppdb-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ppdb-label {
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
}

.ppdb-label .required {
    color: #e11d48;
    margin-left: 2px;
}

.ppdb-input,
.ppdb-select,
.ppdb-textarea {
    width: 100%;
    padding: 11px 16px;
    border: 1.5px solid var(--border-light);
    border-radius: 10px;
    font-size: 14px;
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: #ffffff;
    transition: all 0.25s ease;
}

.ppdb-input:focus,
.ppdb-select:focus,
.ppdb-textarea:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.ppdb-textarea {
    resize: vertical;
    min-height: 90px;
    line-height: 1.5;
}

.ppdb-form-group.has-error .ppdb-input,
.ppdb-form-group.has-error .ppdb-select,
.ppdb-form-group.has-error .ppdb-textarea {
    border-color: #e11d48;
    background-color: #fff1f2;
}

.ppdb-error-msg {
    font-size: 12px;
    color: #e11d48;
    font-weight: 500;
    display: none;
    margin-top: 3px;
}

.ppdb-form-group.has-error .ppdb-error-msg {
    display: block;
}

.ppdb-submit-wrap {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
    margin-top: 36px;
}

.btn-ppdb-submit {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    border: none;
    padding: 14px 38px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-main);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(14, 94, 67, 0.35);
    transition: all 0.3s ease;
}

.btn-ppdb-submit:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(14, 94, 67, 0.45);
}

@media (max-width: 768px) {
    .ppdb-hero-title {
        font-size: 28px;
    }
    .ppdb-filter-card {
        margin-top: -45px;
        padding: 18px;
    }
    .ppdb-selection-banner {
        margin-top: -45px;
        padding: 20px;
    }
    .ppdb-form-wrapper {
        padding: 24px 18px;
    }
    .ppdb-section-card {
        padding: 20px 16px;
    }
    .ppdb-form-grid {
        grid-template-columns: 1fr;
    }
    .ppdb-form-grid .full-width {
        grid-column: auto;
    }
}
