/*
Theme Name: Travel Jember
Theme URI: https://traveljember.id
Author: Travel Jember
Author URI: https://traveljember.id
Description: Tema WordPress profesional untuk Travel Jember - Layanan Shuttle Travel Jember dengan dominan warna pink, struktur mirip lintasnusa.id
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: traveljember
Tags: travel, transport, shuttle, pink, responsive, one-page
*/

/* ==========================================
   CSS VARIABLES & ROOT
   ========================================== */
:root {
  --pink-primary:   #e91e8c;
  --pink-light:     #ff6bb8;
  --pink-lighter:   #ffd6ee;
  --pink-dark:      #b5006e;
  --pink-ultralight:#fff0f8;
  --white:          #ffffff;
  --dark:           #1a1a2e;
  --dark-mid:       #2d2d44;
  --gray:           #6b7280;
  --gray-light:     #f3f4f6;
  --gray-border:    #e5e7eb;
  --text-body:      #374151;
  --text-heading:   #1a1a2e;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Nunito', 'Helvetica Neue', sans-serif;

  --shadow-sm:  0 1px 3px rgba(233,30,140,0.08);
  --shadow-md:  0 4px 20px rgba(233,30,140,0.12);
  --shadow-lg:  0 12px 40px rgba(233,30,140,0.18);
  --shadow-xl:  0 20px 60px rgba(233,30,140,0.22);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

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

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

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-heading);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p  { font-size: 1rem; line-height: 1.75; }

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 900px; }
.section-pad { padding: 80px 0; }
.section-pad--lg { padding: 110px 0; }
.text-center { text-align: center; }
.text-pink { color: var(--pink-primary); }
.bg-pink { background: var(--pink-primary); }
.bg-pink-light { background: var(--pink-ultralight); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn--primary {
  background: var(--pink-primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(233,30,140,0.35);
}
.btn--primary:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(233,30,140,0.45);
  color: var(--white);
}
.btn--outline {
  background: transparent;
  color: var(--pink-primary);
  border-color: var(--pink-primary);
}
.btn--outline:hover {
  background: var(--pink-primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--white {
  background: var(--white);
  color: var(--pink-primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.btn--white:hover {
  background: var(--pink-ultralight);
  transform: translateY(-2px);
}
.btn--lg { padding: 18px 40px; font-size: 1rem; }

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-heading);
  margin-bottom: 16px;
}
.section-title span { color: var(--pink-primary); }
.section-subtitle {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 50px;
}
.section-badge {
  display: inline-block;
  background: var(--pink-lighter);
  color: var(--pink-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 14px;
}
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--pink-primary), var(--pink-light));
  border-radius: 99px;
  margin: 16px auto 0;
}

/* ==========================================
   HEADER / NAVBAR
   ========================================== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(233,30,140,0.1);
  transition: var(--transition);
}
#site-header.scrolled {
  box-shadow: 0 4px 24px rgba(233,30,140,0.12);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pink-primary);
}
.navbar__logo img {
  height: 42px;
  width: auto;
}
.navbar__logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--pink-primary), var(--pink-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.navbar__nav > li { position: relative; }
.navbar__nav > li > a {
  display: block;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.navbar__nav > li > a:hover {
  color: var(--pink-primary);
  background: var(--pink-ultralight);
}
/* Dropdown */
.navbar__nav .has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  min-width: 240px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  border: 1px solid var(--gray-border);
}
.dropdown li a {
  display: block;
  padding: 10px 14px;
  font-size: 0.88rem;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  font-weight: 500;
}
.dropdown li a:hover {
  color: var(--pink-primary);
  background: var(--pink-ultralight);
}
/* Sub-dropdown */
.dropdown .has-subdropdown { position: relative; }
.dropdown .has-subdropdown:hover .subdropdown { opacity: 1; visibility: visible; transform: translateX(0); }
.subdropdown {
  position: absolute;
  top: 0;
  left: calc(100% + 4px);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: var(--transition);
  border: 1px solid var(--gray-border);
}

