/* =========================================================
   ASRAMA USK — Design System (ELKIFAH Production)
   Color: Navy #022f52 + Teal #2bb8c6
   Fonts: Poppins (headings) + Inter (body)
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  --navy: #022f52;
  --navy-light: #0a4a7a;
  --navy-dark: #011e35;
  --teal: #2bb8c6;
  --teal-light: #5fd3df;
  --teal-dark: #1e8a96;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --gold: #f59e0b;
  --green: #10b981;
  --coral: #ef4444;

  --hero-gradient: linear-gradient(135deg, #022f52 0%, #0a4a7a 50%, #2bb8c6 100%);
  --hero-overlay: rgba(2, 47, 82, 0.85);

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --shadow-sm: 0 1px 2px rgba(2, 47, 82, 0.05);
  --shadow-md: 0 4px 6px rgba(2, 47, 82, 0.07), 0 10px 15px rgba(2, 47, 82, 0.1);
  --shadow-lg: 0 10px 25px rgba(2, 47, 82, 0.1), 0 20px 40px rgba(2, 47, 82, 0.15);
  --shadow-teal: 0 4px 20px rgba(43, 184, 198, 0.25);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --max-width: 1200px;
  --section-gap: 80px;
  --nav-height: 68px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

h1 { font-size: clamp(2rem, 5vw, 2.75rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.25rem; }

a { color: var(--teal-dark); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--navy); }

img, svg { max-width: 100%; height: auto; display: block; }

ul, ol { padding-left: 1.25rem; }

/* ---------- Layout Helpers ---------- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 20px; }
.section { padding: var(--section-gap) 0; }
.section-sm { padding: 48px 0; }
.section-alt { background: var(--gray-50); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h2, .section-navy h3 { color: var(--white); }

.text-center { text-align: center; }
.text-teal { color: var(--teal-dark); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.text-gold { color: var(--gold); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 12px;
}

.section-title { margin-bottom: 16px; }
.section-desc { font-size: 1.1rem; color: var(--gray-600); max-width: 600px; margin: 0 auto; }
.section-navy .section-desc { color: rgba(255,255,255,0.85); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(43, 184, 198, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: var(--white);
}

.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  text-decoration: none;
}
.navbar-brand:hover { color: var(--navy); }
.navbar-brand svg { width: 36px; height: 36px; }
.navbar-brand span { line-height: 1.1; }
.navbar-brand .brand-sub { font-size: 0.65rem; font-weight: 500; color: var(--teal-dark); letter-spacing: 0.05em; text-transform: uppercase; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  display: block;
  padding: 8px 14px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-menu a:hover { color: var(--navy); background: var(--gray-100); }
.nav-menu a.active { color: var(--teal-dark); font-weight: 600; }

.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--navy);
  border-radius: 3px;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--hero-gradient);
  overflow: hidden;
  padding-top: var(--nav-height);
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(43,184,198,0.25) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(43,184,198,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 60px 20px;
}
.hero h1 { color: var(--white); font-size: clamp(2.2rem, 6vw, 3.5rem); margin-bottom: 20px; }
.hero p { color: rgba(255,255,255,0.9); font-size: clamp(1rem, 2.5vw, 1.2rem); margin-bottom: 32px; max-width: 580px; }
.hero .btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 24px;
}

/* Sub hero (untuk sub-pages) */
.hero-sub {
  background: var(--hero-gradient);
  color: var(--white);
  padding: calc(var(--nav-height) + 60px) 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-sub::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(43,184,198,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-sub h1 { color: var(--white); margin-bottom: 16px; }
.hero-sub p { color: rgba(255,255,255,0.9); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }

/* ---------- Stats Counter ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.stat-card {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
}
.stat-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number .suffix { color: var(--teal-light); }
.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* ---------- Card Grid ---------- */
.grid {
  display: grid;
  gap: 24px;
}
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
}
.card-icon.teal {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
}
.card-icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.card p { color: var(--gray-600); font-size: 0.95rem; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--teal-dark);
}
.card-link:hover { color: var(--navy); gap: 8px; }

