
/* ===== CSS VARIABLES ===== */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-pale: #F5EDD4;
  --navy: #0D1F3C;
  --navy-mid: #1A3158;
  --navy-light: #1E3A68;
  
  
  
  --white: #FFFFFF;
  --off-white: #F9F6F0;
  --gray-light: #EEE9DF;
  --gray-text: #6B6B6B;
  --dark-text: #1A1A2E;
  --red-accent: #C0392B;
  --teal: #1A7A8A;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-gold: 0 8px 40px rgba(201,168,76,0.18);
  --shadow-card: 0 4px 30px rgba(13,31,60,0.10);
  --shadow-nav: 0 2px 20px rgba(13,31,60,0.15);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --font-chinese: 'Noto Serif SC', serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--dark-text);
  overflow-x: hidden;
  line-height: 1.6;
  max-width: 100vw;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-light); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.section-tag::before { content: ''; width: 28px; height: 2px; background: var(--gold); }
.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.2; color: #0D1F3C;
  margin-bottom: 16px;
}
.section-title span { color: var(--gold); }
.section-subtitle {
  font-size: 1.05rem; color: var(--gray-text);
  max-width: 600px; line-height: 1.7;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 50px;
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.9rem; letter-spacing: 0.5px;
  cursor: pointer; border: none; transition: var(--transition);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0D1F3C; box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.5); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-navy {
  background: #0D1F3C; color: var(--white);
  box-shadow: 0 4px 20px rgba(13,31,60,0.3);
}
.btn-navy:hover { background: #1E3A68; transform: translateY(-2px); }

/* ===== FLOATING ORNAMENT ===== */
.ornament {
  position: absolute; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), transparent);
  opacity: 0.06; pointer-events: none;
}

/* ===== TOP BAR ===== */
.topbar {
  background: #0D1F3C;
  padding: 8px 0;
  font-size: 0.78rem; color: rgba(255,255,255,0.75);
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.topbar-left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar-right { display: flex; align-items: center; gap: 12px; }
.topbar a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.topbar a:hover { color: var(--gold); }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item i { color: var(--gold); font-size: 0.72rem; }
.topbar-socials a {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; transition: var(--transition);
}
.topbar-socials a:hover { background: var(--gold); color: #0D1F3C; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-nav);
  transition: var(--transition);
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px; gap: 24px;
}
.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-logo-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, #0D1F3C, #1E3A68);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 800;
  color: var(--gold); letter-spacing: 0;
  box-shadow: 0 4px 15px rgba(13,31,60,0.25);
  flex-shrink: 0;
}
.nav-brand-text { line-height: 1.2; }
.nav-brand-title {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 800;
  color: #0D1F3C; letter-spacing: 0.3px;
}
.nav-brand-sub {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
}
.nav-links { display: flex; align-items: center; gap: 4px; }
/* Reset semua li agar tidak ada background bawaan */
.nav-links li { list-style: none; display: inline-flex; position: relative; }
.nav-links li a {
  padding: 8px 16px; border-radius: 8px;
  font-weight: 500; font-size: 0.88rem; color: #0D1F3C;
  transition: var(--transition); position: relative;
  background: transparent;
}
/* Hanya hover dan active/current yang mendapat highlight */
.nav-links li a:hover,
.nav-links li a.active {
  color: var(--gold); background: var(--gold-pale);
}
/* WordPress current-menu-item: HANYA berlaku jika bukan custom link biasa */
.nav-links li.current-menu-item > a,
.nav-links li.current-page-ancestor > a,
.nav-links li.current_page_item > a {
  color: var(--gold); background: var(--gold-pale);
}
/* Pastikan custom link (tautan tersuai) TIDAK auto-highlight */
.nav-links li.menu-item-type-custom a {
  color: #0D1F3C; background: transparent;
}
.nav-links li.menu-item-type-custom a:hover {
  color: var(--gold); background: var(--gold-pale);
}

/* ===== DESKTOP DROPDOWN SUBMENU ===== */
/* Indikator panah untuk item yang punya submenu */
.nav-links li.menu-item-has-children > a::after {
  content: '▾';
  font-size: 0.7rem;
  margin-left: 4px;
  display: inline-block;
  transition: transform 0.25s ease;
  vertical-align: middle;
}
.nav-links li.menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}
/* Submenu panel */
.nav-links ul.sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(13,31,60,0.15);
  border: 1px solid var(--gray-light);
  padding: 6px;
  z-index: 9999;
  flex-direction: column;
  gap: 2px;
  /* Animasi muncul */
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
/* Tampilkan submenu saat hover parent */
.nav-links li.menu-item-has-children:hover > ul.sub-menu,
.nav-links li.menu-item-has-children:focus-within > ul.sub-menu {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
/* Item di dalam submenu */
.nav-links ul.sub-menu li {
  display: flex;
  width: 100%;
}
.nav-links ul.sub-menu li a {
  width: 100%;
  padding: 8px 14px;
  font-size: 0.85rem;
  color: #0D1F3C;
  border-radius: 8px;
  white-space: nowrap;
}
.nav-links ul.sub-menu li a:hover {
  color: var(--gold);
  background: var(--gold-pale);
}
/* Submenu level 2 (nested) — ke kanan */
.nav-links ul.sub-menu li.menu-item-has-children > a::after {
  content: '▸';
  float: right;
  margin-left: auto;
}
.nav-links ul.sub-menu ul.sub-menu {
  top: 0;
  left: 100%;
  margin-left: 6px;
}
.nav-links ul.sub-menu li.menu-item-has-children:hover > ul.sub-menu {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.nav-cta { flex-shrink: 0; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: #0D1F3C; border-radius: 2px; transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 50%, #0A2A50 100%);
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: repeating-linear-gradient(
    45deg, var(--gold) 0px, var(--gold) 1px, transparent 1px, transparent 40px
  );
}
.hero-glow {
  position: absolute; width: 700px; height: 700px;
  border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  top: -200px; right: -200px; pointer-events: none;
}
.hero-glow-2 {
  position: absolute; width: 500px; height: 500px;
  border-radius: 50%; background: radial-gradient(circle, rgba(26,122,138,0.15) 0%, transparent 70%);
  bottom: -100px; left: -100px; pointer-events: none;
}
.hero .container {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  padding-top: 60px; padding-bottom: 60px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light); border-radius: 50px;
  padding: 6px 16px; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 24px;
}
.hero-badge i { font-size: 0.65rem; }
.hero-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem); line-height: 1.15;
  color: var(--white); margin-bottom: 20px;
}
.hero-title .gold { color: var(--gold); }
.hero-title .italic { font-style: italic; }
.hero-subtitle {
  font-size: 1.05rem; color: rgba(255,255,255,0.7);
  line-height: 1.75; margin-bottom: 36px; max-width: 480px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex; gap: 32px; flex-wrap: wrap;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  color: var(--gold); line-height: 1;
}
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-top: 4px; }

