/* ═══════════════════════════════════════════════════════════════
   YAPISDA — Premium Public Theme
   Yayasan Pendidikan Islam Daar El Rohmah
   Version: 2.0 — Unified Premium Design System
   ═══════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
    /* Brand Emerald-Teal */
    --brand: #0f766e;
    --brand-700: #0f5f5b;
    --brand-800: #114b48;
    --brand-900: #134e4a;
    --brand-950: #042f2e;
    --mint: #ccfbf1;
    --aqua: #06b6d4;

    /* Gold Accents */
    --gold: #d97706;
    --gold-light: #fbbf24;
    --gold-dark: #b45309;
    --gold-pale: #fef3c7;

    /* Text */
    --ink: #0f172a;
    --text: #334155;
    --text-muted: #64748b;
    --line: #e2e8f0;

    /* Surfaces */
    --surface: #ffffff;
    --paper: #f8fafc;
    --ivory: #f0fdfa;

    /* Status */
    --success: #10b981;
    --success-bg: #dcfce7;
    --success-text: #166534;
    --warning: #f59e0b;
    --warning-bg: #fef3c7;
    --warning-text: #92400e;
    --danger: #ef4444;
    --danger-bg: #fee2e2;
    --danger-text: #991b1b;
    --info: #06b6d4;
    --info-bg: #e6f8fb;
    --info-text: #155e75;

    /* Typography */
    --ff-display: 'Outfit', system-ui, -apple-system, sans-serif;
    --ff-body: 'Inter', system-ui, -apple-system, sans-serif;

    /* Radii */
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
    --r-pill: 9999px;

    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 12px 32px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 24px 64px rgba(15, 23, 42, 0.12);
    --shadow-deep: 0 32px 80px rgba(15, 23, 42, 0.16);
    --shadow-glow: 0 0 40px rgba(15, 118, 110, 0.15);
    --shadow-gold: 0 16px 34px rgba(217, 119, 6, 0.22);

    /* Transitions */
    --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* Aliases */
    --forest: var(--brand-950);
    --forest-mid: var(--brand-800);
    --forest-soft: var(--brand-700);
    --moss: var(--brand);
    --moss-light: #14b8a6;
}

/* ── KEYFRAMES ── */
@keyframes shimmer-gold {
    0%   { background-position: -200% center; }
    100% { background-position:  200% center; }
}
@keyframes float-up {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-14px); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeUp {
    from { opacity:0; transform:translateY(28px); }
    to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeScale {
    from { opacity:0; transform:scale(0.94); }
    to   { opacity:1; transform:scale(1); }
}
@keyframes reveal-line {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}
@keyframes particle-rise {
    0%   { transform:translateY(0) scale(1); opacity:0; }
    10%  { opacity:1; }
    90%  { opacity:0.6; }
    100% { transform:translateY(-100vh) scale(0.3); opacity:0; }
}
@keyframes arabesque-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes pulse-ring {
    0%   { transform: scale(1); opacity:0.8; }
    100% { transform: scale(1.6); opacity:0; }
}
@keyframes mesh-move-1 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(80px, 60px) scale(1.1); }
    100% { transform: translate(-40px, 40px) scale(0.9); }
}
@keyframes mesh-move-2 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-60px, -80px) scale(0.95); }
    100% { transform: translate(40px, -30px) scale(1.05); }
}
@keyframes mesh-move-3 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, -40px) scale(1.05); }
    100% { transform: translate(-50px, 60px) scale(0.9); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.1); }
}

/* ── LOADING ── */
.loading-screen {
    position:fixed; inset:0;
    background: var(--forest);
    display:flex; align-items:center; justify-content:center;
    z-index:9999;
    transition: opacity 0.7s var(--ease-expo), visibility 0.7s;
}
.loading-screen.hidden { opacity:0; visibility:hidden; pointer-events:none; }
.loading-inner { text-align:center; }
.loading-emblem {
    width:90px; height:90px;
    margin:0 auto 1.5rem;
    position:relative;
    animation: float-up 3s ease-in-out infinite;
}
.loading-emblem-ring {
    position:absolute; inset:0;
    border:2px solid transparent;
    border-top-color: var(--gold);
    border-right-color: var(--gold-light);
    border-radius:50%;
    animation: spin 1.8s linear infinite;
}
.loading-emblem-core {
    position:absolute; inset:10px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    font-size:1.8rem; color:white;
}
.loading-text {
    font-family: var(--ff-display);
    color: var(--gold-light);
    font-size:1.1rem; letter-spacing:0.15em;
    text-transform:uppercase;
    opacity:0.9;
}


/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
    min-height:94vh;
    position:relative;
    overflow:hidden;
    display:flex; align-items:center;
}
.hero-bg-mesh {
    position: absolute; inset: 0; z-index: 0;
    width: 100%; height: 100%;
    background: var(--forest);
    overflow: hidden;
}
.mesh-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    mix-blend-mode: screen;
    will-change: transform;
}
.mesh-glow-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, #105c4b 0%, rgba(16,92,75,0) 70%);
    top: -10%; left: -10%;
    animation: mesh-move-1 25s infinite alternate ease-in-out;
}
.mesh-glow-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #1f9aa5 0%, rgba(31,154,165,0) 70%);
    bottom: -5%; right: -5%;
    animation: mesh-move-2 20s infinite alternate ease-in-out;
}
.mesh-glow-3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--gold) 0%, rgba(201,168,76,0) 70%);
    top: 30%; right: 20%;
    animation: mesh-move-3 30s infinite alternate ease-in-out;
}
.hero-pattern {
    position:absolute; inset:0;
    background-image:
        linear-gradient(90deg, rgba(6,31,26,0.94) 0%, rgba(8,50,41,0.84) 47%, rgba(8,50,41,0.52) 100%),
        linear-gradient(180deg, rgba(6,31,26,0.1), rgba(6,31,26,0.44)),
        radial-gradient(circle at 18% 82%, rgba(201,168,76,0.18) 0%, transparent 34%);
    z-index:1;
}
.hero-noise {
    position:absolute; inset:0; z-index:2;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity:0.4; pointer-events:none;
}
.arabesque {
    position:absolute;
    border-radius:50%;
    border:1px solid rgba(201,168,76,0.15);
    pointer-events:none; z-index:2;
}
.arabesque-1 { width:600px; height:600px; top:-200px; right:-150px; animation: arabesque-spin 80s linear infinite; }
.arabesque-1::before {
    content:''; position:absolute; inset:30px;
    border-radius:50%; border:1px dashed rgba(201,168,76,0.1);
}
.arabesque-2 { width:400px; height:400px; bottom:-100px; left:-100px; animation: arabesque-spin 60s linear infinite reverse; }
.arabesque-3 { width:200px; height:200px; top:30%; left:8%; border-color:rgba(201,168,76,0.2); }
.hero-particles { position:absolute; inset:0; z-index:3; pointer-events:none; }
.particle {
    position:absolute;
    width:3px; height:3px;
    background:var(--gold);
    border-radius:50%;
    animation: particle-rise linear infinite;
    box-shadow: 0 0 6px var(--gold);
}
.hero-content {
    position:relative; z-index:10;
    width:100%; padding:120px 0 80px;
}
.hero-inner {
    display:grid;
    grid-template-columns: minmax(0, 860px);
    gap:2rem; align-items:center;
}
.hero-left { animation: fadeUp 0.9s var(--ease-expo) 0.1s both; }
.hero-eyebrow {
    display:inline-flex; align-items:center; gap:0.75rem;
    margin-bottom:2rem;
}
.eyebrow-line {
    width:40px; height:2px;
    background: linear-gradient(90deg, var(--gold), transparent);
}
.eyebrow-text {
    font-family: var(--ff-body);
    font-size:0.8rem; font-weight:600;
    letter-spacing:0.2em; text-transform:uppercase;
    color: var(--gold-light);
}
.hero-title {
    font-family: var(--ff-display);
    font-size: clamp(2.8rem, 5vw, 4.9rem);
    font-weight:800;
    color:white;
    line-height:1.04;
    letter-spacing:-0.02em;
    margin-bottom:1.5rem;
    max-width: 820px;
}
.hero-title em {
    font-style:italic;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    background-size:200% auto;
    -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
    animation: shimmer-gold 4s linear infinite;
}
.hero-mobile-break { display:none; }
.hero-subtitle {
    font-size:1.08rem; color:rgba(255,255,255,0.76);
    max-width:680px; line-height:1.85; margin-bottom:1.35rem;
    font-weight:300;
}
.hero-subtitle strong { color:rgba(255,255,255,0.9); font-weight:500; }
.hero-institution-strip {
    display:flex; align-items:center; flex-wrap:wrap;
    gap:0.75rem; margin:1.35rem 0 1.7rem;
}
.institution-chip {
    display:inline-flex; align-items:center; gap:0.85rem;
    min-height:64px; padding:0.6rem 1.1rem;
    border-radius:20px; color:white;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(13, 33, 24, 0.15);
    transition: all 0.3s var(--ease-expo);
}
.institution-chip:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(13, 33, 24, 0.25);
}
.institution-chip img {
    width:42px; height:42px;
    object-fit:contain; border-radius:0;
    background:transparent; padding:0;
    filter:drop-shadow(0 6px 10px rgba(0,0,0,0.18));
}
.institution-chip strong { display:block; font-size:0.86rem; line-height:1.1; }
.institution-chip span { display:block; color:rgba(255,255,255,0.68); font-size:0.72rem; font-weight:600; line-height:1.1; }
.hero-cta { display:flex; gap:1rem; flex-wrap:wrap; align-items:center; }
.hero-right { display:none; }
.hero-visual {
    position:relative; width:400px; height:400px;
}
.hero-visual-ring {
    position:absolute; inset:0; border-radius:50%;
    border:1px solid rgba(201,168,76,0.2);
    animation: arabesque-spin 20s linear infinite;
}
.hero-visual-ring::before, .hero-visual-ring::after {
    content:''; position:absolute; border-radius:50%;
    border:1px dashed rgba(201,168,76,0.15);
}
.hero-visual-ring::before { inset:-20px; }
.hero-visual-ring::after  { inset:20px; border-style:solid; border-color:rgba(201,168,76,0.1); }
.hero-visual-center {
    position:absolute; inset:40px;
    background: linear-gradient(135deg, var(--forest-soft), var(--forest-mid));
    border-radius:50%;
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    border:2px solid rgba(201,168,76,0.3);
    box-shadow: inset 0 0 60px rgba(0,0,0,0.4), 0 0 60px rgba(201,168,76,0.1);
}
.hero-visual-icon {
    font-size:4rem; margin-bottom:0.5rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
    animation: float-up 4s ease-in-out infinite;
}
.hero-visual-label {
    font-family: var(--ff-display);
    font-size:1.2rem; color: var(--gold-light);
    letter-spacing:0.05em;
}
.hero-stat-pill {
    position:absolute;
    background: rgba(255,255,255,0.95);
    border-radius:50px; padding:0.75rem 1.25rem;
    display:flex; align-items:center; gap:0.75rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    animation: float-up ease-in-out infinite;
}
.hero-stat-pill:nth-child(3) { top:20px; right:-20px; animation-duration:5s; }
.hero-stat-pill:nth-child(4) { bottom:40px; left:-20px; animation-duration:6s; animation-delay:-2s; }
.pill-icon {
    width:36px; height:36px; border-radius:50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    display:flex; align-items:center; justify-content:center;
    color:white; font-size:0.9rem;
}
.pill-text strong { display:block; font-size:1rem; font-weight:700; color:var(--ink); line-height:1.2; }
.pill-text span { font-size:0.75rem; color:var(--text-muted); }
.hero-scroll {
    position:absolute; bottom:2.5rem; left:50%; transform:translateX(-50%);
    z-index:10;
    display:flex; flex-direction:column; align-items:center; gap:0.5rem;
    color:rgba(255,255,255,0.4); font-size:0.75rem; letter-spacing:0.1em; text-transform:uppercase;
    text-decoration:none; transition:color 0.3s;
    animation: float-up 2.5s ease-in-out infinite;
}
.hero-scroll:hover { color:var(--gold-light); }
.scroll-line {
    width:1px; height:40px;
    background:linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
}
.hero-quick-stats {
    display:flex; flex-wrap:wrap;
    gap:1rem 1.5rem; margin-top:2.1rem; color:white;
}
.hero-quick-stat {
    min-width:130px; padding-left:1rem;
    border-left:2px solid rgba(201,168,76,0.65);
}
.hero-quick-stat strong {
    display:block; font-family:var(--ff-display);
    font-size:1.65rem; line-height:1;
}
.hero-quick-stat span {
    color:rgba(255,255,255,0.64); font-size:0.78rem; font-weight:700;
}

