/* ============================================
   PEEKO SELFIEBOX — Premium Luxury CSS
   ============================================ */

/* CSS Variables */
:root {
  --primary:      #E8A6A6;
  --primary-deep: #D08080;
  --secondary:    #7A4B4B;
  --accent:       #F5D0D0;
  --accent-light: #FDF0F0;
  --rose:         #C96A6A;
  --blush:        #FFE8E8;
  --bg:           #FAF7F5;
  --bg-2:         #F5EEE9;
  --surface:      rgba(255,255,255,0.72);
  --glass:        rgba(255,255,255,0.18);
  --glass-border: rgba(232,166,166,0.3);
  --text:         #2C1A1A;
  --text-soft:    #6B4545;
  --text-muted:   #A07070;
  --shadow-sm:    0 2px 8px rgba(122,75,75,0.08);
  --shadow-md:    0 8px 32px rgba(122,75,75,0.12);
  --shadow-lg:    0 24px 64px rgba(122,75,75,0.16);
  --shadow-glow:  0 0 40px rgba(232,166,166,0.35);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    28px;
  --radius-xl:    40px;
  --radius-full:  9999px;
  --font-display: 'Italiana', 'Cormorant Garamond', Georgia, serif;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

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

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

::selection {
  background: var(--primary);
  color: white;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: var(--radius-full); }

/* ============================================
   LOADER
   ============================================ */
.loader {
  position: fixed; inset: 0;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__inner { text-align: center; }
.loader__logo {
  position: relative;
  width: 80px; height: 80px;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
}
.loader__p {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--secondary);
  position: relative; z-index: 1;
}
.loader__ring {
  position: absolute; inset: 0;
  border: 2px solid transparent;
  border-top-color: var(--primary);
  border-right-color: var(--primary-deep);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.loader__text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-soft);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.loader__bar {
  width: 160px; height: 2px;
  background: var(--accent);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin: 0 auto;
}
.loader__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: var(--radius-full);
  animation: loadFill 1.8s ease-out forwards;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes loadFill { from { width: 0; } to { width: 100%; } }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  transition: all var(--transition);
  color: white; /* Default to white for visibility on dark heroes */
}
.navbar.scrolled {
  background: rgba(250,247,245,0.88);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  padding: 0 2rem;
  color: var(--text); /* Restore dark text when scrolled */
}
.navbar__container {
  max-width: 1280px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.navbar__logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.navbar__logo-mark { width: 40px; height: 40px; transition: transform var(--transition-bounce); }
.navbar__logo:hover .navbar__logo-mark { transform: rotate(-10deg) scale(1.08); }
.navbar__logo-text { display: flex; flex-direction: column; line-height: 1; }
.navbar__logo-main {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: white; /* White by default */
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.navbar.scrolled .navbar__logo-main {
  color: var(--secondary);
}
.navbar__logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.navbar.scrolled .navbar__logo-sub {
  color: var(--text-muted);
}
.navbar__menu {
  display: flex; align-items: center; gap: 0.25rem;
}
.navbar__link {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85); /* White-ish by default */
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  letter-spacing: 0.02em;
  position: relative;
}
.navbar.scrolled .navbar__link {
  color: var(--text-soft);
}
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 1px;
  background: var(--primary);
  transform: translateX(-50%);
  transition: width var(--transition);
}
.navbar__link:hover { color: var(--secondary); }
.navbar__link:hover::after { width: 60%; }
.navbar__link.active { color: var(--secondary); font-weight: 500; }
.navbar__link.active::after { width: 60%; }
.navbar__link--cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white !important;
  padding: 0.55rem 1.25rem;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(232,166,166,0.4);
  transition: all var(--transition);
}
.navbar__link--cta::after { display: none; }
.navbar__link--cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(232,166,166,0.55);
}
.navbar__toggle {
  display: none;
  flex-direction: column; gap: 5px;
  width: 32px; padding: 4px;
}
.navbar__toggle span {
  display: block; height: 1.5px;
  background: white; /* White by default */
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .navbar__toggle span {
  background: var(--secondary);
}
.navbar__toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.navbar__toggle.active span:nth-child(2) { opacity: 0; }
.navbar__toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  width: 100%; max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
/* content-visibility: auto — defer render off-screen sections (HUGE win untuk halaman panjang) */
/* contain-intrinsic-size memberikan size hint agar browser tidak shift layout */
.section {
  padding: 4rem 0;
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}
.section--sm {
  padding: 4rem 0;
  content-visibility: auto;
  contain-intrinsic-size: 0 400px;
}

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--rose);
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--secondary);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--rose); }
.section-body {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 560px;
  line-height: 1.75;
}