/* Hero Visual */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-card-main {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px; width: 100%; max-width: 400px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.hero-card-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
  padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hero-card-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #0D1F3C;
}
.hero-card-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--white); }
.hero-card-sub { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 2px; }
.destinations {
  display: flex; flex-direction: column; gap: 12px;
}
.dest-item {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.05); border-radius: 10px;
  padding: 12px 14px; border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.dest-item:hover { background: rgba(255,255,255,0.1); }
.dest-flag { width: 36px; height: 26px; border-radius: 4px; object-fit: cover; box-shadow: 0 1px 4px rgba(0,0,0,0.2); flex-shrink: 0; }
.dest-name { font-weight: 600; font-size: 0.88rem; color: var(--white); }
.dest-lang { font-size: 0.72rem; color: var(--gold-light); margin-top: 2px; }
.dest-badge {
  margin-left: auto; font-size: 0.65rem; font-weight: 600;
  padding: 3px 10px; border-radius: 50px;
  background: rgba(201,168,76,0.2); color: var(--gold-light);
  letter-spacing: 0.5px; text-transform: uppercase;
}
.hero-floating-badge {
  position: absolute; background: var(--white); border-radius: 12px;
  padding: 12px 18px; box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  display: flex; align-items: center; gap: 10px;
  animation: float 3s ease-in-out infinite;
}
.hero-floating-badge.badge-1 { top: -20px; right: -30px; }
.hero-floating-badge.badge-2 { bottom: -20px; left: -30px; animation-delay: 1.5s; }
.badge-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.badge-icon.green { background: #E8F8F0; color: #27AE60; }
.badge-icon.blue { background: #E8F4FF; color: #2980B9; }
.badge-num { font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: #0D1F3C; }
.badge-text { font-size: 0.7rem; color: var(--gray-text); }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ===== PARTNER STRIP ===== */
.partner-strip {
  background: var(--white); padding: 20px 0;
  border-top: 1px solid var(--gray-light); border-bottom: 1px solid var(--gray-light);
}
.partner-strip .container {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: center;
}
.partner-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gray-text); white-space: nowrap; }
.partner-logos { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; justify-content: center; }
.partner-logo {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.85rem; color: #1A3158; opacity: 0.7;
  transition: opacity 0.2s;
}
.partner-logo:hover { opacity: 1; }
.partner-logo i { color: var(--gold); font-size: 1.1rem; }

/* ===== ABOUT ===== */
.about { background: var(--off-white); }
.about .container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-visual { position: relative; }
.about-img-frame {
  background: linear-gradient(135deg, #0D1F3C, #1A3158);
  border-radius: var(--radius-lg);
  padding: 40px; color: var(--white);
  box-shadow: var(--shadow-gold);
  position: relative; overflow: hidden;
}
.about-img-frame::before {
  content: ''; position: absolute;
  top: -50px; right: -50px; width: 200px; height: 200px;
  border-radius: 50%; background: rgba(201,168,76,0.1);
}
.about-img-frame::after {
  content: ''; position: absolute;
  bottom: -30px; left: -30px; width: 120px; height: 120px;
  border-radius: 50%; background: rgba(201,168,76,0.06);
}
.about-frame-inner { position: relative; z-index: 1; }
.about-frame-icon {
  width: 70px; height: 70px; border-radius: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: #0D1F3C; margin-bottom: 24px;
}
.about-frame-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; margin-bottom: 12px; }
.about-frame-text { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 24px; }
.about-frame-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.frame-stat { background: rgba(255,255,255,0.08); border-radius: 10px; padding: 16px; border: 1px solid rgba(255,255,255,0.08); }
.frame-stat-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--gold); }
.frame-stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.55); margin-top: 2px; }
.about-badge-overlay {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold); color: #0D1F3C;
  border-radius: 12px; padding: 16px 20px;
  box-shadow: var(--shadow-gold); text-align: center;
}
.about-badge-overlay-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; }
.about-badge-overlay-text { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.5px; }
.about-content .section-tag { margin-bottom: 12px; }
.about-list { margin: 28px 0; display: flex; flex-direction: column; gap: 16px; }
.about-list-item { display: flex; gap: 14px; align-items: flex-start; padding: 16px; background: var(--white); border-radius: 10px; border: 1px solid var(--gray-light); transition: var(--transition); }
.about-list-item:hover { box-shadow: var(--shadow-card); transform: translateX(4px); }
.about-list-icon { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1rem; }
.about-list-title { font-weight: 600; font-size: 0.9rem; color: var(--navy); margin-bottom: 4px; }
.about-list-desc { font-size: 0.82rem; color: var(--gray-text); line-height: 1.5; }
@media(max-width:900px) { .about .container { grid-template-columns: 1fr; gap: 48px; } }

