/* ===== AKYRA TRAVEL – DESIGN SYSTEM ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=Amiri:wght@400;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --emerald-50: #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-200: #a7f3d0;
  --emerald-300: #6ee7b7;
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --emerald-800: #065f46;
  --emerald-900: #064e3b;

  --gold-50: #fffbeb;
  --gold-100: #fef3c7;
  --gold-200: #fde68a;
  --gold-300: #fcd34d;
  --gold-400: #fbbf24;
  --gold-500: #f59e0b;
  --gold-600: #d97706;
  --gold-700: #b45309;

  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --white: #ffffff;
  --bg-primary: var(--white);
  --bg-section: var(--gray-50);
  --text-primary: var(--gray-800);
  --text-secondary: var(--gray-500);
  --text-heading: var(--gray-900);

  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.08), 0 8px 10px -6px rgba(0,0,0,.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,.15);
  --shadow-gold: 0 10px 40px -10px rgba(245,158,11,.3);
  --shadow-emerald: 0 10px 40px -10px rgba(16,185,129,.25);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  --transition: all .35s cubic-bezier(.4,0,.2,1);
  --transition-fast: all .2s cubic-bezier(.4,0,.2,1);
  --transition-slow: all .6s cubic-bezier(.4,0,.2,1);

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-arabic: 'Amiri', serif;

  --container-max: 1200px;
  --section-py: 100px;
  --navbar-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--emerald-600);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald-400), var(--gold-400));
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-subtitle {
  margin: 0 auto;
}

.gold-text {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300), var(--gold-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.emerald-text {
  color: var(--emerald-600);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: .95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--emerald-600), var(--emerald-500));
  color: var(--white);
  box-shadow: var(--shadow-emerald);
}
.btn-primary::before { background: linear-gradient(135deg, var(--emerald-700), var(--emerald-600)); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { box-shadow: 0 14px 44px -10px rgba(16,185,129,.4); }

.btn-secondary {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.5);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--gray-900);
  box-shadow: var(--shadow-gold);
}
.btn-gold::before { background: linear-gradient(135deg, var(--gold-600), var(--gold-500)); }
.btn-gold:hover::before { opacity: 1; }
.btn-gold:hover { color: var(--white); box-shadow: 0 14px 44px -10px rgba(245,158,11,.45); }

.btn-outline {
  background: transparent;
  color: var(--emerald-600);
  border: 2px solid var(--emerald-500);
}
.btn-outline:hover {
  background: var(--emerald-600);
  color: var(--white);
  border-color: var(--emerald-600);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  box-shadow: 0 10px 40px -10px rgba(37,211,102,.35);
}
.btn-whatsapp:hover {
  box-shadow: 0 14px 44px -10px rgba(37,211,102,.5);
}

.btn-sm { padding: 10px 22px; font-size: .85rem; }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }

/* ---------- Badges ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 14px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  border-radius: var(--radius-full);
}
.badge-promo {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--gray-900);
}
.badge-bestseller {
  background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
  color: var(--white);
}
.badge-online {
  background: rgba(16,185,129,.12);
  color: var(--emerald-700);
}
.badge-terbatas {
  background: rgba(239,68,68,.1);
  color: #dc2626;
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,.4); }
  50% { box-shadow: 0 0 0 15px rgba(16,185,129,0); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate { opacity: 0; }
.animate.show { animation-fill-mode: both; }
.animate.show.fade-up { animation: fadeInUp .7s ease forwards; }
.animate.show.fade-left { animation: fadeInLeft .7s ease forwards; }
.animate.show.fade-right { animation: fadeInRight .7s ease forwards; }
.animate.show.scale-in { animation: scaleIn .7s ease forwards; }

/* Stagger */
.delay-1 { animation-delay: .1s !important; }
.delay-2 { animation-delay: .2s !important; }
.delay-3 { animation-delay: .3s !important; }
.delay-4 { animation-delay: .4s !important; }
.delay-5 { animation-delay: .5s !important; }
.delay-6 { animation-delay: .6s !important; }

