/* ============================================================
   APDATIKNAS — Professional Website Stylesheet v4
   Clean, modern, corporate design system.

   Color Palette:
     Navy Deep   : #0b1f3a   (hero, navbar, dark sections)
     Navy Mid    : #163358   (gradients, dark cards)
     Navy Light  : #1e4d8c   (interactive accents)
     Gold        : #c8861a   (primary accent)
     Gold Light  : #e89c22   (hover, highlights)
     Gold Pale   : #fdf3dc   (badge backgrounds)
     Surface     : #f3f6fb   (light section bg)
     Surface Mid : #e8eef8   (subtle card bg)
     Text Dark   : #0f1c2e   (headings)
     Text Body   : #3d5166   (body text)
     Text Muted  : #6b859e   (labels, secondary)
     Border      : #dde5f0   (card borders)
   ============================================================ */

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: 16px; color: #0f1c2e;
    background: #fff; line-height: 1.7;
    overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: color .2s; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
    /* Colors */
    --c-navy:      #0b1f3a;
    --c-navy-mid:  #163358;
    --c-navy-lt:   #1e4d8c;
    --c-navy-pale: #e4edf8;
    --c-gold:      #c8861a;
    --c-gold-lt:   #e89c22;
    --c-gold-pale: #fdf3dc;
    --c-green:     #22c55e;
    --c-surface:   #f3f6fb;
    --c-surf-md:   #e8eef8;
    --c-white:     #ffffff;
    --c-text:      #0f1c2e;
    --c-text-bd:   #3d5166;
    --c-text-mt:   #6b859e;
    --c-border:    #dde5f0;
    --c-border-lt: #edf2f9;

    /* Radii */
    --r-sm:  6px;
    --r-md:  10px;
    --r-lg:  16px;
    --r-xl:  22px;
    --r-2xl: 32px;

    /* Shadows */
    --sh-xs: 0 1px 4px rgba(11,31,58,.06);
    --sh-sm: 0 2px 12px rgba(11,31,58,.08);
    --sh-md: 0 6px 28px rgba(11,31,58,.10);
    --sh-lg: 0 14px 52px rgba(11,31,58,.13);
    --sh-xl: 0 24px 80px rgba(11,31,58,.17);

    /* Transitions */
    --t-fast: .18s ease;
    --t-med:  .26s cubic-bezier(.4,0,.2,1);
    --t-slow: .4s  cubic-bezier(.4,0,.2,1);
}

/* ── Typography scale ──────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
    font-family: 'Rajdhani', 'Inter', sans-serif;
    font-weight: 700; line-height: 1.2; color: var(--c-text);
}
h1 { font-size: clamp(2.1rem, 5.5vw, 3.4rem); letter-spacing: -.6px; }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.5rem); letter-spacing: -.35px; }
h3 { font-size: clamp(1.05rem, 2.5vw, 1.45rem); letter-spacing: -.1px; }
h4 { font-size: 1.02rem; }
p  { color: var(--c-text-bd); line-height: 1.82; }
strong { font-weight: 700; }

/* ── Layout ────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
section { padding: 100px 0; }

/* ── Section badge pill ────────────────────────────────────── */
.section-badge {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 5px 16px; border-radius: 99px;
    background: var(--c-gold-pale);
    border: 1px solid rgba(200,134,26,.22);
    color: var(--c-gold);
    font-size: .72rem; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 14px;
}
.section-badge.light {
    background: rgba(255,255,255,.1);
    color: #f5cc72;
    border-color: rgba(255,255,255,.18);
}

/* ── Section header block ──────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-title { margin-bottom: 0; }
.section-header .section-title.light { color: #fff; }
.section-divider {
    width: 48px; height: 3px; border-radius: 2px;
    background: linear-gradient(90deg, var(--c-gold), var(--c-gold-lt));
    margin: 16px auto 18px;
}
.section-dark  .section-divider,
#contact       .section-divider { opacity: .7; }
.section-header .section-desc {
    max-width: 560px; margin: 0 auto;
    font-size: .97rem; color: var(--c-text-mt); line-height: 1.7;
}
.section-header .section-desc.light { color: rgba(255,255,255,.65); }

/* ── Section bg variants ───────────────────────────────────── */
.section-dark  { background: var(--c-navy); }
.section-light { background: var(--c-surface); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 30px; border-radius: var(--r-md);
    font-family: inherit; font-size: .9rem; font-weight: 700;
    letter-spacing: .15px; white-space: nowrap;
    border: 2px solid transparent; cursor: pointer;
    transition: all var(--t-med); line-height: 1;
}
/* Gold primary */
.btn-primary {
    background: var(--c-gold); color: #fff; border-color: var(--c-gold);
    box-shadow: 0 4px 20px rgba(200,134,26,.36);
}
.btn-primary:hover {
    background: #a97015; border-color: #a97015;
    box-shadow: 0 8px 30px rgba(200,134,26,.46);
    transform: translateY(-2px);
}
/* Outline white (for dark bg) */
.btn-outline {
    background: transparent; color: #fff;
    border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
    background: rgba(255,255,255,.1); border-color: #fff;
    transform: translateY(-2px);
}
/* Outline navy */
.btn-outline-blue {
    background: transparent; color: var(--c-navy); border-color: var(--c-navy);
}
.btn-outline-blue:hover {
    background: var(--c-navy); color: #fff; transform: translateY(-2px);
}
/* Outline neutral */
.btn-outline-dark {
    background: transparent; color: var(--c-navy); border-color: var(--c-border);
}
.btn-outline-dark:hover {
    background: var(--c-navy); color: #fff; border-color: var(--c-navy);
    transform: translateY(-2px);
}
/* Google Maps button */
.btn-map {
    background: var(--c-gold); color: #fff; border-color: var(--c-gold);
    padding: 10px 22px; font-size: .85rem; font-weight: 700;
    white-space: nowrap;
}
.btn-map:hover {
    background: #a97015; border-color: #a97015; transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }
.btn-sm   { padding: 8px 18px; font-size: .81rem; }

/* ── Preloader ─────────────────────────────────────────────── */
#preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--c-navy);
    display: flex; align-items: center; justify-content: center;
    transition: opacity .5s ease, visibility .5s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem; font-weight: 700;
    color: #fff; letter-spacing: 5px; margin-bottom: 28px;
}
.preloader-text span { color: var(--c-gold-lt); }
.preloader-bar {
    width: 200px; height: 3px; background: rgba(255,255,255,.12);
    border-radius: 3px; overflow: hidden; margin: 0 auto;
}
.preloader-fill {
    height: 100%; width: 0%;
    background: linear-gradient(90deg, var(--c-gold), var(--c-gold-lt));
    border-radius: 3px; animation: prefill 1.5s ease forwards;
}
@keyframes prefill { to { width: 100%; } }

