/*
Theme Name: Joki TOEFL Express
Theme URI: https://jokitoeflexpress.com
Author: Joki TOEFL Express
Author URI: https://jokitoeflexpress.com
Description: Tema profesional untuk layanan Joki TOEFL ITP ETS, TPA Bappenas, dan Sertifikasi Bahasa Inggris. Didesain untuk konversi tinggi dengan tampilan modern dan mobile-friendly.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jokitoefl
Tags: education, service, landing-page, custom-colors, responsive-layout
*/

/* ========================================
   CSS VARIABLES
======================================== */
:root {
    --green-dark:    #0D3B1E;
    --green-primary: #1B5E2F;
    --green-medium:  #2E7D32;
    --green-light:   #4CAF50;
    --green-pale:    #E8F5E9;
    --gold:          #FFB300;
    --gold-dark:     #FF8F00;
    --white:         #FFFFFF;
    --gray-100:      #F8F9FA;
    --gray-200:      #E9ECEF;
    --gray-400:      #ADB5BD;
    --gray-600:      #6C757D;
    --gray-800:      #343A40;
    --black:         #0A0A0A;
    --text:          #1A1A1A;
    --text-muted:    #555555;

    --font-main:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading:  'Poppins', var(--font-main);

    --radius-sm:     6px;
    --radius-md:     12px;
    --radius-lg:     20px;
    --radius-xl:     32px;
    --shadow-sm:     0 2px 8px rgba(0,0,0,.08);
    --shadow-md:     0 4px 20px rgba(0,0,0,.12);
    --shadow-lg:     0 8px 40px rgba(0,0,0,.16);
    --shadow-green:  0 4px 20px rgba(27,94,47,.30);

    --transition:    .25s ease;
    --max-width:     1200px;
}

/* ========================================
   RESET & BASE
======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-main);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--green-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-medium); }

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--gray-800);
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ========================================
   LAYOUT UTILITIES
======================================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 48px 0; }

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }

.flex { display: flex; }
.flex-center { align-items: center; justify-content: center; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

/* ========================================
   SECTION HEADER
======================================== */
.section-header { margin-bottom: 52px; text-align: center; }

.section-label {
    display: inline-block;
    background: var(--green-pale);
    color: var(--green-primary);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: var(--gray-800);
    margin-bottom: 16px;
}

.section-title span { color: var(--green-primary); }

.section-desc {
    font-size: 1.0625rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: .9375rem;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(255,179,0,.35);
}
.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,179,0,.45);
}

.btn-green {
    background: var(--green-primary);
    color: #ffffff !important;
    border-color: var(--green-primary);
    box-shadow: var(--shadow-green);
}
.btn-green:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(27,94,47,.40);
}

.btn-outline {
    background: transparent;
    color: var(--green-primary);
    border-color: var(--green-primary);
}
.btn-outline:hover {
    background: var(--green-primary);
    color: var(--white);
}

.btn-lg { padding: 18px 36px; font-size: 1.0625rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 10px 20px; font-size: .875rem; }

.btn-wa {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
    box-shadow: 0 4px 16px rgba(37,211,102,.35);
}
.btn-wa:hover {
    background: #128C7E;
    border-color: #128C7E;
    color: var(--white);
    transform: translateY(-2px);
}

/* ========================================
   BADGE / PILL
======================================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green-pale);
    color: var(--green-primary);
    font-size: .8125rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
}
.badge-gold {
    background: #FFF8E1;
    color: var(--gold-dark);
}

/* WordPress custom logo */
.custom-logo-link { display: flex; align-items: center; }
.custom-logo-link img,
.custom-logo {
    width: 130px !important;
    height: 130px !important;
    object-fit: contain;
    border-radius: 0;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.18));
}

/* ========================================
   NAVBAR
======================================== */
#site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    overflow: visible;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 24px;
    overflow: visible;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.125rem;
    color: var(--green-dark);
    text-decoration: none;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}
.navbar-brand:hover { color: var(--green-primary); }

.navbar-brand .brand-logo {
    width: 130px;
    height: 130px;
    border-radius: 0;
    object-fit: contain;
}

.navbar-brand .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.navbar-brand .brand-text span {
    display: block;
    font-size: 1rem;
    font-weight: 800;
}

