/* =============================================
   PERDANA HIGH SCHOOL — LANDING PAGE v2.1
   Theme: Modern Academic Prestige
   Fonts: Outfit + Plus Jakarta Sans
   Primary: #0f2347 (Deep Navy)
   Accent:  #c8973e (Gold)
   ============================================= */

:root {
  --navy: #0f2347;
  --navy-light: #1a3568;
  --navy-soft: #253d66;
  --gold: #c8973e;
  --gold-light: #e8c474;
  --gold-pale: #fdf6e8;
  --cream: #fefcf7;
  --off-white: #f7f5f0;
  --text-dark: #1a1a2e;
  --text-body: #3d3d4e;
  --text-muted: #6e6e80;
  --border-light: #e6e2db;
  --shadow-soft: 0 4px 30px rgba(15, 35, 71, 0.05);
  --shadow-card: 0 8px 40px rgba(15, 35, 71, 0.07);
  --shadow-hover: 0 20px 60px rgba(15, 35, 71, 0.12);
  --shadow-mega: 0 30px 80px rgba(15, 35, 71, 0.15);
  --radius: 18px;
  --radius-sm: 12px;
  --transition: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-body);
  background: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv11', 'ss01';
}

h1, h2, h3, h4, h5 {
  font-family: 'Outfit', sans-serif;
  color: var(--navy);
  font-weight: 700;
}

.text-gold-inline {
  color: var(--gold);
  font-weight: 800;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--navy); }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 0; }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  20% { transform: translate(-15%, 5%); }
  30% { transform: translate(7%, -25%); }
  40% { transform: translate(-5%, 25%); }
  50% { transform: translate(-15%, 10%); }
  60% { transform: translate(15%, 0%); }
  70% { transform: translate(0%, 15%); }
  80% { transform: translate(3%, 35%); }
  90% { transform: translate(-10%, 10%); }
}

.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Section Common ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Sora', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
  font-weight: 800;
}
.section-desc {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 580px;
}


/* ══════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════ */
.navbar-phs {
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1000;
}
.navbar-phs.scrolled {
  padding: 8px 0;
  border-bottom: 1px solid rgba(230, 226, 219, 0.6);
  box-shadow: 0 1px 30px rgba(15, 35, 71, 0.06);
  background: rgba(255, 255, 255, 0.95);
}
.navbar-brand-phs {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.navbar-brand-phs .logo-svg { width: 44px; height: 44px; transition: var(--transition-fast); }
.navbar-brand-phs:hover .logo-svg { transform: scale(1.05); }
.navbar-brand-phs .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.navbar-brand-phs .brand-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  letter-spacing: 0.3px;
}
.navbar-brand-phs .brand-tagline {
  font-family: 'Sora', sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

/* Nav Links */
.nav-link-phs {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-body) !important;
  padding: 8px 16px !important;
  border-radius: 10px;
  transition: all 0.35s ease;
  position: relative;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.nav-link-phs:hover {
  color: var(--navy) !important;
  background: rgba(200, 151, 62, 0.08);
}
.nav-link-phs.active {
  color: var(--gold) !important;
}

.mega-chevron {
  transition: transform 0.35s ease;
  opacity: 0.5;
}

.btn-enroll {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--navy);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 50px;
  border: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  letter-spacing: 0.3px;
  text-decoration: none;
  display: inline-block;
}
.btn-enroll:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200, 151, 62, 0.35);
}


/* ── MEGA MENU ── */
.mega-menu-wrapper {
  position: relative;
}
.mega-menu-wrapper:hover .mega-chevron {
  transform: rotate(180deg);
  opacity: 1;
}
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 100;
  padding-top: 18px;
}
.mega-menu-wrapper:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-menu-inner {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  min-width: 720px;
  box-shadow: var(--shadow-mega);
  border: 1px solid rgba(230, 226, 219, 0.5);
  position: relative;
  overflow: hidden;
}
.mega-menu-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
}
.mega-col-title {
  font-family: 'Sora', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
}
.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 4px;
}
.mega-item:hover {
  background: var(--gold-pale);
  transform: translateX(4px);
}
.mega-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.mega-item-title {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
  line-height: 1.3;
}
.mega-item-desc {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Mega Highlight Column */
.mega-highlight {
  display: flex;
  align-items: stretch;
}
.mega-highlight-card {
  background: linear-gradient(145deg, var(--navy), var(--navy-soft));
  border-radius: 16px;
  padding: 28px 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.mega-highlight-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(200, 151, 62, 0.15);
}
.mega-highlight-badge {
  font-family: 'Sora', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.mega-highlight-card h4 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.mega-highlight-card p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 18px;
}
.mega-highlight-btn {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-light);
  text-decoration: none;
  transition: all 0.3s ease;
}
.mega-highlight-btn:hover {
  color: #fff;
  letter-spacing: 0.5px;
}


/* ── Mobile Nav ── */
.mobile-nav-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              padding 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 0;
}
.mobile-nav-panel.show {
  max-height: 600px;
  padding: 16px 0 20px;
}