/* ── Navbar ────────────────────────────────────────────────── */
#navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000; height: 68px;
    background: rgba(11,31,58,.96);
    backdrop-filter: blur(18px) saturate(1.4);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    border-bottom: 1px solid rgba(255,255,255,.065);
    transition: background var(--t-med), box-shadow var(--t-med);
}
#navbar.scrolled {
    background: rgba(8,22,46,.99);
    box-shadow: 0 4px 32px rgba(0,0,0,.3);
}
.nav-container {
    max-width: 1280px; margin: 0 auto;
    padding: 0 28px; height: 68px;
    display: flex; align-items: center; justify-content: space-between;
}
/* Logo block */
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    flex-shrink: 0; color: #fff;
    text-decoration: none;
}
.nav-logo-img {
    height: 44px; width: auto; max-width: 164px;
    object-fit: contain; flex-shrink: 0;
    /* logo-white.png is already white — no CSS filter needed */
    transition: opacity var(--t-med), transform var(--t-med);
}
.nav-logo:hover .nav-logo-img { opacity: .82; transform: scale(1.03); }
.nav-logo-text { display: none; line-height: 1.15; }
@media (min-width: 440px) { .nav-logo-text { display: block; } }
.nav-logo-main {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.02rem; font-weight: 700;
    color: #fff; letter-spacing: 1.3px;
}
.nav-logo-sub {
    display: block; font-size: .59rem;
    color: rgba(255,255,255,.44); letter-spacing: .4px;
}
/* Nav menu */
.nav-menu {
    display: flex; align-items: center; gap: 2px; list-style: none;
}
.nav-link {
    display: block; padding: 7px 13px; border-radius: 7px;
    font-size: .84rem; font-weight: 500;
    color: rgba(255,255,255,.76);
    transition: color .18s, background .18s;
}
.nav-link:hover, .nav-link.active {
    color: #fff; background: rgba(255,255,255,.1);
}
.nav-cta .nav-link {
    background: var(--c-gold); color: #fff;
    padding: 8px 20px; border-radius: 8px; font-weight: 700;
}
.nav-cta .nav-link:hover { background: #a97015; }
/* Hamburger */
.nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    width: 40px; height: 40px; border-radius: 9px;
    flex-direction: column; align-items: center; justify-content: center; gap: 5px;
    transition: background .18s;
}
.nav-toggle:hover { background: rgba(255,255,255,.1); }
.nav-toggle span {
    display: block; width: 22px; height: 2px;
    background: #fff; border-radius: 2px; transition: all .28s;
}

/* ── HERO ──────────────────────────────────────────────────── */
#hero {
    min-height: 100vh;
    display: flex; align-items: center;
    background:
        radial-gradient(ellipse 70% 60% at 5% 60%, rgba(200,134,26,.1) 0%, transparent 65%),
        radial-gradient(ellipse 55% 80% at 95% 10%, rgba(30,77,140,.5) 0%, transparent 65%),
        linear-gradient(155deg, #060f1e 0%, #0b1f3a 45%, #142f5c 100%);
    position: relative; overflow: hidden;
    padding-top: 68px;
}
/* Diamond grid pattern */
#hero::before {
    content: '';
    position: absolute; inset: 0; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='64' height='64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 0 L64 32 L32 64 L0 32Z' fill='none' stroke='%23ffffff' stroke-width='.4' stroke-opacity='.04'/%3E%3C/svg%3E");
}
/* Floating glow orb */
#hero::after {
    content: '';
    position: absolute;
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(200,134,26,.08) 0%, transparent 65%);
    top: 50%; right: -100px;
    transform: translateY(-50%);
    pointer-events: none;
    border-radius: 50%;
}
.hero-bg-animated { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.binary-stream {
    position: absolute; top: 0; right: 0;
    width: 40%; height: 100%;
    opacity: .032; font-family: 'Courier New', monospace;
    font-size: 10.5px; color: #7ee8c8;
    line-height: 1.42; white-space: pre-wrap; word-break: break-all;
    overflow: hidden;
}
/* Content */
.hero-content {
    position: relative; z-index: 2;
    max-width: 760px; padding: 60px 28px 80px;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 18px; border-radius: 99px;
    background: rgba(200,134,26,.14);
    border: 1px solid rgba(200,134,26,.36);
    color: #f5cc72;
    font-size: .74rem; font-weight: 700;
    letter-spacing: .8px; text-transform: uppercase;
    margin-bottom: 32px;
}
.hero-badge i { font-size: .7rem; }
.hero-title { margin-bottom: 24px; }
.hero-title-main {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(3rem, 8vw, 5.6rem);
    font-weight: 900; line-height: .93;
    color: #fff; letter-spacing: -1.5px;
}
.hero-title-main > span { color: var(--c-gold-lt); }
.hero-title-sub {
    display: block; margin-top: 14px;
    font-family: 'Inter', sans-serif;
    font-size: clamp(.97rem, 2.2vw, 1.18rem);
    font-weight: 400; color: rgba(255,255,255,.64);
    line-height: 1.6; letter-spacing: 0;
}
.hero-desc {
    color: rgba(255,255,255,.68) !important;
    font-size: 1.04rem; line-height: 1.8;
    max-width: 560px; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-actions .btn { padding: 14px 34px; font-size: .95rem; }
/* Stats row */
.hero-stats {
    display: flex; flex-wrap: wrap; gap: 0;
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 36px;
}
.hero-stat-item {
    flex: 1; min-width: 120px;
    padding: 0 26px 0 0;
    border-right: 1px solid rgba(255,255,255,.1);
}
.hero-stat-item:first-child { padding-left: 0; }
.hero-stat-item:last-child  { border-right: none; padding-right: 0; }
.hero-stat-item .value {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.25rem; font-weight: 900;
    color: var(--c-gold-lt); line-height: 1;
}
.hero-stat-item .label {
    display: block; margin-top: 5px;
    font-size: .71rem; font-weight: 500;
    color: rgba(255,255,255,.48); letter-spacing: .4px;
}
/* Scroll hint */
.hero-scroll-hint {
    position: absolute; bottom: 32px; left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2.5s ease-in-out infinite;
}
.hero-scroll-hint a { color: rgba(255,255,255,.3); font-size: 1.1rem; }
.hero-scroll-hint a:hover { color: var(--c-gold-lt); }
@keyframes scrollBounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(10px); }
}

