/* =============================================
   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;
  }
}


/* ═══════════════════════════════════════════════════════════
   CONTACT SECTION — Hubungi Kami
   ═══════════════════════════════════════════════════════════ */
.contact-section {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  margin-top: 48px;
}

/* ── Contact Info Card (left) ── */
.contact-info-card {
  background: var(--navy);
  border-radius: 20px;
  padding: 48px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(200, 151, 62, 0.08);
}

.contact-info-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-info-card>p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  margin-bottom: 32px;
  line-height: 1.6;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(200, 151, 62, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.ci-item h5 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 2px;
}

.ci-item p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.5;
}

.ci-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 28px 0;
}

.ci-socials {
  display: flex;
  gap: 12px;
}

.ci-socials a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s ease;
}

.ci-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* ── Contact Form Card (right) ── */
.contact-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: 0 8px 40px rgba(15, 35, 71, 0.06);
  border: 1px solid rgba(15, 35, 71, 0.06);
  position: relative;
}

.contact-form-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.contact-form-card>p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.contact-form-card .form-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: -16px;
  margin-bottom: 24px;
}

/* ── Form Elements ── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group label .req {
  color: #e74c3c;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: 12px;
  font-size: 0.92rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  background: var(--off-white);
  transition: 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(200, 151, 62, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-group input.is-invalid,
.form-group textarea.is-invalid {
  border-color: #e74c3c;
  background: #fff5f5;
}

.form-error {
  font-size: 0.78rem;
  color: #e74c3c;
  margin-top: 4px;
  display: none;
}

.form-error.show {
  display: block;
}

/* Honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* ── Submit Button ── */
.btn-submit-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border: none;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  transition: 0.35s ease;
  width: 100%;
  justify-content: center;
}

.btn-submit-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 151, 62, 0.3);
}

.btn-submit-contact:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-submit-contact .spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(15, 35, 71, 0.2);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.btn-submit-contact.loading .spinner {
  display: inline-block;
}

.btn-submit-contact.loading .btn-text {
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── Alert Messages ── */
.form-alert {
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: none;
}

.form-alert.show {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-alert-success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.form-alert-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ═══════════════════════════════════════════════════════════
   SUCCESS OVERLAY — Tampil setelah pesan terkirim
   ═══════════════════════════════════════════════════════════ */
.form-success-overlay {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 32px;
  min-height: 420px;
}

.form-success-overlay.active {
  display: flex;
  animation: successFadeIn 0.5s ease forwards;
}

@keyframes successFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animated checkmark circle */
.success-checkmark {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  animation: successPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.3);
}

@keyframes successPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  60% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-checkmark svg {
  width: 44px;
  height: 44px;
  stroke: #fff;
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-checkmark svg .check-path {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: checkDraw 0.5s 0.4s ease forwards;
}

@keyframes checkDraw {
  to {
    stroke-dashoffset: 0;
  }
}

.success-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.success-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 360px;
  margin-bottom: 12px;
}

.success-lead-code {
  display: inline-block;
  padding: 8px 20px;
  background: var(--off-white);
  border: 1.5px solid var(--border-light);
  border-radius: 10px;
  font-family: 'Sora', monospace;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.success-lead-code span {
  color: var(--gold);
}

.btn-send-again {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  transition: 0.35s ease;
}

.btn-send-again:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(15, 35, 71, 0.15);
}

/* ═══════════════════════════════════════════════════════════
   VARDANA ATTRIBUTION BAR
   ═══════════════════════════════════════════════════════════ */
.vardana-attribution {
  background: #060d1e;
  padding: 16px 0;
  text-align: center;
  border-top: 1px solid rgba(200, 151, 62, 0.1);
}

.vardana-attribution p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.vardana-attribution a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.vardana-attribution a:hover {
  color: var(--gold-light);
}

/* ═══════════════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ═══════════════════════════════════════════════════════════ */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: #fff;
  text-decoration: none;
}

.wa-fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.45);
  color: #fff;
}

.wa-fab svg {
  width: 28px;
  height: 28px;
}

/* ═══════════════════════════════════════════════════════════
   VARDANA CTA BANNER — "Tertarik website seperti ini?"
   ═══════════════════════════════════════════════════════════ */
.vardana-cta-banner {
  background: linear-gradient(135deg, #0a1a3a 0%, #0f2347 50%, #162d55 100%);
  padding: 48px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vardana-cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(200, 151, 62, 0.06);
}

.vardana-cta-banner h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.vardana-cta-banner h4 span {
  color: var(--gold);
}

.vardana-cta-banner p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.vardana-cta-banner .btn-vardana-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #25d366;
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: 0.35s ease;
}

.vardana-cta-banner .btn-vardana-wa:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  color: #fff;
}

.vardana-cta-banner .btn-vardana-portfolio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--gold-light);
  border: 1.5px solid rgba(200, 151, 62, 0.3);
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: 0.35s ease;
  margin-left: 12px;
}

.vardana-cta-banner .btn-vardana-portfolio:hover {
  border-color: var(--gold);
  background: rgba(200, 151, 62, 0.08);
  color: var(--gold-light);
}

/* ── Contact responsive ── */
@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-info-card {
    padding: 36px 28px;
  }

  .contact-form-card {
    padding: 32px 24px;
  }
}

@media (max-width: 575px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .vardana-cta-banner .btn-vardana-portfolio {
    margin-left: 0;
    margin-top: 12px;
  }

  .form-success-overlay {
    padding: 40px 20px;
    min-height: 340px;
  }

  .success-checkmark {
    width: 72px;
    height: 72px;
  }

  .success-checkmark svg {
    width: 36px;
    height: 36px;
  }

  .success-title {
    font-size: 1.3rem;
  }
}