.mobile-accordion {
  width: 100%;
}
.mobile-acc-toggle {
  justify-content: space-between;
}
.mobile-acc-toggle svg {
  transition: transform 0.35s ease;
}
.mobile-acc-toggle.open svg {
  transform: rotate(180deg);
}
.mobile-acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 16px;
}
.mobile-acc-panel.open {
  max-height: 300px;
}
.mobile-acc-panel a {
  display: block;
  padding: 8px 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  border-left: 2px solid var(--border-light);
  transition: all 0.3s ease;
}
.mobile-acc-panel a:hover {
  color: var(--gold);
  border-left-color: var(--gold);
  padding-left: 20px;
}

.navbar-toggler-phs {
  border: none;
  background: none;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.navbar-toggler-phs span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
}
.navbar-toggler-phs.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar-toggler-phs.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar-toggler-phs.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ══════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(165deg, #ffffff 0%, var(--cream) 40%, var(--gold-pale) 100%);
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,151,62,0.07) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,35,71,0.03) 0%, transparent 70%);
  animation: float 7s ease-in-out infinite reverse;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(200,151,62,0.04) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, rgba(15,35,71,0.03) 1px, transparent 1px);
  background-size: 60px 60px, 80px 80px;
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.015;
  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)'/%3E%3C/svg%3E");
  background-size: 200px;
  animation: grain 8s steps(10) infinite;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  animation: slideRight 1s ease 0.3s both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(230, 226, 219, 0.6);
  padding: 8px 22px;
  border-radius: 50px;
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 32px;
  box-shadow: var(--shadow-soft);
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  position: relative;
}
.hero-badge .dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #22c55e;
  animation: pulse-ring 2s ease infinite;
}
.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 26px;
  letter-spacing: -1px;
  font-weight: 800;
}
.hero-title .text-gold {
  color: var(--gold);
  font-weight: 900;
}
.hero-desc {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 38px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.btn-primary-phs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 2px solid var(--navy);
  position: relative;
  overflow: hidden;
}
.btn-primary-phs::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}
.btn-primary-phs:hover {
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(200,151,62,0.3);
  background: var(--gold);
}
.btn-primary-phs:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.btn-outline-phs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 2px solid var(--border-light);
}
.btn-outline-phs:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
  transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 40px;
}
.hero-stat {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 2px;
}
.hero-stat .stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.hero-stat .stat-num-letter {
  font-family: 'Outfit', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.hero-stat .stat-suffix {
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}
.hero-stat .stat-label {
  flex-basis: 100%;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 2;
  animation: scaleIn 1s ease 0.5s both;
}
.hero-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 8px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.hero-card-inner {
  width: 100%;
  height: 420px;
  border-radius: 20px;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-card-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(200,151,62,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(255,255,255,0.04) 0%, transparent 50%);
}
.hero-illustration {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 2;
}
.hero-illustration svg {
  width: 160px;
  height: 160px;
  margin-bottom: 20px;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,0.2));
}
.hero-illustration .ill-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.hero-illustration .ill-sub {
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  opacity: 0.6;
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* Floating Cards */
.float-card {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
  animation: float 6s ease-in-out infinite;
  border: 1px solid rgba(230, 226, 219, 0.4);
}
.float-card.fc-1 { top: 30px; left: -30px; animation-delay: 0s; }
.float-card.fc-2 { bottom: 50px; right: -20px; animation-delay: 2s; }
.float-card .fc-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.float-card .fc-icon.gold { background: var(--gold-pale); }
.float-card .fc-icon.navy { background: rgba(15,35,71,0.06); }
.float-card .fc-text { font-size: 0.78rem; font-weight: 600; color: var(--navy); line-height: 1.3; }
.float-card .fc-sub { font-size: 0.68rem; color: var(--text-muted); font-weight: 400; }


/* ══════════════════════════════════════════
   MARQUEE STRIP
   ══════════════════════════════════════════ */
.marquee-strip {
  background: var(--navy);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.marquee-strip::before,
.marquee-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.marquee-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy), transparent);
}
.marquee-strip::after {
  right: 0;
  background: linear-gradient(-90deg, var(--navy), transparent);
}
.marquee-track {
  display: flex;
  gap: 40px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.5px;
}
.marquee-dot {
  color: var(--gold) !important;
  font-size: 0.5rem !important;
}


/* ══════════════════════════════════════════
   ABOUT / KEUNGGULAN
   ══════════════════════════════════════════ */
.about-section {
  padding: 130px 0;
  background: #ffffff;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 55px;
}
.about-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 38px 32px;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about-card:hover {
  background: #fff;
  border-color: var(--border-light);
  box-shadow: var(--shadow-hover);
  transform: translateY(-8px);
}
.about-card:hover::before {
  transform: scaleX(1);
}
.about-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 1.4rem;
  transition: transform 0.4s ease;
}
.about-card:hover .about-icon {
  transform: scale(1.1) rotate(-3deg);
}
.about-icon.i1 { background: var(--gold-pale); }
.about-icon.i2 { background: rgba(15,35,71,0.06); }
.about-icon.i3 { background: rgba(34,197,94,0.1); }
.about-icon.i4 { background: rgba(99,102,241,0.1); }
.about-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.about-card p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--text-muted);
}