/* ── BUTTONS ── */
.btn-gold {
    display:inline-flex; align-items:center; gap:0.75rem;
    padding:1rem 2.5rem;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    background-size:200% auto;
    color: var(--forest); font-weight:700; font-size:0.95rem;
    text-decoration:none; border:none; cursor:pointer;
    border-radius: var(--r-sm);
    transition: all 0.4s var(--ease-expo);
    box-shadow: var(--shadow-gold);
    letter-spacing:0.02em;
    position:relative; overflow:hidden;
}
.btn-gold::before {
    content:''; position:absolute; inset:0;
    background:linear-gradient(135deg,rgba(255,255,255,0.3),transparent);
    opacity:0; transition:opacity 0.3s;
}
.btn-gold:hover { background-position:right center; transform:translateY(-3px); box-shadow:0 15px 50px rgba(201,168,76,0.4); color:var(--forest); }
.btn-gold:hover::before { opacity:1; }
.btn-gold i { transition:transform 0.3s; }
.btn-gold:hover i { transform:translateX(4px); }
.btn-ghost {
    display:inline-flex; align-items:center; gap:0.75rem;
    padding:1rem 2.5rem;
    background:transparent;
    color:rgba(255,255,255,0.8);
    border:1px solid rgba(255,255,255,0.25);
    font-weight:500; font-size:0.95rem;
    text-decoration:none; cursor:pointer;
    border-radius: var(--r-sm);
    transition: all 0.4s var(--ease-expo);
    letter-spacing:0.02em;
}
.btn-ghost:hover {
    background:rgba(255,255,255,0.08);
    border-color:rgba(255,255,255,0.5);
    color:white; transform:translateY(-3px);
}