.navbar-brand .brand-text small {
    display: block;
    font-size: .75rem;
    font-weight: 500;
    color: var(--green-medium);
    letter-spacing: .3px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.navbar-nav a {
    font-size: .9rem;
    font-weight: 500;
    color: var(--gray-800);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.navbar-nav a:hover,
.navbar-nav a.current-menu-item { background: var(--green-pale); color: var(--green-primary); }

.navbar-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--gray-800);
}
.menu-toggle svg { display: block; }

/* Mobile nav */
.navbar-nav-mobile {
    display: none;
    flex-direction: column;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 12px 0 20px;
}
.navbar-nav-mobile.open { display: flex; }
.navbar-nav-mobile a {
    padding: 12px 24px;
    font-size: .9375rem;
    color: var(--gray-800);
    font-weight: 500;
    border-bottom: 1px solid var(--gray-100);
}
.navbar-nav-mobile a:hover { background: var(--green-pale); color: var(--green-primary); }

/* ========================================
   HERO SECTION
======================================== */
.hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 50%, #1B8040 100%);
    color: var(--white);
    padding: 96px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content { max-width: 580px; }

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.hero-badge {
    background: rgba(255,255,255,.15);
    color: var(--white);
    font-size: .78rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,.25);
    backdrop-filter: blur(4px);
}

.hero h1 {
    font-size: clamp(1.875rem, 4.5vw, 3rem);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 span { color: var(--gold); }

.hero-desc {
    font-size: 1.0625rem;
    color: rgba(255,255,255,.85);
    line-height: 1.75;
    margin-bottom: 32px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.2);
}

.hero-stat-number {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--gold);
    font-family: var(--font-heading);
    line-height: 1;
}

.hero-stat-label {
    font-size: .8125rem;
    color: rgba(255,255,255,.75);
    margin-top: 4px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card-stack {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.hero-main-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px;
    padding-top: 60px;
    padding-bottom: 64px;
    box-shadow: var(--shadow-lg);
}


.hero-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.hero-card-desc {
    font-size: .9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.hero-card-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .875rem;
    color: var(--gray-800);
}

.hero-card-list li::before {
    content: '✓';
    width: 22px;
    height: 22px;
    background: var(--green-pale);
    color: var(--green-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.hero-float-badge {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--gray-800);
    white-space: nowrap;
}

.hero-float-badge .float-icon {
    font-size: 1.25rem;
}

.hero-float-1 { top: 12px; left: -16px; }
.hero-float-2 { bottom: 12px; right: -16px; }

/* ========================================
   TRUST BAR
======================================== */
.trust-bar {
    background: var(--green-dark);
    padding: 20px 0;
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.85);
    font-size: .875rem;
    font-weight: 500;
}

.trust-item .ti-icon { font-size: 1.125rem; color: var(--gold); }

/* ========================================
   SERVICES SECTION
======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-primary), var(--green-light));
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}

.service-card:hover {
    border-color: var(--green-primary);
    box-shadow: var(--shadow-green);
    transform: translateY(-4px);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--green-pale);
    color: var(--green-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.625rem;
    margin-bottom: 20px;
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: var(--green-primary);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.125rem;
    margin-bottom: 10px;
    color: var(--gray-800);
}

.service-card p {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 20px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.service-tag {
    background: var(--green-pale);
    color: var(--green-primary);
    font-size: .75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
}

/* ========================================
   HOW IT WORKS
======================================== */
.how-bg { background: var(--green-dark); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    position: relative;
}

.step-card {
    text-align: center;
    padding: 36px 24px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    position: relative;
}

.step-card:hover {
    background: rgba(255,255,255,.10);
    transform: translateY(-4px);
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    font-size: 1.375rem;
    font-weight: 800;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.0625rem;
    color: var(--white);
    margin-bottom: 10px;
}

.step-card p {
    font-size: .875rem;
    color: rgba(255,255,255,.7);
    line-height: 1.65;
}

/* ========================================
   TESTIMONIALS
======================================== */
.testi-bg { background: var(--gray-100); }

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testi-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
    color: var(--gold);
    font-size: 1rem;
}

.testi-text {
    font-size: .9375rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testi-score {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green-pale);
    color: var(--green-primary);
    font-size: .8125rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.testi-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}

