/* =============================================
   OMAHJIWA – Main Stylesheet
============================================= */
:root {
  --blue-primary:  #5B8EC4;
  --blue-dark:     #3D6E9E;
  --blue-light:    #EEF4FB;
  --blue-mid:      #D0E3F5;
  --blue-accent:   #7BA7D4;
  --text-dark:     #1A2B3C;
  --text-body:     #3D5166;
  --text-muted:    #7A96B0;
  --bg-white:      #FFFFFF;
  --bg-offwhite:   #F7FAFD;
  --bg-section:    #EEF4FB;
  --border-light:  #D8E9F5;
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     36px;
  --shadow-card:   0 4px 24px rgba(61,110,158,.10);
  --shadow-hover:  0 12px 40px rgba(61,110,158,.18);
  --font-display:  'DM Serif Display', Georgia, serif;
  --font-body:     'Plus Jakarta Sans', sans-serif;
  --transition:    all .3s cubic-bezier(.25,.8,.25,1);
}
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:var(--font-body);color:var(--text-body);background:var(--bg-white);line-height:1.7;-webkit-font-smoothing:antialiased}
h1,h2,h3,h4{font-family:var(--font-display);color:var(--text-dark);line-height:1.2}
a{text-decoration:none}
img{max-width:100%}

/* UTILITIES */
.text-blue{color:var(--blue-primary)!important}
.bg-section{background:var(--bg-section)!important}
.section-label{display:inline-block;font-size:.78rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--blue-primary);background:var(--blue-light);border:1px solid var(--blue-mid);border-radius:100px;padding:.3rem 1rem;margin-bottom:1rem}
.section-title{font-size:clamp(1.9rem,4vw,2.8rem);margin-bottom:.75rem}
.section-subtitle{font-size:1.05rem;color:var(--text-muted);max-width:560px;margin:0 auto}
.divider{width:48px;height:3px;background:var(--blue-primary);border-radius:2px;margin:1rem auto 1.5rem}