.navbar__cta { display: flex; align-items: center; gap: 10px; }
.navbar__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--text-heading);
  font-size: 1.4rem;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff0f8 0%, #ffe4f4 40%, #ffd6ee 100%);
  padding-top: 72px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(233,30,140,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,107,184,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(233,30,140,0.1);
  color: var(--pink-dark);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 18px;
  border-radius: 99px;
  border: 1px solid rgba(233,30,140,0.2);
  margin-bottom: 20px;
}
.hero__badge::before { content: '✦'; }
.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--dark);
}
.hero__title span {
  color: var(--pink-primary);
  display: block;
}
.hero__routes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.hero__route-tag {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 99px;
  padding: 5px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-body);
  box-shadow: var(--shadow-sm);
}
.hero__desc {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Animasi masuk otomatis pakai CSS keyframe — tidak bergantung JS/IntersectionObserver */
.hero__image-wrap--animate {
  animation: heroImageIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}
@keyframes heroImageIn {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
.hero__image-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 24px;
  width: 100%;
  max-width: 440px;
  position: relative;
}
.hero__image-card img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.hero__floating-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.85rem;
}
.hero__floating-badge--1 { bottom: -10px; left: -20px; color: var(--pink-primary); }
.hero__floating-badge--2 { top: -10px; right: -20px; color: var(--dark); }
.hero__floating-badge .badge-icon {
  width: 36px;
  height: 36px;
  background: var(--pink-ultralight);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* ── VIDEO dalam bingkai hero ── */
.hero__image-card--video { padding: 0; overflow: hidden; }
.hero__video-wrap {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark);
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(0,0,0,0.25) 100%
  );
  pointer-events: none;
  border-radius: var(--radius-lg);
}
.hero__video-mute {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.45);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2;
  backdrop-filter: blur(4px);
}
.hero__video-mute:hover { background: var(--pink-primary); transform: scale(1.1); }

