/* IMPORT FONT MODERN */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap');

:root {
    --primary: #00897b;   /* Hijau Tosca Gelap */
    --secondary: #4db6ac; /* Hijau Tosca Terang */
    --accent: #e0f2f1;    /* Hijau Pucat */
    --text-dark: #2d3436;
    --gold: #f9a825;
    --light-bg: #f8fffe;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: #fdfdfd;
    color: var(--text-dark);
    overflow-x: hidden; 
}

/* === 3-TIER HEADER MODERN === */
.header-modern-3tier {
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    z-index: 99999 !important;
    position: relative;
}
.header-modern-3tier .top-bar {
    font-size: 0.95rem;
    border-bottom: 1px solid #eaeaea;
}
.header-modern-3tier .middle-bar img {
    transition: transform 0.3s ease;
}
.header-modern-3tier .middle-bar img:hover {
    transform: scale(1.05);
}

/* Bottom Nav */
.bottom-nav-custom {
    background-color: #fff !important;
    border-top: 1px solid #f0f0f0;
}
.bottom-nav-custom .nav-link { 
    position: relative;
    font-weight: 700 !important; 
    font-size: 0.9rem; 
    letter-spacing: 0.5px;
    padding: 20px 15px !important;
    color: #444 !important; 
    transition: color 0.3s;
    text-transform: uppercase;
}
.bottom-nav-custom .nav-link.active,
.bottom-nav-custom .nav-link:hover { color: var(--success) !important; }

/* Active Indicator Line */
.bottom-nav-custom .nav-item:not(.dropdown) .nav-link::before,
.bottom-nav-custom .nav-item.dropdown > .nav-link::before {
    content: '';
    position: absolute;
    bottom: 15px; /* Angkat garis sedikit ke atas agar dekat dengan teks */
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--success); /* Tetap pakai hijau tema sekolah */
    transition: width 0.3s ease;
}

/* Custom Dropdown Caret */
.bottom-nav-custom .dropdown-toggle::after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f078"; /* fa-chevron-down */
    border: none;
    vertical-align: middle;
    margin-left: 0.3em;
    font-size: 0.8em;
}

/* Don't show line for PPDB highlight button */
.bottom-nav-custom .nav-item > .btn-ppdb-highlight::before {
    display: none;
}

.bottom-nav-custom .nav-item:not(.dropdown) .nav-link.active::before,
.bottom-nav-custom .nav-item.dropdown > .nav-link.active::before,
.bottom-nav-custom .nav-item:not(.dropdown) .nav-link:hover::before,
.bottom-nav-custom .nav-item.dropdown > .nav-link:hover::before {
    width: calc(100% - 30px); /* Garis hanya sepanjang teks (padding kiri+kanan = 30px) */
}

/* Slanted Button Area */
.slanted-btn-wrapper {
    height: 60px; /* Adjust according to nav height */
    overflow: hidden;
}
@media (min-width: 992px) {
    .slanted-btn-wrapper {
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        z-index: 10;
    }
    #mainNavbar {
        width: 100%;
    }
}
.slanted-bg {
    width: 250px;
    height: 100%;
    transform: skewX(-30deg);
    margin-right: -40px; 
    padding-right: 40px;
    background: linear-gradient(135deg, var(--success), #388e3c) !important; /* Green gradient */
}
.slanted-bg a {
    transform: skewX(30deg); /* Un-skew the icon */
    border-color: rgba(255,255,255,0.7) !important;
}
.slanted-bg a:hover {
    background: white;
    color: var(--success) !important;
}

/* Tombol Login di Navbar */
.btn-login-nav {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 30px;
    color: white !important;
    padding: 5px 15px !important;
    font-size: 0.9rem;
    text-decoration: none;
    transition: 0.3s;
    white-space: nowrap;
    display: inline-block;
}
.btn-login-nav:hover { background: white; color: var(--primary) !important; }

/* === DROPDOWN NAVBAR MODERN === */
.bottom-nav-custom .dropdown-menu {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    border: none;
    border-top: 3px solid var(--success);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    padding: 8px;
    margin-top: 0;
    min-width: 200px;
    animation: dropdownFade 0.3s ease;
}
@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
.bottom-nav-custom .dropdown-menu .dropdown-item {
    color: var(--text-dark) !important;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.2s;
    text-transform: none;
}
.bottom-nav-custom .dropdown-menu .dropdown-item:hover {
    background: var(--accent);
    color: var(--success) !important;
    padding-left: 22px;
}
.bottom-nav-custom .dropdown-menu .dropdown-item i {
    width: 20px;
    text-align: center;
    margin-right: 8px;
    color: var(--success);
}
.bottom-nav-custom .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: 2px;
}