/* ══════════════════════════════════════════
   PROGRAMS
   ══════════════════════════════════════════ */
.programs-section {
  padding: 130px 0;
  background: var(--off-white);
  position: relative;
}
.programs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}
.program-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  margin-top: 40px;
}
.program-tab {
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 10px 26px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1.5px solid var(--border-light);
  background: #fff;
  color: var(--text-body);
}
.program-tab:hover, .program-tab.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 35, 71, 0.15);
}
.program-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.program-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid var(--border-light);
}
.program-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-8px);
}
.program-card-top {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.program-card-top .pc-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  transition: transform 0.6s ease;
}
.program-card:hover .pc-bg {
  transform: scale(1.05);
}
.pc-bg.bg1 { background: linear-gradient(135deg, #0f2347, #1a3568); }
.pc-bg.bg2 { background: linear-gradient(135deg, #c8973e, #e8c474); }
.pc-bg.bg3 { background: linear-gradient(135deg, #22c55e, #86efac); }
.program-card-body {
  padding: 30px;
}
.program-card-body h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.program-card-body p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.program-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.35s ease;
}
.program-link:hover { gap: 12px; color: var(--navy); }


/* ══════════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════════ */
.stats-bar {
  padding: 80px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200,151,62,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.02) 0%, transparent 50%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.stat-item .stat-number {
  font-family: 'Sora', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-item .stat-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}


/* ══════════════════════════════════════════
   FACILITIES
   ══════════════════════════════════════════ */
.facilities-section {
  padding: 130px 0;
  background: #ffffff;
}
.facility-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  margin-top: 55px;
}
.facility-item {
  border-radius: 22px;
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 230px;
  cursor: default;
}
.facility-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.facility-item .fi-emoji {
  font-size: 2.5rem;
  margin-bottom: 16px;
  transition: transform 0.4s ease;
}
.facility-item:hover .fi-emoji {
  transform: scale(1.15);
}
.facility-item h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.facility-item p {
  font-size: 0.8rem;
  line-height: 1.65;
  opacity: 0.75;
}
.fi-1 { grid-column: span 2; background: linear-gradient(145deg, var(--navy), var(--navy-soft)); color: #fff; }
.fi-1 h5 { color: #fff; }
.fi-2 { grid-column: span 2; background: var(--gold-pale); }
.fi-3 { grid-column: span 2; background: var(--off-white); border: 1px solid var(--border-light); }
.fi-4 { grid-column: span 3; background: linear-gradient(145deg, var(--gold), #daa84a); color: #fff; }
.fi-4 h5 { color: #fff; }
.fi-5 { grid-column: span 3; background: var(--off-white); border: 1px solid var(--border-light); }

@media (max-width: 768px) {
  .facility-item { grid-column: span 6 !important; }
}


/* ══════════════════════════════════════════
   GALLERY SECTION — NEW
   ══════════════════════════════════════════ */
.gallery-section {
  padding: 130px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.gallery-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 40px 0;
}
.gallery-tab {
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 9px 24px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1.5px solid var(--border-light);
  background: #fff;
  color: var(--text-body);
}
.gallery-tab:hover, .gallery-tab.active {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 151, 62, 0.2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.gallery-item {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item.gi-tall {
  grid-row: span 2;
}

.gallery-card {
  border-radius: 22px;
  overflow: hidden;
  height: 100%;
  min-height: 240px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: default;
  background-size: cover;
  background-position: center;
}
.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.gallery-card[style*="background-image"]::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
.gallery-card-content {
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}
.gc-emoji {
  font-size: 2.5rem;
  margin-bottom: 14px;
}
.gc-badge {
  font-family: 'Sora', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.7;
}
.gallery-card h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  line-height: 1.3;
}
.gallery-card p {
  font-size: 0.82rem;
  line-height: 1.65;
  opacity: 0.75;
  margin-bottom: 10px;
}
.gc-date {
  font-family: 'Sora', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  opacity: 0.5;
  letter-spacing: 0.5px;
}

/* Gallery Card Themes */
.gc-navy {
  background: linear-gradient(145deg, var(--navy), var(--navy-soft));
  color: #fff;
}
.gc-navy[style*="background-image"] {
  background-blend-mode: overlay;
}
.gc-navy[style*="background-image"]::before {
  background: linear-gradient(180deg, rgba(15,35,71,0.3) 0%, rgba(15,35,71,0.85) 100%);
}
.gc-navy h4 { color: #fff; }

.gc-cream {
  background: #fff;
  border: 1px solid var(--border-light);
}
.gc-cream[style*="background-image"]::before {
  background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.88) 60%);
}

.gc-gold {
  background: linear-gradient(145deg, var(--gold), #daa84a);
  color: #fff;
}
.gc-gold[style*="background-image"]::before {
  background: linear-gradient(180deg, rgba(200,151,62,0.2) 0%, rgba(200,151,62,0.85) 100%);
}
.gc-gold h4 { color: #fff; }

.gc-purple {
  background: linear-gradient(145deg, #6366f1, #818cf8);
  color: #fff;
}
.gc-purple[style*="background-image"]::before {
  background: linear-gradient(180deg, rgba(99,102,241,0.2) 0%, rgba(99,102,241,0.85) 100%);
}
.gc-purple h4 { color: #fff; }

.gc-teal {
  background: linear-gradient(145deg, #0d9488, #2dd4bf);
  color: #fff;
}
.gc-teal[style*="background-image"]::before {
  background: linear-gradient(180deg, rgba(13,148,136,0.2) 0%, rgba(13,148,136,0.85) 100%);
}
.gc-teal h4 { color: #fff; }

.gc-warm {
  background: var(--gold-pale);
  border: 1px solid rgba(200, 151, 62, 0.15);
}
.gc-warm[style*="background-image"]::before {
  background: linear-gradient(180deg, rgba(253,246,232,0.2) 0%, rgba(253,246,232,0.88) 60%);
}

.gc-navy-alt {
  background: linear-gradient(145deg, #1e3a5f, #2d5a8e);
  color: #fff;
}
.gc-navy-alt[style*="background-image"]::before {
  background: linear-gradient(180deg, rgba(30,58,95,0.2) 0%, rgba(30,58,95,0.88) 100%);
}
.gc-navy-alt h4 { color: #fff; }

.gc-rose {
  background: linear-gradient(145deg, #e11d48, #f43f5e);
  color: #fff;
}
.gc-rose[style*="background-image"]::before {
  background: linear-gradient(180deg, rgba(225,29,72,0.2) 0%, rgba(225,29,72,0.85) 100%);
}
.gc-rose h4 { color: #fff; }

/* Achievement Strip */
.achievement-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
  padding: 36px 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
}
.achieve-item {
  text-align: center;
}
.achieve-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.achieve-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.achieve-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}
.achieve-divider {
  width: 1px;
  height: 50px;
  background: var(--border-light);
}


/* ══════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════ */
.testimonial-section {
  padding: 130px 0;
  background: #ffffff;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 55px;
}
.testimonial-card {
  background: var(--off-white);
  border-radius: 22px;
  padding: 38px;
  border: 1px solid transparent;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}
.testimonial-card:hover {
  background: #fff;
  border-color: var(--border-light);
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}
.tc-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.testimonial-card .tc-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-dark);
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-card .tc-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.tc-avatar {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  font-family: 'Sora', sans-serif;
}
.tc-avatar.a1 { background: var(--navy); }
.tc-avatar.a2 { background: var(--gold); }
.tc-avatar.a3 { background: #6366f1; }
.tc-info .tc-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
}
.tc-info .tc-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}


/* ══════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════ */
.cta-section {
  padding: 80px 0 100px;
  background: var(--off-white);
}
.cta-box {
  background: var(--navy);
  border-radius: 30px;
  padding: 60px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.cta-orb-1 {
  width: 400px;
  height: 400px;
  top: -150px;
  left: -100px;
  background: rgba(200, 151, 62, 0.15);
}
.cta-orb-2 {
  width: 350px;
  height: 350px;
  bottom: -120px;
  right: -80px;
  background: rgba(200, 151, 62, 0.1);
}
.cta-box > h2,
.cta-box > p,
.cta-box > a { position: relative; z-index: 2; }
.cta-box h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.cta-box p {
  color: rgba(255,255,255,0.55);
  font-size: 1.02rem;
  max-width: 550px;
  margin: 0 auto 40px;
  line-height: 1.85;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 18px 48px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: none;
}
.btn-cta:hover {
  background: var(--gold-light);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(200,151,62,0.4);
}


/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer-section {
  padding: 80px 0 30px;
  background: var(--navy);
  color: rgba(255,255,255,0.55);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo svg { width: 42px; height: 42px; }
.footer-logo .fl-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}
.footer-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 24px;
}
.footer-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.88rem;
  transition: all 0.35s ease;
}
.footer-links a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: 0.88rem;
  margin-bottom: 14px;
}
.footer-contact-item .fci-icon { color: var(--gold); }
.footer-bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.78rem;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer-socials a:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(200, 151, 62, 0.3);
}


/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1199px) {
  .mega-menu-inner {
    min-width: 600px;
  }
}
@media (max-width: 991px) {
  .hero-visual { margin-top: 50px; }
  .hero-stats { gap: 24px; }
  .hero-card-inner { height: 320px; }
  .float-card { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.gi-tall { grid-row: span 1; }
  .achievement-strip { flex-wrap: wrap; gap: 24px; }
  .achieve-divider { display: none; }
}
@media (max-width: 768px) {
  .hero-title { font-size: 2.4rem; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-stat .stat-num { font-size: 1.8rem; }
  .hero-stat .stat-num-letter { font-size: 2rem; }
  .program-cards { grid-template-columns: 1fr; }
  .cta-box { padding: 40px 24px; border-radius: 22px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .achievement-strip { padding: 28px 24px; gap: 20px; }
  .achieve-num { font-size: 1.8rem; }
  .section-title { font-size: clamp(1.8rem, 4vw, 2.5rem); }
  .about-section,
  .programs-section,
  .facilities-section,
  .gallery-section,
  .testimonial-section,
  .cta-section { padding: 60px 0; }
}


/* ══════════════════════════════════════════
   NEWS SECTION
   ══════════════════════════════════════════ */
.news-section {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.news-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(200,151,62,0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(200,151,62,0.3) 0%, transparent 40%);
}
.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.news-see-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-light);
  text-decoration: none;
  padding: 10px 24px;
  border: 1.5px solid rgba(200,151,62,0.3);
  border-radius: 50px;
  transition: var(--transition-fast);
}
.news-see-all:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.news-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
}

/* Featured Article */
.news-featured-img {
  position: relative;
  height: 100%;
  min-height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.nf-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15,35,71,0.95) 0%, rgba(15,35,71,0.5) 50%, transparent 100%);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.nf-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.nf-badge {
  font-family: 'Sora', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  backdrop-filter: blur(8px);
}
.nf-badge-gold {
  background: var(--gold);
  color: var(--navy);
}
.nf-overlay h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}
.nf-overlay p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 16px;
}
.nf-meta {
  display: flex;
  gap: 20px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

/* Side articles */
.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.news-side-card {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition-fast);
}
.news-side-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(200,151,62,0.3);
  transform: translateX(4px);
}
.nsc-img {
  width: 100px;
  min-width: 100px;
  height: 80px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
}
.nsc-content h5 {
  font-size: 0.88rem;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.4;
  font-weight: 600;
}
.nsc-date {
  font-size: 0.72rem;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.nsc-content p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

@media (max-width: 991.98px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-featured-img { min-height: 350px; }
  .news-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}


/* ══════════════════════════════════════════
   ANNOUNCEMENT & AGENDA
   ══════════════════════════════════════════ */
.announce-section {
  padding: 100px 0;
  background: var(--off-white);
}

.announce-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.announce-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  text-decoration: none;
  transition: var(--transition-fast);
}
.announce-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.ac-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  height: 62px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 12px;
  color: #fff;
  line-height: 1;
}
.ac-day {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
}
.ac-month {
  font-family: 'Sora', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
}
.ac-img {
  width: 90px;
  min-width: 90px;
  height: 65px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
}
.ac-text h5 {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 4px;
  font-weight: 700;
}
.ac-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* Agenda */
.agenda-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.agenda-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition-fast);
}
.agenda-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-soft);
}
.agenda-date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 52px;
  background: var(--gold-pale);
  border-radius: 10px;
  line-height: 1;
}
.agenda-day {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
}
.agenda-month {
  font-family: 'Sora', sans-serif;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}
.agenda-info {
  flex: 1;
}
.agenda-info h5 {
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 2px;
  font-weight: 600;
}
.agenda-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}
.agenda-badge {
  font-family: 'Sora', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  background: rgba(15,35,71,0.08);
  color: var(--navy);
  white-space: nowrap;
}
.agenda-badge-gold {
  background: var(--gold-pale);
  color: var(--gold);
}