/* ── ABOUT ─────────────────────────────────────────────────── */
#about {
    background: var(--c-white);
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--c-gold) 0%, var(--c-navy-lt) 60%, transparent 100%) 1;
}
.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px; align-items: center;
}
/* Visual card */
.about-logo-big {
    background: linear-gradient(150deg, var(--c-navy) 0%, var(--c-navy-mid) 100%);
    border-radius: var(--r-xl);
    padding: 54px 38px;
    min-height: 340px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    box-shadow: 0 28px 80px rgba(11,31,58,.28);
    position: relative; overflow: hidden;
}
.about-logo-big::before {
    content: '';
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(circle at 20% 15%, rgba(200,134,26,.16) 0%, transparent 50%),
        radial-gradient(circle at 85% 85%, rgba(30,77,140,.25) 0%, transparent 55%);
}
.about-logo-big::after {
    content: '';
    position: absolute; bottom: -30px; right: -30px;
    width: 160px; height: 160px;
    border: 2px solid rgba(255,255,255,.04);
    border-radius: 50%; pointer-events: none;
}
.logo-circle {
    position: relative; z-index: 1;
    width: 96px; height: 96px; border-radius: 50%;
    background: var(--c-gold);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 3.1rem; font-weight: 900; color: var(--c-navy);
    margin-bottom: 20px;
    box-shadow: 0 12px 40px rgba(200,134,26,.44);
}
.about-org-name {
    position: relative; z-index: 1;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.55rem; font-weight: 700;
    color: #fff; letter-spacing: 2.8px; margin-bottom: 7px;
}
.about-org-sub {
    position: relative; z-index: 1;
    font-size: .7rem; color: rgba(255,255,255,.45);
    letter-spacing: .5px; text-align: center; line-height: 1.6;
}
.about-tags {
    position: relative; z-index: 1;
    display: flex; flex-wrap: wrap; gap: 7px;
    margin-top: 24px; justify-content: center;
}
.tag {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.13);
    color: rgba(255,255,255,.78);
    padding: 5px 12px; border-radius: 99px;
    font-size: .71rem; font-weight: 600; letter-spacing: .3px;
}
.tag i { color: var(--c-gold-lt); font-size: .66rem; }
/* Text content */
.about-content .section-title {
    font-size: clamp(1.55rem, 3.2vw, 2.15rem);
    margin-bottom: 20px;
}
.about-content p { font-size: .97rem; margin-bottom: 16px; }
.about-highlights {
    display: flex; flex-direction: column; gap: 10px; margin-top: 28px;
}
.highlight-item {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 14px 18px; background: var(--c-surface);
    border-radius: var(--r-md);
    border-left: 3px solid var(--c-gold);
    transition: transform var(--t-med), box-shadow var(--t-med);
}
.highlight-item:hover { transform: translateX(4px); box-shadow: var(--sh-sm); }
.highlight-item i { color: var(--c-gold); font-size: .92rem; margin-top: 3px; flex-shrink: 0; }
.highlight-item span { font-size: .875rem; color: var(--c-text-bd); font-weight: 500; }