/* ═══════════════════════════════════════
   QUICK ACTIONS
═══════════════════════════════════════ */
.public-action-panel {
    position:relative; z-index:20;
    margin-top:-56px; padding:0 0 3rem;
}
.public-action-grid {
    display:grid; grid-template-columns:repeat(5, 1fr);
    gap:0.85rem; padding:1rem;
    background:rgba(255,255,255,0.92);
    border:1px solid rgba(201,168,76,0.24);
    border-radius:18px;
    box-shadow:0 22px 70px rgba(13,33,24,0.18);
    backdrop-filter:blur(18px);
}
.public-action-card {
    display:flex; align-items:center; gap:0.85rem;
    min-height:84px; padding:1rem; border-radius:12px;
    color:var(--ink); text-decoration:none;
    background:linear-gradient(135deg, white, var(--paper));
    border:1px solid var(--line);
    transition:all 0.28s var(--ease-expo);
}
.public-action-card:hover {
    color:var(--forest);
    transform:translateY(-4px);
    border-color:rgba(201,168,76,0.5);
    box-shadow:0 16px 36px rgba(13,33,24,0.11);
}
.public-action-icon {
    width:44px; height:44px; flex:0 0 44px;
    display:flex; align-items:center; justify-content:center;
    border-radius:12px;
    color:var(--forest);
    background:linear-gradient(135deg, var(--gold-light), var(--gold));
}
.public-action-card:nth-child(2) .public-action-icon {
    color:white; background:linear-gradient(135deg, var(--moss-light), var(--moss));
}
.public-action-card:nth-child(3) .public-action-icon {
    color:white; background:linear-gradient(135deg, #1f9aa5, #157782);
}
.public-action-card:nth-child(4) .public-action-icon {
    color:white; background:linear-gradient(135deg, #25D366, #128C7E);
}
.public-action-copy strong { display:block; font-size:0.94rem; line-height:1.2; }
.public-action-copy span { display:block; margin-top:0.18rem; color:var(--text-muted); font-size:0.76rem; font-weight:600; line-height:1.35; }

/* ═══════════════════════════════════════
   SECTIONS BASE
═══════════════════════════════════════ */
.section { padding:6rem 0; }
.section-eyebrow { display:flex; align-items:center; gap:1rem; margin-bottom:1.25rem; }
.eyebrow-ornament { width:30px; height:1px; background: var(--gold); }
.eyebrow-tag { font-size:0.75rem; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; color: var(--gold-dark); }
.section-title {
    font-family: var(--ff-display);
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight:800; letter-spacing:-0.02em;
    color: var(--ink); line-height:1.15;
    margin-bottom:1rem;
}
.section-title em { font-style:italic; color: var(--gold-dark); }
.section-subtitle { font-size:1.05rem; color:var(--text-muted); max-width:560px; line-height:1.8; }
.section-header-block { margin-bottom:4rem; }

/* ═══════════════════════════════════════
   STATS
═══════════════════════════════════════ */
.stats-section { background: var(--paper); }
.stats-section-smp { background: white; padding-top:0; }
.stats-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap:1.5rem; }
.stat-card {
    background:white; border-radius:var(--r-lg);
    padding:2.25rem 1.75rem; text-align:center;
    border:1px solid var(--line);
    position:relative; overflow:hidden;
    transition: transform 0.4s var(--ease-expo), box-shadow 0.4s var(--ease-expo);
}
.stat-card::before {
    content:''; position:absolute;
    top:0; left:0; right:0; height:3px;
    background:linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    transform:scaleX(0); transform-origin:left;
    transition: transform 0.5s var(--ease-expo);
}
.stat-card:hover { transform:translateY(-8px); box-shadow: var(--shadow-deep); }
.stat-card:hover::before { transform:scaleX(1); }
.stat-card.smp::before { background:linear-gradient(90deg, var(--moss), var(--moss-light)); }
.stat-icon-wrap {
    width:64px; height:64px; margin:0 auto 1.5rem;
    border-radius:var(--r-md);
    background: var(--gold-pale);
    display:flex; align-items:center; justify-content:center;
    font-size:1.6rem; color:var(--gold-dark);
    transition: transform 0.4s var(--ease-back);
}
.stat-card.smp .stat-icon-wrap { background:#e8f5ef; color:var(--moss); }
.stat-card:hover .stat-icon-wrap { transform:scale(1.12) rotate(6deg); }
.stat-value {
    font-family: var(--ff-display);
    font-size:2.8rem; font-weight:800; line-height:1;
    color: var(--ink); margin-bottom:0.4rem;
    letter-spacing:-0.03em;
}
.stat-label { font-size:0.88rem; color:var(--text-muted); font-weight:500; letter-spacing:0.02em; }

/* ═══════════════════════════════════════
   ANNOUNCEMENT
═══════════════════════════════════════ */
.announcement {
    margin:2rem 0;
    background: linear-gradient(135deg, var(--forest) 0%, var(--brand) 100%);
    border-radius:var(--r-lg); padding:1.75rem 2.5rem;
    display:flex; align-items:center; gap:1.5rem;
    border:1px solid rgba(201,168,76,0.3);
    box-shadow: var(--shadow-gold);
    position:relative; overflow:hidden;
}
.announcement::before {
    content:''; position:absolute; inset:0;
    background: linear-gradient(135deg, rgba(201,168,76,0.08), transparent);
    pointer-events:none;
}
.announcement-icon {
    width:52px; height:52px; flex-shrink:0;
    background:rgba(201,168,76,0.15);
    border-radius:50%; display:flex; align-items:center; justify-content:center;
    font-size:1.4rem; color:var(--gold-light);
    border:1px solid rgba(201,168,76,0.3);
    position:relative;
}
.announcement-icon::after {
    content:''; position:absolute; inset:-4px;
    border-radius:50%; border:1px solid rgba(201,168,76,0.2);
    animation: pulse-ring 2.5s ease-out infinite;
}
.announcement-body { flex:1; text-align:center; position:relative; }
.announcement-title {
    font-family: var(--ff-display);
    font-size:1.2rem; font-weight:700;
    color:white; margin-bottom:0.25rem; display:block;
}
.announcement-body p { color:rgba(255,255,255,0.7); font-size:0.95rem; }
.announcement-body a {
    color: var(--gold-light); text-decoration:none; font-weight:600;
    border-bottom:1px solid rgba(201,168,76,0.4);
    transition:border-color 0.3s;
}
.announcement-body a:hover { border-color:var(--gold-light); }

/* ═══════════════════════════════════════
   TRUST
═══════════════════════════════════════ */
.trust-section {
    background: linear-gradient(180deg, white 0%, var(--paper) 100%);
    position:relative; overflow:hidden;
}
.trust-layout {
    display:grid;
    grid-template-columns:minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap:3rem; align-items:center;
}
.trust-note {
    margin-top:1.5rem; padding:1rem 1.15rem;
    display:flex; gap:0.85rem; align-items:flex-start;
    border-radius:14px;
    background:var(--gold-pale); color:var(--text);
    border:1px solid rgba(201,168,76,0.32);
}
.trust-note i { color:var(--gold-dark); margin-top:0.2rem; }
.trust-note strong { color:var(--forest); }
.trust-grid { display:grid; grid-template-columns:repeat(2, 1fr); gap:1rem; }
.trust-item {
    min-height:190px; padding:1.35rem;
    border-radius:16px; background:white;
    border:1px solid var(--line);
    box-shadow:0 12px 34px rgba(13,33,24,0.07);
    transition:all 0.28s var(--ease-expo);
}
.trust-item:hover {
    transform:translateY(-5px);
    border-color:rgba(201,168,76,0.42);
    box-shadow:0 20px 46px rgba(13,33,24,0.1);
}
.trust-icon {
    width:48px; height:48px; margin-bottom:1rem;
    display:flex; align-items:center; justify-content:center;
    border-radius:14px;
    color:var(--forest); background:var(--gold-pale);
    font-size:1.25rem;
}
.trust-item:nth-child(2) .trust-icon { color:white; background:linear-gradient(135deg, var(--moss-light), var(--moss)); }
.trust-item:nth-child(3) .trust-icon { color:white; background:linear-gradient(135deg, #1f9aa5, #157782); }
.trust-item:nth-child(4) .trust-icon { color:white; background:linear-gradient(135deg, #334155, #0f172a); }
.trust-item h3 {
    font-family:var(--ff-display); font-size:1.12rem;
    font-weight:800; color:var(--ink); margin:0 0 0.55rem;
}
.trust-item p { margin:0; color:var(--text-muted); font-size:0.9rem; line-height:1.7; }

/* ═══════════════════════════════════════
   PROGRAMS
═══════════════════════════════════════ */
.programs-section { background:white; }
.programs-grid { display:grid; grid-template-columns:1fr 1fr; gap:2rem; }
.program-card {
    border-radius:var(--r-xl); overflow:hidden;
    background: var(--forest);
    border:1px solid rgba(201,168,76,0.2);
    transition: transform 0.5s var(--ease-expo), box-shadow 0.5s;
    position:relative;
}
.program-card:hover { transform:translateY(-10px); box-shadow: var(--shadow-deep); }
.program-card.smp { background: linear-gradient(160deg, var(--forest-mid), #0a2818); }
.program-card-bg {
    position:absolute; inset:0;
    background-image:
        radial-gradient(ellipse at top right, rgba(201,168,76,0.1), transparent 60%),
        radial-gradient(ellipse at bottom left, rgba(46,107,79,0.15), transparent 60%);
    pointer-events:none;
}
.program-header {
    padding:3rem 3rem 2rem;
    position:relative; z-index:1;
    border-bottom:1px solid rgba(255,255,255,0.06);
}
.program-icon-row { display:flex; align-items:center; gap:1rem; margin-bottom:1.5rem; }
.program-icon {
    width:60px; height:60px;
    background:rgba(201,168,76,0.12);
    border:1px solid rgba(201,168,76,0.3);
    border-radius:var(--r-md);
    display:flex; align-items:center; justify-content:center;
    font-size:1.6rem; color:var(--gold-light);
}
.program-card.smp .program-icon { background:rgba(61,139,103,0.15); border-color:rgba(61,139,103,0.4); color:#7ecca0; }
.program-badge {
    padding:0.35rem 1rem; border-radius:var(--r-pill);
    background:rgba(201,168,76,0.1); border:1px solid rgba(201,168,76,0.25);
    font-size:0.75rem; color:var(--gold-light); font-weight:600; letter-spacing:0.1em; text-transform:uppercase;
}
.program-card.smp .program-badge { background:rgba(61,139,103,0.1); border-color:rgba(61,139,103,0.25); color:#7ecca0; }
.program-name {
    font-family: var(--ff-display);
    font-size:2rem; font-weight:800; color:white;
    margin-bottom:0.4rem; letter-spacing:-0.01em;
}
.program-tagline { font-size:0.9rem; color:rgba(255,255,255,0.5); font-style:italic; }
.program-body { padding:2rem 3rem 3rem; position:relative; z-index:1; }
.program-desc { color:rgba(255,255,255,0.65); font-size:0.95rem; line-height:1.8; margin-bottom:1.75rem; }
.program-features { list-style:none; margin-bottom:2.25rem; }
.program-feature {
    display:flex; align-items:center; gap:0.9rem;
    padding:0.65rem 0;
    border-bottom:1px solid rgba(255,255,255,0.05);
    color:rgba(255,255,255,0.8); font-size:0.9rem;
    transition:transform 0.3s, color 0.3s;
}
.program-feature:last-child { border:none; }
.program-feature:hover { transform:translateX(6px); color:white; }
.feature-dot {
    width:22px; height:22px; flex-shrink:0;
    border-radius:50%; background:rgba(201,168,76,0.15);
    border:1px solid rgba(201,168,76,0.4);
    display:flex; align-items:center; justify-content:center;
    font-size:0.6rem; color:var(--gold-light);
}
.program-card.smp .feature-dot { background:rgba(61,139,103,0.15); border-color:rgba(61,139,103,0.4); color:#7ecca0; }
.btn-program-gold {
    display:inline-flex; align-items:center; gap:0.75rem;
    width:100%; padding:1rem 1.75rem;
    background:linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: var(--forest); font-weight:700; font-size:0.95rem;
    text-decoration:none; border-radius:var(--r-sm);
    justify-content:center;
    transition: all 0.4s var(--ease-expo);
    box-shadow: var(--shadow-gold);
}
.btn-program-gold:hover { transform:translateY(-3px); box-shadow:0 15px 50px rgba(201,168,76,0.5); color:var(--forest); }
.btn-program-green {
    display:inline-flex; align-items:center; gap:0.75rem;
    width:100%; padding:1rem 1.75rem;
    background:linear-gradient(135deg, #3D8B67, #2E6B4F);
    color:white; font-weight:700; font-size:0.95rem;
    text-decoration:none; border-radius:var(--r-sm);
    justify-content:center;
    transition: all 0.4s var(--ease-expo);
    box-shadow:0 8px 30px rgba(46,107,79,0.35);
}
.btn-program-green:hover { transform:translateY(-3px); box-shadow:0 15px 50px rgba(46,107,79,0.45); color:white; }

/* ═══════════════════════════════════════
   FLOW
═══════════════════════════════════════ */
.flow-section { background: var(--paper); position:relative; overflow:hidden; }
.flow-section::before {
    content:''; position:absolute;
    top:50%; left:0; right:0; height:1px;
    background:linear-gradient(90deg, transparent 5%, var(--line) 50%, transparent 95%);
    z-index:0;
}
.flow-grid {
    display:grid; grid-template-columns:repeat(3, 1fr);
    gap:2rem; position:relative; z-index:1;
}
.flow-card {
    background:white; border-radius:var(--r-lg);
    padding:2.5rem 2rem; text-align:center;
    border:1px solid var(--line);
    transition: all 0.4s var(--ease-expo);
    position:relative; overflow:hidden;
}
.flow-card::after {
    content:''; position:absolute; inset:0;
    background:linear-gradient(135deg, rgba(201,168,76,0.03), transparent);
    opacity:0; transition:opacity 0.3s;
}
.flow-card:hover { transform:translateY(-8px); box-shadow: var(--shadow-deep); border-color:rgba(201,168,76,0.2); }
.flow-card:hover::after { opacity:1; }
.flow-number {
    font-family: var(--ff-display);
    font-size:4rem; font-weight:800; line-height:1;
    color: var(--line); margin-bottom:1rem;
    transition:color 0.3s;
}
.flow-card:hover .flow-number { color: var(--gold-pale); }
.flow-icon-wrap {
    width:64px; height:64px; margin:0 auto 1.5rem;
    background:var(--gold-pale); border-radius:var(--r-md);
    display:flex; align-items:center; justify-content:center;
    font-size:1.6rem; color:var(--gold-dark);
    transition: transform 0.4s var(--ease-back), box-shadow 0.4s;
}
.flow-card:hover .flow-icon-wrap { transform:scale(1.12) rotate(-5deg); box-shadow: var(--shadow-gold); }
.flow-title {
    font-family: var(--ff-display);
    font-size:1.3rem; font-weight:700; color:var(--ink);
    margin-bottom:0.75rem;
}
.flow-desc { font-size:0.9rem; color:var(--text-muted); line-height:1.75; }

/* ═══════════════════════════════════════
   CHECKLIST
═══════════════════════════════════════ */
.checklist-section { background:white; padding-top:0; }
.checklist-panel {
    display:grid;
    grid-template-columns:minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap:2rem; align-items:stretch;
    background:var(--forest); border-radius:24px; padding:2rem;
    color:white; position:relative; overflow:hidden;
}
.checklist-panel::before {
    content:''; position:absolute; inset:0;
    background:
        radial-gradient(circle at 8% 10%, rgba(201,168,76,0.22), transparent 32%),
        radial-gradient(circle at 92% 80%, rgba(31,154,165,0.16), transparent 34%);
    pointer-events:none;
}
.checklist-intro, .checklist-grid { position:relative; z-index:1; }
.checklist-intro { display:flex; flex-direction:column; justify-content:center; }
.checklist-intro .section-eyebrow { margin-bottom:1rem; }
.checklist-intro .section-title { color:white; margin-bottom:1rem; }
.checklist-intro .section-subtitle { color:rgba(255,255,255,0.68); }
.checklist-grid { display:grid; gap:0.85rem; }
.checklist-item {
    display:flex; align-items:flex-start; gap:0.85rem;
    padding:1rem; border-radius:14px;
    background:rgba(255,255,255,0.07);
    border:1px solid rgba(255,255,255,0.12);
    backdrop-filter:blur(12px);
}
.checklist-item i {
    width:34px; height:34px; flex:0 0 34px;
    display:flex; align-items:center; justify-content:center;
    border-radius:10px;
    color:var(--forest); background:var(--gold-light);
}
.checklist-item strong { display:block; margin-bottom:0.16rem; color:white; font-size:0.96rem; }
.checklist-item span { display:block; color:rgba(255,255,255,0.62); font-size:0.84rem; line-height:1.55; }

/* ═══════════════════════════════════════
   QUOTA
═══════════════════════════════════════ */
.quota-section { background:white; }
.quota-section-alt { background: var(--paper); }
.quota-grid {
    display:grid; grid-template-columns:repeat(auto-fill, minmax(280px, 1fr));
    gap:1.5rem;
}
.quota-card {
    background: var(--paper); border-radius:var(--r-lg);
    padding:1.75rem; border:1px solid var(--line);
    transition: all 0.4s var(--ease-expo);
    position:relative; overflow:hidden;
}
.quota-section .quota-card { background:white; }
.quota-card:hover { transform:translateY(-5px); box-shadow:0 15px 40px rgba(0,0,0,0.08); border-color:rgba(201,168,76,0.25); }
.quota-card-header {
    display:flex; justify-content:space-between; align-items:flex-start;
    margin-bottom:1.25rem; gap:1rem;
}
.quota-name { font-weight:700; font-size:1rem; color:var(--ink); line-height:1.4; }
.quota-chip {
    padding:0.35rem 0.85rem; border-radius:var(--r-pill);
    font-size:0.78rem; font-weight:700; white-space:nowrap; flex-shrink:0;
}
.quota-chip.available { background:#e8f5ef; color:#1a5c36; }
.quota-chip.low       { background:#fef3c7; color:#92400e; }
.quota-chip.full      { background:#fee2e2; color:#991b1b; }
.quota-track {
    height:6px; background:var(--line);
    border-radius:var(--r-pill); overflow:hidden; margin-bottom:1rem;
}
.quota-fill {
    height:100%; border-radius:var(--r-pill);
    transition: width 1.2s var(--ease-expo);
}
.quota-fill.available { background:linear-gradient(90deg, #3D8B67, #7ecca0); }
.quota-fill.low       { background:linear-gradient(90deg, var(--gold-dark), var(--gold-light)); }
.quota-fill.full      { background:linear-gradient(90deg, #dc2626, #f87171); }
.quota-meta {
    display:flex; justify-content:space-between;
    font-size:0.82rem; color:var(--text-muted); font-weight:500;
}
.quota-meta strong { color:var(--ink); }

/* ═══════════════════════════════════════
   SCHEDULE
═══════════════════════════════════════ */
.schedule-section { background:var(--forest); position:relative; overflow:hidden; }
.schedule-section::before {
    content:''; position:absolute; inset:0;
    background:
        radial-gradient(circle at 10% 50%, rgba(201,168,76,0.1) 0%, transparent 45%),
        radial-gradient(circle at 90% 30%, rgba(46,107,79,0.2) 0%, transparent 45%);
    pointer-events:none;
}
.schedule-section .section-title { color:white; }
.schedule-section .section-subtitle { color:rgba(255,255,255,0.55); }
.schedule-section .eyebrow-tag { color:var(--gold-light); }
.schedule-section .eyebrow-ornament { background:var(--gold-light); }
.schedule-grid {
    display:grid; grid-template-columns:repeat(4, 1fr); gap:1.5rem;
    position:relative; z-index:1;
}
.schedule-card {
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(201,168,76,0.15);
    border-radius:var(--r-lg); padding:2rem 1.5rem;
    transition: all 0.4s var(--ease-expo);
    position:relative; overflow:hidden;
    backdrop-filter:blur(10px);
}
.schedule-card::before {
    content:''; position:absolute;
    bottom:0; left:0; right:0; height:3px;
    background:linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    transform:scaleX(0); transform-origin:left;
    transition:transform 0.4s var(--ease-expo);
}
.schedule-card:hover { background:rgba(255,255,255,0.07); border-color:rgba(201,168,76,0.3); transform:translateY(-6px); }
.schedule-card:hover::before { transform:scaleX(1); }
.schedule-icon {
    width:52px; height:52px; margin-bottom:1.5rem;
    border-radius:var(--r-md);
    background:rgba(201,168,76,0.1); border:1px solid rgba(201,168,76,0.25);
    display:flex; align-items:center; justify-content:center;
    font-size:1.3rem; color:var(--gold-light);
    transition:transform 0.4s var(--ease-back);
}
.schedule-card:hover .schedule-icon { transform:scale(1.1) rotate(-8deg); }
.schedule-title { font-family:var(--ff-display); font-size:1.1rem; color:white; margin-bottom:0.4rem; }
.schedule-date  { font-size:0.85rem; color:rgba(255,255,255,0.45); }

/* ═══════════════════════════════════════
   GALLERY / CAROUSEL
═══════════════════════════════════════ */
.gallery-section { background: var(--paper); }
.carousel-wrap { border-radius:var(--r-xl); overflow:hidden; box-shadow: var(--shadow-deep); }
.carousel-item { height:480px; }
.carousel-image { width:100%; height:100%; object-fit:cover; transition:transform 0.8s var(--ease-expo); }
.carousel-item:hover .carousel-image { transform:scale(1.05); }
.carousel-caption {
    position:absolute; bottom:0; left:0; right:0;
    padding:4rem 3rem 2.5rem;
    background:linear-gradient(transparent, rgba(13,33,24,0.92));
}
.carousel-caption h5 { font-family:var(--ff-display); font-size:1.6rem; color:white; margin-bottom:0.4rem; }
.carousel-caption p { color:rgba(255,255,255,0.75); font-size:0.95rem; }
.carousel-control-prev, .carousel-control-next {
    width:50px; height:50px; border-radius:50%;
    background:rgba(201,168,76,0.2); backdrop-filter:blur(8px);
    border:1px solid rgba(201,168,76,0.3); opacity:0.9; transition:all 0.3s;
}
.carousel-control-prev:hover, .carousel-control-next:hover {
    opacity:1; background:rgba(201,168,76,0.4); transform:scale(1.1);
}
.carousel-indicators button {
    width:8px; height:8px; border-radius:50%; border:none;
    background:rgba(255,255,255,0.4); transition:all 0.3s; margin:0 4px;
}
.carousel-indicators button.active { background:var(--gold-light); transform:scale(1.3); }
.carousel-indicators { bottom:-35px !important; }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq-section { background:white; }
.faq-layout {
    display:grid;
    grid-template-columns:minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap:2rem; align-items:start;
}
.help-card {
    position:sticky; top:110px;
    padding:1.5rem; border-radius:18px;
    background:linear-gradient(160deg, var(--forest), var(--brand));
    color:white;
    border:1px solid rgba(201,168,76,0.24);
    box-shadow:0 18px 48px rgba(13,33,24,0.22);
}
.help-card img {
    width:58px; height:58px; object-fit:contain; border-radius:0;
    background:transparent; padding:0;
    filter:drop-shadow(0 8px 16px rgba(0,0,0,0.2));
    margin-bottom:1rem;
}
.help-card h3 { font-family:var(--ff-display); font-size:1.35rem; font-weight:800; margin:0 0 0.65rem; }
.help-card p { color:rgba(255,255,255,0.68); font-size:0.9rem; line-height:1.75; margin-bottom:1.25rem; }
.help-actions { display:grid; gap:0.7rem; }
.help-actions a {
    display:flex; align-items:center; justify-content:center;
    gap:0.6rem; min-height:44px; padding:0.75rem 1rem;
    border-radius:10px; text-decoration:none;
    font-weight:800; font-size:0.88rem;
    transition:all 0.25s var(--ease-expo);
}
.help-actions a:first-child {
    color:var(--forest); background:linear-gradient(135deg, var(--gold-light), var(--gold));
}
.help-actions a:last-child {
    color:white; border:1px solid rgba(255,255,255,0.22);
    background:rgba(255,255,255,0.08);
}
.help-actions a:hover { transform:translateY(-2px); }
.faq-accordion { display:grid; gap:0.85rem; }
.faq-accordion .accordion-item {
    border:1px solid var(--line);
    border-radius:14px; overflow:hidden;
    background:var(--paper);
}
.faq-accordion .accordion-button {
    min-height:62px; background:white;
    color:var(--ink); font-weight:800; box-shadow:none;
}
.faq-accordion .accordion-button:not(.collapsed) {
    color:var(--forest); background:var(--gold-pale);
}
.faq-accordion .accordion-button:focus { box-shadow:0 0 0 0.2rem rgba(201,168,76,0.2); }
.faq-accordion .accordion-body { color:var(--text-muted); line-height:1.75; background:white; }

/* ═══════════════════════════════════════
   PROFILE (about.blade.php)
═══════════════════════════════════════ */
.profile-hero {
    position: relative;
    background: linear-gradient(135deg, var(--forest) 0%, var(--brand) 100%);
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    overflow: hidden;
}
.profile-hero::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent 5%, var(--gold-dark) 30%, var(--gold-light) 50%, var(--gold-dark) 70%, transparent 95%);
}
.profile-hero::after {
    content: ''; position: absolute; top: -60px; right: -60px;
    width: 240px; height: 240px; border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
    pointer-events: none; animation: pulse 12s ease-in-out infinite;
}
.profile-hero-content {
    position: relative; z-index: 2;
    display: flex; align-items: center; gap: 2.5rem;
    max-width: 1100px; margin: 0 auto; padding: 0 1.5rem;
}
.profile-logo {
    flex-shrink: 0; width: 160px; height: 160px;
    background: transparent; border-radius: 0;
    display: flex; align-items: center; justify-content: center;
    box-shadow: none; border: 0; animation: float 6s ease-in-out infinite;
}
.profile-logo img {
    width: 150px; height: 150px; object-fit: contain;
    border-radius: 0; background: transparent;
    filter: drop-shadow(0 14px 24px rgba(0,0,0,0.22));
}
.profile-hero-text { flex: 1; color: white; }
.profile-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(201,168,76,0.2); color: var(--gold-light);
    padding: 0.4rem 1rem; border-radius: 999px;
    font-size: 0.85rem; font-weight: 600; margin-bottom: 0.75rem;
    border: 1px solid rgba(201,168,76,0.3);
}
.profile-hero-text h1 {
    font-family: var(--ff-display); font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2rem); margin: 0 0 0.5rem; line-height: 1.3;
}
.profile-hero-text .subtitle {
    font-size: 1rem; opacity: 0.9; margin: 0 0 1.25rem;
    font-weight: 400; max-width: 600px;
}
.profile-stats { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.profile-stat { display: flex; flex-direction: column; align-items: flex-start; }
.profile-stat-value {
    font-family: var(--ff-display); font-size: 1.5rem;
    font-weight: 700; color: var(--gold-light); line-height: 1.2;
}
.profile-stat-label { font-size: 0.8rem; opacity: 0.85; font-weight: 500; }
.profile-container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem 3rem; }

/* Profile Sections */
.profile-section {
    background: white; border: 1px solid var(--line);
    border-radius: var(--r-lg); padding: 2rem;
    margin-bottom: 1.5rem; box-shadow: var(--shadow-md);
    transition: all 0.35s var(--ease-expo);
    position: relative; overflow: hidden;
    animation: fadeInUp 0.5s ease forwards; opacity: 0;
}
.profile-section::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--moss), var(--gold));
    opacity: 0; transition: all 0.2s ease-in-out;
}
.profile-section:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.profile-section:hover::before { opacity: 1; }
.profile-section:nth-child(1) { animation-delay: 0.1s; opacity: 1; }
.profile-section:nth-child(2) { animation-delay: 0.2s; }
.profile-section:nth-child(3) { animation-delay: 0.3s; }
.profile-section:nth-child(4) { animation-delay: 0.4s; }
.profile-section:nth-child(5) { animation-delay: 0.5s; }

.section-header {
    display: flex; align-items: center; gap: 0.6rem;
    margin-bottom: 1.5rem; padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold-pale);
}
.section-header i { color: var(--gold-dark); font-size: 1.3rem; }
.section-header h3 {
    font-family: var(--ff-display); font-weight: 600;
    font-size: 1.25rem; color: var(--forest); margin: 0;
}

/* Vision Mission Cards */
.vision-mission-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.vm-card {
    background: var(--paper); border-radius: 14px;
    padding: 1.25rem; border-left: 4px solid var(--moss);
    transition: all 0.2s ease-in-out;
}
.vm-card:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.vm-card.mission { border-left-color: var(--gold); }
.vm-title {
    display: flex; align-items: center; gap: 0.5rem;
    font-family: var(--ff-display); font-weight: 600;
    color: var(--forest); margin-bottom: 0.75rem; font-size: 1.05rem;
}
.vm-title i { color: var(--moss); }
.vm-card.mission .vm-title i { color: var(--gold-dark); }
.vm-content { color: var(--text); line-height: 1.7; font-size: 0.95rem; margin: 0; }

/* Timeline */
.timeline { position: relative; padding: 0.5rem 0; }
.timeline::before {
    content: ''; position: absolute; top: 0.5rem; bottom: 0.5rem; left: 22px; width: 2px;
    background: linear-gradient(to bottom, var(--moss), var(--gold)); border-radius: 2px;
}
.timeline-item { position: relative; padding-left: 56px; margin-bottom: 1.75rem; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
    position: absolute; left: 12px; top: 0.25rem;
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--moss); border: 4px solid white;
    box-shadow: var(--shadow-sm); z-index: 1;
    transition: all 0.2s ease-in-out;
}
.timeline-item:hover .timeline-dot { transform: scale(1.15); background: var(--gold); }
.timeline-year { font-family: var(--ff-display); font-weight: 700; color: var(--moss); font-size: 0.9rem; margin-bottom: 0.2rem; }
.timeline-title { font-weight: 600; color: var(--ink); margin-bottom: 0.25rem; font-size: 0.95rem; }
.timeline-content { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* Facilities */
.facilities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }
.facility-card {
    background: white; border: 1px solid var(--line);
    border-radius: 14px; padding: 1.25rem; text-align: center;
    transition: all 0.35s var(--ease-expo);
    position: relative; overflow: hidden;
}
.facility-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--moss), var(--gold));
    opacity: 0; transition: all 0.2s ease-in-out;
}
.facility-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.facility-card:hover::before { opacity: 1; }
.facility-icon {
    width: 52px; height: 52px; margin: 0 auto 0.75rem;
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; background: #e8f5ef; color: var(--moss);
    transition: all 0.2s ease-in-out;
}
.facility-card:hover .facility-icon { background: var(--gold-pale); color: var(--gold-dark); transform: scale(1.05); }
.facility-name { font-weight: 600; color: var(--ink); margin-bottom: 0.25rem; font-size: 0.95rem; }
.facility-desc { font-size: 0.8rem; color: var(--text-muted); }

/* Units */
.units-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.unit-card {
    background: linear-gradient(135deg, var(--forest) 0%, var(--brand) 100%);
    color: white; border-radius: 14px; padding: 1.5rem;
    position: relative; overflow: hidden;
    transition: all 0.35s var(--ease-expo);
    border: 1px solid rgba(201,168,76,0.2);
}
.unit-card::before {
    content: ''; position: absolute; top: -50%; right: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
    opacity: 0; transition: all 0.2s ease-in-out;
}
.unit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.unit-card:hover::before { opacity: 1; }
.unit-card.smp { background: linear-gradient(135deg, var(--moss) 0%, var(--brand-800) 100%); }
.unit-icon { font-size: 1.75rem; margin-bottom: 0.75rem; color: var(--gold-light); }
.unit-name { font-family: var(--ff-display); font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
.unit-desc { font-size: 0.9rem; opacity: 0.9; margin-bottom: 1rem; line-height: 1.5; }
.unit-link {
    display: inline-flex; align-items: center; gap: 0.4rem;
    color: var(--gold-light); text-decoration: none;
    font-weight: 600; font-size: 0.9rem;
    transition: all 0.2s ease-in-out;
    padding: 0.4rem 0.75rem; border-radius: 8px;
    background: rgba(201,168,76,0.15);
}
.unit-link:hover { gap: 0.6rem; background: var(--gold); color: var(--forest); }

/* ═══════════════════════════════════════
   CONTACT (contact.blade.php)
═══════════════════════════════════════ */
.contact-hero {
    background: linear-gradient(135deg, var(--forest) 0%, var(--brand) 100%);
    padding: clamp(2.5rem, 6vw, 4rem) 0; color: white;
    position: relative; overflow: hidden;
}
.contact-hero::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent 5%, var(--gold-dark) 30%, var(--gold-light) 50%, var(--gold-dark) 70%, transparent 95%);
}
.contact-hero::after {
    content: ''; position: absolute; top: -60px; right: -60px;
    width: 240px; height: 240px; border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
    pointer-events: none; animation: pulse 12s ease-in-out infinite;
}
.contact-hero-content {
    position: relative; z-index: 2; text-align: center;
    max-width: 700px; margin: 0 auto; padding: 0 1.5rem;
}
.contact-hero h1 {
    font-family: var(--ff-display); font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin: 0 0 0.75rem; line-height: 1.3;
}
.contact-hero p { font-size: 1rem; opacity: 0.9; margin: 0 0 1.5rem; max-width: 550px; margin-left: auto; margin-right: auto; }
.contact-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(201,168,76,0.2); color: var(--gold-light);
    padding: 0.4rem 1rem; border-radius: 999px;
    font-size: 0.85rem; font-weight: 600; margin-bottom: 1rem;
    border: 1px solid rgba(201,168,76,0.3);
}
.contact-container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem 3rem; }

/* Contact Card */
.contact-card {
    background: white; border: 1px solid var(--line);
    border-radius: var(--r-lg); padding: 1.75rem;
    box-shadow: var(--shadow-md); transition: all 0.35s var(--ease-expo);
    position: relative; overflow: hidden;
    animation: fadeInUp 0.5s ease forwards; opacity: 0;
}
.contact-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--moss), var(--gold));
    opacity: 0; transition: all 0.2s ease-in-out;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.contact-card:hover::before { opacity: 1; }
.contact-card:nth-child(1) { animation-delay: 0.1s; opacity: 1; }
.contact-card:nth-child(2) { animation-delay: 0.2s; }
.contact-card:nth-child(3) { animation-delay: 0.3s; }

/* Card Header (shared between contact & vision) */
.card-header-yapisda {
    display: flex; align-items: center; gap: 0.6rem;
    margin-bottom: 1.25rem; padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold-pale);
}
.card-header-yapisda i { color: var(--gold-dark); font-size: 1.3rem; }
.card-header-yapisda h3, .card-header-yapisda h4 {
    font-family: var(--ff-display); font-weight: 600;
    font-size: 1.15rem; color: var(--forest); margin: 0;
}

/* Location Items */
.location-item {
    display: flex; gap: 1rem; padding: 1rem;
    background: var(--paper); border-radius: 14px;
    margin-bottom: 0.75rem; transition: all 0.2s ease-in-out;
    border-left: 4px solid var(--moss);
}
.location-item:hover { transform: translateX(4px); background: var(--gold-pale); }
.location-item.smk { border-left-color: var(--gold); }
.location-item.smp { border-left-color: var(--warning); }
.location-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
    background: var(--gold-pale); color: var(--gold-dark);
    transition: all 0.2s ease-in-out;
}
.location-item:hover .location-icon { background: var(--gold); color: var(--forest); }
.location-content h4 { font-weight: 600; color: var(--ink); margin-bottom: 0.35rem; font-size: 0.95rem; }
.location-content p { color: var(--text-muted); font-size: 0.85rem; margin: 0; line-height: 1.5; }
.location-content small { display: block; margin-top: 0.25rem; color: var(--gold-dark); font-weight: 500; }