/* ===================================================================
   NAVBAR
   =================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  box-shadow: 0 1px 20px rgba(0,0,0,.06);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}
.navbar.scrolled .nav-logo { color: var(--emerald-700); }
.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--emerald-500), var(--gold-400));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  padding: 8px 18px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}
.nav-link:hover {
  background: rgba(255,255,255,.15);
  color: var(--white);
}
.navbar.scrolled .nav-link {
  color: var(--gray-600);
}
.navbar.scrolled .nav-link:hover {
  background: var(--emerald-50);
  color: var(--emerald-700);
}
.nav-link.active {
  background: rgba(255,255,255,.2);
  color: var(--white);
}
.navbar.scrolled .nav-link.active {
  background: var(--emerald-50);
  color: var(--emerald-700);
}

.nav-cta {
  padding: 10px 24px;
  font-size: .85rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--gray-900);
  border-radius: var(--radius-full);
  transition: var(--transition);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-fast);
}
.navbar.scrolled .nav-toggle span { background: var(--gray-700); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===================================================================
   HERO SECTION
   =================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6,78,59,.7) 0%,
    rgba(6,78,59,.55) 40%,
    rgba(17,24,39,.75) 100%
  );
  z-index: 1;
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}
.hero-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(252,211,77,.5);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
}
.hero-arabic {
  font-family: var(--font-arabic);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--gold-300);
  margin-bottom: 20px;
  opacity: .9;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
}
.hero-title .highlight {
  display: block;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500), var(--gold-300));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.8);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: .5px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat {
  text-align: center;
}
.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-300);
}
.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-400), transparent);
  animation: pulse-glow 2s infinite;
}

/* ===================================================================
   PROMO SECTION
   =================================================================== */
.promo-section {
  padding: var(--section-py) 0;
  background: var(--bg-primary);
  overflow: hidden;
}

.promo-slider {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 20px 0;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.promo-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.promo-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}
.promo-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.promo-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.promo-card:hover .promo-card-img img {
  transform: scale(1.08);
}
.promo-card-img .badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}
.promo-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.promo-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}
.promo-card-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--emerald-600);
  margin-bottom: 16px;
}
.promo-card-price small {
  font-size: .78rem;
  font-weight: 400;
  color: var(--text-secondary);
  text-decoration: line-through;
  margin-left: 6px;
}
.promo-card-body .btn {
  margin-top: auto;
}

.promo-nav {
  display: none;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.promo-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gray-600);
  transition: var(--transition-fast);
}
.promo-nav-btn:hover {
  background: var(--emerald-600);
  border-color: var(--emerald-600);
  color: var(--white);
}

/* ===================================================================
   TRUST / KEUNGGULAN
   =================================================================== */
.trust-section {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, var(--emerald-900) 0%, var(--emerald-800) 50%, var(--gray-900) 100%);
  position: relative;
  overflow: hidden;
}
.trust-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(252,211,77,.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.trust-section .section-label { color: var(--gold-400); }
.trust-section .section-title { color: var(--white); }
.trust-section .section-subtitle { color: rgba(255,255,255,.6); }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.trust-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-6px);
  border-color: rgba(252,211,77,.3);
}
.trust-card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
  color: var(--gray-900);
}
.trust-card-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.trust-card-label {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
}

/* ===================================================================
   PAKET UMRAH
   =================================================================== */
.paket-section {
  padding: var(--section-py) 0;
  background: var(--bg-section);
}

.paket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.paket-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
}
.paket-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}
.paket-card.featured {
  border: 2px solid var(--gold-400);
}
.paket-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-400), var(--emerald-400), var(--gold-400));
  z-index: 2;
}

.paket-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.paket-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.paket-card:hover .paket-card-img img {
  transform: scale(1.08);
}
.paket-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 60%);
}
.paket-card-img .badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
}
.paket-card-img .paket-price-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
}
.paket-price-tag {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}
.paket-price-tag small {
  font-size: .75rem;
  font-weight: 400;
  opacity: .8;
}