/* ---------- Feature Card (with gradient bg) ---------- */
.feature-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  color: var(--white);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.feature-card.f1 { background: linear-gradient(135deg, #022f52, #0a4a7a); }
.feature-card.f2 { background: linear-gradient(135deg, #0a4a7a, #2bb8c6); }
.feature-card.f3 { background: linear-gradient(135deg, #1e8a96, #2bb8c6); }
.feature-card h3 { color: var(--white); margin-bottom: 10px; }
.feature-card p { color: rgba(255,255,255,0.9); font-size: 0.95rem; }
.feature-card .feature-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3rem;
  color: rgba(255,255,255,0.15);
  line-height: 1;
}

/* ---------- Testimoni ---------- */
.testimoni {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--teal);
  position: relative;
}
.testimoni::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  right: 24px;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--gray-200);
  line-height: 1;
}
.testimoni p { font-size: 1.1rem; color: var(--gray-700); margin-bottom: 20px; position: relative; z-index: 1; }
.testimoni .author { font-family: var(--font-heading); font-weight: 600; color: var(--navy); }
.testimoni .author-role { font-size: 0.85rem; color: var(--gray-600); }

/* ---------- Timeline ---------- */
.timeline { position: relative; padding-left: 40px; max-width: 700px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--teal), var(--navy));
  border-radius: 3px;
}
.timeline-item { position: relative; margin-bottom: 28px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -34px;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--teal);
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--teal);
}
.timeline-time {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--teal-dark);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.timeline-content h4 { font-size: 1.1rem; margin-bottom: 4px; }
.timeline-content p { font-size: 0.9rem; color: var(--gray-600); }

/* ---------- Steps (Pendaftaran) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.step-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px 24px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--teal);
}
.step-card::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -20px;
  left: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
}
.step-card h4 { margin-bottom: 8px; padding-top: 8px; }
.step-card p { font-size: 0.9rem; color: var(--gray-600); }

/* ---------- FAQ Accordion ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
}
.faq-question:hover { color: var(--teal-dark); }
.faq-chevron {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 500px; padding: 0 24px 20px; }
.faq-answer p { color: var(--gray-600); font-size: 0.95rem; }

/* ---------- Info Rule Card ---------- */
.rule-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--teal);
  transition: var(--transition);
}
.rule-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.rule-card .rule-icon { font-size: 2rem; margin-bottom: 12px; }
.rule-card h4 { margin-bottom: 8px; }
.rule-card p { font-size: 0.9rem; color: var(--gray-600); }

/* ---------- Facility Grid ---------- */
.facility-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.facility-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal); }
.facility-card .facility-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
}
.facility-card h4 { font-size: 1rem; margin-bottom: 6px; }
.facility-card p { font-size: 0.85rem; color: var(--gray-600); }

/* ---------- Berita Cards ---------- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-thumb {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.blog-thumb-1 { background: linear-gradient(135deg, #022f52, #2bb8c6); }
.blog-thumb-2 { background: linear-gradient(135deg, #0a4a7a, #5fd3df); }
.blog-thumb-3 { background: linear-gradient(135deg, #1e8a96, #2bb8c6); }
.blog-thumb-4 { background: linear-gradient(135deg, #022f52, #1e8a96); }
.blog-thumb-5 { background: linear-gradient(135deg, #0a4a7a, #2bb8c6); }
.blog-thumb-6 { background: linear-gradient(135deg, #011e35, #0a4a7a); }
.blog-thumb svg, .blog-thumb .thumb-emoji {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  opacity: 0.4;
}
.blog-body { padding: 24px; }
.blog-category {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--teal-dark);
  background: rgba(43, 184, 198, 0.1);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.blog-body h3 { font-size: 1.15rem; margin-bottom: 8px; line-height: 1.4; }
.blog-body p { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 16px; }
.blog-meta { font-size: 0.8rem; color: var(--gray-400); }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-item .gallery-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.6);
}
.gallery-item .gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(2,47,82,0.9), transparent);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ---------- Org Chart ---------- */
.org-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.org-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.org-card:hover { transform: translateY(-4px); border-color: var(--teal); }
.org-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  color: var(--white);
}
.org-card h4 { margin-bottom: 4px; }
.org-role { font-size: 0.85rem; color: var(--teal-dark); font-weight: 500; margin-bottom: 4px; }
.org-faculty { font-size: 0.8rem; color: var(--gray-600); }

/* ---------- Sambutan Box ---------- */
.sambutan-box {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.sambutan-avatar {
  width: 180px;
  height: 180px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3rem;
  color: var(--white);
}
.sambutan-box blockquote {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 3px solid var(--teal);
}
.sambutan-box .author-name { font-family: var(--font-heading); font-weight: 700; color: var(--navy); }
.sambutan-box .author-title { font-size: 0.9rem; color: var(--gray-600); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info-list { list-style: none; padding: 0; }
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
}
.contact-info-list li:last-child { border-bottom: none; }
.contact-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-list .ci-label { font-size: 0.8rem; color: var(--gray-600); }
.contact-info-list .ci-value { font-family: var(--font-heading); font-weight: 600; color: var(--navy); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-700);
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(43,184,198,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ---------- Map Embed ---------- */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.map-embed iframe { width: 100%; height: 400px; border: 0; display: block; }

/* ---------- Download List ---------- */
.download-list { display: grid; gap: 12px; }
.download-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.download-item:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.download-item .dl-name { font-family: var(--font-heading); font-weight: 500; color: var(--navy); font-size: 0.9rem; }
.download-item .dl-btn {
  font-size: 0.85rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--teal-dark);
  white-space: nowrap;
}

/* ---------- Visi Misi ---------- */
.visi-misi-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}
.visi-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
}
.visi-card h3 { color: var(--white); margin-bottom: 16px; }
.visi-card p { color: rgba(255,255,255,0.9); font-size: 1.05rem; line-height: 1.8; }
.misi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
}
.misi-card h3 { margin-bottom: 20px; }
.misi-card ol { padding-left: 1.5rem; }
.misi-card ol li { margin-bottom: 12px; color: var(--gray-700); }

/* ---------- CTA Section ---------- */
.cta-section {
  background: var(--hero-gradient);
  color: var(--white);
  text-align: center;
  padding: 64px 20px;
  border-radius: var(--radius-xl);
  margin: 0 auto;
  max-width: var(--max-width);
}
.cta-section h2 { color: var(--white); margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.9); margin-bottom: 28px; }
.cta-section .btn-group { justify-content: center; }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand h4 { color: var(--white); margin-bottom: 12px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-col h5 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-col ul li a:hover { color: var(--teal-light); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.footer-contact-item svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; color: var(--teal-light); }

.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--teal); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.85rem; margin: 0; }
.footer-credit {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.footer-credit span { color: var(--teal-light); font-weight: 600; }

/* ---------- WhatsApp Float ---------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; fill: var(--white); }

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---------- Table ---------- */
.table-wrap { overflow-x: auto; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
table th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 14px 16px;
  text-align: left;
}
table td { padding: 14px 16px; border-bottom: 1px solid var(--gray-200); }
table tr:nth-child(even) td { background: var(--gray-50); }

/* ---------- Badge / Pill ---------- */
.badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}
.badge-teal { background: rgba(43,184,198,0.15); color: var(--teal-dark); }
.badge-gold { background: rgba(245,158,11,0.15); color: var(--gold); }
.badge-green { background: rgba(16,185,129,0.15); color: var(--green); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .sambutan-box { grid-template-columns: 160px 1fr; padding: 32px; }
  .sambutan-avatar { width: 140px; height: 140px; font-size: 2.5rem; }
  .visi-misi-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-gap: 56px; --nav-height: 60px; }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid var(--gray-200);
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
  }
  .nav-menu.active { transform: translateY(0); }
  .nav-menu a { padding: 14px 16px; font-size: 1rem; }
  .nav-cta { margin: 8px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .nav-toggle { display: flex; }

  .hero { min-height: auto; padding: calc(var(--nav-height) + 40px) 0 48px; }
  .hero-inner { padding: 0 20px; }

  .contact-grid { grid-template-columns: 1fr; }
  .sambutan-box { grid-template-columns: 1fr; text-align: center; }
  .sambutan-avatar { margin: 0 auto; }
  .sambutan-box blockquote { padding-left: 0; border-left: none; border-top: 3px solid var(--teal); padding-top: 16px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cta-section { border-radius: var(--radius-md); }
}

@media (max-width: 480px) {
  .container, .container-narrow { padding: 0 16px; }
  .btn { padding: 10px 22px; font-size: 0.9rem; }
  .hero .btn-group { flex-direction: column; align-items: stretch; }
  .hero .btn-group .btn { width: 100%; justify-content: center; }
  .stat-card { padding: 24px 16px; }
  .testimoni { padding: 28px 20px; }
  .contact-form { padding: 24px 20px; }
}

/* ---------- Print ---------- */
@media print {
  .navbar, .nav-toggle, .wa-float, .footer-social { display: none; }
  .hero, .hero-sub { min-height: auto; padding: 20px 0; }
  body { color: #000; }
}