/* === HERO SECTION (LENGKUNGAN) === */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 140px 0 120px; 
    border-radius: 0 0 50% 50% / 40px; 
    margin-bottom: 60px;
    overflow: hidden;
}

.hero-bg-shape {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* === KARTU JENJANG (ANIMASI) === */
.card-jenjang {
    border: none;
    border-radius: 20px;
    background: white;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
}
.card-jenjang::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px;
    background: var(--secondary); transition: height 0.3s; z-index: -1;
}
.card-jenjang:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,137,123,0.2); }
.card-jenjang:hover::before { height: 100%; }
.card-jenjang:hover h3, .card-jenjang:hover p, .card-jenjang:hover li, .card-jenjang:hover i { color: white !important; }
.card-jenjang:hover .btn-daftar { background: white; color: var(--primary); border-color: white; }

/* === KARTU BERITA === */
.news-card-modern {
    border: 2px solid transparent !important; 
    border-radius: 15px; 
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    background: white;
    height: 100%;
}
.news-card-modern:hover { 
    border-color: #198754 !important; /* border hijau saat dihover */
    transform: translateY(-5px); 
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); 
}

.news-img-placeholder {
    height: 180px;
    background: var(--accent);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
}

/* === FOOTER === */
.footer-modern {
    background: #1a2332;
    color: rgba(255,255,255,0.7);
    padding: 0 0 20px;
    margin-top: 80px;
}
.footer-title { color: white; font-weight: 700; margin-bottom: 20px; }
.footer-links a { display: block; color: rgba(255,255,255,0.7); margin-bottom: 10px; text-decoration: none; transition: 0.3s; }
.footer-links a:hover { color: var(--secondary); padding-left: 5px; }

/* === FOOTER MAPS === */
.footer-maps-section {
    background: linear-gradient(135deg, #1e3a4f 0%, #1a2332 100%);
    padding: 50px 0 40px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}
.footer-maps-section h4 {
    font-weight: 800;
    letter-spacing: 1px;
}
.maps-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    border: 3px solid rgba(255,255,255,0.1);
}
.maps-wrapper iframe {
    display: block;
    width: 100%;
    height: 300px;
    border: 0;
}
.maps-overlay-link {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s;
    z-index: 10;
}
.maps-overlay-link:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
}
.footer-content {
    padding: 50px 0 20px;
}

/* STYLE KHUSUS FORM PENDAFTARAN */
.card-tabs.card-outline {
    border-top: 3px solid var(--primary);
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    border-radius: 10px;
    border: none;
}

.card-tabs .card-header {
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.card-tabs .nav-link {
    color: #555;
    font-weight: 600;
    border: none;
    border-bottom: 3px solid transparent;
}

.card-tabs .nav-link.active {
    color: var(--primary);
    border-bottom: 3px solid var(--primary);
    background: transparent;
}

.card-tabs .nav-link:hover {
    color: var(--primary);
}

/* PERBAIKAN TABS HEADER DI FRONTEND */
.card-header-tabs .nav-link {
    color: #555 !important;
    font-weight: 600;
    border: none;
    background: transparent;
    padding: 10px 15px;
}

.card-header-tabs .nav-link.active {
    color: var(--primary) !important;
    background-color: #fff !important;
    border-bottom: 3px solid var(--primary) !important;
    border-top: none;
    border-left: none;
    border-right: none;
}

.card-header-tabs .nav-link:hover {
    color: var(--primary) !important;
    background-color: rgba(0, 137, 123, 0.05);
}

.card-header {
    background-color: #fff;
    border-bottom: 1px solid #dee2e6;
}

/* === STYLE KHUSUS HALAMAN LOGIN === */
.login-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 140px;
    padding-bottom: 40px;
}

.login-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    overflow: hidden;
    background: white;
    width: 100%;
    max-width: 900px;
}

.login-left {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.login-right {
    padding: 50px;
    background: white;
}

.form-control-lg {
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 1rem;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
}
.form-control-lg:focus {
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(0, 137, 123, 0.1);
    border-color: var(--primary);
}


/* === HERO CAROUSEL / SLIDER === */
#heroCarousel {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
}

.carousel-item {
    height: 100%;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-item.active .hero-bg-img {
    transform: scale(1.15);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,137,123,0.8), rgba(0,0,0,0.4));
    z-index: 1;
}


.table th a {
    color: #212529;
    text-decoration: none;
    font-weight: 600;
}

.table th a:hover {
    color: #212529;
}

/* =====================================================
   ABOUT US PAGE STYLES
   ===================================================== */

.about-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #00695c 50%, var(--secondary) 100%);
    padding: 120px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}