/* ── VISI MISI ─────────────────────────────────────────────── */
#visi-misi { background: var(--c-navy); }
.visi-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 28px; margin-bottom: 48px;
}
.visi-card {
    background: rgba(255,255,255,.058);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r-lg);
    padding: 40px 34px;
    transition: background var(--t-med), transform var(--t-med);
}
.visi-card:hover { background: rgba(255,255,255,.09); transform: translateY(-4px); }
.visi-main { background: rgba(200,134,26,.12); border-color: rgba(200,134,26,.28); }
.visi-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: var(--c-gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: #fff; margin-bottom: 22px;
    box-shadow: 0 7px 24px rgba(200,134,26,.4);
}
.visi-card h3 { color: #fff; font-size: 1.28rem; margin-bottom: 14px; }
.visi-card p  { color: rgba(255,255,255,.74); line-height: 1.78; }
.misi-cards {
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r-lg);
    padding: 36px; transition: background var(--t-med);
}
.misi-cards:hover { background: rgba(255,255,255,.085); }
.misi-title {
    color: #fff !important; font-size: 1.08rem; font-weight: 700;
    margin-bottom: 22px; display: flex; align-items: center; gap: 10px;
}
.misi-title i { color: var(--c-gold-lt); }
.misi-list { display: flex; flex-direction: column; }
.misi-list li {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.068);
    color: rgba(255,255,255,.77); font-size: .875rem; line-height: 1.62;
}
.misi-list li:last-child { border-bottom: none; }
.misi-num {
    width: 27px; height: 27px; border-radius: 8px;
    background: var(--c-gold); color: #fff; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Rajdhani', sans-serif; font-size: .72rem; font-weight: 800;
    letter-spacing: .5px;
}
/* Nilai cards */
.nilai-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.nilai-item {
    background: rgba(255,255,255,.054);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: var(--r-lg); padding: 28px 18px 24px;
    text-align: center; cursor: default;
    transition: all var(--t-med);
}
.nilai-item:hover {
    background: rgba(255,255,255,.1); transform: translateY(-6px);
    border-color: rgba(200,134,26,.32);
}
.nilai-icon {
    width: 52px; height: 52px; border-radius: 13px; margin: 0 auto 16px;
    background: rgba(200,134,26,.15); border: 1px solid rgba(200,134,26,.22);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--c-gold-lt);
}
.nilai-item h4 { color: #fff; font-size: .87rem; margin-bottom: 6px; }
.nilai-item p  { color: rgba(255,255,255,.5); font-size: .74rem; line-height: 1.52; margin: 0; }

/* ── PROGRAM ───────────────────────────────────────────────── */
#program { background: var(--c-white); }
.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(266px, 1fr));
    gap: 24px;
}
.program-card {
    background: var(--c-white);
    border: 1px solid var(--c-border-lt);
    border-radius: var(--r-lg); padding: 32px 28px 30px;
    box-shadow: var(--sh-sm); position: relative; overflow: hidden;
    transition: all var(--t-med);
}
/* Top accent stripe */
.program-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--c-navy) 0%, var(--c-gold) 100%);
    border-radius: 3px 3px 0 0;
}
/* Large bg number */
.program-card::after {
    content: attr(data-num);
    position: absolute; bottom: -8px; right: 16px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 4.5rem; font-weight: 900; line-height: 1;
    color: var(--c-surf-md); letter-spacing: -3px;
    user-select: none; pointer-events: none;
}
.program-card:hover {
    transform: translateY(-8px); box-shadow: var(--sh-lg);
    border-color: transparent;
}
.program-num { display: none; } /* handled via ::after */
.program-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-mid) 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.55rem; color: #fff; margin-bottom: 22px;
    box-shadow: 0 6px 22px rgba(11,31,58,.2);
}
.program-card h3 { font-size: .97rem; color: var(--c-navy); margin-bottom: 10px; }
.program-card p  { font-size: .845rem; color: var(--c-text-bd); margin-bottom: 16px; }
.program-list { list-style: none; }
.program-list li {
    position: relative; padding: 5px 0 5px 16px;
    font-size: .795rem; color: var(--c-text-mt);
    border-bottom: 1px solid var(--c-border-lt); line-height: 1.55;
}
.program-list li:last-child { border-bottom: none; }
.program-list li::before {
    content: '▸'; position: absolute; left: 0; top: 6px;
    color: var(--c-gold); font-size: .68rem;
}

/* ── MEMBERSHIP ────────────────────────────────────────────── */
#membership { background: var(--c-surface); }
.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(256px, 1fr));
    gap: 24px; align-items: start;
}
.membership-card {
    background: var(--c-white);
    border: 2px solid transparent;
    border-radius: var(--r-lg); padding: 36px 30px;
    box-shadow: var(--sh-sm);
    transition: all var(--t-med); position: relative;
}
.membership-card:hover {
    transform: translateY(-7px); box-shadow: var(--sh-lg);
    border-color: var(--c-border);
}
.membership-card.featured {
    border-color: var(--c-gold);
    box-shadow: 0 12px 48px rgba(200,134,26,.22);
    transform: scale(1.024);
}
.membership-card.featured:hover {
    transform: scale(1.024) translateY(-7px);
    box-shadow: 0 20px 64px rgba(200,134,26,.3);
}
.mem-badge {
    position: absolute; top: -15px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--c-gold), var(--c-gold-lt));
    color: #fff; padding: 5px 20px; border-radius: 99px;
    font-size: .7rem; font-weight: 800; white-space: nowrap;
    box-shadow: 0 4px 16px rgba(200,134,26,.42);
}
.mem-header {
    margin-bottom: 24px; padding-bottom: 18px;
    border-bottom: 1px solid var(--c-border-lt);
}
.mem-header h3 { color: var(--c-navy); font-size: 1.1rem; margin-bottom: 8px; }
.mem-price {
    display: inline-block;
    background: var(--c-surface); color: var(--c-text-mt);
    padding: 3px 12px; border-radius: 99px;
    font-size: .78rem; font-weight: 600;
}
.featured .mem-price { background: var(--c-gold-pale); color: var(--c-gold); }
.mem-benefits { margin-bottom: 28px; }
.mem-benefits li {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 7px 0; border-bottom: 1px solid var(--c-border-lt);
    font-size: .855rem; color: var(--c-text-bd);
}
.mem-benefits li:last-child { border-bottom: none; }
.mem-benefits li i { color: var(--c-green); font-size: .74rem; margin-top: 4px; flex-shrink: 0; }
.mem-btn { width: 100%; justify-content: center; }
/* CTA strip */
.membership-cta {
    margin-top: 64px; text-align: center;
    padding: 56px 40px;
    background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-mid) 100%);
    border-radius: var(--r-xl);
    box-shadow: 0 18px 64px rgba(11,31,58,.26);
    position: relative; overflow: hidden;
}
.membership-cta::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 260px; height: 260px; border-radius: 50%;
    background: radial-gradient(circle, rgba(200,134,26,.1) 0%, transparent 65%);
    pointer-events: none;
}
.membership-cta h3 { color: #fff; font-size: 1.45rem; margin-bottom: 34px; position: relative; z-index: 1; }
.cta-reasons {
    display: flex; justify-content: center; gap: 42px;
    flex-wrap: wrap; position: relative; z-index: 1;
}
.cta-reason {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    color: rgba(255,255,255,.76); min-width: 128px;
}
.cta-reason i {
    width: 52px; height: 52px; border-radius: 14px;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--c-gold-lt);
    transition: all var(--t-med);
}
.cta-reason:hover i {
    background: var(--c-gold); border-color: var(--c-gold);
    color: #fff; transform: translateY(-5px);
}
.cta-reason span { font-size: .8rem; font-weight: 600; text-align: center; }