/* ══════════════════════════════════════════
   RESEARCH BANNER
   ══════════════════════════════════════════ */
.research-banner {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3568 50%, #0d1f3c 100%);
}
.research-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1532094349884-543bc11b234d?w=1400&h=400&fit=crop&q=60');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
.research-content {
  display: flex;
  align-items: center;
  gap: 40px;
}
.research-icon-group {
  display: flex;
  gap: 8px;
}
.research-emoji {
  font-size: 2.2rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}
.research-content h2 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 10px;
}
.research-content p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin: 0;
}
.research-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 14px 30px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition-fast);
}
.research-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,151,62,0.3);
}

@media (max-width: 991.98px) {
  .research-content {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .research-icon-group { justify-content: center; }
}


/* ══════════════════════════════════════════
   MEDIA SECTION — GALERI FOTO & VIDEO
   ══════════════════════════════════════════ */
.media-section {
  padding: 100px 0;
  background: #fff;
}
.media-sub-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.media-sub-header h3 {
  font-size: 1.2rem;
  white-space: nowrap;
  margin: 0;
}
.media-sub-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

/* Photo Gallery */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.pg-item {
  position: relative;
  height: 160px;
  border-radius: var(--radius-sm);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
}
.pg-item.pg-large {
  grid-column: span 3;
  height: 240px;
}
.pg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15,35,71,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: var(--transition-fast);
}
.pg-item:hover .pg-overlay {
  opacity: 1;
}
.pg-overlay span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
}