.about-hero::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    top: -100px; right: -100px;
    animation: float 8s infinite ease-in-out;
}
.about-hero::after {
    content: '';
    position: absolute;
    width: 250px; height: 250px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    bottom: -50px; left: 10%;
    animation: float 6s infinite ease-in-out reverse;
}
.about-hero .breadcrumb-item a { color: rgba(255,255,255,0.7); text-decoration: none; }
.about-hero .breadcrumb-item.active { color: white; }
.about-hero .breadcrumb-divider { color: rgba(255,255,255,0.5); }

.about-section {
    padding: 80px 0;
}
.about-section.alt-bg {
    background: var(--light-bg);
}

.section-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 18px;
    border-radius: 30px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    margin-bottom: 30px;
}
.section-divider.center { margin-left: auto; margin-right: auto; }

/* Visi Misi Cards */
.visi-card, .misi-card {
    border: none;
    border-radius: 20px;
    padding: 35px 30px;
    height: 100%;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.visi-card {
    background: linear-gradient(135deg, var(--primary), #00695c);
    color: white;
    box-shadow: 0 15px 40px rgba(0,137,123,0.3);
}
.misi-card {
    background: white;
    border: 2px solid var(--accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.visi-card:hover, .misi-card:hover { transform: translateY(-8px); }
.visi-card .icon-circle, .misi-card .icon-circle {
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.visi-card .icon-circle { background: rgba(255,255,255,0.2); color: white; }
.misi-card .icon-circle { background: var(--accent); color: var(--primary); }

.misi-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    padding: 8px 0;
}
.misi-item i {
    color: var(--primary);
    margin-right: 12px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Timeline */
.timeline-container {
    position: relative;
    padding-left: 40px;
}
.timeline-container::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary), transparent);
    border-radius: 2px;
}
.timeline-item {
    position: relative;
    margin-bottom: 35px;
    padding: 25px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.3s;
    border-left: 4px solid var(--secondary);
}
.timeline-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0,137,123,0.12);
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 30px;
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--secondary);
}
.timeline-year {
    display: inline-block;
    background: var(--primary);
    color: white;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

/* Facility Cards */
.facility-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.4s;
    border: 1px solid rgba(0,137,123,0.08);
    height: 100%;
}
.facility-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,137,123,0.15);
    border-color: var(--secondary);
}
.facility-icon {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #b2dfdb);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: all 0.3s;
}
.facility-card:hover .facility-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    transform: scale(1.1);
}

/* Struktur Organisasi */
.org-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.3s;
    border-top: 4px solid var(--secondary);
}
.org-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,137,123,0.12); }
.org-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 15px;
    font-size: 2rem;
    color: white;
    font-weight: 800;
}

/* Stats Counter */
.stat-box {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
}
.stat-box:hover { transform: translateY(-5px); }
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =====================================================
   JENJANG PAGE STYLES
   ===================================================== */
.jenjang-hero {
    padding: 120px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}
.jenjang-hero.tk { background: linear-gradient(135deg, #00bcd4, #0097a7); }
.jenjang-hero.sd { background: linear-gradient(135deg, #43a047, #2e7d32); }
.jenjang-hero.smp { background: linear-gradient(135deg, #1565c0, #0d47a1); }

.jenjang-hero::before {
    content: ''; position: absolute;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    top: -80px; right: -50px;
    animation: float 7s infinite ease-in-out;
}

.program-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.3s;
    height: 100%;
    border-left: 4px solid var(--secondary);
}
.program-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

.keunggulan-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: white;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.04);
    transition: all 0.3s;
}
.keunggulan-item:hover { transform: translateX(5px); box-shadow: 0 5px 15px rgba(0,137,123,0.1); }
.keunggulan-item .number {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    margin-right: 15px;
    flex-shrink: 0;
}

/* =====================================================
   ALUMNI PAGE STYLES
   ===================================================== */
.alumni-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #37474f, #263238);
    color: white;
    position: relative;
    overflow: hidden;
}
.alumni-hero::before {
    content: ''; position: absolute;
    width: 350px; height: 350px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    top: -100px; right: -80px;
}

.alumni-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.4s;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.alumni-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.alumni-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.alumni-avatar {
    width: 90px; height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #b2dfdb);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 15px;
    font-size: 2.2rem;
    color: var(--primary);
    font-weight: 800;
    border: 3px solid var(--accent);
}
.alumni-batch {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.78rem;
    padding: 3px 12px;
    border-radius: 20px;
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary), #00695c);
    padding: 60px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute;
    width: 200px; height: 200px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    top: -60px; left: 10%;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 768px) {
    .about-hero { padding: 120px 0 60px; }
    .section-title { font-size: 1.7rem; }
    .stat-number { font-size: 2rem; }
    .timeline-container { padding-left: 30px; }
    .footer-maps-section { border-radius: 30px 30px 0 0; padding: 30px 0; }
    .maps-wrapper iframe { height: 220px; }
    .contact-hero { padding: 120px 0 80px; }
    .prestasi-hero { padding: 120px 0 80px; }
}

/* =====================================================
   CONTACT US PAGE STYLES
   ===================================================== */
.contact-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #00695c 50%, var(--secondary) 100%);
    padding: 120px 0 100px;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-hero .breadcrumb-item a { color: rgba(255,255,255,0.7); text-decoration: none; }
.contact-hero .breadcrumb-item.active { color: white; }

.contact-info-card {
    background: white;
    border-radius: 16px;
    padding: 35px 25px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    transition: all 0.4s;
    border: 1px solid rgba(0,137,123,0.08);
}
.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0,137,123,0.15);
}
.contact-icon-box {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #b2dfdb);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto;
    font-size: 1.8rem;
    color: var(--primary);
    transition: all 0.3s;
}
.contact-info-card:hover .contact-icon-box {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    transform: scale(1.1);
}