.about-img-frame {
  background: linear-gradient(135deg, #0D1F3C, #1A3158);
  border-radius: var(--radius-lg);
  padding: 40px; color: var(--white);
  box-shadow: var(--shadow-gold);
  position: relative; overflow: hidden;
}
.about-img-frame::before {
  content: ''; position: absolute;
  top: -50px; right: -50px; width: 200px; height: 200px;
  border-radius: 50%; background: rgba(201,168,76,0.1);
}
.about-img-frame::after {
  content: ''; position: absolute;
  bottom: -30px; left: -30px; width: 120px; height: 120px;
  border-radius: 50%; background: rgba(201,168,76,0.06);
}
.about-frame-inner { position: relative; z-index: 1; }
.about-frame-icon {
  width: 70px; height: 70px; border-radius: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: #0D1F3C;
  margin-bottom: 24px;
}
.about-frame-title {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; margin-bottom: 12px;
}
.about-frame-text { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 24px; }
.about-frame-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.frame-stat {
  background: rgba(255,255,255,0.08); border-radius: 10px; padding: 16px;
  border: 1px solid rgba(255,255,255,0.08);
}
.frame-stat-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--gold); }
.frame-stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.55); margin-top: 2px; }
.about-badge-overlay {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold); color: #0D1F3C;
  border-radius: 12px; padding: 16px 20px;
  box-shadow: var(--shadow-gold); text-align: center;
}
.about-badge-overlay-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; }
.about-badge-overlay-text { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.5px; }

.about-content .section-tag { margin-bottom: 12px; }
.about-list { margin: 28px 0; display: flex; flex-direction: column; gap: 16px; }
.about-list-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px; background: var(--white);
  border-radius: 10px; border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.about-list-item:hover { box-shadow: var(--shadow-card); transform: translateX(4px); }