/* ── STRUKTUR ──────────────────────────────────────────────── */
#struktur {
    background: linear-gradient(155deg, #050e1c 0%, #0b1f3a 55%, #132c58 100%);
}
.struktur-grid {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 18px; margin-bottom: 30px;
}
.str-item {
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: var(--r-lg); padding: 30px 18px; text-align: center;
    transition: all var(--t-med);
}
.str-item:hover {
    background: rgba(255,255,255,.1); transform: translateY(-5px);
    border-color: rgba(255,255,255,.18);
}
.str-item.main.highlight {
    background: rgba(200,134,26,.12); border-color: rgba(200,134,26,.32);
}
.str-icon {
    width: 54px; height: 54px; border-radius: 14px; margin: 0 auto 14px;
    background: rgba(200,134,26,.16); border: 1px solid rgba(200,134,26,.26);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.28rem; color: var(--c-gold-lt);
}
.str-item h4 { color: #fff; font-size: .9rem; margin-bottom: 7px; }
.str-item p  { color: rgba(255,255,255,.5); font-size: .74rem; line-height: 1.52; margin: 0; }
.divisi-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.div-item {
    background: rgba(255,255,255,.044);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: var(--r-md); padding: 14px 14px;
    display: flex; align-items: center; gap: 10px;
    transition: all var(--t-med);
}
.div-item:hover {
    background: rgba(255,255,255,.09); border-color: rgba(200,134,26,.22);
    transform: translateX(4px);
}
.div-item i    { color: var(--c-gold-lt); font-size: .92rem; flex-shrink: 0; }
.div-item span { color: rgba(255,255,255,.72); font-size: .795rem; font-weight: 500; }

/* ── BERITA ────────────────────────────────────────────────── */
#berita { background: var(--c-white); }
.news-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(312px, 1fr));
    gap: 28px;
}
.news-card {
    background: var(--c-white);
    border: 1px solid var(--c-border-lt);
    border-radius: var(--r-lg); overflow: hidden;
    box-shadow: var(--sh-sm);
    display: flex; flex-direction: column;
    transition: all var(--t-med);
}
.news-card:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); border-color: transparent; }
.berita-img {
    height: 202px; overflow: hidden; position: relative;
    background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-mid) 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem; color: rgba(255,255,255,.22);
}
.berita-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.news-card:hover .berita-img img { transform: scale(1.04); }
.berita-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.berita-meta { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; margin-bottom: 12px; }
.berita-kategori {
    background: var(--c-navy-pale); color: var(--c-navy-lt);
    padding: 3px 11px; border-radius: 99px;
    font-size: .68rem; font-weight: 700; letter-spacing: .4px; text-transform: uppercase;
}
.berita-date { font-size: .74rem; color: var(--c-text-mt); display: flex; align-items: center; gap: 4px; }
.berita-body h3 { font-size: .97rem; line-height: 1.46; margin-bottom: 10px; }
.berita-body h3 a { color: var(--c-navy); }
.berita-body h3 a:hover { color: var(--c-gold); }
.berita-body p { font-size: .865rem; flex: 1; color: var(--c-text-bd); margin-bottom: 18px; }
.read-more {
    display: inline-flex; align-items: center; gap: 5px; margin-top: auto;
    font-size: .8rem; font-weight: 700; color: var(--c-navy-mid);
    transition: color .18s, gap .18s;
}
.read-more:hover { color: var(--c-gold); gap: 8px; }
.news-more { text-align: center; margin-top: 48px; }

/* ── Loading spinner ───────────────────────────────────────── */
.loading-spinner {
    text-align: center; padding: 64px 20px;
    color: var(--c-text-mt); font-size: .95rem;
    grid-column: 1 / -1;
}
.loading-spinner i { color: var(--c-gold); }