.paket-card-body {
  padding: 28px;
}
.paket-card-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 16px;
}

.paket-features {
  margin-bottom: 24px;
}
.paket-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: .9rem;
  color: var(--gray-600);
}
.paket-features li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--emerald-50);
  color: var(--emerald-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.paket-card-actions {
  display: flex;
  gap: 12px;
}
.paket-card-actions .btn { flex: 1; justify-content: center; }

/* ===================================================================
   BOOKING SECTION
   =================================================================== */
.booking-section {
  padding: var(--section-py) 0;
  background: var(--bg-primary);
}
.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.booking-info h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 16px;
  line-height: 1.2;
}
.booking-info p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}
.booking-features-list {
  margin-bottom: 0;
}
.booking-features-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  font-size: .95rem;
  color: var(--gray-700);
}
.booking-features-list li .icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--emerald-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.booking-form {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 40px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: .95rem;
  transition: var(--transition-fast);
  background: var(--gray-50);
  color: var(--text-primary);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--emerald-400);
  box-shadow: 0 0 0 3px rgba(16,185,129,.12);
  background: var(--white);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ===================================================================
   VIDEO SECTION
   =================================================================== */
.video-section {
  padding: var(--section-py) 0;
  background: var(--gray-900);
  overflow: hidden;
}
.video-section .section-label { color: var(--gold-400); }
.video-section .section-title { color: var(--white); }
.video-section .section-subtitle { color: rgba(255,255,255,.6); }

.video-slider {
  position: relative;
  margin-top: 40px;
}
.video-container {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0 24px;
}
.video-container::-webkit-scrollbar { display: none; }

.video-card {
  flex: 0 0 560px;
  scroll-snap-align: center;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  background: var(--gray-800);
}
.video-card img,
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.video-card:hover .video-card-overlay {
  background: rgba(0,0,0,.15);
}
.video-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  transition: var(--transition);
}
.video-card:hover .video-play-btn {
  background: var(--gold-500);
  border-color: var(--gold-500);
  transform: scale(1.1);
}
.video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
}
.video-info h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
}
.video-info p {
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  margin-top: 4px;
}

/* ===================================================================
   GALERI SECTION
   =================================================================== */
.galeri-section {
  padding: var(--section-py) 0;
  background: var(--bg-section);
}

.galeri-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.galeri-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.galeri-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.galeri-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.galeri-item:hover img {
  transform: scale(1.1);
}
.galeri-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,78,59,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.galeri-item:hover .galeri-item-overlay {
  opacity: 1;
}
.galeri-item-overlay span {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  transform: scale(.7);
  transition: var(--transition);
}
.galeri-item:hover .galeri-item-overlay span {
  transform: scale(1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  transition: var(--transition);
}
.lightbox.active {
  display: flex;
  opacity: 1;
}
.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.lightbox-close:hover {
  background: rgba(255,255,255,.2);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.lightbox-nav:hover { background: rgba(255,255,255,.2); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ===================================================================
   USTADZ SECTION
   =================================================================== */
.ustadz-section {
  padding: var(--section-py) 0;
  background: var(--bg-primary);
}

.ustadz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.ustadz-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}
.ustadz-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--emerald-200);
}

.ustadz-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 4px solid var(--emerald-100);
  position: relative;
}
.ustadz-avatar::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--emerald-400), var(--gold-400)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.ustadz-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ustadz-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 4px;
}
.ustadz-spec {
  font-size: .85rem;
  color: var(--emerald-600);
  font-weight: 500;
  margin-bottom: 12px;
}
.ustadz-desc {
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ===================================================================
   JADWAL KAJIAN
   =================================================================== */
.jadwal-section {
  padding: var(--section-py) 0;
  background: var(--bg-section);
}

.jadwal-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.jadwal-item {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}
.jadwal-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--emerald-200);
}

.jadwal-date {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.jadwal-date-day {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}
.jadwal-date-month {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: .8;
}

.jadwal-info {
  flex: 1;
}
.jadwal-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 4px;
}
.jadwal-meta {
  display: flex;
  gap: 16px;
  font-size: .85rem;
  color: var(--text-secondary);
}
.jadwal-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.jadwal-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* ===================================================================
   SOCIAL MEDIA SECTION
   =================================================================== */