/* Grid layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.2);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.4s ease;
}
.btn:hover::before { transform: translateX(100%) skewX(-15deg); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(232,166,166,0.45);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,166,166,0.6);
}
.btn-outline {
  background: transparent;
  color: var(--secondary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}
.btn-glass {
  background: var(--glass);
  backdrop-filter: blur(12px);
  color: var(--secondary);
  border: 1px solid var(--glass-border);
}
.btn-glass:hover {
  background: rgba(255,255,255,0.35);
  transform: translateY(-2px);
}
.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.8rem; }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1rem; }
.btn-icon { width: 44px; height: 44px; padding: 0; border-radius: 50%; }

/* Ripple */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232,166,166,0.4);
}
.card:hover::before { transform: scaleX(1); }

/* Glass Card */
.card-glass {
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(122,75,75,0.08), inset 0 1px 0 rgba(255,255,255,0.6);
}

/* Neumorphic */
.card-neu {
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  box-shadow: 8px 8px 20px rgba(122,75,75,0.12), -4px -4px 12px rgba(255,255,255,0.9);
  border: none;
}

/* ============================================
   PAGE HERO (Generic)
   ============================================ */
.page-hero {
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--blush) 0%, var(--bg) 50%, var(--accent-light) 100%);
  /* min-height cukup besar agar foto tidak terpotong di layar apapun */
  min-height: 500px;
}

/* Saat page-hero menggunakan foto background dari admin */
.page-hero:has(> div[style*="background-image"]) {
  background: var(--blush, #FFE8E8);
}

/* ── Slide backgrounds (tanpa foto admin) ───────────────── */
.page-hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.page-hero__slide.active {
  opacity: 1;
}

/* Layer blur cover untuk page hero — mengisi area kosong kiri-kanan di belakang foto contain */
.page-hero__bg-blur {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: blur(20px) brightness(0.7) saturate(1.3);
  transform: scale(1.05);
}

/* ══ DARK OVERLAY — membuat teks tetap terbaca di atas foto ══
   Dipasang di z-index 2 (di atas foto z-index:1, di bawah konten z-index:3)
   Sebelumnya class ini tidak punya CSS, sehingga teks tidak terbaca. */
.page-hero__bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    160deg,
    rgba(30, 10, 10, 0.62) 0%,
    rgba(44, 22, 22, 0.48) 50%,
    rgba(30, 10, 10, 0.58) 100%
  );
}

/* ── Teks putih saat foto aktif (overlay gelap di background) ── */
.page-hero:has(.page-hero__bg-overlay) .page-hero__eyebrow {
  color: rgba(255, 255, 255, 0.85);
}
.page-hero:has(.page-hero__bg-overlay) .page-hero__eyebrow::before {
  color: rgba(255, 255, 255, 0.7);
}
.page-hero:has(.page-hero__bg-overlay) .page-hero__title {
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.page-hero:has(.page-hero__bg-overlay) .page-hero__title em {
  color: var(--accent);
}
.page-hero:has(.page-hero__bg-overlay) .page-hero__subtitle {
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.page-hero__decor {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
/* Sembunyikan dekor orb saat foto aktif agar foto terlihat bersih */
.page-hero:has(.page-hero__bg-overlay) .page-hero__decor {
  display: none;
}
/* Saat page-hero punya background image langsung di style attribute */
.page-hero[style*="background-image"] .page-hero__decor,
.page-hero[style*="background-image"] .page-hero__content,
.page-hero[style*="background-image"] .page-hero__carousel-nav {
  position: relative;
  z-index: 1;
}
.page-hero__decor--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,166,166,0.3), transparent);
  top: -200px; right: -100px;
}
.page-hero__decor--2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(122,75,75,0.1), transparent);
  bottom: -100px; left: -50px;
}
.page-hero__content { position: relative; z-index: 3; }
.page-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.page-hero__eyebrow::before { content: '✦'; font-size: 0.6rem; }
.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--secondary);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.page-hero__title em { font-style: italic; color: var(--rose); }
.page-hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 540px;
  line-height: 1.75;
}