/* Info boxes */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0.75rem; }
.info-box {
    background: var(--paper); border: 1px solid var(--line);
    border-radius: 14px; padding: 1.25rem 1rem; text-align: center;
    transition: all 0.35s var(--ease-expo);
}
.info-box:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.info-icon {
    width: 52px; height: 52px; margin: 0 auto 0.75rem;
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; background: var(--gold-pale); color: var(--gold-dark);
    transition: all 0.2s ease-in-out;
}
.info-box:hover .info-icon { background: var(--gold); color: var(--forest); transform: scale(1.05); }
.info-box.phone .info-icon { background: #e8f5ef; color: var(--moss); }
.info-box.whatsapp .info-icon { background: var(--success-bg); color: var(--success); }
.info-box.email .info-icon { background: var(--info-bg); color: var(--info); }
.info-box h4 { font-weight: 600; color: var(--ink); margin-bottom: 0.35rem; font-size: 0.9rem; }
.info-box p { color: var(--text-muted); font-size: 0.85rem; margin: 0.15rem 0; }
.info-box a { color: var(--moss); text-decoration: none; font-weight: 600; transition: all 0.2s ease-in-out; }
.info-box a:hover { color: var(--gold-dark); }

/* Social */
.social-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 0.6rem; }
.social-link {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.75rem; border-radius: 14px; text-decoration: none;
    color: white; transition: all 0.2s ease-in-out;
    font-size: 0.85rem; background: var(--forest);
}
.social-link:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: var(--shadow-gold); color:white; }
.social-link i { font-size: 1.2rem; width: 24px; text-align: center; }
.social-link .social-info { flex: 1; min-width: 0; }
.social-link .social-name { font-weight: 600; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.social-link .social-handle { font-size: 0.75rem; opacity: 0.85; display: block; }
.social-link.facebook { background: #1877F2; }
.social-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.youtube { background: #FF0000; }
.social-link.twitter { background: #1DA1F2; }
.social-link.tiktok { background: #000000; }
.social-link.whatsapp { background: #25D366; }

/* Map */
.map-card { background: white; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.map-header { padding: 1rem 1.25rem; display: flex; align-items: center; gap: 0.6rem; border-bottom: 1px solid var(--line); background: var(--paper); }
.map-header i { color: var(--gold-dark); font-size: 1.2rem; }
.map-header h3 { font-family: var(--ff-display); font-weight: 600; color: var(--forest); margin: 0; font-size: 1.1rem; }
.map-container { height: 280px; position: relative; }
.map-container iframe { width: 100%; height: 100%; border: none; filter: grayscale(20%) contrast(1.05); transition: all 0.2s ease-in-out; }
.map-container:hover iframe { filter: none; }
.map-overlay {
    position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
    padding: 0.6rem 0.9rem; border-radius: 10px;
    font-size: 0.8rem; color: var(--text-muted);
    display: flex; align-items: center; gap: 0.4rem;
    box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.map-overlay i { color: var(--gold-dark); }

/* Form */
.form-card { background: white; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.75rem; box-shadow: var(--shadow-md); }
.form-header { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--gold-pale); }
.form-header i { color: var(--gold-dark); font-size: 1.2rem; }
.form-header h3 { font-family: var(--ff-display); font-weight: 600; color: var(--forest); margin: 0; font-size: 1.1rem; }

/* ═══════════════════════════════════════
   VISION (vision.blade.php)
═══════════════════════════════════════ */
.vision-wrapper { max-width: 1100px; margin: 0 auto; padding: 2rem 1.5rem 3rem; }
.vision-card {
    background: white; border: 1px solid var(--line);
    border-radius: var(--r-lg); margin-bottom: 1.5rem;
    overflow: hidden; box-shadow: var(--shadow-md);
    transition: all 0.35s var(--ease-expo);
    position: relative;
    animation: fadeInUp 0.5s ease forwards; opacity: 0;
}
.vision-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--moss), var(--gold));
    opacity: 0; transition: all 0.2s ease-in-out;
}
.vision-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.vision-card:hover::before { opacity: 1; }
.vision-card:nth-child(1) { animation-delay: 0.1s; opacity: 1; }
.vision-card:nth-child(2) { animation-delay: 0.2s; }
.vision-card:nth-child(3) { animation-delay: 0.3s; }
.vision-card:nth-child(4) { animation-delay: 0.4s; }

/* Vision header when used as full card header */
.vision-card .card-header-yapisda {
    background: linear-gradient(135deg, var(--forest) 0%, var(--brand) 100%);
    padding: 1.25rem 1.75rem; color: white; position: relative;
    display: flex; align-items: center; gap: 0.6rem;
    margin-bottom: 0; border-bottom: none;
}
.vision-card .card-header-yapisda::after {
    content: ''; position: absolute; bottom: -1px; left: 1.75rem;
    width: 40px; height: 2px; background: var(--gold); border-radius: 999px;
}
.vision-card .card-header-yapisda h4 { color: white; }
.vision-card .card-header-yapisda h4 i { color: var(--gold-light); font-size: 1.2rem; }
.card-body-yapisda { padding: 1.75rem; }

/* Vision Box */
.vision-box {
    background: linear-gradient(135deg, var(--paper), white);
    border: 2px solid var(--gold-pale); border-radius: var(--r-lg);
    padding: 2rem; text-align: center; position: relative; overflow: hidden;
}
.vision-box::before {
    content: ''; position: absolute; top: -50%; right: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.vision-icon { position: relative; z-index: 1; margin-bottom: 1.25rem; animation: float 3s ease-in-out infinite; }
.vision-icon i { color: var(--gold); font-size: 3rem; filter: drop-shadow(0 4px 12px rgba(201,168,76,0.3)); }
.vision-quote {
    position: relative; z-index: 1;
    font-family: var(--ff-display); font-size: 1.3rem; font-weight: 600;
    color: var(--forest); line-height: 1.5; margin: 0;
}
.vision-quote::before, .vision-quote::after {
    content: '"'; color: var(--gold-dark); font-size: 2.5rem;
    font-family: Georgia, serif; opacity: 0.6; position: absolute;
}
.vision-quote::before { top: -10px; left: -15px; }
.vision-quote::after { content: '"'; bottom: -25px; right: -15px; transform: rotate(180deg); }

/* Mission cards */
.mission-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; }
.mission-card {
    background: white; border: 1px solid var(--line); border-radius: 14px;
    padding: 1.25rem; transition: all 0.35s var(--ease-expo);
    position: relative; overflow: hidden; border-left: 4px solid var(--moss);
}
.mission-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--moss), var(--gold));
    opacity: 0; transition: all 0.2s ease-in-out;
}
.mission-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.mission-card:hover::before { opacity: 1; }
.mission-card:nth-child(2) { border-left-color: var(--gold); }
.mission-card:nth-child(3) { border-left-color: var(--warning); }
.mission-card:nth-child(4) { border-left-color: var(--info); }
.mission-card:nth-child(5) { border-left-color: var(--danger); }
.mission-card:nth-child(6), .mission-card:nth-child(7) { border-left-color: var(--text-muted); }
.mission-number {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--moss); color: white;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--ff-display); font-weight: 700; font-size: 1.1rem;
    margin-bottom: 0.75rem; box-shadow: var(--shadow-sm);
    transition: all 0.2s ease-in-out;
}
.mission-card:hover .mission-number { background: var(--gold); transform: scale(1.05); }
.mission-card:nth-child(2) .mission-number { background: var(--gold); }
.mission-card:nth-child(3) .mission-number { background: var(--warning); }
.mission-card:nth-child(4) .mission-number { background: var(--info); }
.mission-card:nth-child(5) .mission-number { background: var(--danger); }
.mission-card:nth-child(6) .mission-number, .mission-card:nth-child(7) .mission-number { background: var(--text-muted); }
.mission-title {
    font-family: var(--ff-display); font-weight: 600; font-size: 1rem;
    color: var(--forest); margin: 0 0 0.5rem; line-height: 1.4;
}
.mission-card:nth-child(2) .mission-title { color: var(--gold-dark); }
.mission-card:nth-child(3) .mission-title { color: var(--warning-text); }
.mission-card:nth-child(4) .mission-title { color: var(--info-text); }
.mission-card:nth-child(5) .mission-title { color: var(--danger-text); }
.mission-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin: 0; }

