/* ===========================================================
   Ezera Academy Catalog - Frontend Styles v2
   Ganti warna brand di variabel :root ini.
=========================================================== */
:root {
    --ezera-primary: #0b5fff;
    --ezera-primary-dark: #0847c4;
    --ezera-accent: #ff8a3d;
    --ezera-dark: #10142c;
    --ezera-gray: #6b7280;
    --ezera-light: #f5f7fb;
    --ezera-border: #eef0f4;
    --ezera-radius: 16px;
    --ezera-shadow: 0 10px 30px rgba(16, 20, 44, .07);
    --ezera-shadow-hover: 0 18px 40px rgba(16, 20, 44, .12);
}

html, body {
    overflow-x: clip !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.ezera-home, .ezera-site-header, .ezera-site-footer, .ezera-form-pendaftaran {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Arial, sans-serif;
}

/* ===========================================================
   HEADER (sticky, muncul di semua halaman)
=========================================================== */
.ezera-site-header {
    position: sticky; top: 0; z-index: 999;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--ezera-border);
    transition: box-shadow .25s ease, background .25s ease;
}
.ezera-site-header.is-scrolled { box-shadow: 0 6px 24px rgba(16,20,44,.08); background: rgba(255,255,255,.97); }
.ezera-header-inner {
    max-width: 1200px; margin: 0 auto; padding: 14px 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.ezera-logo { display: flex; align-items: center; text-decoration: none; }
.ezera-logo img { max-height: 42px; width: auto; display: block; }
.ezera-logo-text { font-size: 21px; font-weight: 800; color: var(--ezera-dark); letter-spacing: -.3px; }

.ezera-nav-list { list-style: none; display: flex; gap: 30px; margin: 0; padding: 0; }
.ezera-nav-list li a {
    text-decoration: none; color: var(--ezera-dark); font-weight: 600; font-size: 14.5px;
    position: relative; padding: 6px 0; transition: color .2s ease;
}
.ezera-nav-list li a::after {
    content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
    background: var(--ezera-primary); transition: width .25s ease;
}
.ezera-nav-list li a:hover { color: var(--ezera-primary); }
.ezera-nav-list li a:hover::after { width: 100%; }

.ezera-header-actions { display: flex; align-items: center; gap: 16px; }
.ezera-nav-toggle {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 36px; height: 36px; background: none; border: none; cursor: pointer;
}
.ezera-nav-toggle span { display: block; width: 100%; height: 2px; background: var(--ezera-dark); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }

@media (max-width: 860px) {
    .ezera-nav {
        position: fixed; top: 0; right: -100%; width: 78%; max-width: 320px; height: 100vh;
        background: #fff; box-shadow: -10px 0 30px rgba(0,0,0,.1);
        padding: 90px 28px 28px; transition: right .3s ease; z-index: 998;
    }
    .ezera-nav.is-open { right: 0; }
    .ezera-nav-list { flex-direction: column; gap: 22px; }
    .ezera-nav-toggle { display: flex; }
    .ezera-header-actions .ezera-btn-primary.ezera-btn-sm { display: none; }
}

/* ===========================================================
   BUTTONS
=========================================================== */
.ezera-btn {
    display: inline-block; padding: 13px 28px; border-radius: 10px;
    text-decoration: none; font-weight: 700; font-size: 14.5px;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    cursor: pointer; border: none;
}
.ezera-btn-sm { padding: 9px 18px; font-size: 13.5px; border-radius: 8px; }
.ezera-btn-primary { background: var(--ezera-primary); color: #fff; box-shadow: 0 8px 20px rgba(11,95,255,.28); }
.ezera-btn-primary:hover { background: var(--ezera-primary-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(11,95,255,.35); }
.ezera-btn-outline { border: 1.5px solid var(--ezera-primary); color: var(--ezera-primary); background: transparent; }
.ezera-btn-outline:hover { background: var(--ezera-primary); color: #fff; transform: translateY(-2px); }
.ezera-btn-ghost { color: #fff; border: 1.5px solid rgba(255,255,255,.55); background: rgba(255,255,255,.08); }
.ezera-btn-ghost:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }

/* ===========================================================
   ANIMASI SCROLL REVEAL
=========================================================== */
.ezera-reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.ezera-reveal.is-visible { opacity: 1; transform: translateY(0); }
.ezera-reveal-left { transform: translateX(-32px); }
.ezera-reveal-left.is-visible { transform: translateX(0); }
.ezera-reveal-right { transform: translateX(32px); }
.ezera-reveal-right.is-visible { transform: translateX(0); }

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

/* ===========================================================
   HERO
=========================================================== */
.ezera-hero {
    position: relative; overflow: hidden;
    padding: 110px 24px 90px;
    background: linear-gradient(150deg, var(--ezera-primary) 0%, #3b3af0 55%, var(--ezera-primary-dark) 100%);
    color: #fff; text-align: center;
}
.ezera-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .16; }
.ezera-hero-blob { position: absolute; border-radius: 50%; filter: blur(10px); opacity: .25; animation: ezeraFloat 7s ease-in-out infinite; }
.ezera-hero-blob-1 { width: 320px; height: 320px; background: var(--ezera-accent); top: -100px; left: -80px; }
.ezera-hero-blob-2 { width: 260px; height: 260px; background: #7ed0ff; bottom: -90px; right: -60px; animation-delay: 1.4s; }
.ezera-hero-content { position: relative; max-width: 740px; margin: 0 auto; }
.ezera-eyebrow {
    display: inline-block; padding: 7px 16px; border-radius: 30px; margin-bottom: 20px;
    background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28);
    font-size: 12.5px; font-weight: 700; letter-spacing: .4px;
}
.ezera-hero h1 { font-size: clamp(30px, 4.6vw, 48px); margin: 0 0 18px; line-height: 1.18; font-weight: 800; letter-spacing: -.5px; }
.ezera-hero p { font-size: 17.5px; opacity: .92; margin-bottom: 32px; line-height: 1.65; }
.ezera-hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===========================================================
   STATISTIK
=========================================================== */
.ezera-stats {
    max-width: 1000px; margin: -46px auto 0; position: relative; z-index: 2;
    background: #fff; border-radius: var(--ezera-radius); box-shadow: var(--ezera-shadow);
    display: flex; flex-wrap: wrap; justify-content: space-around; padding: 34px 24px;
}
.ezera-stat-item { text-align: center; padding: 10px 20px; }
.ezera-stat-angka { display: block; font-size: 34px; font-weight: 800; color: var(--ezera-primary); }
.ezera-stat-label { font-size: 13.5px; color: var(--ezera-gray); font-weight: 600; }

@media (max-width: 600px) {
    .ezera-stats {
        flex-wrap: nowrap !important;
        padding: 12px 6px !important;
        gap: 6px !important;
        border-radius: 12px !important;
        justify-content: space-between !important;
        margin: 15px auto 0 !important;
    }
    .ezera-stat-item {
        padding: 2px !important;
        flex: 1 !important;
        min-width: 0 !important;
    }
    .ezera-stat-angka {
        font-size: 18px !important;
    }
    .ezera-stat-label {
        font-size: 10px !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        line-height: 1.2 !important;
    }
}

/* ===========================================================
   SECTION UMUM
=========================================================== */
.ezera-section { padding: 80px 24px; max-width: 1200px; margin: 0 auto; }
.ezera-section-alt { background: var(--ezera-light); max-width: none; border-radius: 28px; margin: 20px auto; }
.ezera-section-alt > * { max-width: 1200px; margin-left: auto; margin-right: auto; padding-left: 24px; padding-right: 24px; }
.ezera-section-head { text-align: center; max-width: 640px; margin: 0 auto 46px; position: relative; }
.ezera-section-head h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; color: var(--ezera-dark); margin: 8px 0 0; letter-spacing: -.4px; }
.ezera-section-tag {
    display: inline-block; color: var(--ezera-primary); background: #eef3ff; padding: 6px 14px;
    border-radius: 30px; font-size: 12.5px; font-weight: 700; letter-spacing: .3px;
}
.ezera-link-all { display: inline-block; margin-top: 14px; color: var(--ezera-primary); font-weight: 700; text-decoration: none; font-size: 14px; }
.ezera-link-all:hover { text-decoration: underline; }

/* ===========================================================
   TENTANG KAMI
=========================================================== */
.ezera-tentang-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.ezera-tentang h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; color: var(--ezera-dark); margin: 10px 0 18px; letter-spacing: -.4px; }
.ezera-tentang-text p { color: var(--ezera-gray); line-height: 1.85; margin-bottom: 14px; }

.ezera-visi-misi-card { background: var(--ezera-light); border-radius: var(--ezera-radius); padding: 32px; }
.ezera-visi-box { margin-bottom: 26px; }
.ezera-visi-box h3, .ezera-misi-box h3 { font-size: 18px; margin: 0 0 10px; color: var(--ezera-dark); }
.ezera-visi-box p { color: var(--ezera-gray); line-height: 1.7; }
.ezera-misi-box ul { margin: 0; padding-left: 20px; }
.ezera-misi-box li { color: var(--ezera-gray); margin-bottom: 8px; line-height: 1.6; }

@media (max-width: 900px) { .ezera-tentang-grid { grid-template-columns: 1fr; } }

/* ===========================================================
   KENAPA PILIH KAMI (fitur)
=========================================================== */
.ezera-fitur-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.ezera-fitur-item {
    background: #fff; border: 1px solid var(--ezera-border); border-radius: var(--ezera-radius);
    padding: 30px 24px; text-align: left; transition: transform .25s ease, box-shadow .25s ease;
}
.ezera-fitur-item:hover { transform: translateY(-6px); box-shadow: var(--ezera-shadow-hover); border-color: transparent; }
.ezera-fitur-icon {
    width: 52px; height: 52px; border-radius: 14px; background: #eef3ff;
    display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 16px;
}
.ezera-fitur-item h3 { font-size: 16.5px; margin: 0 0 8px; color: var(--ezera-dark); }
.ezera-fitur-item p { font-size: 14px; color: var(--ezera-gray); line-height: 1.65; margin: 0; }

@media (max-width: 900px) { .ezera-fitur-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ezera-fitur-grid { grid-template-columns: 1fr; } }

/* ===========================================================
   GRID / CARD (Kelas, Produk, Artikel)
=========================================================== */
.ezera-grid { display: grid; gap: 26px; grid-template-columns: repeat(3, 1fr); }
.ezera-grid-2 { grid-template-columns: repeat(2, 1fr); }
.ezera-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .ezera-grid, .ezera-grid-2, .ezera-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { 
    .ezera-grid, .ezera-grid-2, .ezera-grid-4 { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; } 
    .ezera-card { border-radius: 10px !important; }
    .ezera-card-thumb img { height: 110px !important; }
    .ezera-card-body { padding: 8px !important; }
    .ezera-card-body h3 { font-size: 12px !important; margin-bottom: 4px !important; line-height: 1.3 !important; }
    .ezera-badge { font-size: 9.5px !important; padding: 2px 7px !important; margin-bottom: 4px !important; }
    .ezera-meta-inline { font-size: 11px !important; margin-top: 2px !important; }
    .ezera-excerpt { display: none !important; }
    .ezera-card-footer { flex-direction: column !important; align-items: flex-start !important; gap: 4px !important; padding-top: 6px !important; margin-top: 6px !important; }
    .ezera-harga-sekarang { font-size: 12px !important; }
    .ezera-harga-coret { font-size: 10px !important; }
    .ezera-btn-sm { width: 100% !important; text-align: center !important; padding: 5px !important; font-size: 10.5px !important; border-radius: 6px !important; }
}

.ezera-card {
    background: #fff; border: 1px solid var(--ezera-border); border-radius: var(--ezera-radius);
    overflow: hidden; display: flex; flex-direction: column;
    transition: transform .28s ease, box-shadow .28s ease;
}
.ezera-card:hover { transform: translateY(-6px); box-shadow: var(--ezera-shadow-hover); }
.ezera-card-thumb { display: block; overflow: hidden; }
.ezera-card-thumb img { width: 100%; height: 190px; object-fit: cover; display: block; transition: transform .4s ease; }
.ezera-card:hover .ezera-card-thumb img { transform: scale(1.06); }
.ezera-card-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.ezera-card-body h3 { font-size: 17.5px; margin: 6px 0 10px; line-height: 1.35; }
.ezera-card-body h3 a { color: var(--ezera-dark); text-decoration: none; }
.ezera-card-body h3 a:hover { color: var(--ezera-primary); }
.ezera-excerpt { color: var(--ezera-gray); font-size: 14px; line-height: 1.65; flex: 1; }
.ezera-meta-inline { font-size: 12.5px; color: var(--ezera-gray); margin-top: 4px; display: inline-block; }
.ezera-tanggal { font-size: 12px; color: var(--ezera-gray); font-weight: 600; }

.ezera-badge {
    display: inline-block; background: var(--ezera-light); color: var(--ezera-primary);
    font-size: 11.5px; font-weight: 700; padding: 4px 11px; border-radius: 20px; margin-bottom: 8px;
}
.ezera-badge-tersedia { background: #e6f7ee; color: #14804a; }
.ezera-badge-segera { background: #fff4e0; color: #b5750a; }
.ezera-badge-habis { background: #fde8e8; color: #c02626; }

.ezera-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; gap: 10px; padding-top: 16px; border-top: 1px solid var(--ezera-border); }
.ezera-harga { display: flex; flex-direction: column; }
.ezera-harga-coret { text-decoration: line-through; color: #a0a4ad; font-size: 11.5px; }
.ezera-harga-sekarang { color: var(--ezera-primary); font-weight: 800; font-size: 16px; }

/* ===========================================================
   CTA STRIP
=========================================================== */
.ezera-cta-strip {
    max-width: 1000px; margin: 20px auto 0; padding: 54px 30px; text-align: center;
    background: linear-gradient(120deg, var(--ezera-dark), #23285a);
    border-radius: 24px; color: #fff;
}
.ezera-cta-strip h2 { font-size: clamp(22px, 3vw, 30px); margin: 0 0 10px; font-weight: 800; }
.ezera-cta-strip p { color: rgba(255,255,255,.75); margin: 0; }

/* ===========================================================
   FORM PENDAFTARAN
=========================================================== */
.ezera-form-pendaftaran { max-width: 560px; margin: -30px auto 60px; padding: 36px; background: #fff; border-radius: var(--ezera-radius); box-shadow: var(--ezera-shadow); position: relative; z-index: 2; }
.ezera-form-pendaftaran h2 { margin-top: 0; text-align: center; margin-bottom: 22px; font-size: 22px; color: var(--ezera-dark); }
.ezera-form-row { margin-bottom: 16px; }
.ezera-form-row label { display: block; font-weight: 700; margin-bottom: 6px; font-size: 13.5px; color: var(--ezera-dark); }
.ezera-form-row input, .ezera-form-row textarea, .ezera-form-row select {
    width: 100%; padding: 12px 14px; border-radius: 10px;
    border: 1.5px solid var(--ezera-border); font-size: 14px; box-sizing: border-box;
    transition: border-color .2s ease, box-shadow .2s ease; font-family: inherit; background: #fff;
}
.ezera-form-row input:focus, .ezera-form-row textarea:focus, .ezera-form-row select:focus { outline: none; border-color: var(--ezera-primary); box-shadow: 0 0 0 4px rgba(11,95,255,.1); }
.ezera-form button.ezera-btn { width: 100%; font-size: 15px; }

.ezera-alert { padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-size: 14px; font-weight: 600; }
.ezera-alert-sukses { background: #e6f7ee; color: #14804a; }
.ezera-alert-gagal { background: #fde8e8; color: #c02626; }

/* ===========================================================
   FOOTER
=========================================================== */
.ezera-site-footer { background: var(--ezera-dark); color: rgba(255,255,255,.72); padding: 64px 24px 0; margin-top: 40px; }
.ezera-footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.ezera-footer-col h4 { color: #fff; font-size: 15px; margin: 0 0 18px; }
.ezera-footer-about p { line-height: 1.75; font-size: 14px; margin: 14px 0; }
.ezera-social-link { color: #fff; text-decoration: none; font-size: 14px; font-weight: 600; }
.ezera-social-link:hover { color: var(--ezera-accent); }
.ezera-footer-list { list-style: none; margin: 0; padding: 0; }
.ezera-footer-list li { margin-bottom: 12px; font-size: 14px; }
.ezera-footer-list a { color: rgba(255,255,255,.72); text-decoration: none; }
.ezera-footer-list a:hover { color: #fff; }
.ezera-footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; text-align: center; font-size: 13px; }

@media (max-width: 760px) { .ezera-footer-inner { grid-template-columns: 1fr; } }

/* ===========================================================
   OTHER SHORTCODE (dipakai di luar Home, mis. halaman single)
=========================================================== */
.ezera-tentang { padding: 60px 24px; max-width: 900px; margin: 0 auto; }
.ezera-visi-misi { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; padding: 50px 24px; max-width: 1000px; margin: 0 auto; }
.ezera-visi-misi h3 { color: var(--ezera-primary); margin-bottom: 12px; }
.ezera-visi-misi li { margin-bottom: 8px; color: var(--ezera-gray); line-height: 1.6; }
@media (max-width: 768px) { .ezera-visi-misi { grid-template-columns: 1fr; } }
.ezera-kontak { padding: 50px 24px; max-width: 700px; margin: 0 auto; }
.ezera-kontak ul { list-style: none; padding: 0; }
.ezera-kontak li { padding: 10px 0; border-bottom: 1px solid #eee; }

/* ===========================================================
   REVISI UI: logo image, mobile menu, hero slider, single page
=========================================================== */
.ezera-logo { min-width: 48px; }
.ezera-logo .custom-logo-link { display: flex; align-items: center; }
.ezera-logo-mark {
    width: 42px; height: 42px; border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--ezera-dark); color: #fff; font-weight: 800; letter-spacing: 0;
}
.ezera-footer-logo { max-height: 44px; width: auto; display: block; margin-bottom: 14px; }

.ezera-inline-icon {
    width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center;
    margin-right: 8px; flex: 0 0 18px; vertical-align: -4px;
}
.ezera-inline-icon svg,
.ezera-fitur-icon svg,
.ezera-nav-close svg {
    width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.9;
    stroke-linecap: round; stroke-linejoin: round;
}
.ezera-meta-inline { display: inline-flex; align-items: center; }
.ezera-social-link,
.ezera-contact-list li { display: flex; align-items: flex-start; gap: 0; }

.ezera-nav-head, .ezera-nav-cta { display: none; }
.ezera-nav-backdrop {
    position: fixed; inset: 0; z-index: 997;
    background: rgba(16,20,44,.46); opacity: 0; visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}
body.ezera-menu-open { overflow: hidden; }
body.ezera-menu-open .ezera-nav-backdrop { opacity: 1; visibility: visible; }

.ezera-desktop-cta { display: inline-block; }
@media (max-width: 860px) {
    .ezera-desktop-cta { display: none !important; }
}

@media (max-width: 860px) {
    .ezera-header-inner { padding: 12px 18px; }
    .ezera-logo img { max-height: 38px; }
    .ezera-nav {
        right: -110%; width: min(86vw, 360px); max-width: none;
        padding: 22px 22px 28px;
        border-radius: 22px 0 0 22px;
        box-shadow: -24px 0 50px rgba(16,20,44,.18);
        display: flex; flex-direction: column; gap: 22px;
    }
    .ezera-nav-head {
        display: flex; align-items: center; justify-content: space-between;
        padding-bottom: 16px; border-bottom: 1px solid var(--ezera-border);
    }
    .ezera-nav-title { font-weight: 800; color: var(--ezera-dark); font-size: 18px; }
    .ezera-nav-close {
        width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
        border: 1px solid var(--ezera-border); border-radius: 12px; background: #fff;
        color: var(--ezera-dark); cursor: pointer;
    }
    .ezera-nav-list { gap: 6px; }
    .ezera-nav-list li a {
        display: block; padding: 14px 4px; font-size: 16px; border-bottom: 1px solid #f2f4f8;
    }
    .ezera-nav-list li a::after { display: none; }
    .ezera-nav-cta { display: block; text-align: center; margin-top: auto; }
}

.ezera-hero-slider {
    min-height: 0;
    padding: 0;
    display: block;
    background: #fff !important;
    background-image: none !important;
    box-shadow: none !important;
}
.ezera-hero-media { position: relative; width: 100%; }
.ezera-hero-shade { display: none; }
.ezera-hero-slide {
    display: none;
    width: 100%;
    opacity: 0;
    transition: opacity .45s ease;
}
.ezera-hero-slide.is-active { display: block; opacity: 1; }
.ezera-hero-slide img {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
    margin: 0 auto;
}
.ezera-hero-slide-fallback {
    min-height: 360px;
    background:
        linear-gradient(135deg, rgba(11,95,255,.95), rgba(255,138,61,.86)),
        linear-gradient(45deg, #10142c, #315d92);
}
.ezera-hero-slider .ezera-hero-content { display: none; }
.ezera-hero-dots {
    position: absolute; z-index: 3; bottom: 18px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 9px;
}
.ezera-hero-dots span {
    width: 9px; height: 9px; border-radius: 99px;
    background: rgba(255,255,255,.5); transition: width .25s ease, background .25s ease;
}
.ezera-hero-dots span.is-active { width: 28px; background: #fff; }

@media (max-width: 640px) {
    .ezera-hero-slider {
        min-height: 0; padding: 0; text-align: left;
    }
    .ezera-hero-dots { bottom: 10px; }
    .ezera-hero-slide img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }
}

.ezera-about-page {
    padding: 76px 24px;
    background: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Arial, sans-serif;
}
.ezera-about-inner { max-width: 980px; margin: 0 auto; }
.ezera-about-inner h1 {
    font-size: clamp(30px, 4vw, 46px);
    color: var(--ezera-dark);
    line-height: 1.15;
    margin: 14px 0 22px;
    letter-spacing: 0;
}
.ezera-about-visi-misi {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 26px;
    margin-top: 34px;
}
.ezera-about-visi-misi > div {
    border: 1px solid var(--ezera-border);
    border-radius: var(--ezera-radius);
    padding: 26px;
    background: var(--ezera-light);
}
.ezera-about-visi-misi h2 {
    font-size: 20px;
    color: var(--ezera-dark);
    margin: 0 0 12px;
}
.ezera-about-visi-misi p,
.ezera-about-visi-misi li {
    color: var(--ezera-gray);
    line-height: 1.75;
}
.ezera-about-visi-misi ul { margin: 0; padding-left: 20px; }
@media (max-width: 760px) { .ezera-about-visi-misi { grid-template-columns: 1fr; } }

.ezera-template-page { margin: 0; background: #fff; color: var(--ezera-dark); }
.ezera-single { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Arial, sans-serif; }
.ezera-single-hero {
    padding: 86px 24px 64px; background: linear-gradient(180deg, #f7f9fd 0%, #fff 100%);
}
.ezera-single-hero-inner {
    max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
    gap: 54px; align-items: center;
}
.ezera-back-link {
    display: inline-block; margin-bottom: 18px; color: var(--ezera-primary); text-decoration: none; font-weight: 700;
}
.ezera-single-copy h1 {
    font-size: clamp(32px, 5vw, 56px); line-height: 1.08; letter-spacing: 0;
    margin: 16px 0; color: var(--ezera-dark);
}
.ezera-single-copy p { font-size: 17px; line-height: 1.75; color: var(--ezera-gray); max-width: 700px; }
.ezera-single-meta { color: var(--ezera-gray); font-weight: 600; margin-top: 18px; }
.ezera-single-actions { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; margin-top: 28px; }
.ezera-single-price span { display: block; color: #9ca3af; text-decoration: line-through; font-size: 13px; }
.ezera-single-price strong { color: var(--ezera-primary); font-size: 22px; }
.ezera-single-image img {
    width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block;
    border-radius: 24px; box-shadow: var(--ezera-shadow-hover);
}
.ezera-single-info {
    max-width: 1080px; margin: -28px auto 52px; padding: 0 24px;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; position: relative; z-index: 2;
}
.ezera-single-info div {
    background: #fff; border: 1px solid var(--ezera-border); border-radius: 14px; padding: 18px;
    box-shadow: var(--ezera-shadow);
}
.ezera-single-info span { display: block; color: var(--ezera-gray); font-size: 12px; font-weight: 700; margin-bottom: 6px; }
.ezera-single-info strong { color: var(--ezera-dark); font-size: 15px; }
.ezera-single-content-wrap {
    max-width: 1080px; margin: 0 auto 70px; padding: 0 24px;
    display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 44px; align-items: start;
}
.ezera-single-content {
    color: #30364a; font-size: 16px; line-height: 1.85;
}
.ezera-single-content h2,
.ezera-single-content h3 { color: var(--ezera-dark); line-height: 1.25; }
.ezera-single-content img { max-width: 100%; height: auto; border-radius: 14px; }
.ezera-single-aside {
    position: sticky; top: 96px; border: 1px solid var(--ezera-border); border-radius: 18px;
    padding: 24px; box-shadow: var(--ezera-shadow); background: #fff;
}
.ezera-single-aside h2 { font-size: 20px; margin: 0 0 16px; }
.ezera-check-list { list-style: none; padding: 0; margin: 0 0 22px; }
.ezera-check-list li {
    position: relative; padding-left: 28px; margin-bottom: 12px; color: #374151; line-height: 1.55;
}
.ezera-check-list li::before {
    content: ""; position: absolute; left: 0; top: 6px; width: 15px; height: 15px; border-radius: 50%;
    background: var(--ezera-primary);
}
.ezera-check-list li::after {
    content: ""; position: absolute; left: 5px; top: 9px; width: 5px; height: 8px;
    border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg);
}

@media (max-width: 900px) {
    .ezera-single-hero-inner,
    .ezera-single-content-wrap { grid-template-columns: 1fr; }
    .ezera-single-info { grid-template-columns: repeat(2, 1fr); margin-top: 0; }
    .ezera-single-aside { position: static; }
}
@media (max-width: 600px) {
    .ezera-single-hero { padding: 64px 18px 42px; }
    .ezera-single-info { grid-template-columns: 1fr; padding: 0 18px; }
    .ezera-single-content-wrap { padding: 0 18px; }
    
    .ezera-single { padding-bottom: 80px; }
    .ezera-sticky-mobile-actions {
        position: fixed; bottom: 0; left: 0; width: 100%;
        background: #fff; padding: 12px 20px;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
        z-index: 999; display: flex; flex-direction: row;
        align-items: center; justify-content: space-between;
        margin: 0;
    }
    .ezera-sticky-mobile-actions .ezera-btn { flex: 1; text-align: center; margin-left: 14px; }
    .ezera-sticky-mobile-actions .ezera-single-price { flex: 1; }
    .ezera-single-actions:not(.ezera-sticky-mobile-actions) { flex-direction: column; align-items: flex-start; }
}

/* ===========================================================
   SINGLE KELAS: MENTORS & TESTIMONIALS
=========================================================== */
.ezera-single-mentors, .ezera-single-testimonials {
    max-width: 1080px; margin: 40px auto; padding: 0 24px;
}
.ezera-mentors-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; margin-top: 24px;
}
.ezera-mentor-card {
    background: #fff; border: 1px solid var(--ezera-border); border-radius: var(--ezera-radius);
    padding: 24px; text-align: center; box-shadow: var(--ezera-shadow);
}
.ezera-mentor-photo {
    width: 90px; height: 90px; border-radius: 50%; overflow: hidden; margin: 0 auto 16px;
    background: var(--ezera-light); display: flex; align-items: center; justify-content: center;
}
.ezera-mentor-photo img {
    width: 100%; height: 100%; object-fit: cover;
}
.ezera-mentor-avatar-fallback {
    font-size: 24px; font-weight: 800; color: var(--ezera-primary);
}
.ezera-mentor-card h3 {
    font-size: 16px; font-weight: 700; color: var(--ezera-dark); margin: 0 0 4px;
}
.ezera-mentor-card p {
    font-size: 13.5px; color: var(--ezera-gray); margin: 0;
}

.ezera-testimonials-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; margin-top: 24px;
}
.ezera-testi-card {
    background: var(--ezera-light); border-radius: var(--ezera-radius); padding: 24px;
    box-shadow: var(--ezera-shadow); display: flex; flex-direction: column; justify-content: space-between;
}
.ezera-testi-text {
    font-style: italic; color: var(--ezera-dark); line-height: 1.6; font-size: 14.5px; margin: 0 0 16px;
}
.ezera-testi-user {
    display: flex; align-items: center; gap: 12px;
}
.ezera-testi-photo {
    width: 44px; height: 44px; border-radius: 50%; overflow: hidden;
    background: var(--ezera-border); display: flex; align-items: center; justify-content: center;
}
.ezera-testi-photo img {
    width: 100%; height: 100%; object-fit: cover;
}
.ezera-testi-avatar-fallback {
    font-weight: 700; color: var(--ezera-gray);
}
.ezera-testi-user h4 {
    font-size: 14px; font-weight: 700; color: var(--ezera-dark); margin: 0;
}

@media (max-width: 600px) {
    .ezera-testimonials-grid { grid-template-columns: 1fr !important; }
    .ezera-mentors-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
    .ezera-mentor-card { padding: 14px !important; }
    .ezera-mentor-photo { width: 70px !important; height: 70px !important; }
}

/* ===========================================================
   ARCHIVE FILTERS (KELAS & PRODUK)
=========================================================== */
.ezera-archive-filters {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 34px; padding: 0 10px;
}
.ezera-filter-btn {
    display: inline-block; padding: 10px 22px; border-radius: 30px;
    font-size: 14px; font-weight: 700; text-decoration: none;
    color: var(--ezera-dark); background: var(--ezera-light);
    border: 1px solid var(--ezera-border); transition: all .2s ease;
}
.ezera-filter-btn:hover {
    background: #eef3ff; color: var(--ezera-primary); border-color: transparent;
}
.ezera-filter-btn.is-active {
    background: var(--ezera-primary); color: #fff; border-color: transparent;
    box-shadow: 0 6px 14px rgba(11,95,255,.2);
}

@media (max-width: 600px) {
    .ezera-archive-filters { gap: 6px !important; margin-bottom: 24px !important; }
    .ezera-filter-btn { padding: 8px 16px !important; font-size: 12.5px !important; }
}

/* Force sticky header everywhere */
.ezera-site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
}

/* ===========================================================
   KONTAK SECTION WITH GOOGLE MAPS
=========================================================== */
.ezera-kontak-grid-layout {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start;
}
.ezera-kontak-info {
    background: #fff; border: 1px solid var(--ezera-border); border-radius: var(--ezera-radius);
    padding: 40px; box-shadow: var(--ezera-shadow);
}
.ezera-kontak-map {
    border-radius: var(--ezera-radius); overflow: hidden; border: 1px solid var(--ezera-border);
    box-shadow: var(--ezera-shadow); line-height: 0;
}
.ezera-kontak-map iframe {
    display: block; width: 100%; border: 0;
}

@media (max-width: 860px) {
    .ezera-kontak-grid-layout { grid-template-columns: 1fr !important; gap: 30px !important; }
    .ezera-kontak-info { padding: 24px !important; }
    .ezera-kontak-map iframe { height: 350px !important; }
}