.social-link {
    width: 45px; height: 45px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
    text-decoration: none;
}
.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.maps-contact-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border: 2px solid rgba(0,137,123,0.1);
}
.maps-contact-wrapper iframe {
    display: block;
    width: 100%;
    height: 350px;
    border: 0;
}

.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,137,123,0.08);
}

/* =====================================================
   PRESTASI PAGE STYLES
   ===================================================== */
.prestasi-hero {
    background: linear-gradient(135deg, #f9a825 0%, #f57f17 50%, #ff8f00 100%);
    padding: 160px 0 120px;
    color: white;
    position: relative;
    overflow: hidden;
}
.prestasi-hero::before {
    content: '';
    position: absolute;
    width: 350px; height: 350px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    top: -100px; right: -80px;
    animation: float 7s infinite ease-in-out;
}
.prestasi-hero::after {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    bottom: -50px; left: 10%;
    animation: float 5s infinite ease-in-out reverse;
}
.prestasi-hero .breadcrumb-item a { color: rgba(255,255,255,0.7); text-decoration: none; }
.prestasi-hero .breadcrumb-item.active { color: white; }

.prestasi-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.4s;
    border: 1px solid rgba(0,0,0,0.04);
}
.prestasi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.prestasi-header {
    padding: 25px;
    text-align: center;
    color: white;
}

.guru-prestasi-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.4s;
    border-top: 4px solid var(--secondary);
}
.guru-prestasi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,137,123,0.15);
}
.guru-icon-box {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--accent);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto;
    transition: all 0.3s;
}
.guru-prestasi-card:hover .guru-icon-box {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.guru-prestasi-card:hover .guru-icon-box i {
    color: white !important;
}

/* =====================================================
   PPDB PAGE STYLES
   ===================================================== */
.ppdb-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #004d40 50%, #00897b 100%);
    padding: 160px 0 120px;
    color: white;
    position: relative;
    overflow: hidden;
}
.ppdb-hero::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    top: -120px; right: -100px;
    animation: float 8s infinite ease-in-out;
}
.ppdb-hero::after {
    content: '';
    position: absolute;
    width: 250px; height: 250px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    bottom: -60px; left: 5%;
    animation: float 6s infinite ease-in-out reverse;
}
.ppdb-hero .breadcrumb-item a { color: rgba(255,255,255,0.7); text-decoration: none; }
.ppdb-hero .breadcrumb-item.active { color: white; }

.alur-card {
    background: white;
    border-radius: 16px;
    padding: 35px 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.4s;
    position: relative;
    border: 1px solid rgba(0,0,0,0.04);
}
.alur-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,137,123,0.15);
}
.alur-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px; height: 35px;
    border-radius: 50%;
    color: white;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.syarat-check {
    width: 30px; height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.biaya-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s;
    border: 1px solid rgba(0,0,0,0.04);
}
.biaya-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.biaya-header {
    padding: 30px 20px;
    color: white;
}

@media (max-width: 768px) {
    .ppdb-hero { padding: 120px 0 80px; }
}

/* Custom Theme Button */
.btn-theme { background-color: var(--primary); color: #fff; border: 2px solid var(--primary); }
.btn-theme:hover, .btn-theme:focus, .btn-theme:active { background-color: #00695c !important; color: #fff !important; border-color: #00695c !important; box-shadow: 0 0 0 0.25rem rgba(0, 137, 123, 0.25) !important; }