/* Video Gallery */
.video-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vg-item {
  display: flex;
  gap: 16px;
  text-decoration: none;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition-fast);
}
.vg-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}
.vg-thumb {
  position: relative;
  width: 130px;
  min-width: 130px;
  height: 80px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.vg-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15,35,71,0.4);
  transition: var(--transition-fast);
}
.vg-item:hover .vg-play {
  background: rgba(200,151,62,0.6);
}
.vg-play svg {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.vg-info h5 {
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 6px;
  font-weight: 600;
  line-height: 1.4;
}
.vg-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}


/* ══════════════════════════════════════════
   LEADERSHIP SECTION
   ══════════════════════════════════════════ */
.leadership-section {
  padding: 100px 0;
  background: var(--off-white);
}
.leadership-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 50px;
}
.leader-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  width: 170px;
}
.leader-avatar {
  position: relative;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-soft), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.leader-card:hover .leader-avatar {
  transform: scale(1.06);
  box-shadow: 0 12px 40px rgba(15,35,71,0.2);
}
.leader-avatar-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2.5px solid var(--border-light);
  transition: var(--transition);
}
.leader-card:hover .leader-avatar-ring {
  border-color: var(--gold);
}
.leader-primary .leader-avatar-ring {
  border-color: var(--gold);
  border-width: 3px;
}
.leader-initials {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}
.leader-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.leader-card h4 {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.leader-role {
  font-family: 'Sora', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.leader-primary .leader-role {
  font-weight: 700;
}


/* ══════════════════════════════════════════
   PARTNERS / LINK TERKAIT
   ══════════════════════════════════════════ */
.partners-section {
  padding: 80px 0;
  background: #fff;
}
.partners-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}
.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 36px;
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  text-decoration: none;
  transition: var(--transition-fast);
  min-width: 150px;
}
.partner-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
  background: var(--gold-pale);
}
.partner-icon {
  font-size: 2rem;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}