/* Goals */
.goals-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.goal-card {
    background: white; border: 1.5px solid var(--line); border-radius: 14px;
    padding: 1.5rem; transition: all 0.2s ease-in-out; height: 100%;
}
.goal-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.goal-card.smk { border-color: var(--moss); }
.goal-card.smp { border-color: var(--gold); }
.goal-card.smk:hover { border-color: var(--gold); }
.goal-card.smp:hover { border-color: var(--moss); }
.goal-title {
    font-family: var(--ff-display); font-weight: 600; font-size: 1.1rem;
    margin: 0 0 1rem; display: flex; align-items: center; gap: 0.5rem;
}
.goal-card.smk .goal-title { color: var(--moss); }
.goal-card.smp .goal-title { color: var(--gold-dark); }
.goal-card ul { list-style: none; padding: 0; margin: 0; }
.goal-card li {
    padding: 0.35rem 0; padding-left: 1.5rem; position: relative;
    color: var(--text); font-size: 0.9rem; line-height: 1.5;
}
.goal-card li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }
.value-card {
    background: var(--paper); border: 1px solid var(--line);
    border-radius: 14px; padding: 1.5rem 1rem; text-align: center;
    transition: all 0.35s var(--ease-expo); position: relative; overflow: hidden;
}
.value-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--moss), var(--gold));
    opacity: 0; transition: all 0.2s ease-in-out;
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.value-card:hover::before { opacity: 1; }
.value-icon {
    width: 60px; height: 60px; margin: 0 auto 0.75rem;
    border-radius: 14px; background: var(--gold-pale); color: var(--gold-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; transition: all 0.2s ease-in-out;
}
.value-card:hover .value-icon { background: var(--gold); color: var(--forest); transform: scale(1.05); }
.value-name { font-family: var(--ff-display); font-weight: 600; font-size: 1rem; color: var(--forest); margin: 0 0 0.35rem; }
.value-desc { font-size: 0.8rem; color: var(--text-muted); margin: 0; line-height: 1.4; }

/* ═══════════════════════════════════════
   STATUS / PENGUMUMAN
═══════════════════════════════════════ */
.announcement-hero {
    position: relative;
    background: linear-gradient(135deg, var(--forest) 0%, var(--brand) 100%);
    color: white; padding: clamp(2.5rem, 6vw, 4rem) 1rem;
    text-align: center; overflow: hidden;
    border-radius: 0 0 var(--r-lg) var(--r-lg);
    margin-bottom: 2.5rem;
}
.announcement-hero::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent 5%, var(--gold-dark) 30%, var(--gold-light) 50%, var(--gold-dark) 70%, transparent 95%);
}
.announcement-hero::after {
    content: ''; position: absolute; top: -60px; right: -60px;
    width: 240px; height: 240px; border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
    pointer-events: none; animation: pulse 12s ease-in-out infinite;
}
.announcement-hero .container { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.announcement-hero h1 {
    font-family: var(--ff-display); font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2rem); margin: 0 0 0.75rem;
    animation: fadeInUp 0.5s ease;
    display: flex; align-items: center; justify-content: center; gap: 0.6rem;
}
.announcement-hero h1 i { color: var(--gold-light); }
.announcement-hero p { margin: 0 0 1rem; opacity: 0.9; font-size: 1rem; animation: fadeInUp 0.5s ease 0.1s both; }
.verified-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(201,168,76,0.2); color: var(--gold-light);
    padding: 0.5rem 1.25rem; border-radius: 999px;
    font-weight: 600; font-size: 0.9rem;
    border: 1px solid rgba(201,168,76,0.3);
    animation: fadeInUp 0.5s ease 0.2s both;
}