/* ── Placeholder belum ada media ── */
.hero__placeholder {
  height: 300px;
  background: linear-gradient(135deg, var(--pink-lighter) 0%, var(--pink-ultralight) 100%);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  text-align: center;
  padding: 20px;
}
.hero__placeholder i {
  font-size: 3rem;
  color: var(--pink-light);
}
.hero__placeholder-title {
  color: var(--pink-dark);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.hero__placeholder-hint {
  color: var(--gray);
  font-size: 0.78rem;
  line-height: 1.5;
}

/* ==========================================
   WHY US SECTION
   ========================================== */
.why-us { background: var(--white); }
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.why-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 2px solid var(--gray-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--pink-ultralight), transparent);
  opacity: 0;
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--pink-light);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.why-card:hover::before { opacity: 1; }
.why-card__icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--pink-primary), var(--pink-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  position: relative;
  z-index: 1;
}
.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--gray);
  position: relative;
  z-index: 1;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services { background: var(--pink-ultralight); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card__image {
  height: 200px;
  background: linear-gradient(135deg, var(--pink-primary), var(--pink-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card__body { padding: 24px; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.service-card p { font-size: 0.88rem; color: var(--gray); }

/* ==========================================
   SCHEDULE & TARIFF SECTION
   ========================================== */
.schedule { background: var(--white); }

/* Desktop grid — 3 kolom */
.schedule__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.schedule-card {
  background: var(--white);
  border: 2px solid var(--gray-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.schedule-card:hover {
  border-color: var(--pink-primary);
  box-shadow: var(--shadow-md);
}
.schedule-card__header {
  background: linear-gradient(135deg, var(--pink-primary), var(--pink-dark));
  color: var(--white);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.schedule-card__header-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.18);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.schedule-card__header h3 {
  color: var(--white);
  font-size: 0.97rem;
  margin: 0;
  line-height: 1.3;
}
.schedule-card__header a { color: var(--white); }
.schedule-card__body {
  padding: 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.schedule-info { margin-bottom: 14px; }
.schedule-info__label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--pink-primary);
  margin-bottom: 6px;
}
.schedule-info__rows { display: flex; flex-direction: column; gap: 4px; }
.schedule-info__row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.83rem;
}
.schedule-info__row-kota {
  font-weight: 700;
  color: var(--dark);
  min-width: 90px;
  flex-shrink: 0;
}
.schedule-info__row-waktu {
  color: var(--text-body);
  line-height: 1.4;
}
.schedule-divider {
  height: 1px;
  background: var(--gray-border);
  margin: 12px 0;
}
.price-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--pink-primary);
  margin-bottom: 8px;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px dashed var(--gray-border);
}
.price-row:last-child { border-bottom: none; }
.price-route { font-size: 0.83rem; color: var(--text-body); font-weight: 500; }
.price-amount {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--pink-primary);
  white-space: nowrap;
  margin-left: 8px;
}
.schedule-card__cta {
  margin-top: auto;
  padding-top: 14px;
}
.schedule-card__cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  background: var(--pink-ultralight);
  color: var(--pink-primary);
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 700;
  transition: var(--transition);
}
.schedule-card__cta a:hover {
  background: var(--pink-primary);
  color: white;
}

/* ── MOBILE: horizontal scroll snap ── */
@media (max-width: 767px) {
  .schedule__section-wrap {
    /* allow bleed past container padding */
    margin-left: -24px;
    margin-right: -24px;
  }
  .schedule__grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding: 8px 24px 20px;
    margin-top: 30px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .schedule__grid::-webkit-scrollbar { display: none; }

  .schedule-card {
    flex: 0 0 88vw;
    max-width: 340px;
    scroll-snap-align: start;
    border-radius: var(--radius-lg);
  }

  /* ── Font lebih besar & padding lebih longgar di mobile ── */
  .schedule-card__header {
    padding: 18px 20px;
    gap: 12px;
  }
  .schedule-card__header h3 {
    font-size: 1.05rem;   /* naik dari 0.97 → 1.05 */
    line-height: 1.35;
  }
  .schedule-card__header-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .schedule-card__body {
    padding: 20px 20px;
  }

  /* Label seksi (JADWAL / HARGA) */
  .schedule-info__label,
  .price-label {
    font-size: 0.8rem;    /* naik dari 0.72 → 0.80 */
    letter-spacing: 0.8px;
    margin-bottom: 8px;
  }

  /* Baris kota & jam */
  .schedule-info__row {
    font-size: 0.95rem;   /* naik dari 0.83 → 0.95 */
    gap: 10px;
  }
  .schedule-info__row-kota {
    min-width: 96px;
    font-size: 0.95rem;
  }
  .schedule-info__row-waktu {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  /* Baris harga */
  .price-row {
    padding: 9px 0;
  }
  .price-route {
    font-size: 0.95rem;   /* naik dari 0.83 → 0.95 */
  }
  .price-amount {
    font-size: 1rem;      /* naik dari 0.88 → 1.00 */
    font-weight: 800;
  }

  /* Tombol CTA dalam kartu */
  .schedule-card__cta a {
    font-size: 0.92rem;   /* naik dari 0.82 → 0.92 */
    padding: 12px;
  }
}

/* Scroll-hint dots (mobile indicator) */
.schedule__dots {
  display: none;
}
@media (max-width: 767px) {
  .schedule__dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 4px;
  }
  .schedule__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-border);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    padding: 0;
  }
  .schedule__dot.active {
    background: var(--pink-primary);
    width: 22px;
    border-radius: 4px;
  }
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
  background: linear-gradient(135deg, var(--pink-primary) 0%, var(--pink-dark) 60%, #8b0050 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2, .cta-section p { color: var(--white); }
.cta-section p { opacity: 0.88; font-size: 1.05rem; margin-bottom: 36px; }
.cta-section__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ==========================================
   TESTIMONIAL SECTION
   ========================================== */
.testimonials { background: var(--pink-ultralight); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 4rem;
  color: var(--pink-lighter);
  font-family: var(--font-display);
  line-height: 1;
}
.testimonial-stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 12px; }
.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-primary), var(--pink-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-author__name { font-weight: 700; font-size: 0.9rem; }
.testimonial-author__route { font-size: 0.78rem; color: var(--gray); }

/* ==========================================
   CONTACT / RESERVASI SECTION
   ========================================== */
.contact { background: var(--white); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.contact__info h2 { margin-bottom: 16px; }
.contact__info p { color: var(--gray); margin-bottom: 30px; }
.contact__channels { display: flex; flex-direction: column; gap: 16px; }
.contact-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--gray-light);
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-decoration: none;
  color: var(--text-body);
}
.contact-channel:hover {
  background: var(--pink-ultralight);
  color: var(--pink-primary);
  transform: translateX(4px);
}
.contact-channel__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--pink-primary), var(--pink-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-channel__label { font-size: 0.78rem; color: var(--gray); }
.contact-channel__value { font-weight: 700; font-size: 0.95rem; }
/* Reservasi Form */
.reservasi-form {
  background: var(--pink-ultralight);
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 2px solid var(--pink-lighter);
}
.reservasi-form h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: var(--pink-dark);
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-body);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--pink-primary);
  box-shadow: 0 0 0 3px rgba(233,30,140,0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-control select { appearance: none; }

/* ==========================================
   STATS SECTION
   ========================================== */
.stats { background: var(--dark); padding: 60px 0; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--pink-light);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); font-weight: 500; }

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding-top: 60px;
}
.footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand .navbar__logo {
  margin-bottom: 16px;
  color: var(--white);
}
.footer__brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.footer__social { display: flex; gap: 10px; }
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  font-size: 0.9rem;
}
.social-link:hover { background: var(--pink-primary); color: white; }
.footer__col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer__col ul li a:hover { color: var(--pink-light); padding-left: 4px; }
.footer__bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ==========================================
   MOBILE MENU
   ========================================== */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  overflow-y: auto;
  padding: 20px 24px;
  transform: translateX(-100%);
  transition: var(--transition);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu__nav a {
  display: block;
  padding: 12px 16px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  color: var(--text-body);
}
.mobile-menu__nav a:hover { color: var(--pink-primary); background: var(--pink-ultralight); }
.mobile-menu__nav .sub-menu { padding-left: 16px; }