/* ── Skeleton cards ────────────────────────────────────────── */
.skeleton-card { pointer-events: none; }
@keyframes shimmer {
    0%   { background-position: -800px 0; }
    100% { background-position:  800px 0; }
}
.skeleton-card .sk-img {
    height: 202px;
    background: linear-gradient(90deg, #e8edf5 25%, #dce4f0 37%, #e8edf5 63%);
    background-size: 800px 100%; animation: shimmer 1.5s ease infinite;
}
.skeleton-card.kegiatan-card .sk-img { height: 180px; }
.skeleton-card .sk-body { padding: 24px 22px; }
.sk-line {
    height: 12px; border-radius: 6px; margin-bottom: 11px;
    background: linear-gradient(90deg, #eef2f9 25%, #e2eaf5 37%, #eef2f9 63%);
    background-size: 800px 100%; animation: shimmer 1.5s ease infinite;
}
.sk-short  { width: 38%; }
.sk-medium { width: 64%; }
.sk-long   { width: 90%; }

/* ── KEGIATAN ──────────────────────────────────────────────── */
#kegiatan { background: var(--c-surface); }
.kegiatan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(312px, 1fr));
    gap: 28px;
}
.kegiatan-card {
    background: var(--c-white);
    border: 1px solid var(--c-border-lt);
    border-radius: var(--r-lg); overflow: hidden;
    box-shadow: var(--sh-sm);
    display: flex; flex-direction: column;
    transition: all var(--t-med);
}
.kegiatan-card:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); border-color: transparent; }
.kegiatan-img {
    height: 180px; overflow: hidden; position: relative;
    background: linear-gradient(135deg, #154770 0%, #0d5a60 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem; color: rgba(255,255,255,.22);
}
.kegiatan-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.kegiatan-card:hover .kegiatan-img img { transform: scale(1.04); }
.kegiatan-status-badge {
    position: absolute; top: 12px; right: 12px;
    padding: 4px 12px; border-radius: 99px;
    font-size: .69rem; font-weight: 700; letter-spacing: .3px;
}
.status-upcoming  { background: #dbeafe; color: #1d4ed8; }
.status-ongoing   { background: #dcfce7; color: #15803d; }
.status-completed { background: #f3f4f6; color: #4b5563; }
.status-cancelled { background: #fee2e2; color: #b91c1c; }
.kegiatan-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.kegiatan-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 10px; }
.kegiatan-meta span { font-size: .74rem; color: var(--c-text-mt); display: flex; align-items: center; gap: 4px; }
.kegiatan-meta i { color: var(--c-gold); }
.kegiatan-card h3 { font-size: .97rem; color: var(--c-navy); margin-bottom: 8px; }
.kegiatan-card p  { font-size: .865rem; color: var(--c-text-bd); flex: 1; margin-bottom: 18px; }
.kegiatan-footer  { display: flex; gap: 10px; margin-top: auto; }
.kegiatan-footer .btn { flex: 1; justify-content: center; font-size: .79rem; padding: 9px 10px; }

/* ── PARTNERS ──────────────────────────────────────────────── */
#partners { background: var(--c-white); }
.partner-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.pcat {
    background: var(--c-surface); border-radius: var(--r-lg);
    border: 1px solid var(--c-border-lt); padding: 28px 24px;
    transition: all var(--t-med);
}
.pcat:hover {
    transform: translateY(-4px); box-shadow: var(--sh-md);
    border-color: rgba(200,134,26,.2);
}
.pcat h4 {
    display: flex; align-items: center; gap: 10px;
    color: var(--c-navy); font-size: .92rem; font-weight: 700;
    margin-bottom: 16px; padding-bottom: 12px;
    border-bottom: 2px solid var(--c-gold);
}
.pcat h4 i { color: var(--c-gold); }
.partner-list { list-style: decimal; padding-left: 20px; }
.partner-list li {
    color: var(--c-text-bd); font-size: .855rem;
    padding: 6px 0; border-bottom: 1px solid var(--c-border-lt); line-height: 1.52;
}
.partner-list li:last-child { border-bottom: none; }
.partner-list li::marker { color: var(--c-gold); font-weight: 700; font-size: .8rem; }

/* ── CONTACT ───────────────────────────────────────────────── */
#contact {
    background: linear-gradient(155deg, #060f1e 0%, #0b1f3a 50%, #122e5a 100%);
}
#contact .section-header .section-title { color: #fff; }
#contact .section-header .section-desc  { color: rgba(255,255,255,.65); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.65fr;
    gap: 64px; align-items: start;
}
.contact-item {
    display: flex; align-items: flex-start; gap: 16px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.09);
    padding: 16px 20px; border-radius: var(--r-md);
    margin-bottom: 13px;
    transition: background var(--t-fast);
}
.contact-item:hover { background: rgba(255,255,255,.1); }
.contact-item > i {
    font-size: 1.05rem; color: var(--c-gold-lt);
    margin-top: 3px; flex-shrink: 0; width: 20px; text-align: center;
}
.contact-item .fa-whatsapp { color: #4ade80; }
.contact-item strong {
    display: block; font-size: .7rem; text-transform: uppercase;
    letter-spacing: .7px; color: rgba(255,255,255,.5); margin-bottom: 3px;
}
.contact-item div p { color: rgba(255,255,255,.85); font-size: .88rem; margin: 0; }
.contact-item div p a { color: inherit; }
.contact-item div p a:hover { color: var(--c-gold-lt); }
.contact-socials { display: flex; gap: 9px; margin-top: 24px; flex-wrap: wrap; }
.social-btn {
    width: 42px; height: 42px; border-radius: 10px;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.68); font-size: 1rem;
    transition: all var(--t-med);
}
.social-btn:hover { transform: translateY(-4px); background: rgba(255,255,255,.16); }
.social-btn:hover .fa-instagram { color: #e1306c; }
.social-btn:hover .fa-linkedin  { color: #0a66c2; }
.social-btn:hover .fa-youtube   { color: #ff0000; }
.social-btn:hover .fa-whatsapp  { color: #25d366; }
/* Contact form */
.contact-form {
    background: var(--c-white); border-radius: var(--r-xl);
    padding: 44px 40px;
    box-shadow: 0 24px 80px rgba(0,0,0,.22);
}
.contact-form .form-title {
    font-size: 1.22rem; color: var(--c-navy);
    margin-bottom: 28px; display: flex; align-items: center; gap: 10px;
}
.contact-form .form-title i { color: var(--c-gold); }
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block; font-size: .8rem; font-weight: 700;
    color: var(--c-text); margin-bottom: 7px; letter-spacing: .15px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%; padding: 11px 16px;
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-md);
    font-family: inherit; font-size: .88rem; color: var(--c-text);
    background: var(--c-white);
    transition: border-color .18s, box-shadow .18s;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--c-navy-lt); outline: none;
    box-shadow: 0 0 0 3px rgba(30,77,140,.12);
}
.form-group textarea { min-height: 122px; resize: vertical; }
#formStatus {
    margin-top: 14px; padding: 12px 16px; border-radius: var(--r-md);
    font-size: .87rem; display: none;
}
#formStatus.success { background: #dcfce7; color: #15803d; display: block; }
#formStatus.error   { background: #fee2e2; color: #b91c1c; display: block; }
/* Map */
.contact-map-wrap {
    margin-top: 48px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r-xl); overflow: hidden;
}
.contact-map-header {
    display: flex; align-items: center; gap: 16px;
    padding: 20px 28px;
    background: rgba(255,255,255,.07);
    flex-wrap: wrap;
}
.contact-map-header > i { font-size: 1.55rem; color: var(--c-gold-lt); flex-shrink: 0; }
.contact-map-header h4 { color: #fff; font-size: .97rem; margin-bottom: 2px; }
.contact-map-header p  { color: rgba(255,255,255,.58); font-size: .8rem; margin: 0; }
.contact-map-header > div { flex: 1; min-width: 180px; }
.contact-map-frame { width: 100%; line-height: 0; }
.contact-map-frame iframe {
    display: block; width: 100%; height: 340px; border: 0;
    filter: grayscale(10%) brightness(.92);
}

/* ── FOOTER ────────────────────────────────────────────────── */
footer {
    background: #030a12;
    padding: 72px 0 0;
    border-top: 1px solid rgba(255,255,255,.045);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px; margin-bottom: 56px;
}
/* Logo area */
.footer-logo-wrap { margin-bottom: 16px; }
.footer-logo-img {
    height: 60px; width: auto; max-width: 210px; object-fit: contain;
    /* logo-white.png — no filter needed */
    opacity: .88; transition: opacity .2s;
}
.footer-logo-img:hover { opacity: 1; }
.footer-brand > p {
    font-size: .84rem; color: rgba(255,255,255,.44); line-height: 1.78; margin-bottom: 7px;
}
.footer-socials { display: flex; gap: 8px; margin-top: 20px; }
.footer-socials a {
    width: 34px; height: 34px; border-radius: 8px;
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.09);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.58); font-size: .88rem;
    transition: all .18s;
}
.footer-socials a:hover {
    background: var(--c-gold); border-color: var(--c-gold);
    color: #fff; transform: translateY(-3px);
}
.footer-links h5 {
    color: #fff; font-size: .87rem; font-weight: 700;
    margin-bottom: 16px; padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    letter-spacing: .3px;
}
.footer-links ul li { margin-bottom: 9px; }
.footer-links ul li a {
    color: rgba(255,255,255,.44); font-size: .83rem;
    display: inline-block; transition: color .18s, padding-left .18s;
}
.footer-links ul li a:hover { color: var(--c-gold-lt); padding-left: 4px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.05);
    padding: 22px 0;
    display: flex; align-items: center; justify-content: space-between;
    font-size: .78rem; color: rgba(255,255,255,.3);
    flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,.22); font-size: .74rem; }
.footer-bottom a:hover { color: rgba(255,255,255,.46); }

/* ── AOS (Animate on Scroll) ───────────────────────────────── */
[data-aos] {
    opacity: 0; transform: translateY(22px);
    transition: opacity .62s ease, transform .62s ease;
}
[data-aos].aos-animate              { opacity: 1; transform: translateY(0) !important; }
[data-aos="fade-left"]              { transform: translateX(30px); }
[data-aos="fade-right"]             { transform: translateX(-30px); }
[data-aos="zoom-in"]                { transform: scale(.87); }
[data-aos="fade-up"]                { transform: translateY(22px); }

/* ── Utility ───────────────────────────────────────────────── */
.text-center { text-align: center; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .about-grid    { grid-template-columns: 1fr; gap: 48px; }
    .visi-grid     { grid-template-columns: 1fr; }
    .contact-grid  { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid   { grid-template-columns: 1fr 1fr; gap: 36px; }
    .nilai-grid    { grid-template-columns: repeat(3,1fr); }
    .struktur-grid { grid-template-columns: repeat(2,1fr); }
    .divisi-grid   { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
    section { padding: 72px 0; }
    .container { padding: 0 18px; }

    /* Navbar mobile */
    .nav-menu {
        display: none; position: fixed;
        top: 68px; left: 0; right: 0;
        background: rgba(8,22,46,.98);
        backdrop-filter: blur(18px);
        padding: 14px 18px 24px;
        flex-direction: column; gap: 3px;
        border-bottom: 1px solid rgba(255,255,255,.08);
        max-height: calc(100vh - 68px); overflow-y: auto;
    }
    .nav-menu.open { display: flex; }
    .nav-link { padding: 12px 14px; border-radius: 8px; font-size: .9rem; }
    .nav-cta { display: block; margin-top: 8px; }
    .nav-toggle { display: flex; }

    /* Hero */
    .hero-content { padding: 50px 18px 64px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }

    /* Sections */
    .nilai-grid    { grid-template-columns: repeat(2,1fr); gap: 12px; }
    .struktur-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
    .divisi-grid   { grid-template-columns: 1fr; }
    .program-grid  { grid-template-columns: 1fr; }
    .membership-card.featured { transform: none; }
    .cta-reasons   { gap: 22px; }
    .footer-grid   { grid-template-columns: 1fr; gap: 30px; }
    .contact-form  { padding: 32px 22px; }
    .contact-map-frame iframe { height: 260px; }
    .contact-map-header { padding: 14px 18px; }
    .btn-map { width: 100%; justify-content: center; margin-top: 10px; }
}
@media (max-width: 540px) {
    .hero-stats { flex-wrap: wrap; }
    .hero-stat-item {
        flex: 0 0 50%; padding: 14px 12px;
        border-right: none; border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .hero-stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }
    .hero-stat-item:last-child,
    .hero-stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
    .news-layout, .kegiatan-grid { grid-template-columns: 1fr; }
    .nilai-grid { grid-template-columns: 1fr 1fr; }
    .partner-categories, .membership-grid { grid-template-columns: 1fr; }
    .section-header { margin-bottom: 44px; }
}

/* ============================================================
   WHATSAPP CHATBOT WIDGET
   ============================================================ */
#waChatWidget {
    position: fixed; bottom: 24px; right: 24px;
    z-index: 9999; font-family: 'Inter', sans-serif;
}
/* Trigger */
.wa-trigger {
    width: 60px; height: 60px; border-radius: 50%;
    background: #25d366; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.85rem; color: #fff;
    box-shadow: 0 6px 28px rgba(37,211,102,.52);
    position: relative; transition: all .28s;
    animation: waPulse 3s ease-in-out infinite;
}
.wa-trigger:hover {
    background: #1ebe5d; transform: scale(1.08); animation: none;
    box-shadow: 0 8px 36px rgba(37,211,102,.66);
}
.wa-trigger-badge {
    position: absolute; top: -2px; right: -2px;
    width: 19px; height: 19px; border-radius: 50%;
    background: #ef4444; color: #fff; border: 2px solid #fff;
    font-size: .68rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    animation: badgePop .4s ease;
}
@keyframes badgePop  { from { transform: scale(0); } to { transform: scale(1); } }
@keyframes waPulse {
    0%,100% { box-shadow: 0 6px 28px rgba(37,211,102,.52); }
    50%      { box-shadow: 0 6px 40px rgba(37,211,102,.76), 0 0 0 14px rgba(37,211,102,.07); }
}
/* Panel */
.wa-panel {
    position: absolute; bottom: 78px; right: 0; width: 340px;
    background: #fff; border-radius: 20px;
    box-shadow: 0 22px 80px rgba(0,0,0,.22), 0 0 0 1px rgba(0,0,0,.06);
    overflow: hidden; max-height: 88vh;
    display: flex; flex-direction: column;
    transform-origin: bottom right;
    animation: panelOpen .26s cubic-bezier(.4,0,.2,1);
}
@keyframes panelOpen {
    from { opacity: 0; transform: scale(.88) translateY(16px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
/* Header */
.wa-panel-header {
    background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-mid) 100%);
    padding: 15px 17px; display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.wa-avatar {
    width: 44px; height: 44px; border-radius: 11px;
    object-fit: contain; background: rgba(255,255,255,.13);
    padding: 5px; flex-shrink: 0;
    /* logo-white.png — no filter needed */
}
.wa-header-info { flex: 1; }
.wa-header-info strong { display: block; color: #fff; font-size: .9rem; font-weight: 700; }
.wa-header-info span {
    display: flex; align-items: center; gap: 5px;
    color: rgba(255,255,255,.66); font-size: .72rem; margin-top: 2px;
}
.wa-close-btn {
    background: rgba(255,255,255,.11); border: none; cursor: pointer;
    color: rgba(255,255,255,.7); width: 28px; height: 28px;
    border-radius: 7px; display: flex; align-items: center; justify-content: center;
    font-size: .82rem; transition: all .18s; flex-shrink: 0;
}
.wa-close-btn:hover { background: rgba(255,255,255,.2); color: #fff; }
/* Messages area */
.wa-messages {
    flex: 1; overflow-y: auto; padding: 14px 13px; background: #f0f2f5;
    display: flex; flex-direction: column; gap: 9px;
    scroll-behavior: smooth; min-height: 140px; max-height: 260px;
}
.wa-messages::-webkit-scrollbar { width: 4px; }
.wa-messages::-webkit-scrollbar-thumb { background: #cbd5e0; border-radius: 2px; }
.wa-msg {
    max-width: 88%; padding: 10px 13px; border-radius: 14px;
    font-size: .82rem; line-height: 1.56; word-break: break-word;
    animation: msgIn .22s ease;
}
@keyframes msgIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.wa-msg p { margin: 0; color: inherit; }
.wa-msg p + p { margin-top: 4px; }
.wa-msg strong { font-weight: 700; }
.wa-msg-in { background: #fff; color: #0f1c2e; border-bottom-left-radius: 4px; align-self: flex-start; box-shadow: 0 1px 4px rgba(0,0,0,.07); }
.wa-msg-out { background: #dcf8c6; color: #0f1c2e; border-bottom-right-radius: 4px; align-self: flex-end; box-shadow: 0 1px 4px rgba(0,0,0,.07); }
.wa-time { display: block; font-size: .63rem; color: #9ca3af; margin-top: 4px; text-align: right; }
.wa-msg-in .wa-time { text-align: left; }
/* Typing dots */
.wa-typing {
    background: #fff; border-bottom-left-radius: 4px; align-self: flex-start;
    padding: 12px 16px; display: flex; align-items: center; gap: 4px; border-radius: 14px;
}
.wa-dot { width: 7px; height: 7px; background: #9ca3af; border-radius: 50%; animation: dotBounce 1.2s infinite; }
.wa-dot:nth-child(2) { animation-delay: .2s; }
.wa-dot:nth-child(3) { animation-delay: .4s; }
@keyframes dotBounce {
    0%,80%,100% { transform: translateY(0); background: #9ca3af; }
    40%          { transform: translateY(-6px); background: #25d366; }
}
.wa-cta-link {
    display: inline-flex; align-items: center; gap: 6px; margin-top: 8px;
    background: #25d366; color: #fff !important;
    padding: 7px 14px; border-radius: 99px; font-weight: 700; font-size: .79rem;
    transition: background .18s;
}
.wa-cta-link:hover { background: #1ebe5d; }
/* Quick replies */
.wa-quick-replies {
    display: flex; flex-wrap: wrap; gap: 6px;
    padding: 11px 13px; background: #f8fafc;
    border-top: 1px solid #e5e7eb; flex-shrink: 0;
}
.wa-qr {
    display: inline-flex; align-items: center; gap: 6px;
    background: #fff; border: 1.5px solid #e2e8f0; color: var(--c-navy);
    padding: 6px 12px; border-radius: 99px;
    font-size: .77rem; font-weight: 600; cursor: pointer; white-space: nowrap;
    transition: all .18s;
}
.wa-qr i { color: #25d366; font-size: .72rem; }
.wa-qr:hover { background: var(--c-navy); color: #fff; border-color: var(--c-navy); }
.wa-qr:hover i { color: #f5cc72; }
/* Input */
.wa-input-area {
    display: flex; align-items: center; gap: 8px;
    padding: 11px 13px; background: #fff;
    border-top: 1px solid #e5e7eb; flex-shrink: 0;
}
#waCustomMsg {
    flex: 1; border: 1.5px solid #e2e8f0; border-radius: 99px;
    padding: 9px 13px; font-size: .82rem; font-family: inherit;
    outline: none; color: var(--c-text); transition: border-color .18s;
}
#waCustomMsg:focus { border-color: #25d366; }
#waCustomMsg::placeholder { color: #adb5bd; }
.wa-send-btn {
    background: #25d366; color: #fff; border: none; cursor: pointer;
    padding: 9px 13px; border-radius: 99px; font-size: .79rem; font-weight: 700;
    display: flex; align-items: center; gap: 5px; white-space: nowrap; flex-shrink: 0;
    transition: background .18s, transform .18s;
}
.wa-send-btn:hover { background: #1ebe5d; transform: scale(1.04); }
/* WA mobile */
@media (max-width: 400px) {
    .wa-panel  { width: calc(100vw - 18px); right: -4px; }
    #waChatWidget { bottom: 14px; right: 10px; }
    .wa-trigger   { width: 52px; height: 52px; font-size: 1.6rem; }
}