.partner-item span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}

@media (max-width: 767.98px) {
  .announce-card { flex-wrap: wrap; }
  .ac-img { width: 100%; min-width: auto; height: 120px; }
  .leader-card { width: 140px; }
  .leader-avatar { width: 90px; height: 90px; }
  .leader-initials { font-size: 1.3rem; }
  .pg-item.pg-large { height: 180px; }
  .pg-item { height: 120px; }
  .photo-gallery { grid-template-columns: repeat(2, 1fr); }
  .pg-item.pg-large { grid-column: span 2; }
}


/* ══════════════════════════════════════════════════════════
   MOBILE ENHANCEMENT — Larger fonts, better spacing
   ══════════════════════════════════════════════════════════ */

/* ── Tablet (≤991px) ── */
@media (max-width: 991.98px) {
  body {
    font-size: 1.05rem;
  }

  .section-label {
    font-size: 0.78rem;
    letter-spacing: 3px;
    margin-bottom: 14px;
  }
  .section-title {
    font-size: clamp(1.9rem, 5vw, 2.8rem) !important;
    margin-bottom: 18px;
  }
  .section-desc {
    font-size: 1.05rem;
    line-height: 1.8;
  }

  /* Hero mobile */
  .hero-section {
    padding-top: 100px;
  }
  .hero-badge {
    font-size: 0.78rem;
  }
  .hero-desc {
    font-size: 1.05rem;
    line-height: 1.75;
  }

  /* About cards */
  .about-card h4 {
    font-size: 1.15rem;
  }
  .about-card p {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  /* News section */
  .news-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .news-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .news-featured-img {
    min-height: 380px;
  }
  .nf-overlay h3 {
    font-size: 1.4rem;
  }
  .nf-overlay p {
    font-size: 0.95rem;
  }
  .nsc-content h5 {
    font-size: 0.95rem;
  }
  .nsc-content p {
    font-size: 0.85rem;
  }
  .nsc-date {
    font-size: 0.8rem;
  }
  .news-see-all {
    font-size: 0.92rem;
    padding: 12px 28px;
  }

  /* Announce & Agenda */
  .ac-text h5 {
    font-size: 1.05rem;
  }
  .ac-text p {
    font-size: 0.9rem;
  }
  .agenda-info h5 {
    font-size: 0.95rem;
  }
  .agenda-info p {
    font-size: 0.85rem;
  }

  /* Program cards */
  .program-card-body h4 {
    font-size: 1.15rem;
  }
  .program-card-body p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .program-tab {
    font-size: 0.88rem;
    padding: 10px 22px;
  }
  .program-link {
    font-size: 0.92rem;
  }

  /* Research banner */
  .research-content {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .research-icon-group {
    justify-content: center;
  }
  .research-content h2 {
    font-size: 1.6rem;
  }
  .research-content p {
    font-size: 0.95rem;
  }

  /* Stats */
  .stat-number {
    font-size: 2.4rem;
  }
  .stat-text {
    font-size: 0.88rem;
  }

  /* Media section */
  .media-sub-header h3 {
    font-size: 1.2rem;
  }
  .vg-info h5 {
    font-size: 0.95rem;
  }

  /* Leadership */
  .leader-card h4 {
    font-size: 0.92rem;
  }
  .leader-role {
    font-size: 0.75rem;
  }

  /* Partners */
  .partner-item {
    padding: 22px 28px;
    min-width: 130px;
  }
  .partner-item span {
    font-size: 0.88rem;
  }

  /* CTA */
  .cta-box h2 {
    font-size: 1.8rem;
  }
  .cta-box p {
    font-size: 1rem;
    line-height: 1.75;
  }

  /* Footer */
  .footer-title {
    font-size: 0.85rem;
  }
  .footer-links li a {
    font-size: 0.92rem;
  }
  .footer-contact-item {
    font-size: 0.92rem;
  }
  .footer-desc {
    font-size: 0.92rem;
  }
}


/* ── Mobile (≤576px) ── */
@media (max-width: 576px) {
  body {
    font-size: 1.08rem;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Global sections */
  .about-section,
  .programs-section,
  .announce-section,
  .media-section,
  .leadership-section,
  .partners-section,
  .cta-section {
    padding: 70px 0;
  }
  .news-section {
    padding: 70px 0;
  }
  .stats-bar {
    padding: 50px 0;
  }

  .section-label {
    font-size: 0.75rem;
    letter-spacing: 2.5px;
  }
  .section-title {
    font-size: 1.75rem !important;
    line-height: 1.2 !important;
  }
  .section-desc {
    font-size: 1rem;
  }

  /* ── HERO ── */
  .hero-section {
    padding-top: 90px;
    padding-bottom: 50px;
  }
  .hero-badge {
    font-size: 0.75rem;
    padding: 8px 16px;
  }
  .hero-title {
    font-size: 2rem !important;
    line-height: 1.15;
  }
  .hero-desc {
    font-size: 1rem;
    line-height: 1.75;
  }
  .hero-btns {
    flex-direction: column;
    gap: 12px;
  }
  .btn-primary-phs,
  .btn-outline-phs {
    font-size: 0.95rem;
    padding: 14px 28px;
    text-align: center;
    justify-content: center;
  }
  .hero-stats {
    gap: 16px;
  }
  .hero-stat .stat-num {
    font-size: 2rem !important;
  }
  .hero-stat .stat-num-letter {
    font-size: 2.2rem !important;
  }
  .hero-stat .stat-suffix {
    font-size: 1.2rem;
  }
  .hero-stat .stat-label {
    font-size: 0.78rem;
  }
  .hero-visual {
    margin-top: 40px;
  }
  .hero-card-inner {
    height: 280px;
  }

  /* ── MARQUEE ── */
  .marquee-strip {
    padding: 14px 0;
  }
  .marquee-track span {
    font-size: 0.85rem;
  }

  /* ── ABOUT ── */
  .about-grid {
    gap: 18px;
  }
  .about-card {
    padding: 28px 22px;
  }
  .about-icon {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }
  .about-card h4 {
    font-size: 1.1rem;
    margin-top: 4px;
  }
  .about-card p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  /* ── NEWS ── */
  .news-section .section-title {
    font-size: 1.6rem !important;
  }
  .news-featured-img {
    min-height: 320px;
    border-radius: 14px;
  }
  .nf-overlay {
    padding: 24px 20px;
  }
  .nf-badges {
    margin-bottom: 12px;
  }
  .nf-badge {
    font-size: 0.62rem;
    padding: 5px 12px;
  }
  .nf-overlay h3 {
    font-size: 1.25rem;
    line-height: 1.35;
  }
  .nf-overlay p {
    font-size: 0.92rem;
    line-height: 1.65;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .nf-meta {
    font-size: 0.8rem;
    gap: 14px;
  }

  .news-sidebar {
    gap: 14px;
  }
  .news-side-card {
    padding: 14px;
    border-radius: 12px;
    gap: 14px;
  }
  .nsc-img {
    width: 90px;
    min-width: 90px;
    height: 72px;
    border-radius: 8px;
  }
  .nsc-content h5 {
    font-size: 0.92rem;
    line-height: 1.35;
  }
  .nsc-date {
    font-size: 0.78rem;
  }
  .nsc-content p {
    font-size: 0.82rem;
    -webkit-line-clamp: 2;
  }
  .news-see-all {
    font-size: 0.88rem;
    padding: 11px 24px;
    width: 100%;
    justify-content: center;
  }

  /* ── ANNOUNCE & AGENDA ── */
  .announce-section {
    padding: 70px 0;
  }
  .announce-card {
    padding: 16px;
    gap: 14px;
    flex-direction: column;
    align-items: flex-start;
  }
  .ac-date {
    min-width: 56px;
    height: 56px;
  }
  .ac-day {
    font-size: 1.2rem;
  }
  .ac-img {
    width: 100%;
    min-width: auto;
    height: 140px;
    border-radius: 10px;
  }
  .ac-text h5 {
    font-size: 1.05rem;
  }
  .ac-text p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .agenda-list {
    gap: 10px;
  }
  .agenda-item {
    padding: 14px 16px;
    gap: 12px;
    flex-wrap: wrap;
  }
  .agenda-date-block {
    min-width: 48px;
    height: 48px;
  }
  .agenda-day {
    font-size: 1.05rem;
  }
  .agenda-month {
    font-size: 0.52rem;
  }
  .agenda-info h5 {
    font-size: 0.92rem;
  }
  .agenda-info p {
    font-size: 0.82rem;
  }
  .agenda-badge {
    font-size: 0.58rem;
    padding: 4px 10px;
  }

  /* ── PROGRAM ── */
  .program-tabs {
    gap: 6px;
    margin: 28px 0;
  }
  .program-tab {
    font-size: 0.82rem;
    padding: 9px 18px;
  }
  .program-cards {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .program-card-top {
    height: 160px;
  }
  .program-card-body {
    padding: 22px 20px;
  }
  .program-card-body h4 {
    font-size: 1.1rem;
  }
  .program-card-body p {
    font-size: 0.92rem;
    line-height: 1.7;
  }
  .program-link {
    font-size: 0.88rem;
  }

  /* ── RESEARCH BANNER ── */
  .research-banner {
    padding: 50px 0;
  }
  .research-emoji {
    font-size: 1.8rem;
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }
  .research-content h2 {
    font-size: 1.45rem;
    line-height: 1.3;
  }
  .research-content p {
    font-size: 0.92rem;
    line-height: 1.65;
  }
  .research-btn {
    font-size: 0.88rem;
    padding: 13px 26px;
    width: 100%;
    justify-content: center;
  }

  /* ── STATS BAR ── */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px;
  }
  .stat-number {
    font-size: 2.2rem;
  }
  .stat-text {
    font-size: 0.85rem;
  }

  /* ── MEDIA / GALERI ── */
  .media-sub-header {
    margin-bottom: 18px;
  }
  .media-sub-header h3 {
    font-size: 1.15rem;
  }
  .photo-gallery {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }
  .pg-item.pg-large {
    grid-column: span 2 !important;
    height: 200px !important;
  }
  .pg-item {
    height: 130px !important;
    border-radius: 10px;
  }
  .pg-overlay {
    opacity: 1;
    background: linear-gradient(0deg, rgba(15,35,71,0.65) 0%, transparent 50%);
  }
  .pg-overlay span {
    font-size: 0.78rem;
  }

  .video-gallery {
    gap: 14px;
  }
  .vg-item {
    padding: 10px;
    gap: 14px;
  }
  .vg-thumb {
    width: 110px;
    min-width: 110px;
    height: 70px;
    border-radius: 8px;
  }
  .vg-info h5 {
    font-size: 0.92rem;
    line-height: 1.35;
  }
  .vg-info span {
    font-size: 0.78rem;
  }

  /* ── LEADERSHIP ── */
  .leadership-section {
    padding: 70px 0;
  }
  .leadership-grid {
    gap: 28px;
    margin-top: 36px;
  }
  .leader-card {
    width: 150px !important;
  }
  .leader-avatar {
    width: 100px !important;
    height: 100px !important;
  }
  .leader-initials {
    font-size: 1.4rem !important;
  }
  .leader-photo {
    width: 100%;
    height: 100%;
  }
  .leader-card h4 {
    font-size: 0.82rem;
    line-height: 1.3;
  }
  .leader-role {
    font-size: 0.68rem;
    letter-spacing: 0.8px;
  }

  /* ── PARTNERS ── */
  .partners-grid {
    gap: 14px;
    margin-top: 30px;
  }
  .partner-item {
    padding: 20px 22px;
    min-width: 120px;
    flex: 1 1 calc(33% - 14px);
  }
  .partner-icon {
    font-size: 1.6rem;
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }
  .partner-item span {
    font-size: 0.78rem;
  }

  /* ── CTA ── */
  .cta-box {
    padding: 40px 22px !important;
    border-radius: 18px !important;
  }
  .cta-box h2 {
    font-size: 1.55rem;
    line-height: 1.25;
  }
  .cta-box p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .btn-cta {
    font-size: 0.95rem;
    padding: 14px 32px;
  }

  /* ── FOOTER ── */
  .footer-section {
    padding: 50px 0 30px;
  }
  .footer-logo .fl-name {
    font-size: 1.1rem;
  }
  .footer-desc {
    font-size: 0.92rem;
    line-height: 1.7;
  }
  .footer-title {
    font-size: 0.82rem;
    margin-top: 10px;
  }
  .footer-links li a {
    font-size: 0.92rem;
    padding: 5px 0;
  }
  .footer-contact-item {
    font-size: 0.9rem;
    gap: 10px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
    font-size: 0.82rem;
    padding-top: 20px;
  }

  /* ── NAVBAR MOBILE ── */
  .navbar-brand-phs .logo-svg {
    width: 38px;
    height: 38px;
  }
  .navbar-brand-phs .brand-name {
    font-size: 1.05rem;
  }
  .navbar-brand-phs .brand-tagline {
    font-size: 0.52rem;
    letter-spacing: 2px;
  }
  .mobile-nav-panel {
    padding: 16px 0;
  }
  .mobile-nav-panel .nav-link-phs {
    font-size: 0.95rem;
    padding: 10px 16px !important;
  }
  .mobile-acc-panel a {
    font-size: 0.9rem;
    padding: 8px 20px;
  }
}


/* ── Extra small (≤400px) ── */
@media (max-width: 400px) {
  .hero-title {
    font-size: 1.75rem !important;
  }
  .section-title {
    font-size: 1.55rem !important;
  }
  .stats-grid {
    gap: 18px;
  }
  .stat-number {
    font-size: 1.9rem;
  }
  .partner-item {
    flex: 1 1 calc(50% - 14px);
  }
  .leader-card {
    width: 130px !important;
  }
  .leader-avatar {
    width: 85px !important;
    height: 85px !important;
  }
  .nf-overlay h3 {
    font-size: 1.1rem;
  }
}