.social-section {
  padding: var(--section-py) 0;
  background: var(--bg-primary);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.social-card {
  border-radius: var(--radius-2xl);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}
.social-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: var(--transition);
}
.social-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
}
.social-card:hover::before { opacity: 1; }

.social-card.instagram { background: var(--white); }
.social-card.instagram::before {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  opacity: 0;
}
.social-card.instagram:hover { color: var(--white); }
.social-card.instagram:hover::before { opacity: 1; }

.social-card.tiktok { background: var(--white); }
.social-card.tiktok::before { background: #010101; }
.social-card.tiktok:hover { color: var(--white); }
.social-card.tiktok:hover::before { opacity: 1; }

.social-card.youtube { background: var(--white); }
.social-card.youtube::before { background: #ff0000; }
.social-card.youtube:hover { color: var(--white); }
.social-card.youtube:hover::before { opacity: 1; }

.social-card-content {
  position: relative;
  z-index: 2;
}
.social-card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.social-card-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.social-card-handle {
  font-size: .9rem;
  opacity: .7;
  margin-bottom: 20px;
}

/* ===================================================================
   CTA SECTION
   =================================================================== */
.cta-section {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, var(--emerald-800) 0%, var(--emerald-900) 50%, var(--gray-900) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252,211,77,.1) 0%, transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}
.cta-section .cta-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}
.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}
.cta-section p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 36px;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================================================================
   FOOTER
   =================================================================== */
.footer {
  background: var(--gray-900);
  padding: 80px 0 0;
  color: rgba(255,255,255,.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .nav-logo {
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: .9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: .9rem;
  transition: var(--transition-fast);
}
.footer-links a:hover { color: var(--gold-400); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .9rem;
}
.footer-contact-icon {
  font-size: 1rem;
  margin-top: 2px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition-fast);
}
.footer-social a:hover {
  background: var(--emerald-600);
  color: var(--white);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
}
.footer-legal {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-legal img {
  height: 28px;
}

/* ===================================================================
   WHATSAPP FLOATING
   =================================================================== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
}
.wa-float a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 8px 30px rgba(37,211,102,.4);
  transition: var(--transition);
  animation: pulse-glow 2.5s infinite;
}
.wa-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37,211,102,.55);
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1024px) {
  .promo-slider { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .paket-grid { grid-template-columns: repeat(2, 1fr); }
  .ustadz-grid { grid-template-columns: repeat(2, 1fr); }
  .galeri-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
  .booking-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .video-card { flex: 0 0 420px; }
}

@media (max-width: 768px) {
  :root {
    --section-py: 70px;
    --navbar-h: 64px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 4px;
    align-items: stretch;
    transition: var(--transition);
    box-shadow: -10px 0 40px rgba(0,0,0,.1);
  }
  .nav-menu.open { right: 0; }
  .nav-link {
    color: var(--gray-700) !important;
    padding: 12px 16px;
    border-radius: var(--radius-md);
  }
  .nav-link:hover { background: var(--emerald-50) !important; color: var(--emerald-700) !important; }
  .nav-cta {
    margin-top: 16px;
    text-align: center;
  }
  .nav-toggle { display: flex; }

  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-stat-number { font-size: 1.5rem; }

  .trust-grid { grid-template-columns: 1fr 1fr; }
  .paket-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .ustadz-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .promo-slider { grid-template-columns: 1fr 1fr; }
  .social-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .galeri-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .galeri-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .jadwal-item {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .jadwal-meta { justify-content: center; flex-wrap: wrap; }
  .jadwal-actions { width: 100%; justify-content: center; }

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

  .video-card { flex: 0 0 300px; }

  .promo-card { flex: 0 0 290px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .promo-slider { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 280px; justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 280px; justify-content: center; }
  .booking-form { padding: 28px 20px; }
  .paket-card-actions { flex-direction: column; }
}