.about-list-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: var(--gold-pale); display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
}
.about-list-title { font-weight: 600; font-size: 0.9rem; color: #0D1F3C; margin-bottom: 4px; }
.about-list-desc { font-size: 0.82rem; color: var(--gray-text); line-height: 1.5; }

/* ===== PROGRAMS ===== */
.programs { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 50%, #0A2A50 100%); overflow: hidden; position: relative; }
.programs::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(-45deg, rgba(201,168,76,0.03) 0px, rgba(201,168,76,0.03) 1px, transparent 1px, transparent 50px); }
.programs .container { position: relative; z-index: 1; }
.programs .section-title { color: var(--white); }
.programs .section-subtitle { color: rgba(255,255,255,0.6); }
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.program-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 36px 28px;
  transition: var(--transition); position: relative; overflow: hidden; cursor: default;
}
.program-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(145deg, rgba(201,168,76,0.08) 0%, transparent 60%); opacity: 0; transition: var(--transition); }
.program-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,0.3); box-shadow: var(--shadow-gold); }
.program-card:hover::before { opacity: 1; }
.program-flag { width: 64px; height: 44px; border-radius: 6px; object-fit: cover; margin-bottom: 16px; box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
.program-country { font-size: 0.7rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.program-lang { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.program-chinese { font-size: 1rem; color: var(--gold-light); margin-bottom: 16px; }
.program-desc { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 24px; }
.program-features { display: flex; flex-direction: column; gap: 8px; }
.program-feature { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.program-feature i { color: var(--gold); font-size: 0.65rem; }
.program-card.featured { background: linear-gradient(145deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05)); border-color: rgba(201,168,76,0.25); }
.featured-tag { position: absolute; top: 20px; right: 20px; background: var(--gold); color: #0D1F3C; font-size: 0.65rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border-radius: 50px; }
.physical-card { grid-column: span 3; background: linear-gradient(135deg, rgba(26,122,138,0.15), rgba(13,31,60,0.3)); border-color: rgba(26,122,138,0.3); display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: center; padding: 44px; }
.physical-icon-wrap { text-align: center; }
.physical-icon-big { width: 100px; height: 100px; border-radius: 24px; background: linear-gradient(135deg, var(--teal), #1A5F7A); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: var(--white); margin: 0 auto 16px; box-shadow: 0 8px 30px rgba(26,122,138,0.4); }
.physical-icon-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); }
.physical-title { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.physical-desc { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 24px; }
.physical-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.physical-tag { background: rgba(26,122,138,0.2); border: 1px solid rgba(26,122,138,0.3); color: #4EC1CE; font-size: 0.78rem; font-weight: 600; padding: 6px 14px; border-radius: 50px; display:flex;align-items:center;gap:5px; }
.physical-tag i { font-size:0.65rem;color:var(--gold-light); }
@media(max-width:1100px) { .programs-grid { grid-template-columns: repeat(2,1fr); } .physical-card { grid-column: span 2; } }
@media(max-width:600px) { .programs-grid { grid-template-columns: 1fr; } .physical-card { grid-column: span 1; grid-template-columns: 1fr; gap: 24px; } }


/* Physical Training Card */
.physical-card {
  grid-column: span 3;
  background: linear-gradient(135deg, rgba(26,122,138,0.15), rgba(26,26,26,0.3));
  border-color: rgba(26,122,138,0.3);
  display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: center;
  padding: 44px;
}
.physical-icon-big {
  width: 100px; height: 100px; border-radius: 24px;
  background: linear-gradient(135deg, var(--teal), #1A5F7A);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: var(--white); margin: 0 auto 16px;
  box-shadow: 0 8px 30px rgba(26,122,138,0.4);
}
.physical-icon-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--sky);
}
.physical-tag {
  background: rgba(26,122,138,0.15); border: 1px solid rgba(26,122,138,0.3);
  color: #4EC1CE; font-size: 0.78rem; font-weight: 600;
  padding: 6px 14px; border-radius: 50px;
}
.physical-icon-wrap { text-align: center; }
.physical-icon-big {
  width: 100px; height: 100px; border-radius: 24px;
  background: linear-gradient(135deg, var(--teal), #1A5F7A);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: var(--white); margin: 0 auto 16px;
  box-shadow: 0 8px 30px rgba(26,122,138,0.4);
}
.physical-icon-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--teal);
}
.physical-title {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 800;
  color: var(--white); margin-bottom: 12px;
}
.physical-desc { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 24px; }
.physical-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.physical-tag {
  background: rgba(26,122,138,0.2); border: 1px solid rgba(26,122,138,0.3);
  color: #4EC1CE; font-size: 0.78rem; font-weight: 600;
  padding: 6px 14px; border-radius: 50px;
}

/* ===== DESTINATIONS ===== */
.destinations-section { background: var(--white); }
.dest-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.dest-card {
  background: var(--off-white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.dest-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.dest-card-top {
  padding: 32px 24px 24px; text-align: center;
  background: linear-gradient(135deg, #0D1F3C, #1A3158);
  position: relative;
}
.dest-card-flag { width: 72px; height: 50px; border-radius: 8px; object-fit: cover; margin: 0 auto 8px; display: block; box-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.dest-card-country { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--white); }
.dest-card-currency { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
.dest-card-body { padding: 20px; }
.dest-card-lang {
  display: flex; align-items: center; gap: 8px;
  background: var(--gold-pale); border-radius: 8px; padding: 10px 14px;
  margin-bottom: 14px;
}
.dest-card-lang-icon { color: var(--gold); font-size: 0.9rem; }
.dest-card-lang-name { font-weight: 600; font-size: 0.85rem; color: #0D1F3C; }
.dest-card-features { display: flex; flex-direction: column; gap: 8px; }
.dest-feature { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--gray-text); }
.dest-feature i { color: var(--gold); font-size: 0.65rem; }

/* ===== WHY US ===== */
.why-us { background: var(--off-white); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.why-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--gray-light);
  transition: var(--transition); position: relative;
}
.why-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.why-card-num {
  font-family: var(--font-display); font-size: 4rem; font-weight: 800;
  color: var(--gold-pale); line-height: 1;
  position: absolute; top: 20px; right: 24px;
  transition: var(--transition);
}
.why-card:hover .why-card-num { color: rgba(201,168,76,0.2); }
.why-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--gold-pale); display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.3rem; margin-bottom: 20px;
}
.why-title { font-weight: 700; font-size: 1.05rem; color: #0D1F3C; margin-bottom: 10px; }
.why-desc { font-size: 0.85rem; color: var(--gray-text); line-height: 1.65; }

/* ===== REQUIREMENTS ===== */
.requirements {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative; overflow: hidden;
}
.requirements::before {
  content: '自分の夢を追いかけよう'; position: absolute;
  font-family: var(--font-chinese); font-size: 8rem; font-weight: 900;
  color: rgba(255,255,255,0.02); right: -20px; bottom: -20px;
  pointer-events: none; line-height: 1; white-space: nowrap;
}
.requirements .section-title { color: var(--white); }
.requirements .section-subtitle { color: rgba(255,255,255,0.6); }
.req-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 56px; align-items: start; }
.req-list { display: flex; flex-direction: column; gap: 14px; }
.req-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 18px;
  transition: var(--transition);
}
.req-item:hover { background: rgba(255,255,255,0.08); }
.req-num {
  width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem; color: #0D1F3C;
}
.req-text { font-size: 0.9rem; color: rgba(255,255,255,0.8); line-height: 1.5; }
.req-text strong { color: var(--gold-light); font-weight: 600; }
.req-doc-title {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  color: var(--white); margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.doc-list { display: flex; flex-direction: column; gap: 10px; }
.doc-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.87rem; color: rgba(255,255,255,0.75);
  padding: 12px 16px; background: rgba(255,255,255,0.04);
  border-radius: 8px; border: 1px solid rgba(255,255,255,0.06);
}
.doc-item i { color: var(--gold); font-size: 0.75rem; }

/* ===== PROCESS ===== */
.process { background: var(--white); }
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 64px; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 36px; left: 10%; right: 10%;
  height: 2px; background: linear-gradient(90deg, var(--gold-pale), var(--gold), var(--gold-pale));
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; padding: 0 12px; }
.step-circle {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 20px;
  background: var(--white); border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,168,76,0.2);
  transition: var(--transition);
}
.step:hover .step-circle { background: var(--gold); color: #0D1F3C; }
.step-num {
  font-family: var(--font-display); font-size: 0.7rem; font-weight: 800;
  color: var(--gold); letter-spacing: 1px; margin-bottom: 8px;
}
.step-title { font-weight: 700; font-size: 0.88rem; color: #0D1F3C; margin-bottom: 6px; }
.step-desc { font-size: 0.78rem; color: var(--gray-text); line-height: 1.5; }

/* ===== GALLERY / SHOWCASE ===== */
.showcase { background: var(--off-white); }
.showcase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.showcase-item {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.showcase-item:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.showcase-item-top {
  height: 160px; display: flex; align-items: center; justify-content: center;
  font-size: 4rem; position: relative; overflow: hidden;
}
.showcase-item-top.bg1 { background: linear-gradient(135deg, #FDF0D5, #F5E4B0); }
.showcase-item-top.bg2 { background: linear-gradient(135deg, #D5EEF7, #B0D8EE); }
.showcase-item-top.bg3 { background: linear-gradient(135deg, #D5F5E3, #A8E6C3); }
.showcase-item-top.bg4 { background: linear-gradient(135deg, #F5D5D5, #EEB0B0); }
.showcase-item-top.bg5 { background: linear-gradient(135deg, #E8D5F5, #D0B0EE); }
.showcase-item-top.bg6 { background: linear-gradient(135deg, #D5F0F5, #B0DDE8); }
.showcase-item-body { padding: 20px; }
.showcase-item-title { font-weight: 700; font-size: 0.9rem; color: #0D1F3C; margin-bottom: 6px; }
.showcase-item-desc { font-size: 0.8rem; color: var(--gray-text); line-height: 1.5; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%); overflow: hidden; position: relative; }
.testimonials .section-title { color: var(--white); }
.testimonials .section-subtitle { color: rgba(255,255,255,0.6); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.testi-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 28px;
  transition: var(--transition);
}
.testi-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.testi-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text { font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1rem; font-weight: 800; color: #0D1F3C;
}
.testi-name { font-weight: 600; font-size: 0.88rem; color: var(--white); }
.testi-dest { font-size: 0.75rem; color: var(--gold-light); margin-top: 2px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--gold), #B8922A);
  padding: 80px 0; text-align: center;
}
.cta-banner-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: #0D1F3C; margin-bottom: 16px;
}
.cta-banner-sub { font-size: 1.05rem; color: rgba(13,31,60,0.75); margin-bottom: 36px; }
.cta-banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: var(--white); color: #0D1F3C; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.btn-dark { background: #0D1F3C; color: var(--white); }
.btn-dark:hover { background: #1E3A68; transform: translateY(-2px); }
/* WhatsApp button */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  background: #1EBE58;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
/* Nav CTA WhatsApp */
.nav-cta.btn-whatsapp { font-size: 0.82rem; padding: 10px 22px; }

/* ===== CONTACT ===== */
.contact { background: var(--off-white); }
.contact .container { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-card {
  background: var(--white); border-radius: var(--radius);
  padding: 20px 16px; border: 1px solid var(--gray-light);
  display: flex; gap: 14px; align-items: flex-start;
  transition: var(--transition); overflow: hidden;
}
.contact-card:hover { box-shadow: var(--shadow-card); }
.contact-card-icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: #0D1F3C; color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.contact-card-body { flex: 1; min-width: 0; } /* min-width:0 penting agar bisa truncate */
.contact-card-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-text); margin-bottom: 6px; }
.contact-card-value { font-size: 0.88rem; font-weight: 500; color: #0D1F3C; line-height: 1.5; word-break: break-word; }
.contact-card-value a { color: #0D1F3C; transition: color 0.2s; }
.contact-card-value a:hover { color: var(--gold); }
.social-links { display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.social-link {
  display: flex; align-items: center; gap: 6px;
  background: var(--off-white); border: 1px solid var(--gray-light);
  border-radius: 8px; padding: 7px 12px; font-size: 0.78rem; font-weight: 500;
  color: #0D1F3C; transition: var(--transition); white-space: nowrap;
}
.social-link:hover { background: #0D1F3C; color: var(--white); }
.social-link i { font-size: 0.85rem; }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.hour-row { display: flex; justify-content: space-between; font-size: 0.82rem; }
.hour-day { color: var(--gray-text); }
.hour-time { font-weight: 600; color: #0D1F3C; }
.hour-row.closed .hour-time { color: var(--red-accent); }
.map-wrapper {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-card); height: 420px;
}
.map-wrapper iframe { width: 100%; height: 100%; border: none; }
.map-placeholder {
  width: 100%; height: 100%; background: linear-gradient(135deg, #0D1F3C, #1A3158);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  color: var(--white); text-align: center; padding: 32px;
}
.map-placeholder i { font-size: 3rem; color: var(--gold); }
.map-placeholder-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; }
.map-placeholder-sub { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* ===== FOOTER ===== */
.footer { background: var(--navy); color: var(--white); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: #0D1F3C;
}
.footer-logo-name {
  font-family: var(--font-display); font-size: 1rem; font-weight: 800;
  color: var(--white); line-height: 1.2;
}
.footer-logo-sub { font-size: 0.65rem; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 38px; height: 38px; border-radius: 9px;
  background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: var(--transition);
}
.footer-social:hover { background: var(--gold); color: #0D1F3C; }
.footer-col-title {
  font-weight: 700; font-size: 0.85rem; letter-spacing: 1px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
/* wp_nav_menu menghasilkan <ul><li><a> — samakan tampilannya */
.footer-links ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links ul li { display: block; }
.footer-links ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color 0.2s; display: block; }
.footer-links ul li a:hover { color: var(--gold); }
.footer-contact-items { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact-item i { color: var(--gold); font-size: 0.8rem; margin-top: 4px; flex-shrink: 0; }
.footer-contact-item span { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom-left { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom-right { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom-right span { color: var(--gold); }

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed; bottom: 28px; left: 28px;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--gold); color: #0D1F3C;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; box-shadow: var(--shadow-gold);
  cursor: pointer; z-index: 9980;
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: var(--transition); border: none;
}
.back-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-top:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(201,168,76,0.5); }
@media(max-width:480px) { .back-top { bottom: 20px; left: 16px; width: 40px; height: 40px; } }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
.anim-up { opacity: 0; animation: fadeInUp 0.7s ease forwards; }
.anim-left { opacity: 0; animation: fadeInLeft 0.7s ease forwards; }
.anim-right { opacity: 0; animation: fadeInRight 0.7s ease forwards; }
.hero-content .anim-up:nth-child(1) { animation-delay: 0.1s; }
.hero-content .anim-up:nth-child(2) { animation-delay: 0.2s; }
.hero-content .anim-up:nth-child(3) { animation-delay: 0.3s; }
.hero-content .anim-up:nth-child(4) { animation-delay: 0.4s; }
.hero-content .anim-up:nth-child(5) { animation-delay: 0.5s; }
.hero-visual .anim-right { animation-delay: 0.4s; }
.observe { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.observe.visible { opacity: 1; transform: translateY(0); }

/* ===== MOBILE NAV DRAWER ===== */
.nav-drawer {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9999; pointer-events: none;
}
.nav-drawer-backdrop {
  position: absolute; inset: 0;
  background: rgba(13,31,60,0.5); opacity: 0;
  transition: opacity 0.3s ease; pointer-events: none;
}
.nav-drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 280px; background: var(--white);
  box-shadow: -8px 0 40px rgba(13,31,60,0.2);
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column; overflow-y: auto;
  pointer-events: auto;
}
.nav-drawer.open { pointer-events: auto; }
.nav-drawer.open .nav-drawer-backdrop { opacity: 1; pointer-events: auto; }
.nav-drawer.open .nav-drawer-panel { transform: translateX(0); }
.drawer-header {
  background: #0D1F3C; padding: 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.drawer-logo { display: flex; align-items: center; gap: 10px; }
.drawer-logo-icon {
  width: 40px; height: 40px; border-radius: 9px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: #0D1F3C;
}
.drawer-logo-name { font-family: var(--font-display); font-size: 0.85rem; font-weight: 800; color: var(--white); line-height: 1.2; }
.drawer-logo-sub { font-size: 0.6rem; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; }
.drawer-close {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,0.1); border: none;
  color: var(--white); font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.drawer-close:hover { background: rgba(255,255,255,0.2); }
.drawer-nav { padding: 16px; border-bottom: 1px solid var(--gray-light); }
.drawer-nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 10px;
  font-weight: 500; font-size: 0.9rem; color: #0D1F3C;
  transition: var(--transition); margin-bottom: 4px;
}
.drawer-nav a i { color: var(--gold); width: 18px; text-align: center; font-size: 0.85rem; }
.drawer-nav a:hover, .drawer-nav a.active { background: var(--gold-pale); color: var(--gold); }

/* ===== MOBILE DRAWER SUBMENU ===== */
/* wp_nav_menu di drawer */
.drawer-nav ul { list-style: none; padding: 0; margin: 0; }
.drawer-nav ul li { display: block; }
/* Item parent yang punya submenu */
.drawer-nav ul li.menu-item-has-children > a {
  justify-content: space-between;
}
.drawer-nav ul li.menu-item-has-children > a::after {
  content: '\f107'; /* chevron-down */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.8rem;
  color: var(--gray-text);
  transition: transform 0.3s ease;
  margin-left: auto;
  flex-shrink: 0;
}
.drawer-nav ul li.menu-item-has-children.open > a::after {
  transform: rotate(180deg);
  color: var(--gold);
}
/* Sub-menu di dalam drawer — tersembunyi secara default */
.drawer-nav ul.sub-menu {
  display: none;
  padding: 4px 0 4px 16px;
  border-left: 2px solid var(--gold-pale);
  margin: 0 0 4px 14px;
}
.drawer-nav ul li.open > ul.sub-menu { display: block; }
/* Link di dalam submenu */
.drawer-nav ul.sub-menu li a {
  font-size: 0.85rem;
  padding: 9px 12px;
  color: var(--gray-text);
}
.drawer-nav ul.sub-menu li a::before {
  content: '–';
  color: var(--gold);
  font-weight: 700;
  margin-right: 4px;
}
.drawer-nav ul.sub-menu li a:hover { color: var(--gold); background: var(--gold-pale); }

.drawer-info { padding: 16px; border-bottom: 1px solid var(--gray-light); }
.drawer-info-title {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gray-text); margin-bottom: 12px;
}
.drawer-info-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.82rem; color: #0D1F3C; margin-bottom: 10px; line-height: 1.4;
}
.drawer-info-item i { color: var(--gold); font-size: 0.75rem; margin-top: 3px; flex-shrink: 0; }
.drawer-socials { padding: 16px; }
.drawer-socials-title {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gray-text); margin-bottom: 12px;
}
.drawer-social-links { display: flex; gap: 10px; }
.drawer-social-link {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px; border-radius: 9px; font-size: 0.78rem; font-weight: 600;
  background: var(--off-white); border: 1px solid var(--gray-light);
  color: #0D1F3C; transition: var(--transition);
}
.drawer-social-link:hover { background: #0D1F3C; color: var(--white); }
.drawer-cta { padding: 16px; margin-top: auto; }
.drawer-cta .btn { width: 100%; justify-content: center; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .physical-card { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .hero .container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-floating-badge.badge-1, .hero-floating-badge.badge-2 { display: none; }
  .about .container { grid-template-columns: 1fr; gap: 48px; }
  .dest-cards { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .process-steps::before { display: none; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .contact .container { grid-template-columns: 1fr; }
  .req-grid { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .topbar { display: none; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-drawer { display: block; }

  .programs-grid { grid-template-columns: 1fr; }
  .physical-card { grid-column: span 1; grid-template-columns: 1fr; gap: 24px; }
  .dest-cards { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-card-main { max-width: 100%; overflow: hidden; }

  /* Fix overflow horizontal di mobile */
  .container { padding: 0 16px; }
  * { max-width: 100%; box-sizing: border-box; }
  img, video, iframe { max-width: 100%; }
}
@media (max-width: 420px) {
  .dest-cards { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .about-frame-stats { grid-template-columns: 1fr; }
  .container { padding: 0 12px; }
}


/* ===== BERITA SECTION ===== */
.berita-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:0; }
.berita-card { background:var(--white); border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--gray-light); transition:var(--transition); }
.berita-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-card); }
.berita-card-img-wrap { display:block; position:relative; overflow:hidden; aspect-ratio:3/2; }
.berita-card-img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s ease; }
.berita-card:hover .berita-card-img { transform:scale(1.05); }
.berita-card-img-placeholder { width:100%; height:200px; background:linear-gradient(135deg,var(--navy),var(--navy-mid)); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,0.3); font-size:3rem; }
.berita-card-cat { position:absolute; top:12px; left:12px; background:var(--gold); color:var(--navy); font-size:0.7rem; font-weight:700; padding:4px 10px; border-radius:50px; letter-spacing:0.5px; text-transform:uppercase; }
.berita-card-body { padding:20px; }
.berita-card-meta { display:flex; gap:14px; flex-wrap:wrap; font-size:0.78rem; color:var(--gray-text); margin-bottom:10px; }
.berita-card-meta i { color:var(--gold); margin-right:4px; }
.berita-card-title { font-family:var(--font-display); font-size:1rem; font-weight:700; color:var(--navy); margin-bottom:8px; line-height:1.4; }
.berita-card-title a { color:var(--navy); transition:color 0.2s; }
.berita-card-title a:hover { color:var(--gold); }
.berita-card-excerpt { font-size:0.83rem; color:var(--gray-text); line-height:1.6; margin-bottom:14px; }
.berita-card-link { font-size:0.82rem; font-weight:600; color:var(--gold); display:inline-flex; align-items:center; gap:6px; transition:gap 0.2s; }
.berita-card-link:hover { gap:10px; }
.berita-section .btn { padding:12px 28px; }
@media(max-width:900px){ .berita-grid { grid-template-columns:1fr 1fr; } }
@media(max-width:600px){ .berita-grid { grid-template-columns:1fr; } }

/* ===== SINGLE POST ===== */
.single-thumbnail { border-radius:var(--radius-lg); overflow:hidden; margin-bottom:32px; }
.single-thumbnail img { width:100%; height:auto; display:block; }
.single-header { margin-bottom:32px; }
.single-title { font-family:var(--font-display); font-size:clamp(1.6rem,3vw,2.4rem); font-weight:800; color:var(--navy); line-height:1.3; margin-top:16px; }
/* ===== SINGLE POST / PAGE CONTENT ===== */
.single-content { font-size:1rem; line-height:1.8; color:var(--dark-text); }

/* Headings */
.single-content h2 {
  font-family:var(--font-display); font-size:clamp(1.3rem,2.5vw,1.7rem); font-weight:800;
  color:var(--navy); margin:40px 0 14px; padding-bottom:10px;
  border-bottom:3px solid var(--gold);
}
.single-content h3 {
  font-family:var(--font-display); font-size:1.15rem; font-weight:700;
  color:var(--navy-mid); margin:28px 0 10px;
  padding-left:14px; border-left:4px solid var(--gold);
}
.single-content h4 { font-weight:700; color:var(--navy); margin:20px 0 8px; }
.single-content p { margin-bottom:18px; }
.single-content a { color:var(--gold); text-decoration:underline; text-underline-offset:3px; }
.single-content a:hover { color:#B8922A; }

/* ===== TABEL ===== */
.single-content table {
  width:100%; border-collapse:collapse; margin:24px 0 32px;
  font-size:0.9rem; border-radius:var(--radius); overflow:hidden;
  box-shadow:0 2px 16px rgba(13,31,60,0.08);
}
.single-content thead tr { background:var(--navy); }
.single-content thead th {
  padding:14px 18px; text-align:left;
  color:var(--gold); font-weight:700; font-size:0.82rem; letter-spacing:0.5px;
}
.single-content tbody tr { border-bottom:1px solid var(--gray-light); transition:background 0.15s; }
.single-content tbody tr:nth-child(even) { background:#f9f7f2; }
.single-content tbody tr:hover { background:var(--gold-pale); }
.single-content tbody td { padding:13px 18px; color:var(--dark-text); vertical-align:top; line-height:1.5; }
.single-content tbody td:first-child { font-weight:600; color:var(--navy); }
@media(max-width:640px) {
  .single-content table { display:block; overflow-x:auto; -webkit-overflow-scrolling:touch; }
  .single-content thead th, .single-content tbody td { padding:10px 12px; }
}

/* ===== ORDERED LIST ===== */
.single-content ol { margin:16px 0 24px; padding:0; list-style:none; counter-reset:lpk-counter; }
.single-content ol li {
  counter-increment:lpk-counter; position:relative;
  padding:13px 16px 13px 58px; margin-bottom:10px;
  background:var(--white); border:1px solid var(--gray-light);
  border-radius:10px; font-size:0.92rem; line-height:1.6;
  transition:box-shadow 0.2s, border-color 0.2s;
}
.single-content ol li:hover { box-shadow:0 3px 12px rgba(13,31,60,0.08); border-color:rgba(201,168,76,0.4); }
.single-content ol li::before {
  content:counter(lpk-counter);
  position:absolute; left:14px; top:50%; transform:translateY(-50%);
  width:30px; height:30px; border-radius:50%;
  background:var(--navy); color:var(--gold);
  font-weight:800; font-size:0.8rem; line-height:1;
  display:flex; align-items:center; justify-content:center;
}

/* ===== UNORDERED LIST ===== */
.single-content ul { margin:16px 0 24px; padding:0; list-style:none; }
.single-content ul li {
  position:relative; padding:11px 16px 11px 44px;
  margin-bottom:8px; font-size:0.92rem; line-height:1.6;
  border-radius:8px; background:var(--white);
  border:1px solid var(--gray-light); transition:box-shadow 0.2s;
}
.single-content ul li:hover { box-shadow:0 2px 10px rgba(13,31,60,0.07); }
.single-content ul li::before {
  content:''; position:absolute; left:16px; top:50%; transform:translateY(-50%);
  width:9px; height:9px; border-radius:50%;
  background:var(--gold); box-shadow:0 0 0 3px rgba(201,168,76,0.2);
}

/* ===== BLOCKQUOTE ===== */
.single-content blockquote {
  border-left:4px solid var(--gold); padding:18px 22px; margin:28px 0;
  background:var(--gold-pale); border-radius:0 var(--radius) var(--radius) 0;
  font-style:italic; color:var(--navy-mid); font-size:0.97rem; line-height:1.7;
}
.single-content blockquote strong { color:var(--navy); font-style:normal; }

/* ===== HR ===== */
.single-content hr {
  border:none; height:2px; margin:36px 0;
  background:linear-gradient(to right, var(--gold), var(--gold-pale), transparent);
  border-radius:2px;
}

.single-content img { max-width:100%; border-radius:var(--radius); margin:16px 0; display:block; }
.single-tags { margin-top:32px; padding-top:20px; border-top:1px solid var(--gray-light); font-size:0.85rem; color:var(--gray-text); }
.single-tags a { color:var(--navy); background:var(--gray-light); padding:4px 10px; border-radius:50px; margin:0 4px 6px 0; display:inline-block; transition:background 0.2s; }
.single-tags a:hover { background:var(--gold-pale); color:var(--gold); }
.single-nav { display:flex; justify-content:space-between; margin-top:32px; padding-top:20px; border-top:1px solid var(--gray-light); }
.single-nav a { font-size:0.85rem; font-weight:600; color:var(--navy); max-width:45%; }
.single-nav a:hover { color:var(--gold); }

/* ===== BREADCRUMB ===== */
.breadcrumb { margin-bottom:24px; }
.breadcrumb ol { display:flex; flex-wrap:wrap; gap:8px; list-style:none; font-size:0.82rem; color:var(--gray-text); }
.breadcrumb li:not(:last-child)::after { content:'/'; margin-left:8px; }
.breadcrumb a { color:var(--gold); }
.breadcrumb .active { color:var(--navy); font-weight:600; }

/* ===== PAGINATION ===== */
.pagination { text-align:center; margin-top:48px; }
.pagination .page-numbers { display:inline-flex; align-items:center; justify-content:center; width:40px; height:40px; border-radius:8px; border:1px solid var(--gray-light); margin:0 4px; font-size:0.9rem; color:var(--navy); transition:var(--transition); }
.pagination .page-numbers.current,.pagination .page-numbers:hover { background:var(--gold); color:var(--navy); border-color:var(--gold); }

/* ===== WP MENU (handled above in navbar section) ===== */

/* ===== NAV LOGO IMG ===== */
.nav-logo-img { width:52px; height:52px; border-radius:50%; object-fit:cover; flex-shrink:0; border:2px solid var(--gold-pale); }

/* ===== GALERI WIDE ===== */
/* ===== GALERI ===== */
.galeri-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.galeri-item {
  position: relative; border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.galeri-item:hover { transform: scale(1.02); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
.galeri-item img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform 0.5s ease;
}
.galeri-item:hover img { transform: scale(1.06); }
.galeri-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,31,60,0.85) 0%, rgba(13,31,60,0.2) 50%, transparent 100%);
  display: flex; align-items: flex-end; padding: 16px;
  opacity: 0; transition: var(--transition);
}
.galeri-item:hover .galeri-overlay { opacity: 1; }
.galeri-label {
  color: #fff; font-size: 0.82rem; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.galeri-label i { color: var(--gold); }
.galeri-empty {
  grid-column: span 3; text-align: center;
  padding: 60px 20px; color: var(--gray-text);
}
.galeri-empty i { font-size: 3rem; opacity: 0.3; display: block; margin-bottom: 16px; }
@media(max-width:900px) {
  .galeri-grid { grid-template-columns: repeat(2, 1fr); }
  .galeri-empty { grid-column: span 2; }
}
@media(max-width:480px) {
  .galeri-grid { grid-template-columns: repeat(2, 1fr); }
  .galeri-empty { grid-column: span 2; }
}
.lightbox-btn { background:rgba(255,255,255,0.15); border:none; color:#fff; width:48px; height:48px; border-radius:50%; font-size:1.1rem; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background 0.2s; }
.lightbox-btn:hover { background:rgba(255,255,255,0.3); }
/* ===== LIGHTBOX BTNS ===== */
.lightbox-btn { background:rgba(255,255,255,0.15); border:none; color:#fff; width:48px; height:48px; border-radius:50%; font-size:1.1rem; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background 0.2s; }
.lightbox-btn:hover { background:rgba(255,255,255,0.3); }
.lightbox-close { position:absolute; top:20px; right:24px; }
.lightbox-prev { position:absolute; left:16px; top:50%; transform:translateY(-50%); }
.lightbox-next { position:absolute; right:16px; top:50%; transform:translateY(-50%); }

/* ===== SCREEN READER ONLY ===== */
.screen-reader-text { clip:rect(1px,1px,1px,1px); position:absolute!important; height:1px; width:1px; overflow:hidden; }

/* ===== COUNTER SECTION ===== */
.section-counter {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  position: relative; overflow: hidden;
}
.section-counter-overlay {
  position: absolute; inset: 0;
  background: rgba(13,31,60,0.72); z-index: 0;
}
.counter-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; text-align: center;
}
.counter-item {
  padding: 32px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.counter-item:last-child { border-right: none; }
.counter-item:hover { background: rgba(255,255,255,0.05); }
.counter-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--gold);
  margin: 0 auto 16px;
}
.counter-num {
  font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800; color: var(--white); line-height: 1;
  margin-bottom: 8px;
}
.counter-label {
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
  font-weight: 500; letter-spacing: 0.5px;
}
@media(max-width:768px) {
  .counter-grid { grid-template-columns: 1fr 1fr; }
  .counter-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .counter-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .counter-item:nth-last-child(-n+2) { border-bottom: none; }
}
@media(max-width:400px) {
  .counter-grid { grid-template-columns: 1fr 1fr; }
  .counter-num { font-size: 1.8rem; }
}

/* ===== FAQ SECTION ===== */
.faq-section { background: var(--off-white); }

/* Header */
.faq-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 24px; margin-bottom: 56px; flex-wrap: wrap;
}
.faq-header-icon {
  width: 80px; height: 80px; border-radius: 20px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--gold);
  box-shadow: var(--shadow-gold);
}

/* Grid 2 kolom */
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 48px;
  align-items: start;
}
.faq-col { display: flex; flex-direction: column; gap: 12px; }

/* Item */
.faq-item {
  background: var(--white); border-radius: var(--radius);
  border: 1.5px solid var(--gray-light);
  overflow: hidden; transition: var(--transition);
  box-shadow: 0 1px 6px rgba(13,31,60,0.04);
}
.faq-item:hover { border-color: rgba(201,168,76,0.4); box-shadow: var(--shadow-card); }
.faq-item.faq-open {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,168,76,0.15);
}

/* Pertanyaan */
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 18px 20px; display: flex; align-items: center; gap: 14px;
  text-align: left; transition: background 0.2s;
}
.faq-question:hover { background: var(--gold-pale); }
.faq-open .faq-question { background: var(--gold-pale); }
.faq-question-icon {
  width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; transition: transform 0.3s ease, background 0.2s;
}
.faq-open .faq-question-icon {
  background: var(--gold); color: var(--navy);
  transform: rotate(180deg);
}
.faq-question-text {
  font-weight: 600; font-size: 0.92rem; color: var(--navy);
  line-height: 1.4; flex: 1;
}
.faq-open .faq-question-text { color: var(--navy); }

/* Jawaban */
.faq-answer { overflow: hidden; }
.faq-answer[hidden] { display: none; }
.faq-answer-inner {
  padding: 0 20px 18px 66px;
  font-size: 0.88rem; color: var(--gray-text); line-height: 1.75;
  border-top: 1px solid var(--gray-light);
  padding-top: 14px;
}
.faq-answer-inner p { margin-bottom: 8px; }
.faq-answer-inner p:last-child { margin-bottom: 0; }
.faq-answer-inner strong { color: var(--navy); }
.faq-answer-inner ul, .faq-answer-inner ol { padding-left: 18px; margin: 8px 0; }
.faq-answer-inner li { margin-bottom: 4px; }

/* CTA bawah */
.faq-cta {
  display: flex; align-items: center; gap: 20px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg); padding: 28px 32px;
  flex-wrap: wrap;
}
.faq-cta-icon {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: rgba(37,211,102,0.2); border: 2px solid #25D366;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #25D366;
}
.faq-cta-text { font-weight: 700; font-size: 1rem; color: var(--white); margin-bottom: 4px; }
.faq-cta-sub  { font-size: 0.8rem; color: rgba(255,255,255,0.55); }
.faq-cta .btn { margin-left: auto; flex-shrink: 0; }

@media(max-width:900px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-header-icon { display: none; }
}
@media(max-width:600px) {
  .faq-cta { flex-direction: column; text-align: center; }
  .faq-cta .btn { margin-left: 0; width: 100%; justify-content: center; }
  .faq-answer-inner { padding-left: 20px; }
}