/* BUTTONS */
.btn-oj{display:inline-flex;align-items:center;gap:.5rem;font-family:var(--font-body);font-weight:600;font-size:.92rem;border-radius:100px;padding:.72rem 1.75rem;transition:var(--transition);border:2px solid transparent;cursor:pointer;text-decoration:none}
.btn-oj-primary{background:var(--blue-primary);color:#fff;border-color:var(--blue-primary)}
.btn-oj-primary:hover{background:var(--blue-dark);border-color:var(--blue-dark);color:#fff;transform:translateY(-2px);box-shadow:0 8px 24px rgba(61,110,158,.28)}
.btn-oj-outline{background:transparent;color:var(--blue-primary);border-color:var(--blue-primary)}
.btn-oj-outline:hover{background:var(--blue-primary);color:#fff;transform:translateY(-2px)}
.btn-oj-white{background:#fff;color:var(--blue-dark);border-color:#fff}
.btn-oj-white:hover{background:var(--blue-light);color:var(--blue-dark);transform:translateY(-2px)}

/* NAVBAR */
#navbar{background:rgba(255,255,255,.95);backdrop-filter:blur(12px);border-bottom:1px solid var(--border-light);transition:var(--transition);padding:.9rem 0}
#navbar.scrolled{box-shadow:0 2px 20px rgba(61,110,158,.10)}
.navbar-brand{display:flex;align-items:center;gap:.7rem;font-family:var(--font-body);font-weight:700;font-size:1.35rem;color:var(--blue-dark)!important;letter-spacing:-.01em}
.nav-link{font-family:var(--font-body);font-size:.9rem;font-weight:500;color:var(--text-body)!important;padding:.4rem .9rem!important;border-radius:100px;transition:var(--transition)}
.nav-link:hover,.nav-link.active{color:var(--blue-primary)!important;background:var(--blue-light)}
.navbar-toggler{border:none;padding:.4rem .6rem}
.navbar-toggler:focus{box-shadow:none}
.navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%235B8EC4' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}

/* PAGE HERO */
.page-hero{padding:130px 0 70px;background:var(--bg-offwhite);border-bottom:1px solid var(--border-light)}
.hero-page-title{font-size:clamp(2rem,4.5vw,3.2rem);margin-bottom:.75rem}
.hero-page-sub{font-size:1.05rem;color:var(--text-muted);max-width:580px;margin:0 auto}

/* CARDS */
.oj-card{background:#fff;border-radius:var(--radius-lg);border:1px solid var(--border-light);transition:var(--transition);overflow:hidden}
.oj-card:hover{box-shadow:var(--shadow-hover);transform:translateY(-5px)}

/* SERVICE CARD */
.service-card{background:#fff;border-radius:var(--radius-lg);padding:2rem 1.8rem;border:1px solid var(--border-light);transition:var(--transition);height:100%;position:relative;overflow:hidden}
.service-card::after{content:"";position:absolute;bottom:0;left:0;right:0;height:3px;background:var(--blue-primary);transform:scaleX(0);transition:var(--transition)}
.service-card:hover{box-shadow:var(--shadow-hover);transform:translateY(-6px);border-color:var(--blue-mid)}
.service-card:hover::after{transform:scaleX(1)}
.service-icon{width:56px;height:56px;border-radius:var(--radius-sm);background:var(--blue-light);display:flex;align-items:center;justify-content:center;font-size:1.5rem;color:var(--blue-primary);margin-bottom:1.2rem}
.service-title{font-family:var(--font-display);font-size:1.25rem;color:var(--text-dark);margin-bottom:.6rem}
.service-desc{font-size:.9rem;color:var(--text-muted);line-height:1.65}
.service-link{display:inline-flex;align-items:center;gap:.4rem;font-size:.85rem;font-weight:600;color:var(--blue-primary);margin-top:1rem;transition:var(--transition)}
.service-link:hover{gap:.7rem;color:var(--blue-dark)}

/* ARTICLE CARD */
.article-card{background:#fff;border-radius:var(--radius-lg);overflow:hidden;border:1px solid var(--border-light);transition:var(--transition);height:100%}
.article-card:hover{box-shadow:var(--shadow-hover);transform:translateY(-6px)}
.article-img{aspect-ratio:16/9;overflow:hidden}
.article-img img{width:100%;height:100%;object-fit:cover;transition:var(--transition)}
.article-card:hover .article-img img{transform:scale(1.04)}
.article-body{padding:1.5rem}
.article-tag{display:inline-block;font-size:.72rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--blue-primary);background:var(--blue-light);border-radius:100px;padding:.2rem .75rem;margin-bottom:.8rem}
.article-title{font-family:var(--font-display);font-size:1.1rem;color:var(--text-dark);margin-bottom:.5rem;line-height:1.3}
.article-excerpt{font-size:.85rem;color:var(--text-muted);line-height:1.6;margin-bottom:1rem}
.article-meta{font-size:.78rem;color:var(--text-muted);display:flex;align-items:center;gap:.4rem}

/* TESTIMONIALS */
.testi-card{background:var(--bg-offwhite);border-radius:var(--radius-lg);padding:2rem;border:1px solid var(--border-light);height:100%;transition:var(--transition)}
.testi-card:hover{box-shadow:var(--shadow-hover);transform:translateY(-4px);background:#fff}
.testi-stars{color:#F5A623;font-size:.85rem;margin-bottom:1rem}
.testi-text{font-size:.93rem;color:var(--text-body);font-style:italic;line-height:1.7;margin-bottom:1.5rem}
.testi-author{display:flex;align-items:center;gap:.9rem}
.testi-avatar{width:44px;height:44px;border-radius:50%;background:var(--blue-primary);color:#fff;font-weight:700;font-size:.85rem;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.testi-name{font-weight:700;font-size:.9rem;color:var(--text-dark)}
.testi-role{font-size:.78rem;color:var(--text-muted)}

/* STATS BAR */
.stats-bar{background:var(--blue-primary);padding:60px 0}
.stat-item{text-align:center;color:#fff}
.stat-number{font-family:var(--font-display);font-size:clamp(2rem,4vw,2.8rem);display:block}
.stat-label{font-size:.85rem;opacity:.82;margin-top:.2rem}

/* TEAM */
.team-card{text-align:center}
.team-img{width:120px;height:120px;border-radius:50%;object-fit:cover;border:3px solid var(--blue-light);margin:0 auto 1rem;display:block}
.team-name{font-family:var(--font-display);font-size:1.1rem;color:var(--text-dark);margin-bottom:.2rem}
.team-role{font-size:.82rem;color:var(--blue-primary);font-weight:600;margin-bottom:.6rem}
.team-bio{font-size:.85rem;color:var(--text-muted);line-height:1.6}

/* FAQ */
.faq-item{border:1px solid var(--border-light);border-radius:var(--radius-md);margin-bottom:.75rem;overflow:hidden;transition:var(--transition)}
.faq-item:hover{border-color:var(--blue-mid)}
.faq-q{padding:1.1rem 1.4rem;font-weight:600;font-size:.95rem;color:var(--text-dark);cursor:pointer;display:flex;justify-content:space-between;align-items:center;background:#fff;border:none;width:100%;text-align:left}
.faq-q i{color:var(--blue-primary);transition:var(--transition);flex-shrink:0}
.faq-q[aria-expanded="true"] i{transform:rotate(180deg)}
.faq-a{padding:0 1.4rem;font-size:.9rem;color:var(--text-muted);line-height:1.7}

/* FORM */
.oj-form-control{width:100%;border:1.5px solid var(--border-light);border-radius:var(--radius-sm);padding:.75rem 1rem;font-family:var(--font-body);font-size:.93rem;color:var(--text-dark);background:#fff;transition:var(--transition);outline:none}
.oj-form-control:focus{border-color:var(--blue-primary);box-shadow:0 0 0 3px rgba(91,142,196,.12)}
.oj-form-label{display:block;font-size:.85rem;font-weight:600;color:var(--text-dark);margin-bottom:.4rem}
.oj-form-group{margin-bottom:1.2rem}
.form-error{font-size:.78rem;color:#e05252;margin-top:.3rem;display:none}
.form-error.show{display:block}

/* VOLUNTEER CARD */
.volunteer-banner{background:var(--blue-primary);border-radius:var(--radius-xl);padding:3.5rem;color:#fff;position:relative;overflow:hidden}
.volunteer-banner::before{content:"";position:absolute;top:-80px;right:-80px;width:320px;height:320px;border-radius:50%;background:rgba(255,255,255,.06);pointer-events:none}
.volunteer-banner::after{content:"";position:absolute;bottom:-60px;left:40px;width:200px;height:200px;border-radius:50%;background:rgba(255,255,255,.04);pointer-events:none}

/* STEP PILL */
.step-pill{display:inline-flex;align-items:center;gap:.5rem;background:var(--blue-light);border:1px solid var(--blue-mid);border-radius:100px;padding:.4rem 1rem;font-size:.82rem;font-weight:600;color:var(--blue-dark);margin:.3rem .3rem .3rem 0}
.step-pill .num{width:20px;height:20px;border-radius:50%;background:var(--blue-primary);color:#fff;font-size:.7rem;display:flex;align-items:center;justify-content:center}

/* ALERT */
.oj-alert{border-radius:var(--radius-md);padding:1rem 1.3rem;font-size:.9rem;font-weight:500;display:none}
.oj-alert.show{display:flex;align-items:center;gap:.7rem}
.oj-alert-success{background:#e8f5e9;color:#2e7d32;border:1px solid #a5d6a7}
.oj-alert-error{background:#fdecea;color:#c62828;border:1px solid #ef9a9a}

/* BLOG DETAIL */
.article-content h3{font-family:var(--font-display);font-size:1.4rem;color:var(--text-dark);margin:1.8rem 0 .8rem}
.article-content p{margin-bottom:1.2rem;font-size:.97rem;color:var(--text-body)}
.article-content ul,.article-content ol{padding-left:1.4rem;margin-bottom:1.2rem;font-size:.97rem;color:var(--text-body)}
.article-content li{margin-bottom:.4rem}
.article-content strong{color:var(--text-dark)}

/* FOOTER */
#footer{background:var(--text-dark);color:rgba(255,255,255,.75);padding:70px 0 0}
.footer-brand{display:flex;align-items:center;gap:.7rem;font-weight:700;font-size:1.2rem;color:#fff;margin-bottom:1rem}
.footer-desc{font-size:.88rem;opacity:.7;line-height:1.7;max-width:300px;margin-bottom:1.5rem}
.footer-social a{display:inline-flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:50%;border:1px solid rgba(255,255,255,.2);color:rgba(255,255,255,.7);font-size:1rem;transition:var(--transition);margin-right:.5rem}
.footer-social a:hover{background:var(--blue-primary);border-color:var(--blue-primary);color:#fff;transform:translateY(-2px)}
.footer-heading{color:#fff;font-size:.85rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;margin-bottom:1.2rem}
.footer-links{list-style:none;padding:0;margin:0}
.footer-links li{margin-bottom:.55rem}
.footer-links a{color:rgba(255,255,255,.65);font-size:.88rem;transition:var(--transition)}
.footer-links a:hover{color:#fff;padding-left:4px}
.footer-contact-item{display:flex;align-items:flex-start;gap:.7rem;font-size:.87rem;opacity:.7;margin-bottom:.7rem}
.footer-contact-item i{color:var(--blue-accent);margin-top:2px}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding:1.4rem 0;margin-top:3rem;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:.5rem;font-size:.8rem;opacity:.55}

/* BACK TO TOP */
#backToTop{position:fixed;bottom:28px;right:28px;width:44px;height:44px;border-radius:50%;background:var(--blue-primary);color:#fff;border:none;box-shadow:0 4px 16px rgba(61,110,158,.35);display:flex;align-items:center;justify-content:center;font-size:1.1rem;cursor:pointer;opacity:0;visibility:hidden;transition:var(--transition);z-index:999}
#backToTop.show{opacity:1;visibility:visible}
#backToTop:hover{background:var(--blue-dark);transform:translateY(-3px)}

/* ANIMATIONS */
.anim{opacity:0;transform:translateY(30px);transition:opacity .6s ease,transform .6s ease}
.anim.visible{opacity:1;transform:translateY(0)}
.anim-delay-1{transition-delay:.1s}
.anim-delay-2{transition-delay:.2s}
.anim-delay-3{transition-delay:.3s}

/* TRUST BAR */
#trust-bar{background:#fff;border-top:1px solid var(--border-light);border-bottom:1px solid var(--border-light);padding:1.8rem 0}
.trust-item{display:flex;align-items:center;gap:.7rem;font-size:.88rem;font-weight:500;color:var(--text-muted)}
.trust-item i{color:var(--blue-primary);font-size:1.1rem}

/* BREADCRUMB */
.oj-breadcrumb{font-size:.82rem;color:var(--text-muted);margin-bottom:2rem}
.oj-breadcrumb a{color:var(--blue-primary)}
.oj-breadcrumb a:hover{text-decoration:underline}

/* KOMUNITAS */
.community-feature{display:flex;align-items:flex-start;gap:1rem;margin-bottom:1.5rem}
.community-feature-icon{width:48px;height:48px;border-radius:var(--radius-sm);background:var(--blue-light);display:flex;align-items:center;justify-content:center;font-size:1.3rem;color:var(--blue-primary);flex-shrink:0}

/* RESPONSIVE */
@media(max-width:991px){
  .page-hero{padding:110px 0 50px}
  .volunteer-banner{padding:2.2rem 1.5rem}
}
@media(max-width:575px){
  .btn-oj{padding:.62rem 1.4rem;font-size:.85rem}
  .section-title{font-size:1.7rem}
  .hero-page-title{font-size:1.9rem}
}