/* ============================================
   HOME — HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #FDF5F5 0%, var(--bg) 40%, #F5EDE8 100%);
  padding-top: 72px;
}
.hero__bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
.hero__bg-orb--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle at 30% 30%, rgba(232,166,166,0.25), transparent 70%);
  top: -200px; right: -200px;
}
.hero__bg-orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(122,75,75,0.08), transparent 70%);
  bottom: 0; left: -100px;
  animation-delay: -4s;
}
.hero__bg-orb--3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(232,166,166,0.15), transparent 70%);
  top: 40%; left: 40%;
  animation-delay: -2s;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-30px) rotate(5deg); }
}
.hero__container {
  max-width: 1280px; margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero__content { position: relative; z-index: 1; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  color: var(--rose);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero__badge-dot {
  width: 6px; height: 6px;
  background: var(--rose);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 300;
  color: var(--secondary);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero__title-line { display: block; }
.hero__title-line--italic {
  font-style: italic;
  color: var(--rose);
  font-weight: 300;
}
.hero__title-line--highlight {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__desc {
  font-size: 1.1rem;
  color: var(--text-soft);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.hero__actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero__stats {
  margin-top: 3rem;
  display: flex; gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}
.hero__stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--secondary);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.05em;
}
/* Hero Visual */
.hero__visual { position: relative; z-index: 1; }
.hero__photo-frame {
  position: relative;
  padding: 1.5rem;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.hero__photo-main {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--accent) 0%, var(--primary) 40%, var(--secondary) 100%);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero__photo-main-inner {
  text-align: center;
  color: rgba(255,255,255,0.9);
}
.hero__photo-camera {
  width: 64px; height: 64px;
  margin: 0 auto 1rem;
  opacity: 0.85;
}
.hero__photo-camera svg { width: 100%; height: 100%; stroke: white; }
.hero__photo-label {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  letter-spacing: 0.05em;
}
.hero__photo-badge {
  position: absolute;
  padding: 0.75rem 1.25rem;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--secondary);
  display: flex; align-items: center; gap: 6px;
  animation: floatBadge 4s ease-in-out infinite;
}
.hero__photo-badge--1 { bottom: -20px; left: -30px; }
.hero__photo-badge--2 { top: 30px; right: -30px; animation-delay: -2s; }
.hero__photo-badge svg { width: 16px; height: 16px; color: var(--rose); }
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}



/* ============================================
   MARQUEE STRIP
   ============================================ */
.marquee-strip {
  overflow: hidden;
  padding: 1.5rem 0;
  background: linear-gradient(135deg, var(--secondary), var(--rose));
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 0 2rem;
  white-space: nowrap;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
  font-style: italic;
}
.marquee-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  flex-shrink: 0;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================
   SERVICES CARDS
   ============================================ */
.service-card {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card__glow {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,166,166,0.3), transparent);
  top: -100px; right: -100px;
  transition: all var(--transition);
}
.service-card:hover .service-card__glow {
  transform: scale(1.5);
  opacity: 0.8;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232,166,166,0.5);
}
.service-card__icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--accent), var(--blush));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  transition: all var(--transition-bounce);
  box-shadow: 0 4px 16px rgba(232,166,166,0.3);
}
.service-card:hover .service-card__icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 24px rgba(232,166,166,0.5);
}
.service-card__icon svg { width: 24px; height: 24px; color: var(--secondary); }
.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}
.service-card__desc { font-size: 0.9rem; color: var(--text-soft); line-height: 1.7; margin-bottom: 1.25rem; }
.service-card__price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--rose);
  font-weight: 500;
}
.service-card__action {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 1rem;
  transition: all var(--transition);
}
.service-card:hover .service-card__action { color: var(--rose); gap: 10px; }
.service-card__action svg { width: 14px; height: 14px; }