.testi-avatar {
    width: 44px;
    height: 44px;
    background: var(--green-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.testi-name { font-weight: 700; font-size: .9375rem; color: var(--gray-800); }
.testi-meta { font-size: .8125rem; color: var(--text-muted); }

/* ========================================
   WHY US SECTION
======================================== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-list { display: flex; flex-direction: column; gap: 20px; }

.why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-icon {
    width: 48px;
    height: 48px;
    background: var(--green-pale);
    color: var(--green-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    flex-shrink: 0;
}

.why-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--gray-800);
}

.why-content p {
    font-size: .875rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.why-visual {
    background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    color: var(--white);
}

.why-visual-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.3;
}

.why-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.why-stat-box {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-align: center;
}

.why-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    font-family: var(--font-heading);
    line-height: 1;
}

.why-stat-lbl {
    font-size: .8rem;
    color: rgba(255,255,255,.75);
    margin-top: 6px;
}

.why-guarantee {
    background: var(--gold);
    color: var(--black);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: .9375rem;
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -60px; right: -60px;
    width: 300px; height: 300px;
    background: rgba(255,255,255,.04);
    border-radius: 50%;
}

.cta-section h2 {
    color: var(--white);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}

.cta-section h2 span { color: var(--gold); }

.cta-section p {
    color: rgba(255,255,255,.8);
    font-size: 1.0625rem;
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ========================================
   BLOG SECTION
======================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.post-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--green-light);
    transform: translateY(-3px);
}

.post-card-thumb {
    aspect-ratio: 16/9;
    background: var(--green-pale);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-primary);
    font-size: 3rem;
}

.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.post-card:hover .post-card-thumb img { transform: scale(1.04); }

.post-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }

.post-card-cats {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.post-cat-tag {
    background: var(--green-pale);
    color: var(--green-primary);
    font-size: .75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
}

.post-card h3 {
    font-size: 1.0625rem;
    line-height: 1.45;
    margin-bottom: 12px;
    color: var(--gray-800);
}

.post-card h3 a { color: inherit; }
.post-card h3 a:hover { color: var(--green-primary); }

.post-card-excerpt {
    font-size: .875rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
    flex: 1;
}

.post-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
    font-size: .8125rem;
    color: var(--gray-400);
}

.post-card-footer a {
    color: var(--green-primary);
    font-weight: 600;
    font-size: .875rem;
}
.post-card-footer a:hover { color: var(--green-dark); }

/* ========================================
   SINGLE POST / PAGE
======================================== */
.content-wrap {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    padding: 60px 0 80px;
    align-items: start;
}

.content-main { min-width: 0; }

.post-header { margin-bottom: 32px; }

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
}

.post-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .875rem;
    color: var(--gray-600);
}

.post-header h1 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.3;
    color: var(--gray-800);
    margin-bottom: 20px;
}

.post-featured-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 36px;
}

.post-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
}

.post-content h2 { font-size: 1.625rem; margin: 36px 0 16px; color: var(--gray-800); }
.post-content h3 { font-size: 1.25rem; margin: 28px 0 12px; color: var(--gray-800); }
.post-content p { margin-bottom: 18px; }
.post-content ul, .post-content ol {
    margin: 0 0 18px 24px;
    list-style: disc;
}
.post-content li { margin-bottom: 8px; }
.post-content blockquote {
    border-left: 4px solid var(--green-primary);
    padding: 16px 20px;
    background: var(--green-pale);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 24px 0;
    font-style: italic;
    color: var(--gray-800);
}
.post-content a { color: var(--green-primary); text-decoration: underline; }
.post-content img { border-radius: var(--radius-md); margin: 16px 0; }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 28px; }

.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.sidebar-widget-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--green-pale);
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
    color: var(--white);
    border: none;
    text-align: center;
}

.sidebar-cta .sidebar-widget-title { color: var(--white); border-color: rgba(255,255,255,.2); }
.sidebar-cta p { color: rgba(255,255,255,.8); font-size: .9rem; margin-bottom: 16px; }

.sidebar-links { display: flex; flex-direction: column; gap: 8px; }
.sidebar-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-800);
    font-size: .9rem;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.sidebar-links a:hover { background: var(--green-pale); color: var(--green-primary); }
.sidebar-links a::before { content: '→'; color: var(--green-primary); }

/* ========================================
   ARCHIVE / BLOG PAGE
======================================== */
.page-hero {
    background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.page-hero h1 { color: var(--white); font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.0625rem; }

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    padding: 60px 0 80px;
    align-items: start;
}

.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    padding-top: 48px;
}

.pagination a, .pagination span {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: .9rem;
    color: var(--gray-800);
    transition: all var(--transition);
}

.pagination a:hover { background: var(--green-pale); border-color: var(--green-primary); color: var(--green-primary); }
.pagination .current { background: var(--green-primary); border-color: var(--green-primary); color: var(--white); }

/* ========================================
   FOOTER
======================================== */
#site-footer {
    background: var(--green-dark);
    color: var(--white);
}

#site-footer a,
#site-footer a:link,
#site-footer a:visited {
    color: var(--gold);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 64px 0 48px;
}

.footer-brand { max-width: 320px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo img { width: 40px; border-radius: var(--radius-sm); }
.footer-logo span { color: var(--white); font-family: var(--font-heading); font-weight: 800; font-size: 1.0625rem; }

.footer-tagline { font-size: .9rem; line-height: 1.7; margin-bottom: 20px; }

.footer-socials { display: flex; gap: 10px; }
.footer-social {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.1);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    color: var(--white);
    transition: all var(--transition);
}
.footer-social:hover { background: var(--gold); color: var(--black); }

.footer-col-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--white) !important;
    font-size: .9375rem;
    margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    color: var(--gold);
    font-size: .875rem;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    transition: all var(--transition);
}
.footer-links a::before { content: '›'; font-size: 1rem; flex-shrink: 0; line-height: 1.4; }
.footer-links a:hover { color: var(--white); text-decoration: underline; }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .875rem;
    color: var(--white);
    margin-bottom: 14px;
}

.footer-contact-icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: .8125rem;
    color: var(--white);
}

.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { color: var(--white); text-decoration: underline; }

/* ========================================
   FLOATING WHATSAPP BUTTON
======================================== */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: var(--white);
    padding: 14px 20px;
    border-radius: 100px;
    font-weight: 700;
    font-size: .9375rem;
    box-shadow: 0 4px 24px rgba(37,211,102,.5);
    transition: all var(--transition);
    text-decoration: none;
    animation: pulse-wa 2.5s infinite;
}

.wa-float:hover {
    background: #128C7E;
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 6px 32px rgba(37,211,102,.6);
    animation: none;
}

.wa-float svg { width: 22px; height: 22px; flex-shrink: 0; }

@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,.5); }
    50% { box-shadow: 0 4px 36px rgba(37,211,102,.75); }
}

/* ========================================
   404 PAGE
======================================== */
.error-404 {
    text-align: center;
    padding: 120px 24px;
}

.error-404 .error-code {
    font-size: 8rem;
    font-weight: 900;
    color: var(--green-pale);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 16px;
}

.error-404 h1 { font-size: 2rem; margin-bottom: 16px; }
.error-404 p { color: var(--text-muted); margin-bottom: 32px; }

/* ========================================
   SEARCH FORM
======================================== */
.search-form {
    display: flex;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.search-field {
    flex: 1;
    padding: 10px 16px;
    border: none;
    outline: none;
    font-size: .9rem;
    font-family: var(--font-main);
}

.search-submit {
    background: var(--green-primary);
    color: var(--white);
    border: none;
    padding: 10px 18px;
    cursor: pointer;
    font-weight: 600;
    font-size: .875rem;
    transition: background var(--transition);
}

.search-submit:hover { background: var(--green-dark); }

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
    .why-grid { gap: 40px; }
}

@media (max-width: 768px) {
    .section-pad { padding: 60px 0; }
    .container { padding: 0 16px; }

    /* Navbar */
    .navbar-nav { display: none; }
    .menu-toggle { display: block; }
    .navbar-actions .btn-sm { display: none; }

    /* Hero */
    .hero { padding: 60px 0; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-image { display: none; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }

    /* Grids */
    .why-grid { grid-template-columns: 1fr; }
    .content-wrap { grid-template-columns: 1fr; }
    .blog-layout { grid-template-columns: 1fr; }
    .sidebar { display: none; }

    /* Footer */
    .footer-main { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    /* WA float */
    .wa-float span { display: none; }
    .wa-float { padding: 14px; border-radius: 50%; }
}

@media (max-width: 480px) {
    .hero-stats { grid-template-columns: 1fr; gap: 8px; }
    .hero-ctas .btn-lg { padding: 14px 24px; font-size: .9375rem; }
    .trust-bar-inner { flex-direction: column; gap: 10px; }
}

/* ========================================
   WORDPRESS CORE CLASSES
======================================== */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .875rem; color: var(--gray-600); text-align: center; margin-top: 8px; }
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.screen-reader-text { position: absolute; left: -9999px; }

/* ========================================
   ANIMATION
======================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in-up { animation: fadeInUp .5s ease forwards; }

/* ========================================
   SIDEBAR WIDGETS — Recent Posts & Archive
======================================== */
.widget_recent_entries ul,
.widget_archive ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget_recent_entries ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 9px 0;
    border-bottom: 1px solid #f3f4f6;
}
.widget_recent_entries ul li:last-child { border-bottom: none; }

.widget_recent_entries ul li::before {
    content: "→";
    color: var(--green-500, #22c55e);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.widget_recent_entries ul li a {
    font-size: 13px;
    line-height: 1.5;
    color: #374151;
    text-decoration: none;
    transition: color .2s;
}
.widget_recent_entries ul li a:hover { color: var(--green-700, #15803d); }

.widget_archive ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 10px;
    border-radius: 8px;
    margin-bottom: 3px;
    transition: background .2s;
}
.widget_archive ul li:hover { background: #f0fdf4; }

.widget_archive ul li a {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: color .2s;
}

/* ========================================
   ARCHIVE HERO — /artikel (konversi)
======================================== */
.archive-hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 55%, var(--green-medium) 100%);
    padding: 72px 0 60px;
    text-align: center;
    color: var(--white);
}

.archive-hero-trust {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.archive-hero-trust span {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.22);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: .8125rem;
    font-weight: 600;
}

.archive-hero h1 {
    font-size: clamp(1.75rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
}
.archive-hero h1 em {
    color: var(--gold);
    font-style: normal;
}

.archive-hero p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(255,255,255,.88);
    max-width: 720px;
    margin: 0 auto 32px;
}
.archive-hero p strong { color: var(--gold); font-weight: 700; }

.archive-hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.archive-btn-wa {
    background: #25D366;
    color: var(--white) !important;
    padding: 15px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: .9375rem;
    transition: background var(--transition);
}
.archive-btn-wa:hover { background: #1aab53; }

.archive-btn-ghost {
    border: 2px solid rgba(255,255,255,.45);
    color: var(--white) !important;
    padding: 15px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: .9375rem;
    transition: all var(--transition);
}
.archive-btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255,255,255,.08);
}

.archive-hero-cities {
    font-size: .8125rem;
    color: rgba(255,255,255,.6);
    margin: 0;
}
.archive-hero-cities strong { color: var(--gold); opacity: 1; }

/* ========================================
   PILLAR CARDS — 6 Layanan Utama
======================================== */
.archive-pillars {
    background: #f0f4f0;
    padding: 56px 0 48px;
}

.archive-pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.pillar-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}
.pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pillar-card-header {
    padding: 18px 24px 14px;
    display: flex;
    align-items: center;
}
.header-toefl   { background: linear-gradient(135deg, #1B5E2F, #2E7D32); }
.header-tpa     { background: linear-gradient(135deg, #4A148C, #6A1B9A); }
.header-bumn    { background: linear-gradient(135deg, #B71C1C, #C62828); }
.header-british { background: linear-gradient(135deg, #0D47A1, #1565C0); }
.header-npsn    { background: linear-gradient(135deg, #BF360C, #E64A19); }

.pillar-badge {
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.3);
    color: var(--white);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 5px 12px;
    border-radius: 100px;
}

.pillar-card-body {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.pillar-pain {
    display: inline-block;
    background: #FEF3C7;
    color: #92400E;
    font-size: .8125rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    width: fit-content;
    line-height: 1.4;
}

.pillar-title {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--green-dark);
    line-height: 1.35;
    margin: 0;
}

.pillar-copy {
    font-size: .875rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin: 0;
    flex: 1;
}

.pillar-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.pillar-meta span {
    font-size: .75rem;
    font-weight: 600;
    color: #065f46;
    background: #ecfdf5;
    padding: 4px 10px;
    border-radius: 6px;
}

.pillar-for {
    font-size: .8125rem;
    color: var(--gray-500);
    background: var(--gray-50, #f9fafb);
    padding: 10px 14px;
    border-radius: 8px;
    border-left: 3px solid var(--green-light);
    line-height: 1.5;
}
.pillar-for strong { color: var(--green-primary); }

.pillar-btn {
    margin-top: 4px;
    align-self: flex-start;
    font-size: .875rem;
}

/* Blog section divider */
.archive-blog-header {
    padding: 40px 0 0;
    border-top: 1px solid var(--gray-200);
    margin-top: 8px;
}
.archive-blog-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: 6px;
}
.archive-blog-header p {
    color: var(--text-muted);
    font-size: .9375rem;
    margin: 0;
}

/* ========================================
   SIDEBAR — CTA Konversi v2
======================================== */
.sidebar-cta-v2 {
    background: var(--green-dark);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    text-align: center;
    margin-bottom: 0;
}
.scta-icon { font-size: 2.25rem; margin-bottom: 12px; }
.sidebar-cta-v2 h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}
.sidebar-cta-v2 > p {
    font-size: .875rem;
    line-height: 1.65;
    color: rgba(255,255,255,.82);
    margin-bottom: 18px;
}

.scta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 18px;
}
.scta-stat {
    background: rgba(255,255,255,.09);
    border-radius: 10px;
    padding: 10px 4px;
}
.scta-stat strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gold);
}
.scta-stat span { font-size: .6875rem; color: rgba(255,255,255,.65); }

.scta-guarantee {
    background: rgba(255,179,0,.12);
    border: 1px solid rgba(255,179,0,.28);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: .8125rem;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 16px;
    color: rgba(255,255,255,.88);
}
.scta-guarantee strong { color: var(--gold); }

.scta-wa-btn {
    display: block;
    background: #25D366;
    color: var(--white) !important;
    padding: 14px 18px;
    border-radius: 10px;
    font-weight: 700;
    font-size: .9375rem;
    line-height: 1.4;
    text-align: center;
    transition: background var(--transition);
    margin-bottom: 10px;
    text-decoration: none;
}
.scta-wa-btn small {
    display: block;
    font-size: .75rem;
    font-weight: 400;
    opacity: .88;
    margin-top: 2px;
}
.scta-wa-btn:hover { background: #1aab53; }

.scta-urgency {
    font-size: .75rem;
    color: rgba(255,255,255,.5);
    margin: 0;
}

/* Sidebar service links */
.sidebar-services { padding: 20px; }
.svc-links { display: flex; flex-direction: column; gap: 2px; }
.svc-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--green-primary) !important;
    font-size: .8125rem;
    font-weight: 600;
    padding: 9px 0;
    border-bottom: 1px solid var(--gray-100);
    transition: all .15s;
    text-decoration: none;
}
.svc-links a:last-child { border-bottom: none; }
.svc-links a:hover { color: var(--gold-dark, #FF8F00) !important; padding-left: 4px; }

.svc-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.dot-toefl   { background: var(--green-primary); }
.dot-tpa     { background: #6A1B9A; }
.dot-bumn    { background: #B71C1C; }
.dot-british { background: #0D47A1; }
.dot-npsn    { background: #E64A19; }

/* ========================================
   RESPONSIVE — Archive + Pillars
======================================== */
@media (max-width: 900px) {
    .archive-pillars-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .archive-hero { padding: 48px 0 40px; }
    .archive-hero-trust { gap: 6px; }
    .archive-hero-trust span { font-size: .75rem; padding: 4px 10px; }
    .archive-hero-actions { flex-direction: column; align-items: center; }
    .archive-btn-wa, .archive-btn-ghost { width: 100%; max-width: 320px; text-align: center; }
    .pillar-title { font-size: 1rem; }
    .pillar-btn { align-self: stretch; text-align: center; }
    .scta-stat strong { font-size: 1.0625rem; }
}
.widget_archive ul li a:hover { color: var(--green-700, #15803d); }