/* Search */
.search-section {
    background: white; border: 1px solid var(--line);
    border-radius: var(--r-lg); padding: clamp(1.5rem, 4vw, 2rem);
    margin: 0 0 2rem; box-shadow: var(--shadow-md);
    text-align: center; position: relative; overflow: hidden;
}
.search-section::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--moss), var(--gold));
}
.search-section h3 {
    font-family: var(--ff-display); font-weight: 600; font-size: 1.2rem;
    color: var(--forest); margin: 0 0 1.25rem;
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.search-section h3 i { color: var(--gold-dark); }
.search-box { max-width: 600px; margin: 0 auto; }
.search-box .input-group { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.search-box small { display: block; margin-top: 0.75rem; color: var(--text-muted); font-size: 0.85rem; }

/* Students Table */
.students-card {
    background: white; border: 1px solid var(--line);
    border-radius: var(--r-lg); overflow: hidden;
    box-shadow: var(--shadow-md); margin: 1.5rem 0;
}
.students-card .card-header {
    background: linear-gradient(135deg, var(--forest), var(--brand));
    color: white; padding: 1rem 1.5rem;
    font-family: var(--ff-display); font-weight: 600; font-size: 1.1rem;
    display: flex; align-items: center; gap: 0.5rem; position: relative;
}
.students-card .card-header::after {
    content: ''; position: absolute; bottom: -1px; left: 1.5rem;
    width: 40px; height: 2px; background: var(--gold); border-radius: 999px;
}
.students-card .card-header i { color: var(--gold-light); }
.students-card .card-body { padding: 1.5rem; }

/* Table */
.table-responsive { border-radius: 14px; overflow: hidden; border: 1px solid var(--line); }
.table-custom { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 0.9rem; }
.table-custom thead { background: var(--forest); }
.table-custom th {
    font-weight: 600; color: rgba(255,255,255,0.9);
    padding: 0.9rem 1rem; text-align: left; font-size: 0.75rem;
    text-transform: uppercase; letter-spacing: 0.05em;
    border-bottom: 2px solid rgba(201,168,76,0.25);
}
.table-custom td { padding: 0.9rem 1rem; border-bottom: 1px solid var(--line); color: var(--ink); vertical-align: middle; }
.table-custom tbody tr { transition: all 0.2s ease-in-out; background: white; }
.table-custom tbody tr:hover { background: var(--gold-pale); }
.table-custom tbody tr:last-child td { border-bottom: none; }

/* Student badges */
.student-number {
    font-family: 'SF Mono', monospace; font-weight: 600;
    color: var(--moss); background: #e8f5ef;
    padding: 0.25rem 0.6rem; border-radius: 8px;
    font-size: 0.85rem; border: 1px solid rgba(46,107,79,0.15);
}
.student-name { font-weight: 600; color: var(--ink); text-transform: uppercase; font-size: 0.9rem; }
.student-major {
    display: inline-flex; padding: 0.25rem 0.75rem;
    background: var(--gold-pale); color: var(--gold-dark);
    border-radius: 999px; font-size: 0.8rem; font-weight: 600;
    border: 1px solid rgba(160,120,48,0.2);
}

/* Info cards (for pengumuman) */
.info-card {
    background: white; border: 1px solid var(--line); border-radius: 14px;
    padding: 1.25rem; text-align: center;
    box-shadow: var(--shadow-sm); transition: all 0.35s var(--ease-expo);
    position: relative; overflow: hidden;
}
.info-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--moss), var(--gold));
    opacity: 0; transition: all 0.2s ease-in-out;
}
.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.info-card:hover::before { opacity: 1; }
.info-card i {
    font-size: 1.75rem; color: var(--moss);
    width: 52px; height: 52px; border-radius: 14px;
    background: #e8f5ef; display: flex;
    align-items: center; justify-content: center;
    margin: 0 auto 0.6rem;
}
.info-card h4 { font-family: var(--ff-display); font-weight: 600; font-size: 1rem; color: var(--forest); margin: 0 0 0.35rem; }
.info-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0; font-weight: 500; }

/* Alert boxes */
.alert-custom {
    padding: 1rem 1.25rem; border-radius: 14px; margin: 1rem 0;
    border-left: 4px solid; display: flex; align-items: flex-start;
    gap: 0.75rem; font-size: 0.9rem;
}
.alert-custom i { font-size: 1.1rem; margin-top: 0.1rem; flex-shrink: 0; }
.alert-info-custom { background: var(--info-bg); color: var(--info-text); border-color: var(--info); }
.alert-warning-custom { background: var(--warning-bg); color: var(--warning-text); border-color: var(--warning); }
.alert-success-custom { background: var(--success-bg); color: var(--success-text); border-color: var(--success); }
.alert-danger-custom { background: var(--danger-bg); color: var(--danger-text); border-color: var(--danger); }
.alert-custom strong { display: block; font-weight: 600; margin-bottom: 0.25rem; }
.alert-custom ul { margin: 0.4rem 0 0 1.25rem; padding: 0; }

/* Status wrapper & card */
.status-wrapper { max-width: 800px; margin: 2rem auto; padding: 0 1.5rem; }
.status-card {
    background: white; border: 1px solid var(--line);
    border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
    overflow: hidden; animation: fadeInUp 0.5s ease forwards;
}
.status-header {
    background: linear-gradient(135deg, var(--forest) 0%, var(--brand) 100%);
    padding: 1.75rem 2rem; text-align: center; color: white;
    position: relative; overflow: hidden;
}
.status-header::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent 5%, var(--gold-dark) 30%, var(--gold-light) 50%, var(--gold-dark) 70%, transparent 95%);
}
.status-header::after {
    content: ''; position: absolute; top: -60px; right: -60px;
    width: 240px; height: 240px; border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.status-header h2 {
    font-family: var(--ff-display); font-weight: 700; font-size: 1.5rem;
    margin: 0 0 0.5rem; position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: center; gap: 0.6rem;
}
.status-header h2 i { color: var(--gold-light); font-size: 1.3rem; }
.status-header p { margin: 0; opacity: 0.85; font-size: 0.95rem; position: relative; z-index: 1; }
.status-body { padding: 2rem; }

/* Pagination */
.pagination-wrapper { display: flex; justify-content: center; align-items: center; padding: 1rem; gap: 0.5rem; flex-wrap: wrap; }

/* Empty state */
.empty-state { text-align: center; padding: 3rem 1.5rem; color: var(--text-muted); }
.empty-state i { font-size: 3.5rem; margin-bottom: 1rem; opacity: 0.3; color: var(--moss); display: block; }
.empty-state h4, .empty-state h5 { font-family: var(--ff-display); font-weight: 600; font-size: 1.1rem; color: var(--text); margin: 0 0 0.5rem; }
.empty-state p { margin: 0; font-size: 0.95rem; }

/* Back button */
.back-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.7rem 1.5rem; background: white;
    color: var(--text); border-radius: 12px;
    font-weight: 600; text-decoration: none;
    transition: all 0.2s ease-in-out; border: 1.5px solid var(--line);
}
.back-btn:hover { background: var(--gold-pale); border-color: var(--gold-dark); color: var(--gold-dark); transform: translateY(-2px); }

/* Action Buttons */
.btn-custom {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.75rem 1.5rem; border-radius: 12px;
    font-weight: 600; font-size: 0.9rem; text-decoration: none;
    transition: all 0.2s ease-in-out; border: none; cursor: pointer; white-space: nowrap;
}
.btn-primary-custom {
    background: linear-gradient(135deg, var(--moss-light), var(--brand));
    color: white; box-shadow: 0 4px 12px rgba(46, 107, 79, 0.25);
}
.btn-primary-custom:hover { background: linear-gradient(135deg, var(--moss), var(--forest-mid)); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(46, 107, 79, 0.35); color:white; }
.btn-outline-custom { background: white; color: var(--text); border: 1.5px solid var(--line); }
.btn-outline-custom:hover { background: var(--gold-pale); border-color: var(--gold-dark); color: var(--gold-dark); transform: translateY(-1px); }
.btn-whatsapp { background: #25D366; color: white; box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3); }
.btn-whatsapp:hover { background: #128C7E; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4); color:white; }
.btn-submit {
    width: 100%; padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--moss-light), var(--brand));
    color: white; border: none; border-radius: 12px;
    font-weight: 600; font-size: 0.95rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 0.4rem;
    transition: all 0.2s ease-in-out; box-shadow: 0 4px 12px rgba(46, 107, 79, 0.25);
}
.btn-submit:hover { background: linear-gradient(135deg, var(--moss), var(--forest-mid)); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(46, 107, 79, 0.35); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Status badges */
.status-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.6rem 1.5rem; border-radius: 999px;
    font-weight: 700; font-size: 0.9rem;
    text-transform: uppercase; letter-spacing: 0.03em;
    animation: fadeScale 0.4s ease;
}
.status-badge.pending { background: var(--warning-bg); color: var(--warning-text); border: 1px solid rgba(245, 158, 11, 0.3); }
.status-badge.verified { background: var(--success-bg); color: var(--success-text); border: 1px solid rgba(16, 185, 129, 0.3); }
.status-badge.rejected { background: var(--danger-bg); color: var(--danger-text); border: 1px solid rgba(239, 68, 68, 0.3); }
.status-badge i { font-size: 1rem; }

/* Registration number */
.reg-number {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.4rem 0.9rem; background: var(--gold-pale);
    color: var(--gold-dark); border-radius: 10px;
    font-family: 'SF Mono', monospace; font-weight: 700; font-size: 0.95rem;
    border: 1px solid rgba(160, 120, 48, 0.2);
    cursor: pointer; transition: all 0.2s ease-in-out;
}
.reg-number:hover { background: var(--gold-light); color: var(--forest); transform: translateY(-1px); }

/* Info list */
.info-list { background: white; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; margin-bottom: 1.5rem; }
.info-item { display: flex; padding: 0.9rem 1.25rem; border-bottom: 1px solid var(--line); transition: all 0.2s ease-in-out; }
.info-item:last-child { border-bottom: none; }
.info-item:hover { background: var(--gold-pale); }
.info-label {
    flex: 0 0 160px; font-weight: 600; color: var(--text-muted);
    font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em;
    display: flex; align-items: center; gap: 0.4rem;
}
.info-label i { color: var(--gold-dark); width: 16px; text-align: center; }
.info-value { flex: 1; color: var(--ink); font-weight: 500; font-size: 0.95rem; }
.info-value.verified-highlight { color: var(--success); font-weight: 600; }

/* Student info card */
.student-info {
    text-align: center; padding: 1.5rem 1rem; margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--paper), white);
    border-radius: 14px; border: 1px solid var(--line);
}
.student-info .student-name {
    font-family: var(--ff-display); font-weight: 700; font-size: 1.4rem;
    color: var(--forest); margin: 0 0 0.75rem; text-transform: uppercase; letter-spacing: 0.02em;
}

/* Print button */
.print-btn {
    position: absolute; top: 1rem; right: 1rem;
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
    color: white; display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.2s ease-in-out; z-index: 2;
}
.print-btn:hover { background: var(--gold); color: var(--forest); transform: scale(1.05); }

/* Copy toast */
.copy-toast {
    position: fixed; bottom: 2rem; left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--forest); color: white;
    padding: 0.75rem 1.5rem; border-radius: 12px;
    font-size: 0.9rem; font-weight: 500;
    display: flex; align-items: center; gap: 0.5rem;
    box-shadow: var(--shadow-lg); z-index: 9999;
    transition: transform 0.3s ease, opacity 0.3s ease; opacity: 0;
}
.copy-toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.copy-toast i { font-size: 1.1rem; color: var(--gold-light); }

/* Schedule (Contact page) */
.schedule-list { display: flex; flex-direction: column; gap: 0.6rem; }
.schedule-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.75rem 1rem; background: var(--paper); border-radius: 10px;
    transition: all 0.2s ease-in-out;
}
.schedule-item:hover { background: var(--gold-pale); transform: translateX(3px); }
.schedule-day { font-weight: 600; color: var(--ink); font-size: 0.9rem; }
.schedule-day small { display: block; font-weight: 400; color: var(--text-muted); font-size: 0.75rem; margin-top: 0.15rem; }
.schedule-time { padding: 0.3rem 0.75rem; border-radius: 999px; font-size: 0.8rem; font-weight: 600; }
.schedule-time.available { background: var(--success-bg); color: var(--success-text); }
.schedule-time.limited { background: var(--warning-bg); color: var(--warning-text); }
.schedule-time.closed { background: var(--danger-bg); color: var(--danger-text); }
.schedule-note {
    margin-top: 1rem; padding: 0.9rem; background: var(--gold-pale);
    border-radius: 10px; font-size: 0.85rem; color: var(--gold-dark);
    display: flex; align-items: flex-start; gap: 0.5rem;
    border: 1px solid rgba(160,120,48,0.2);
}
.schedule-note i { margin-top: 0.15rem; color: var(--gold); }

/* ═══════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════ */
.aos {
    opacity:0; transform:translateY(28px);
    transition: opacity 0.7s var(--ease-expo), transform 0.7s var(--ease-expo);
}
.aos.d1 { transition-delay:0.1s; }
.aos.d2 { transition-delay:0.2s; }
.aos.d3 { transition-delay:0.3s; }
.aos.d4 { transition-delay:0.4s; }
.aos.visible { opacity:1; transform:translateY(0); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width:1024px) {
    .hero-inner { grid-template-columns:1fr; text-align:center; }
    .hero-right  { display:none; }
    .hero-eyebrow, .hero-cta { justify-content:center; }
    .hero-subtitle { margin:0 auto 2.75rem; }
    .public-action-grid { grid-template-columns:repeat(2, 1fr); }
    .trust-layout, .faq-layout, .checklist-panel { grid-template-columns:1fr; }
    .help-card { position:relative; top:auto; }
    .stats-grid { grid-template-columns:repeat(2, 1fr); }
    .programs-grid { grid-template-columns:1fr; }
    .schedule-grid { grid-template-columns:repeat(2, 1fr); }
    .flow-grid { grid-template-columns:1fr; max-width:400px; margin:0 auto; }
    .profile-hero-content { flex-direction: column; text-align: center; padding: 0 1rem; }
    .profile-stats { justify-content: center; }
    .profile-stat { align-items: center; }
}

@media (max-width:768px) {
    .section { padding:4.5rem 0; }
    .container { padding:0 1.25rem; }
    .hero { min-height:auto; }
    .hero-content { padding:96px 0 42px; }
    .hero-title {
        font-size:clamp(1.95rem, 5.8vw, 2.2rem);
        line-height:1.12; max-width:300px;
        margin-left:auto; margin-right:auto;
    }
    .hero-mobile-break { display:block; }
    .hero-subtitle { font-size:0.98rem; line-height:1.72; max-width:300px; }
    .eyebrow-text { font-size:0.7rem; letter-spacing:0.14em; white-space:normal; }
    .hero-eyebrow { max-width:300px; margin-left:auto; margin-right:auto; }
    .public-action-panel { margin-top:0; padding-top:1rem; }
    .public-action-grid { grid-template-columns:1fr; border-radius:14px; }
    .trust-grid { grid-template-columns:1fr; }
    .checklist-panel { border-radius:18px; padding:1.25rem; }
    .stats-grid { grid-template-columns:1fr 1fr; }
    .quota-grid  { grid-template-columns:1fr; }
    .schedule-grid { grid-template-columns:1fr 1fr; }
    .announcement { flex-direction:column; text-align:center; }
    .hero-cta { flex-direction:column; align-items:center; }
    .btn-gold, .btn-ghost { width:100%; max-width:320px; justify-content:center; }
    .carousel-item { height:300px; }
    .profile-container { padding: 0 1rem 2rem; }
    .profile-section { padding: 1.5rem; }
    .timeline::before { left: 16px; }
    .timeline-item { padding-left: 44px; }
    .timeline-dot { left: 8px; width: 16px; height: 16px; }
    .facilities-grid, .units-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-container { padding: 0 1rem 2rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .info-grid { grid-template-columns: repeat(2, 1fr); }
    .social-grid { grid-template-columns: repeat(2, 1fr); }
    .vision-wrapper { padding: 1rem; }
    .card-body-yapisda { padding: 1.25rem; }
    .mission-grid, .goals-grid, .values-grid { grid-template-columns: 1fr; }
    .info-item { flex-direction: column; gap: 0.35rem; padding: 0.9rem 1rem; }
    .info-label { flex: none; font-size: 0.8rem; }
    .search-box .input-group { flex-direction: column; }
    .table-custom { font-size: 0.85rem; }
    .table-custom th, .table-custom td { padding: 0.75rem 0.5rem; }
    .action-buttons { flex-direction: column; align-items: stretch; }
    .btn-custom { width: 100%; justify-content: center; }
}

@media (max-width:480px) {
    .stats-grid, .schedule-grid { grid-template-columns:1fr; }
    .hero-title { font-size:2.05rem; max-width:340px; }
    .hero-subtitle { font-size:0.95rem; max-width:340px; }
    .hero-eyebrow { max-width:340px; }
    .institution-chip { width:100%; max-width:310px; justify-content:flex-start; }
    .profile-hero { padding: 2rem 0; }
    .profile-logo { width: 130px; height: 130px; }
    .profile-logo img { width: 100px; height: 100px; }
    .profile-hero-text h1 { font-size: 1.4rem; }
    .profile-stat-value { font-size: 1.3rem; }
    .facilities-grid, .units-grid, .contact-grid { grid-template-columns: 1fr; }
    .info-grid, .social-grid { grid-template-columns: 1fr; }
    .vision-quote { font-size: 1rem; }
    .mission-number { width: 38px; height: 38px; font-size: 1rem; }
    .contact-hero h1 { font-size: 1.4rem; }
    .announcement-hero h1 { font-size: 1.3rem; }
    .status-header h2 { font-size: 1.2rem; }
    .student-info .student-name { font-size: 1.2rem; }
    .status-badge { font-size: 0.85rem; padding: 0.5rem 1.25rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion:reduce) {
    *, *::before, *::after {
        animation-duration:0.01ms !important;
        transition-duration:0.01ms !important;
    }
    .hero-bg-mesh { display:none; }
}

/* Print */
@media print {
    .hero, .hero-bg-mesh, .hero-pattern, .hero-noise, .hero-particles,
    .arabesque, .public-action-panel, .public-action-dock, .back-to-top,
    .search-section, .pagination-wrapper, .back-btn, .btn-submit,
    .print-btn, .map-overlay, .action-buttons, .help-card,
    .profile-hero::before, .profile-hero::after,
    .contact-hero::before, .contact-hero::after,
    .profile-section::before, .unit-link,
    .vision-card::before, .mission-card::before, .value-card::before,
    .contact-card::before { display: none !important; }
    .profile-hero, .contact-hero, .announcement-hero, .status-header {
        background: white !important; color: black !important; padding: 1rem 0;
    }
    .profile-logo { border: 0 !important; box-shadow: none !important; background: transparent !important; animation: none !important; }
    .profile-section, .vision-card, .contact-card, .status-card, .students-card {
        box-shadow: none !important; border: 1px solid #ccc !important; break-inside: avoid;
    }
    body { background: white; font-size: 11pt; color: black; }
    a { text-decoration: none; color: black; }
}

/* ═══════════════════════════════════════
   ADDITIONAL MISSING CLASSES
═══════════════════════════════════════ */

/* Trust copy text wrapper */
.trust-copy { }

/* Contact page column layout */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.contact-column { display: flex; flex-direction: column; gap: 1.5rem; }

/* Contact item (about page variant) */
.contact-item {
    display: flex; align-items: flex-start; gap: 0.75rem;
    padding: 1rem; background: var(--paper);
    border-radius: 14px; border: 1px solid var(--line);
    transition: all 0.35s var(--ease-expo); cursor: pointer;
}
.contact-item:hover { background: var(--gold-pale); border-color: var(--gold); transform: translateX(3px); }
.contact-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--gold-pale); color: var(--gold-dark);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: all 0.2s ease-in-out;
}
.contact-item:hover .contact-icon { background: var(--gold); color: var(--forest); }
.contact-label {
    font-size: 0.75rem; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.04em;
    font-weight: 600; margin-bottom: 0.15rem;
}
.contact-value { font-weight: 500; color: var(--ink); font-size: 0.9rem; line-height: 1.4; }
.contact-value a { color: var(--moss); text-decoration: none; transition: all 0.2s; font-weight: 600; }
.contact-value a:hover { color: var(--gold-dark); }

/* Copy icon */
.copy-icon {
    cursor: pointer; opacity: 0.5; transition: all 0.2s;
    font-size: 0.85rem; color: var(--text-muted); margin-left: 0.25rem;
}
.copy-icon:hover { opacity: 1; color: var(--gold-dark); transform: scale(1.1); }

/* Schedule header */
.schedule-header {
    display: flex; align-items: center; gap: 0.6rem;
    margin-bottom: 1.25rem; padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold-pale);
}
.schedule-header i { color: var(--gold-dark); font-size: 1.2rem; }
.schedule-header h3 {
    font-family: var(--ff-display); font-weight: 600;
    font-size: 1.1rem; color: var(--forest); margin: 0;
}

/* Form hint */
.form-hint { font-size: 0.78rem; color: var(--text-muted); font-style: italic; margin-top: 0.25rem; }

/* Responsive additions */
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
}