/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-card__quote {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  color: var(--primary);
  margin-bottom: -0.5rem;
  font-style: italic;
  opacity: 0.6;
}
.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-card__footer {
  display: flex; align-items: center; gap: 1rem;
}
.testimonial-card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: white;
  flex-shrink: 0;
  font-style: italic;
}
.testimonial-card__name {
  font-weight: 500;
  color: var(--secondary);
  font-size: 0.95rem;
}
.testimonial-card__role { font-size: 0.8rem; color: var(--text-muted); }
.testimonial-card__stars { color: var(--primary); font-size: 0.9rem; margin-top: 2px; }

/* ============================================
   FIND PHOTO PAGE
   ============================================ */
.find-photo-hero {
  padding: 9rem 0 5rem;
  background: linear-gradient(160deg, var(--blush), var(--bg) 60%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.search-box {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 560px;
  margin: 2.5rem auto 0;
}
.search-box__label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}
.search-input-wrap {
  display: flex; gap: 0.75rem;
}
.search-input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  background: rgba(255,255,255,0.8);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: all var(--transition);
  letter-spacing: 0.05em;
}
.search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(232,166,166,0.15);
  background: white;
}
.search-input::placeholder { color: var(--text-muted); }
.search-results {
  padding: 4rem 0;
}
.search-results__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.search-results__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--accent), var(--primary), var(--secondary));
  position: relative;
  cursor: pointer;
  transition: all var(--transition);
}
.search-results__item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.search-results__empty {
  text-align: center;
  padding: 4rem;
  color: var(--text-muted);
}
.search-results__empty svg {
  width: 64px; height: 64px;
  opacity: 0.3;
  margin: 0 auto 1rem;
  display: block;
}

/* ============================================
   BOOKING FORM / CONTACT
   ============================================ */
.booking-form {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group--full { grid-column: 1 / -1; }
.form-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.form-input,
.form-select,
.form-textarea {
  padding: 0.875rem 1.25rem;
  background: rgba(255,255,255,0.8);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: all var(--transition);
  width: 100%;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(232,166,166,0.15);
  background: white;
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { cursor: pointer; }
.form-message {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  display: none;
}
.form-message.success {
  display: block;
  background: rgba(134,202,134,0.15);
  border: 1px solid rgba(134,202,134,0.4);
  color: #2d7a2d;
}
.form-message.error {
  display: block;
  background: rgba(202,134,134,0.15);
  border: 1px solid rgba(202,134,134,0.4);
  color: #7a2d2d;
}
.form-submit-wrap {
  margin-top: 0.5rem;
  text-align: center;
}
.form-submit-wrap .btn { width: 100%; justify-content: center; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-visual {
  position: relative;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 1.25rem;
}
.about-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--accent), var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
}
.about-photo--sm {
  aspect-ratio: 3/2;
  border-radius: var(--radius-lg);
  align-self: center;
}
.about-badge-float {
  position: absolute;
  bottom: -20px; left: -20px;
  background: white;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-md);
  animation: floatBadge 5s ease-in-out infinite;
}
.about-badge-float__num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--secondary);
  line-height: 1;
}
.about-badge-float__text { font-size: 0.8rem; color: var(--text-muted); }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2rem; }
.value-item { display: flex; gap: 1rem; }
.value-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--blush));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.value-icon svg { width: 18px; height: 18px; color: var(--secondary); }
.value-title { font-weight: 500; color: var(--secondary); margin-bottom: 4px; font-size: 0.95rem; }
.value-desc { font-size: 0.85rem; color: var(--text-soft); line-height: 1.6; }

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(20,10,10,0.92);
  backdrop-filter: blur(8px);
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.4s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: 90vw; max-height: 90vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.lightbox__close {
  position: absolute; top: 2rem; right: 2rem;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}
.lightbox__close:hover { background: rgba(232,166,166,0.3); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--secondary);
  position: relative;
  overflow: hidden;
  padding: 5rem 0 2rem;
  color: rgba(255,255,255,0.8);
}
.footer__glow {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,166,166,0.15), transparent);
  top: -200px; right: -100px;
  pointer-events: none;
}
.footer__container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: white;
}
.footer__logo em { font-style: italic; }
.footer__logo svg circle { stroke: rgba(255,255,255,0.6); }
.footer__tagline { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 1.5rem; }
.footer__socials { display: flex; gap: 0.75rem; }
.footer__social {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.footer__social svg { width: 16px; height: 16px; }
.footer__social:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}
.footer__heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: white;
  margin-bottom: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.footer__links li { margin-bottom: 0.6rem; }
.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.footer__links a:hover { color: var(--primary); padding-left: 4px; }
.footer__contact-list li {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
}
.footer__contact-list svg { width: 16px; height: 16px; flex-shrink: 0; opacity: 0.6; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer__heart { color: var(--primary); }

/* ============================================
   DECORATIVE ELEMENTS
   ============================================ */
.bg-pattern {
  background-image: radial-gradient(circle, rgba(232,166,166,0.15) 1px, transparent 1px);
  background-size: 32px 32px;
}
.divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: var(--radius-full);
  margin: 1.25rem 0;
}
.tag {
  display: inline-flex;
  padding: 0.3rem 0.75rem;
  background: rgba(232,166,166,0.15);
  border: 1px solid rgba(232,166,166,0.3);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  color: var(--rose);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ============================================
   SWIPER CUSTOMIZATION
   ============================================ */
.swiper-pagination-bullet {
  background: var(--primary);
  opacity: 0.4;
  width: 8px; height: 8px;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: 4px;
}
.swiper-button-next,
.swiper-button-prev {
  width: 44px !important; height: 44px !important;
  background: white;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  color: var(--secondary) !important;
}
.swiper-button-next::after,
.swiper-button-prev::after { font-size: 14px !important; font-weight: 700; }

/* ============================================
   ANIMATIONS (JS-triggered)
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up--delay-1 { transition-delay: 0.1s; }
.fade-up--delay-2 { transition-delay: 0.2s; }
.fade-up--delay-3 { transition-delay: 0.3s; }
.fade-up--delay-4 { transition-delay: 0.4s; }
.stagger-child {
  opacity: 0;
  transform: translateY(30px);
}

/* ============================================
   CONTACT INFO CARDS
   ============================================ */
.contact-info {
  display: flex; flex-direction: column; gap: 1.25rem;
  margin-top: 2rem;
}
.contact-info-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.contact-info-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}
.contact-info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--blush));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-icon svg { width: 20px; height: 20px; color: var(--secondary); }
.contact-info-label { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
.contact-info-value { font-size: 0.95rem; color: var(--secondary); font-weight: 400; }

/* ============================================
   RESPONSIVE (main.css — homepage hero only)
   Responsive lengkap ada di responsive.css
   ============================================ */
@media (max-width: 1024px) {
  /* Hero homepage */
  .hero__container { grid-template-columns: 1fr; text-align: center; }
  .hero__desc { margin: 0 auto 2.5rem; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__visual { max-width: 400px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .hero__stats { gap: 1.5rem; }
  .hero__photo-badge--2 { right: -10px; }
  .hero__photo-badge--1 { left: -10px; }
}

/* ============================================
   PRINT
   ============================================ */
@media print {
  .navbar, .loader, .footer { display: none; }
}

/* ============================================
   TESTIMONIALS SLIDER
   ============================================ */
.testi-header { text-align: center; margin-bottom: 3rem; }

.testi-slider-wrap {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  padding: 1rem 0;
}

.testi-slider {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.testi-card {
  flex: 0 0 100%;
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testi-card__top { display: flex; justify-content: space-between; align-items: flex-start; }
.testi-quote-icon { color: var(--accent); opacity: 0.2; }
.testi-quote-icon svg { width: 32px; height: 32px; }

.testi-stars { display: flex; gap: 4px; color: #FBBF24; }
.testi-stars svg { width: 16px; height: 16px; }

.testi-text {
  font-size: 1.15rem;
  color: var(--secondary);
  line-height: 1.7;
  font-style: italic;
  font-weight: 300;
  margin: 0;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.testi-author__avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--blush);
  color: var(--secondary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem;
}

.testi-author__name { font-weight: 600; color: var(--secondary); font-size: 1rem; }
.testi-author__info { font-size: 0.8rem; color: var(--text-muted); }

.testi-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  color: var(--secondary);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.testi-nav:hover { background: var(--secondary); color: white; transform: translateY(-50%) scale(1.1); }
.testi-nav--prev { left: 0; }
.testi-nav--next { right: 0; }

@media (min-width: 768px) {
  .testi-card { flex: 0 0 calc(50% - 1rem); }
}

@media (max-width: 768px) {
  .testi-nav { display: none; }
  .testi-slider-wrap { padding: 0 1.5rem; }
}