/* ==========================================
   WHATSAPP FLOATING
   ========================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 100;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); color: white; }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .footer__main { grid-template-columns: 1fr 1fr; }
  .schedule__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  .navbar__nav, .navbar__cta { display: none; }
  .navbar__toggle { display: block; }

  /* Hero — susun vertikal: konten dulu, gambar di bawah */
  .hero { padding-bottom: 40px; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero__image-wrap {
    display: flex;               /* tampilkan di mobile */
    justify-content: center;
  }
  .hero__image-card {
    max-width: 100%;
    padding: 14px;
    border-radius: var(--radius-lg);
  }
  /* Kurangi tinggi gambar/video agar tidak terlalu besar di HP */
  .hero__image-card img,
  .hero__video-wrap,
  .hero__placeholder { height: 220px; }

  /* Floating badge lebih kecil & tidak keluar bingkai */
  .hero__floating-badge {
    padding: 8px 12px;
    font-size: 0.78rem;
    gap: 8px;
  }
  .hero__floating-badge--1 { bottom: -8px; left: -8px; }
  .hero__floating-badge--2 { top:    -8px; right: -8px; }
  .hero__floating-badge .badge-icon { width: 28px; height: 28px; font-size: 0.85rem; }

  /* ── KEUNGGULAN, LAYANAN, TESTIMONI → carousel mobile ── */

  /* Wrapper bleed (sama seperti jadwal) */
  .why-us__section-wrap,
  .services__section-wrap,
  .testimonials__section-wrap {
    margin-left: -24px;
    margin-right: -24px;
  }

  /* Grid → flex horizontal scroll snap */
  .why-us__grid,
  .services__grid,
  .testimonials__grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding: 8px 24px 20px;
    margin-top: 30px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* reset grid */
    grid-template-columns: unset;
  }
  .why-us__grid::-webkit-scrollbar,
  .services__grid::-webkit-scrollbar,
  .testimonials__grid::-webkit-scrollbar { display: none; }

  /* Setiap kartu: lebar 80vw agar ada hint kartu berikutnya */
  .why-card,
  .service-card,
  .testimonial-card {
    flex: 0 0 80vw;
    max-width: 300px;
    scroll-snap-align: start;
  }

  /* Why card: pastikan tinggi cukup */
  .why-card { padding: 28px 20px; text-align: center; }

  /* Service card: gambar tetap proporsional */
  .service-card__image { height: 160px; }

  /* Dots indicator */
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 6px;
  }
  .carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-border);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    padding: 0;
    flex-shrink: 0;
  }
  .carousel-dot.active {
    background: var(--pink-primary);
    width: 22px;
    border-radius: 4px;
  }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__inner { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr; gap: 30px; }
  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .cta-section__actions { flex-direction: column; align-items: center; }
}

/* ============================================================
   PERFORMANCE: CONTAIN & WILL-CHANGE HINTS
   ============================================================ */
.hero__image-card,
.service-card,
.schedule-card,
.testimonial-card,
.why-card {
  contain: layout style;
}

.hero__video,
.hero__image-card img {
  will-change: auto;
}

/* Paksa GPU compositing hanya pada elemen animasi aktif */
[data-animate] {
  will-change: opacity, transform;
}
[data-animate].animated {
  will-change: auto; /* bebaskan setelah animasi selesai */
}

/* ============================================================
   PERFORMANCE: PRINT STYLES (lazy load)
   ============================================================ */
@media print {
  .whatsapp-float,
  .navbar__cta,
  #mobileMenu,
  .hero__video,
  .hero__floating-badge { display: none !important; }
  body { font-size: 12pt; color: #000; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 10pt; }
}

/* ============================================================
   SEO: VISUALLY HIDDEN (untuk teks aksesibilitas / skip nav)
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Skip to main content link (aksesibilitas + SEO) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 12px;
  background: var(--pink-primary);
  color: white;
  padding: 8px 16px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }
