/* ============================================================
   BINAR STUDIO PHOTO — Design System & Styles
   Playful · Scrapbook · Pop Doodle · Yellow & Navy
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Caveat:wght@400;500;600;700&display=swap');

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Colors — Playful Scrapbook Palette (Yellow · Navy · Red · Green · Orange) */
  --color-cream:          #FFF6DE;
  --color-cream-light:    #FFFDF6;
  --color-cream-dark:     #FDE9B4;
  --color-brown-dark:     #16215C;
  --color-brown:          #1F2E75;
  --color-brown-medium:   #4A5591;
  --color-terracotta:     #E63946;
  --color-terracotta-dark:#C1121F;
  --color-orange:         #FF8C42;
  --color-olive:          #5B6491;
  --color-white-warm:     #FFFFFF;
  --color-border:         #D8DCEE;
  --color-shadow:         rgba(22, 33, 92, 0.12);
  --color-shadow-deep:    rgba(22, 33, 92, 0.25);
  --color-overlay:        rgba(22, 33, 92, 0.55);

  /* New Accent Colors */
  --color-yellow:         #FFC72C;
  --color-yellow-dark:    #F5A623;
  --color-navy:           #16215C;
  --color-navy-light:     #2A3B8F;
  --color-red:            #E63946;
  --color-green:          #1B8A5A;

  /* Typography */
  --font-heading:  'Baloo 2', 'Segoe UI', sans-serif;
  --font-body:     'DM Sans', 'Segoe UI', sans-serif;
  --font-accent:   'Caveat', cursive;

  /* Font Sizes — Modular Scale (1.25) */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-md:   1.125rem;
  --text-lg:   1.25rem;
  --text-xl:   1.5rem;
  --text-2xl:  1.875rem;
  --text-3xl:  2.25rem;
  --text-4xl:  3rem;
  --text-5xl:  3.75rem;
  --text-6xl:  4.5rem;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  0.75rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Layout */
  --container-max: 1200px;
  --container-padding: 1.5rem;

  /* Borders & Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-normal: 350ms;
  --duration-slow: 600ms;

  /* Z-index Scale */
  --z-base: 1;
  --z-above: 10;
  --z-nav: 600;
  --z-overlay: 500;
  --z-modal: 1000;
  --z-float: 1500;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-brown-dark);
  background-color: var(--color-cream-light);
  background-image:
    linear-gradient(rgba(22, 33, 92, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 33, 92, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--duration-fast) var(--ease-out);
}

ul, ol {
  list-style: none;
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-brown-dark);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl);  }

p {
  margin-bottom: var(--space-md);
  color: var(--color-brown);
}

.font-accent {
  font-family: var(--font-accent);
}

/* ============================================================
   4. UTILITY CLASSES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section-padding {
  padding: var(--space-5xl) 0;
}

/* Section Title Component */
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-label {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: var(--text-xl);
  color: var(--color-terracotta);
  margin-bottom: var(--space-xs);
  letter-spacing: 0.5px;
}

.section-title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-md);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-terracotta), var(--color-orange));
  margin: var(--space-md) auto 0;
  border-radius: var(--radius-full);
}

.section-subtitle {
  font-size: var(--text-md);
  color: var(--color-brown-medium);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--duration-fast);
}

.btn:hover::before {
  opacity: 1;
}

.btn--primary {
  background: var(--color-terracotta);
  color: #FFFFFF;
  font-weight: 700;
  border: 2.5px solid var(--color-navy);
  box-shadow: 4px 4px 0 var(--color-navy);
}

.btn--primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--color-navy);
}

.btn--outline {
  background: transparent;
  color: var(--color-cream-light);
  border-color: var(--color-cream);
}

.btn--outline:hover {
  background: var(--color-cream-light);
  color: var(--color-brown-dark);
  border-color: var(--color-cream-light);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--color-brown-dark);
  border-color: var(--color-brown);
}

.btn--outline-dark:hover {
  background: var(--color-brown-dark);
  color: var(--color-cream-light);
  transform: translateY(-2px);
}

.btn--small {
  padding: 0.6rem 1.4rem;
  font-size: var(--text-sm);
}

.btn--whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.btn--whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

/* ============================================================
   6. FILM GRAIN OVERLAY
   ============================================================ */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-float);
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ============================================================
   7. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: var(--space-lg) 0;
  transition: all var(--duration-normal) var(--ease-out);
}

.navbar.scrolled {
  padding: var(--space-sm) 0;
  background: rgba(255, 253, 246, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px var(--color-shadow);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.navbar__logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--color-terracotta), var(--color-orange));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cream-light);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-lg);
}

.navbar__logo-text {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-cream-light);
  transition: color var(--duration-normal);
}

.navbar.scrolled .navbar__logo-text {
  color: var(--color-brown-dark);
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

@media (max-width: 1100px) and (min-width: 769px) {
  .navbar__nav {
    gap: var(--space-md);
  }
  .navbar__link {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
  }
}

.navbar__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: var(--space-xs) 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color var(--duration-fast);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-terracotta);
  transition: width var(--duration-normal) var(--ease-out);
}

.navbar__link:hover {
  color: var(--color-cream-light);
}

.navbar__link:hover::after {
  width: 100%;
}

.navbar.scrolled .navbar__link {
  color: var(--color-brown-medium);
}

.navbar.scrolled .navbar__link:hover {
  color: var(--color-brown-dark);
}

.navbar__cta {
  padding: 0.55rem 1.4rem;
  font-size: var(--text-sm);
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-xs);
  z-index: var(--z-overlay);
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-cream-light);
  border-radius: var(--radius-full);
  transition: all var(--duration-normal) var(--ease-out);
}

.navbar.scrolled .navbar__hamburger span {
  background: var(--color-brown-dark);
}

.navbar__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   8. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #1F2E75 0%, #16215C 40%, #0D1440 100%);
  overflow: hidden;
  padding-top: 80px;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cpolygon points='20,2 25,15 39,15 27,24 32,38 20,29 8,38 13,24 1,15 15,15' fill='%23FFC72C' stroke='%23FFFFFF' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.9;
  z-index: 1;
  pointer-events: none;
}

.hero::before {
  top: 14%;
  right: 8%;
  transform: rotate(-15deg);
}

.hero::after {
  bottom: 16%;
  left: 6%;
  width: 40px;
  height: 40px;
  transform: rotate(20deg);
}

.hero__cover {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.32;
}

.hero__cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(31,46,117,0.55) 0%, rgba(22,33,92,0.68) 45%, rgba(13,20,64,0.78) 100%);
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 20% 50%, var(--color-terracotta) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, var(--color-orange) 1px, transparent 1px),
    radial-gradient(circle at 60% 80%, var(--color-olive) 1px, transparent 1px);
  background-size: 60px 60px, 80px 80px, 70px 70px;
}

.hero__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}

.hero__glow--1 {
  top: -200px;
  right: -100px;
  background: var(--color-terracotta);
}

.hero__glow--2 {
  bottom: -200px;
  left: -100px;
  background: var(--color-orange);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 0 auto;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: var(--z-base);
  text-align: center;
}

.hero__content {
  padding-right: 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.4rem 1rem;
  background: rgba(230, 57, 70, 0.15);
  border: 1px solid rgba(230, 57, 70, 0.3);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: var(--color-orange);
  margin-bottom: var(--space-lg);
  font-weight: 500;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--color-terracotta);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero__title {
  display: inline-block;
  font-size: var(--text-5xl);
  font-weight: 800;
  color: var(--color-navy);
  background: var(--color-yellow);
  padding: 10px 28px;
  border-radius: var(--radius-md);
  transform: rotate(-1.5deg);
  box-shadow: 6px 6px 0 rgba(22, 33, 92, 0.9);
  margin: 0 auto var(--space-lg);
  max-width: 680px;
  line-height: 1.15;
  position: relative;
  z-index: 2;
}

.hero__title em {
  font-style: normal;
  color: var(--color-terracotta);
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 253, 246, 0.7);
  margin: 0 auto var(--space-2xl);
  max-width: 520px;
  line-height: 1.8;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.hero__tag {
  padding: 0.3rem 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: rgba(255, 253, 246, 0.6);
  font-weight: 400;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

/* Hero Gallery — Featured Photo */
.hero__gallery {
  position: relative;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__polaroid {
  position: absolute;
  background: #fff;
  padding: 10px 10px 40px;
  box-shadow:
    0 4px 15px rgba(0,0,0,0.15),
    0 1px 4px rgba(0,0,0,0.1);
  transition: transform var(--duration-slow) var(--ease-out),
              box-shadow var(--duration-slow) var(--ease-out);
  cursor: pointer;
}

.hero__polaroid:hover {
  z-index: 10;
  box-shadow:
    0 15px 40px rgba(0,0,0,0.25),
    0 5px 15px rgba(0,0,0,0.15);
}

.hero__polaroid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__polaroid-caption {
  font-family: var(--font-accent);
  font-size: var(--text-base);
  color: var(--color-brown);
  text-align: center;
  margin-top: 8px;
}

.hero__polaroid--1 {
  width: 220px;
  height: auto;
  transform: rotate(-6deg) translate(-60%, -10%);
  animation: float-1 6s ease-in-out infinite;
  z-index: 3;
}

.hero__polaroid--2 {
  width: 200px;
  height: auto;
  transform: rotate(4deg) translate(30%, -30%);
  animation: float-2 7s ease-in-out infinite;
  z-index: 2;
}

.hero__polaroid--3 {
  width: 180px;
  height: auto;
  transform: rotate(-3deg) translate(-20%, 50%);
  animation: float-3 8s ease-in-out infinite;
  z-index: 1;
}

.hero__polaroid--4 {
  width: 160px;
  height: auto;
  transform: rotate(7deg) translate(60%, 30%);
  animation: float-4 7.5s ease-in-out infinite;
  z-index: 2;
}

@keyframes float-1 {
  0%, 100% { transform: rotate(-6deg) translate(-60%, -10%); }
  50% { transform: rotate(-4deg) translate(-60%, -18%); }
}

@keyframes float-2 {
  0%, 100% { transform: rotate(4deg) translate(30%, -30%); }
  50% { transform: rotate(6deg) translate(30%, -38%); }
}

@keyframes float-3 {
  0%, 100% { transform: rotate(-3deg) translate(-20%, 50%); }
  50% { transform: rotate(-1deg) translate(-20%, 42%); }
}

@keyframes float-4 {
  0%, 100% { transform: rotate(7deg) translate(60%, 30%); }
  50% { transform: rotate(5deg) translate(60%, 22%); }
}

/* ============================================================
   8b. QUICK NAVIGATION BADGES
   ============================================================ */
.quick-nav {
  position: relative;
  background: var(--color-white-warm);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-lg) 0;
}

.quick-nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.quick-nav__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.6rem 1.3rem;
  background: var(--color-cream-light);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-brown-dark);
  white-space: nowrap;
  transition: all var(--duration-normal) var(--ease-out);
  flex-shrink: 0;
}

.quick-nav__badge:hover {
  background: var(--color-terracotta);
  border-color: var(--color-terracotta);
  color: var(--color-cream-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
}

.quick-nav__icon {
  font-size: var(--text-lg);
  line-height: 1;
}

/* ============================================================
   9. ABOUT SECTION
   ============================================================ */
.about {
  background: var(--color-cream-light);
  position: relative;
  overflow: hidden;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about__images {
  position: relative;
  height: 480px;
}

.about__photo {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 30px var(--color-shadow);
  transition: transform var(--duration-slow) var(--ease-out);
}

.about__photo:hover {
  z-index: 5;
  transform: scale(1.03) rotate(0deg) !important;
}

.about__photo--main {
  width: 320px;
  height: 400px;
  top: 20px;
  left: 40px;
  transform: rotate(-3deg);
  z-index: 2;
}

.about__photo--secondary {
  width: 240px;
  height: 300px;
  bottom: 20px;
  right: 20px;
  transform: rotate(4deg);
  z-index: 3;
  border: 6px solid #fff;
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__stamp {
  position: absolute;
  top: -10px;
  right: 40px;
  width: 100px;
  height: 100px;
  border: 3px solid var(--color-terracotta);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(12deg);
  z-index: 4;
  background: var(--color-cream-light);
}

.about__stamp-text {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  color: var(--color-terracotta);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
}

.about__stamp-year {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-terracotta);
  line-height: 1;
}

.about__content {
  padding-left: var(--space-xl);
}

.about__label {
  font-family: var(--font-accent);
  font-size: var(--text-xl);
  color: var(--color-terracotta);
  margin-bottom: var(--space-xs);
}

.about__title {
  margin-bottom: var(--space-lg);
}

.about__text {
  font-size: var(--text-md);
  color: var(--color-brown);
  line-height: 1.9;
  margin-bottom: var(--space-lg);
}

.wedding-facility-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-lg) 0;
  font-size: var(--text-md);
  color: var(--color-brown);
  line-height: 1.9;
}

.wedding-facility-list li {
  position: relative;
  padding-left: 1.3em;
}

.wedding-facility-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-terracotta);
  font-weight: 700;
}

/* ============================================================
   WEDDING PRICELIST — PERSUASIVE TIER COLORS
   ============================================================ */
.wedding-tier-card {
  position: relative;
  overflow: hidden;
}

.wedding-tier-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  z-index: 1;
}

.wedding-tier-card--silver::before { background: linear-gradient(90deg, #9CA3AF, #E5E7EB); }
.wedding-tier-card--gold::before { background: linear-gradient(90deg, #D4AF37, #F4E4A1); }
.wedding-tier-card--royal::before { background: linear-gradient(90deg, #6B21A8, #C084FC); }
.wedding-tier-card--cinematic::before { background: linear-gradient(90deg, #0891B2, #67E8F9); }
.wedding-tier-card--documentation::before { background: linear-gradient(90deg, #EA580C, #FDBA74); }
.wedding-tier-card--combo::before { background: linear-gradient(90deg, var(--color-terracotta), #F0A98A); }

.wedding-tier-card--gold {
  border: 2px solid #D4AF37 !important;
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.18);
}

.wedding-popular-ribbon {
  position: absolute;
  top: 22px;
  right: -42px;
  background: linear-gradient(135deg, #D4AF37, #B8860B);
  color: #fff;
  padding: 6px 48px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transform: rotate(40deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 3;
}

.wedding-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-sm);
}

.wedding-badge--silver { background: linear-gradient(135deg, #9CA3AF, #6B7280); }
.wedding-badge--gold { background: linear-gradient(135deg, #D4AF37, #B8860B); }
.wedding-badge--royal { background: linear-gradient(135deg, #6B21A8, #4C1D95); }
.wedding-badge--cinematic { background: linear-gradient(135deg, #0891B2, #0E7490); }
.wedding-badge--documentation { background: linear-gradient(135deg, #EA580C, #C2410C); }
.wedding-badge--combo { background: linear-gradient(135deg, var(--color-terracotta), #A8442D); }

.wedding-price-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  padding: 8px 26px;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  color: #fff;
}

.wedding-price-tag--silver { background: linear-gradient(135deg, #9CA3AF, #6B7280); }
.wedding-price-tag--gold { background: linear-gradient(135deg, #D4AF37, #B8860B); }
.wedding-price-tag--royal { background: linear-gradient(135deg, #6B21A8, #4C1D95); }
.wedding-price-tag--cinematic { background: linear-gradient(135deg, #0891B2, #0E7490); }
.wedding-price-tag--documentation { background: linear-gradient(135deg, #EA580C, #C2410C); }
.wedding-price-tag--combo { background: linear-gradient(135deg, var(--color-terracotta), #A8442D); }

.wedding-btn {
  border: none !important;
  color: #fff !important;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wedding-btn:hover {
  transform: translateY(-3px) scale(1.02);
  color: #fff !important;
}

.wedding-btn--silver { background: linear-gradient(135deg, #9CA3AF, #6B7280); box-shadow: 0 8px 20px rgba(107, 114, 128, 0.35); }
.wedding-btn--gold { background: linear-gradient(135deg, #D4AF37, #B8860B); box-shadow: 0 8px 24px rgba(184, 134, 11, 0.45); }
.wedding-btn--royal { background: linear-gradient(135deg, #6B21A8, #4C1D95); box-shadow: 0 8px 20px rgba(107, 33, 168, 0.4); }
.wedding-btn--cinematic { background: linear-gradient(135deg, #0891B2, #0E7490); box-shadow: 0 8px 20px rgba(8, 145, 178, 0.4); }
.wedding-btn--documentation { background: linear-gradient(135deg, #EA580C, #C2410C); box-shadow: 0 8px 20px rgba(234, 88, 12, 0.4); }
.wedding-btn--combo { background: linear-gradient(135deg, var(--color-terracotta), #A8442D); box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4); }

.about__quote {
  position: relative;
  padding: var(--space-lg) var(--space-xl);
  background: var(--color-cream);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-terracotta);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--color-brown-dark);
}

.about__stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}

.about__stat {
  text-align: center;
}

.about__stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-terracotta);
  line-height: 1;
}

.about__stat-label {
  font-size: var(--text-sm);
  color: var(--color-brown-medium);
  margin-top: var(--space-xs);
}

/* ============================================================
   10. SERVICES SECTION
   ============================================================ */
.services {
  background: var(--color-cream);
  position: relative;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.service-card {
  background: var(--color-white-warm);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all var(--duration-normal) var(--ease-out);
  cursor: pointer;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: 0 20px 50px var(--color-shadow-deep);
  border-color: var(--color-terracotta);
}

.service-card__image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.service-card:hover .service-card__image img {
  transform: scale(1.08);
}

.service-card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(22, 33, 92, 0.5));
  opacity: 0;
  transition: opacity var(--duration-normal);
}

.service-card:hover .service-card__image-overlay {
  opacity: 1;
}

.service-card__body {
  padding: var(--space-lg) var(--space-xl) var(--space-xl);
}

.service-card__number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--color-cream-dark);
  position: absolute;
  top: var(--space-md);
  right: var(--space-lg);
  line-height: 1;
  z-index: 1;
}

.service-card__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
  color: var(--color-brown-dark);
}

.service-card__tagline {
  font-family: var(--font-accent);
  font-size: var(--text-lg);
  color: var(--color-terracotta);
  margin-bottom: var(--space-sm);
}

.service-card__desc {
  font-size: var(--text-sm);
  color: var(--color-brown-medium);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.service-card__cta {
  width: 100%;
  text-align: center;
}

/* Last 2 cards span center on desktop */
.services__grid .service-card:nth-child(4) {
  grid-column: 1 / 2;
}

.services__grid .service-card:nth-child(5) {
  grid-column: 2 / 3;
}

/* ============================================================
   11. PORTFOLIO / GALLERY SECTION
   ============================================================ */
.portfolio {
  background: var(--color-cream-light);
  position: relative;
}

.portfolio__wall {
  position: relative;
  background:
    linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-2xl);
  border: 2px solid var(--color-border);
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  justify-items: center;
}

.portfolio__polaroid {
  background: #fff;
  padding: 12px 12px 48px;
  box-shadow:
    0 4px 12px var(--color-shadow),
    0 1px 3px rgba(0,0,0,0.08);
  transition: all var(--duration-normal) var(--ease-out);
  cursor: pointer;
  max-width: 320px;
  width: 100%;
}

.portfolio__polaroid:nth-child(1) { transform: rotate(-2deg); }
.portfolio__polaroid:nth-child(2) { transform: rotate(1.5deg); }
.portfolio__polaroid:nth-child(3) { transform: rotate(-1deg); }
.portfolio__polaroid:nth-child(4) { transform: rotate(2.5deg); }
.portfolio__polaroid:nth-child(5) { transform: rotate(-1.5deg); }
.portfolio__polaroid:nth-child(6) { transform: rotate(0.5deg); }

.portfolio__polaroid:hover {
  transform: rotate(0deg) scale(1.05) translateY(-5px);
  box-shadow:
    0 15px 35px var(--color-shadow-deep),
    0 5px 15px rgba(0,0,0,0.1);
  z-index: 10;
}

.portfolio__polaroid-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.portfolio__polaroid-caption {
  font-family: var(--font-accent);
  font-size: var(--text-lg);
  color: var(--color-brown);
  text-align: center;
  margin-top: 10px;
}

.portfolio__cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

.portfolio__ig-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-terracotta);
  transition: all var(--duration-fast);
}

.portfolio__ig-link:hover {
  color: var(--color-terracotta-dark);
  gap: var(--space-md);
}

/* ============================================================
   12. PRICING SECTION
   ============================================================ */
.pricing {
  background: var(--color-cream);
  position: relative;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  align-items: start;
}

.pricing-card {
  background: var(--color-white-warm);
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-border);
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--color-shadow);
}

.pricing-card--popular {
  border-color: var(--color-terracotta);
  transform: scale(1.05);
  box-shadow: 0 10px 30px var(--color-shadow);
}

.pricing-card--popular:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-card__ribbon {
  position: absolute;
  top: 20px;
  right: -35px;
  background: linear-gradient(135deg, var(--color-terracotta), var(--color-terracotta-dark));
  color: white;
  padding: 5px 40px;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transform: rotate(45deg);
  z-index: 2;
}

.pricing-card__header {
  padding: var(--space-2xl) var(--space-xl) var(--space-lg);
  text-align: center;
  border-bottom: 2px dashed var(--color-border);
  position: relative;
}

.pricing-card__header::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 20px;
  right: 20px;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 8px,
    var(--color-cream) 8px,
    var(--color-cream) 16px
  );
}

.pricing-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
  background: var(--color-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
}

.pricing-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-brown-dark);
  margin-bottom: var(--space-sm);
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-terracotta);
}

.pricing-card__price-label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-brown-medium);
}

.pricing-card__body {
  padding: var(--space-2xl) var(--space-xl);
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-brown);
}

.pricing-card__feature-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--color-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-terracotta);
  font-size: 12px;
  margin-top: 2px;
}

.pricing-card__cta {
  width: 100%;
  text-align: center;
}

/* ============================================================
   13. BOOKING / HOW TO BOOK SECTION
   ============================================================ */
.booking {
  background: linear-gradient(160deg, #3D2B1F 0%, #16215C 40%, #1a0f09 100%);
  position: relative;
  overflow: hidden;
}

.booking .section-label,
.booking .section-title,
.booking .section-subtitle {
  color: var(--color-cream-light);
}

.booking .section-title::after {
  background: linear-gradient(90deg, var(--color-orange), var(--color-terracotta));
}

.booking .section-subtitle {
  color: rgba(255, 253, 246, 0.6);
}

.booking__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
  position: relative;
}

/* Connector line between steps */
.booking__steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--color-brown-medium),
    var(--color-brown-medium) 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 0;
}

.booking__step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.booking__step-number {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.15), rgba(255, 140, 66, 0.1));
  border: 2px solid rgba(230, 57, 70, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-orange);
  position: relative;
}

.booking__step-icon {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-xs);
}

.booking__step-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-cream-light);
  margin-bottom: var(--space-sm);
}

.booking__step-desc {
  font-size: var(--text-sm);
  color: rgba(255, 253, 246, 0.6);
  max-width: 280px;
  margin: 0 auto;
  line-height: 1.7;
}

.booking__location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: stretch;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.booking__location-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-md);
}

.booking__location-title {
  font-size: var(--text-xl);
  color: var(--color-cream-light);
}

.booking__location-address {
  font-size: var(--text-sm);
  color: rgba(255, 253, 246, 0.75);
  line-height: 1.8;
}

.booking__location-address strong {
  color: var(--color-orange);
  font-family: var(--font-heading);
  font-size: var(--text-base);
}

.booking__location-hours {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.booking__location-hours-row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  font-size: var(--text-sm);
  color: rgba(255, 253, 246, 0.8);
}

.booking__location-hours-row span:first-child {
  font-weight: 600;
  color: var(--color-cream-light);
}

.booking__location-info .btn {
  align-self: flex-start;
  border-color: var(--color-cream);
  color: var(--color-cream-light);
}

.booking__location-info .btn:hover {
  background: var(--color-cream-light);
  color: var(--color-brown-dark);
}

.booking__location-map {
  min-height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.booking__location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: block;
  filter: grayscale(0.3) sepia(0.15);
}

.booking__cta {
  text-align: center;
}

/* ============================================================
   14. FOOTER
   ============================================================ */
.footer {
  background: var(--color-brown-dark);
  color: var(--color-cream);
  padding-top: var(--space-4xl);
  margin-top: auto;
}

@media (max-width: 768px) {
  #footer {
    padding-top: var(--space-lg);
  }
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255, 253, 246, 0.1);
}

.footer__brand-desc {
  font-size: var(--text-sm);
  color: rgba(255, 253, 246, 0.6);
  line-height: 1.8;
  margin-top: var(--space-md);
}

.footer__social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.footer__social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 253, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  color: var(--color-cream);
  transition: all var(--duration-fast);
}

.footer__social-link:hover {
  background: var(--color-terracotta);
  border-color: var(--color-terracotta);
  transform: translateY(-3px);
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-cream-light);
  margin-bottom: var(--space-lg);
}

.footer__link {
  display: block;
  font-size: var(--text-sm);
  color: rgba(255, 253, 246, 0.6);
  padding: var(--space-xs) 0;
  transition: all var(--duration-fast);
}

.footer__link:hover {
  color: var(--color-cream-light);
  padding-left: var(--space-xs);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: rgba(255, 253, 246, 0.6);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.footer__contact-item--link {
  cursor: pointer;
  transition: transform var(--duration-fast), opacity var(--duration-fast);
}

.footer__contact-item--link:hover {
  transform: translateX(4px);
  opacity: 0.9;
}

.footer__contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 253, 246, 0.08);
  border: 1px solid rgba(255, 253, 246, 0.15);
  flex-shrink: 0;
  transition: all var(--duration-fast);
}

.footer__contact-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.footer__contact-icon--whatsapp { color: #25D366; }
.footer__contact-icon--instagram { color: #E1306C; }
.footer__contact-icon--tiktok { color: #69C9D0; }

.footer__contact-item--link:hover .footer__contact-icon {
  background: var(--color-terracotta);
  border-color: var(--color-terracotta);
  color: #fff;
}

.footer__bottom {
  padding: var(--space-lg) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: var(--text-sm);
  color: rgba(255, 253, 246, 0.4);
}

.footer__bottom-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer__bottom-social {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.footer__bottom-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 253, 246, 0.5);
  transition: color var(--duration-fast), transform var(--duration-fast);
}

.footer__bottom-social a svg {
  width: 18px;
  height: 18px;
  display: block;
}

.footer__bottom-social a:hover {
  color: var(--color-terracotta);
  transform: translateY(-2px);
}

/* ============================================================
   15. FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: var(--z-float);
  transition: all var(--duration-normal) var(--ease-out);
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  display: block;
}

.whatsapp-float__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: wa-pulse 2s ease-out infinite;
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ============================================================
   16. LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl);
  cursor: zoom-out;
  opacity: 0;
  transition: opacity var(--duration-normal);
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration-fast);
}

.lightbox__close:hover {
  background: rgba(255,255,255,0.2);
}

/* ============================================================
   17. SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Staggered children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--duration-normal) var(--ease-out),
              transform var(--duration-normal) var(--ease-out);
}

.stagger-children.revealed > *:nth-child(1) { transition-delay: 0ms; }
.stagger-children.revealed > *:nth-child(2) { transition-delay: 100ms; }
.stagger-children.revealed > *:nth-child(3) { transition-delay: 200ms; }
.stagger-children.revealed > *:nth-child(4) { transition-delay: 300ms; }
.stagger-children.revealed > *:nth-child(5) { transition-delay: 400ms; }
.stagger-children.revealed > *:nth-child(6) { transition-delay: 500ms; }

.stagger-children.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   18. RESPONSIVE DESIGN
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --text-5xl: 3rem;
    --text-4xl: 2.5rem;
    --text-3xl: 2rem;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__content {
    padding-right: 0;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__tags {
    justify-content: center;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__gallery {
    height: auto;
    margin-top: var(--space-xl);
  }

  .hero__polaroid--1 { width: 180px; }
  .hero__polaroid--2 { width: 160px; }
  .hero__polaroid--3 { width: 150px; }
  .hero__polaroid--4 { width: 140px; }

  .about__inner {
    grid-template-columns: 1fr;
  }

  .about__images {
    height: 350px;
  }

  .about__content {
    padding-left: 0;
    text-align: center;
  }

  .about__stats {
    justify-content: center;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services__grid .service-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 400px;
    justify-self: center;
  }

  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card--popular {
    transform: scale(1);
  }

  .pricing-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    justify-self: center;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .booking__location {
    grid-template-columns: 1fr;
  }

  .booking__location-map {
    min-height: 240px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --text-5xl: 2.25rem;
    --text-4xl: 2rem;
    --text-3xl: 1.75rem;
    --text-2xl: 1.5rem;
    --container-padding: 1.25rem;
  }

  .section-padding {
    padding: var(--space-3xl) 0;
  }

  /* Mobile Nav */
  .navbar__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-cream-light);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px var(--space-2xl) var(--space-2xl);
    gap: var(--space-md);
    transition: right var(--duration-normal) var(--ease-out);
    box-shadow: -5px 0 30px var(--color-shadow);
    z-index: var(--z-overlay);
  }

  .navbar__nav.open {
    right: 0;
  }

  .navbar__nav .navbar__link {
    color: var(--color-brown-dark);
    font-size: var(--text-base);
  }

  .navbar__hamburger {
    display: flex;
  }

  .navbar__nav .navbar__cta {
    margin-top: var(--space-md);
  }

  /* Mobile Overlay */
  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: calc(var(--z-overlay) - 1);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration-normal);
  }

  .mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  /* Hero Mobile */
  .hero {
    min-height: 60vh;
    flex: 1 0 auto;
    padding-top: 120px;
    padding-bottom: var(--space-3xl);
  }

  .hero__gallery {
    height: auto;
    margin-top: var(--space-lg);
  }

  .hero__polaroid--1 {
    width: 140px;
    transform: rotate(-6deg) translate(-40%, -5%);
  }
  .hero__polaroid--2 {
    width: 130px;
    transform: rotate(4deg) translate(20%, -20%);
  }
  .hero__polaroid--3 {
    width: 120px;
    transform: rotate(-3deg) translate(-10%, 40%);
  }
  .hero__polaroid--4 {
    display: none;
  }

  @keyframes float-1 {
    0%, 100% { transform: rotate(-6deg) translate(-40%, -5%); }
    50% { transform: rotate(-4deg) translate(-40%, -12%); }
  }
  @keyframes float-2 {
    0%, 100% { transform: rotate(4deg) translate(20%, -20%); }
    50% { transform: rotate(6deg) translate(20%, -27%); }
  }
  @keyframes float-3 {
    0%, 100% { transform: rotate(-3deg) translate(-10%, 40%); }
    50% { transform: rotate(-1deg) translate(-10%, 33%); }
  }

  /* About Mobile */
  .about__images {
    height: 300px;
  }

  .about__photo--main {
    width: 240px;
    height: 300px;
    left: 20px;
  }

  .about__photo--secondary {
    width: 180px;
    height: 220px;
    right: 10px;
  }

  .about__stats {
    gap: var(--space-lg);
  }

  /* Services Mobile */
  .services__grid {
    grid-template-columns: 1fr;
  }

  .services__grid .service-card:nth-child(4),
  .services__grid .service-card:nth-child(5) {
    grid-column: auto;
    max-width: none;
  }

  /* Portfolio Mobile */
  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .portfolio__wall {
    padding: var(--space-xl) var(--space-md);
  }

  .portfolio__polaroid {
    padding: 6px 6px 30px;
  }

  /* Pricing Mobile */
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .pricing-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .pricing-card--popular {
    transform: none;
  }

  /* Booking Mobile */
  .booking__steps {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .booking__steps::before {
    display: none;
  }

  /* Footer Mobile */
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  /* WhatsApp button */
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 24px;
  }

  /* Quick Nav Mobile — horizontal scroll */
  .quick-nav {
    padding: var(--space-md) 0;
  }

  .quick-nav__inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
  }

  .quick-nav__inner::-webkit-scrollbar {
    display: none;
  }

  .quick-nav__badge {
    padding: 0.5rem 1.1rem;
    font-size: var(--text-xs);
  }

  /* Booking Location Mobile */
  .booking__location {
    grid-template-columns: 1fr;
    padding: var(--space-lg);
    gap: var(--space-lg);
  }

  .booking__location-map {
    min-height: 220px;
  }

  .booking__location-info .btn {
    align-self: stretch;
    width: 100%;
    text-align: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  :root {
    --text-5xl: 1.875rem;
    --text-3xl: 1.5rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 300px;
  }

  .portfolio__grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
  }

  .about__photo--main {
    width: 200px;
    height: 260px;
  }

  .about__photo--secondary {
    width: 150px;
    height: 190px;
  }
}

/* ============================================================
   19. PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-cream-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s var(--ease-out);
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.preloader__text {
  font-family: var(--font-accent);
  /* Responsif: 24px di mobile, membesar mulus hingga 48px di laptop */
  font-size: clamp(1.5rem, 4vw, 3rem); 
  color: var(--color-brown);
  letter-spacing: 1px;
  text-align: center;
  padding: 0 var(--space-md);
  animation: preloader-fade 1.5s ease-in-out infinite;
}

@keyframes preloader-fade {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Hide overflow when loading */
body.loading {
  overflow: hidden;
}

/* ============================================================
   22. MODERN PRICELIST CARD LAYOUT (ANXIETIVE STYLE)
   ============================================================ */
.pricelist-board {
  background: #ffffff;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--color-border);
}

@media (max-width: 480px) {
  .pricelist-board {
    padding: 1.5rem 1rem;
  }
}

.pricelist-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-brown-dark);
  margin-bottom: 1.8rem;
}

/* Card item */
.plist-card {
  border-radius: 18px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  display: grid;
  grid-template-columns: 1fr auto 130px;
  gap: 1rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--duration-fast), box-shadow var(--duration-fast);
}

.plist-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

@media (max-width: 576px) {
  .plist-card {
    grid-template-columns: 1fr 110px;
    grid-template-areas:
      "content img"
      "price img";
    gap: 0.5rem;
    padding: 1.2rem;
  }

  .plist-card__content { grid-area: content; }
  .plist-card__price { grid-area: price; justify-self: start; margin-top: -10px; }
  .plist-card__img { grid-area: img; height: 110px !important; width: 110px !important; }
}

/* Card Variants */
.plist-card--red {
  background: #8b0000; /* Rich Burgundy / Red */
  color: #ffffff;
}
.plist-card--red .plist-card__name,
.plist-card--red .plist-card__specs,
.plist-card--red .plist-card__price {
  color: #ffffff !important;
}

.plist-card--gray {
  background: #e8eaed;
  color: #1a1a1a;
}
.plist-card--gray .plist-card__name { color: #000; }
.plist-card--gray .plist-card__specs { color: #444; }
.plist-card--gray .plist-card__price { color: #1a1a1a; }

.plist-card--white {
  background: #ffffff;
  border: 1px solid #dcdcdc;
  color: #1a1a1a;
}
.plist-card--white .plist-card__name { color: #000; }
.plist-card--white .plist-card__specs { color: #555; }
.plist-card--white .plist-card__price { color: #1a1a1a; }

/* Inner Content */
.plist-card__name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.plist-card__specs {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.plist-card__specs li {
  margin-bottom: 2px;
}

.plist-card__price {
  font-family: var(--font-body);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -1px;
  align-self: start;
  padding-top: 2px;
}

.plist-card__img {
  width: 130px;
  height: 130px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.plist-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Addon Grid at bottom */
.plist-addon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

@media (max-width: 576px) {
  .plist-addon-grid {
    grid-template-columns: 1fr;
  }
}

.plist-addon-card {
  background: #e8eaed;
  border-radius: 14px;
  padding: 1.2rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.plist-addon__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.plist-addon__desc {
  font-size: 0.85rem;
  color: #555;
  margin: 0;
}

.plist-addon__price {
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 800;
  color: #1a1a1a;
  text-align: right;
  line-height: 1.1;
}


/* ============================================================
   20. SUB-PAGE HERO & COMPONENTS
   ============================================================ */
.page-hero {
  background: linear-gradient(160deg, #1F2E75 0%, #16215C 40%, #0D1440 100%);
  padding: 140px 0 60px;
  color: var(--color-cream-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before,
.page-hero::after {
  content: '';
  position: absolute;
  width: 46px;
  height: 46px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cpolygon points='20,2 25,15 39,15 27,24 32,38 20,29 8,38 13,24 1,15 15,15' fill='%23FFC72C' stroke='%23FFFFFF' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.9;
  pointer-events: none;
}

.page-hero::before {
  top: 24px;
  left: 6%;
  transform: rotate(-12deg);
}

.page-hero::after {
  bottom: 20px;
  right: 7%;
  width: 34px;
  height: 34px;
  transform: rotate(18deg);
}

.page-hero__breadcrumb {
  font-size: var(--text-sm);
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-xs);
  display: block;
  font-weight: 600;
}

.page-hero__title {
  display: inline-block;
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--color-navy);
  background: var(--color-yellow);
  padding: 6px 22px;
  border-radius: var(--radius-md);
  transform: rotate(-1.5deg);
  box-shadow: 5px 5px 0 rgba(22, 33, 92, 0.9);
  margin-bottom: var(--space-md);
}

.page-hero__subtitle {
  font-size: var(--text-md);
  color: rgba(255, 253, 246, 0.7);
  max-width: 640px;
  margin: 0 auto;
}

/* Gallery Filter Tabs */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: var(--color-white-warm);
  color: var(--color-brown);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-terracotta);
  color: #fff;
  border-color: var(--color-terracotta);
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

/* ============================================================
   21. RESERVATION FORM & LAYOUT
   ============================================================ */
.reservation-layout {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

@media (max-width: 992px) {
  .reservation-layout {
    grid-template-columns: 1fr;
  }
  .reservation-sidebar {
    position: static;
  }
}

.res-step {
  background: var(--color-white-warm);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 20px var(--color-shadow);
}

.res-step__header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.res-step__badge {
  background: var(--color-terracotta);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.res-step__title {
  font-size: var(--text-xl);
  color: var(--color-brown-dark);
}

/* Theme Selector Cards */
.theme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
}

.theme-card {
  background: var(--color-cream-light);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  gap: var(--space-md);
  align-items: center;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
}

.theme-card:hover {
  border-color: var(--color-orange);
  transform: translateY(-2px);
}

.theme-card.active:not(.pricelist-card) {
  border-color: var(--color-terracotta);
  background: #FFFFFF;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.2);
}

/* Theme cards styled like the Harga price list, but still selectable */
.theme-pricelist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.theme-card.pricelist-card,
.wedding-card.pricelist-card {
  cursor: pointer;
  border: 3px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.theme-card.pricelist-card:hover,
.wedding-card.pricelist-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

/* ============ SPOTLIGHT-STYLE PACKAGE CARD ============ */
.spot-card {
  background: var(--color-white-warm);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 26px var(--color-shadow);
  border: 3px solid transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.spot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.spot-card.active {
  border-color: var(--color-terracotta);
}

.spot-card__photo {
  position: relative;
  height: 380px;
  overflow: hidden;
  flex-shrink: 0;
}

.spot-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spot-card__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 30%);
}

.spot-card__badge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  z-index: 2;
  display: block;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 0 var(--space-md);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55), 0 0 2px rgba(0, 0, 0, 0.4);
}

.spot-card__body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.spot-card__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--color-brown-dark);
  margin: 0 0 4px 0;
}

.spot-card__address {
  font-size: var(--text-sm);
  color: var(--color-olive);
  line-height: 1.5;
  margin: 0 0 6px 0;
}

.spot-card__details-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0 0 var(--space-sm) 0;
  color: var(--color-terracotta-dark);
  font-weight: 700;
  font-size: var(--text-sm);
  cursor: pointer;
  align-self: flex-end;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.spot-card__facilities {
  display: none;
  margin: 0 0 var(--space-md) 0;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-cream);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  color: var(--color-brown-medium);
}

.spot-card__facilities.is-open {
  display: block;
}

.spot-card__facilities ul {
  margin: 0;
  padding-left: 1.1rem;
}

.spot-card__facilities li {
  margin-bottom: 3px;
}

.spot-card__stats {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.spot-card__stat--right {
  text-align: right;
}

.spot-card__stat-label {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-olive);
  margin-bottom: 2px;
}

.spot-card__stat-value {
  display: block;
  font-weight: 700;
  color: var(--color-brown-dark);
  font-size: var(--text-base);
}

.spot-card__price-label {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-olive);
  margin-bottom: 2px;
}

.spot-card__price-value {
  display: block;
  font-weight: 800;
  font-size: var(--text-lg);
  color: var(--color-brown-dark);
  margin-bottom: var(--space-md);
}

.spot-card__cta {
  width: 100%;
  background: var(--color-brown-dark);
  color: var(--color-white-warm);
  border: none;
  padding: 14px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: var(--text-base);
  cursor: pointer;
  margin-top: auto;
  transition: background 0.2s ease;
}

.spot-card__cta:hover {
  background: #0D1440;
}

.theme-card.pricelist-card.active,
.wedding-card.pricelist-card.active {
  border-color: var(--color-terracotta);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.35), 0 12px 28px rgba(0, 0, 0, 0.15);
}

.theme-card.pricelist-card.active::before,
.wedding-card.pricelist-card.active::before {
  content: "✓ Dipilih";
  position: absolute;
  top: 14px;
  left: 24px;
  background: var(--color-terracotta);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  z-index: 2;
}

.theme-card__icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.theme-card__title {
  font-size: var(--text-md);
  color: var(--color-brown-dark);
  margin-bottom: 2px;
}

.theme-card__tags {
  display: flex;
  gap: 8px;
  font-size: var(--text-xs);
  color: var(--color-brown-medium);
  margin-bottom: 4px;
}

.theme-card__price {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-terracotta);
}

/* Time Slots */
.time-slots {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
}

.time-slot {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-cream-light);
  color: var(--color-brown-dark);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--duration-fast);
}

.time-slot:hover,
.time-slot.active {
  background: var(--color-brown-dark);
  color: var(--color-cream-light);
  border-color: var(--color-brown-dark);
}

/* Form Controls */
.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-brown-dark);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: #fff;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-brown-dark);
  transition: border-color var(--duration-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-terracotta);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
}

.form-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

@media (max-width: 560px) {
  .form-grid-2col {
    grid-template-columns: 1fr;
  }
}

/* Summary Card */
.reservation-sidebar {
  position: sticky;
  top: 100px;
}

.summary-card {
  background: var(--color-white-warm);
  border: 2px solid var(--color-terracotta);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: 0 10px 30px var(--color-shadow);
}

.summary-card__title {
  font-size: var(--text-xl);
  color: var(--color-brown-dark);
  margin-bottom: var(--space-sm);
  text-align: center;
}

.summary-card__divider {
  height: 1px;
  background: var(--color-border);
  margin: var(--space-md) 0;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  margin-bottom: var(--space-xs);
}

.summary-item__label {
  color: var(--color-brown-medium);
}

.summary-item__val {
  font-weight: 600;
  color: var(--color-brown-dark);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--color-brown-dark);
  margin-top: var(--space-sm);
}

.summary-total__price {
  font-size: var(--text-2xl);
  color: var(--color-terracotta);
  font-family: var(--font-heading);
}

/* ============================================================
   22. ANXIETIVE PRICE LIST CARDS STYLE
   ============================================================ */
.pricelist-section {
  padding: 60px 0 80px;
  background: #FAFAFA;
}

.pricelist-wrapper {
  max-width: 580px;
  margin: 0 auto;
  padding: 0 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.pricelist-main-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.pricelist-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  padding: 22px 20px 22px 24px;
  margin-bottom: 16px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  min-height: 175px;
  cursor: default;
}

/* Card 1: Red Studio */
.pricelist-card--red {
  background: #800A15;
  color: #FFFFFF;
}

.pricelist-card--red .pricelist-card__title,
.pricelist-card--red .pricelist-card__list,
.pricelist-card--red .pricelist-card__price {
  color: #FFFFFF;
}

/* Card 2: Wide Studio */
.pricelist-card--gray {
  background: #EAEAEA;
  color: #111111;
}

.pricelist-card--gray .pricelist-card__title,
.pricelist-card--gray .pricelist-card__list,
.pricelist-card--gray .pricelist-card__price {
  color: #111111;
}

/* Card 3: Pas Photo */
.pricelist-card--white {
  background: #FFFFFF;
  color: #111111;
  border: 1px solid #E0E0E0;
}

.pricelist-card--white .pricelist-card__title,
.pricelist-card--white .pricelist-card__list,
.pricelist-card--white .pricelist-card__price {
  color: #111111;
}

/* Card 4: Vintage Room */
.pricelist-card--terracotta {
  background: #E63946;
  color: #FFFFFF;
}

.pricelist-card--terracotta .pricelist-card__title,
.pricelist-card--terracotta .pricelist-card__list,
.pricelist-card--terracotta .pricelist-card__price {
  color: #FFFFFF;
}

/* Card 5: Self Studio Pro */
.pricelist-card--brown {
  background: #3D2B1F;
  color: #FFFFFF;
}

.pricelist-card--brown .pricelist-card__title,
.pricelist-card--brown .pricelist-card__list,
.pricelist-card--brown .pricelist-card__price {
  color: #FFFFFF;
}

/* Card 6: Couple & Prewedding */
.pricelist-card--sand {
  background: #D9C3B0;
  color: #111111;
}

.pricelist-card--sand .pricelist-card__title,
.pricelist-card--sand .pricelist-card__list,
.pricelist-card--sand .pricelist-card__price {
  color: #111111;
}

/* Card 7: Family Package */
.pricelist-card--navy {
  background: #2C3A33;
  color: #FFFFFF;
}

.pricelist-card--navy .pricelist-card__title,
.pricelist-card--navy .pricelist-card__list,
.pricelist-card--navy .pricelist-card__price {
  color: #FFFFFF;
}

.pricelist-card__content {
  flex: 1;
  padding-right: 12px;
  z-index: 2;
}

.pricelist-card__title {
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}

.pricelist-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricelist-card__list li {
  font-size: 0.92rem;
  line-height: 1.45;
  opacity: 0.9;
  font-weight: 400;
}

.pricelist-card__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  height: 100%;
  z-index: 2;
  position: relative;
}

.pricelist-card__price {
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
  text-align: right;
}

.pricelist-card__img-box {
  width: 125px;
  height: 115px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.pricelist-card__img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Multi-photo mini gallery (3 tema foto per paket) */
.pricelist-card__img-multi {
  display: flex;
  gap: 6px;
}

.pricelist-card__thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
  border: none;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.pricelist-card__thumb:hover {
  transform: translateY(-3px);
}

.pricelist-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 480px) {
  .pricelist-card__thumb {
    width: 32px;
    height: 32px;
  }
}

/* Add-ons Grid */
.pricelist-addons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 16px;
}

.pricelist-addon-card {
  background: #EAEAEA;
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #111111;
}

.pricelist-addon-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
}

.pricelist-addon-card__desc {
  font-size: 0.82rem;
  color: #555555;
  line-height: 1.3;
}

.pricelist-addon-card__price {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: right;
  line-height: 1.15;
}

@media (max-width: 480px) {
  .pricelist-card {
    padding: 18px 14px 18px 18px;
  }
  .pricelist-card__img-box {
    width: 105px;
    height: 100px;
  }
  .pricelist-card__title {
    font-size: 1.35rem;
  }
  .pricelist-card__list li {
    font-size: 0.86rem;
  }
}

/* ============================================================
   23. NAVBAR CONTACT DROPDOWN MENU
   ============================================================ */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown__btn {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-brown-dark);
  padding: 0.5rem 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color var(--duration-fast);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.navbar:not(.scrolled) .nav-dropdown__btn {
  color: var(--color-cream-light);
}

.navbar.scrolled .nav-dropdown__btn {
  color: var(--color-brown-dark);
}

.nav-dropdown:hover .nav-dropdown__btn,
.nav-dropdown.show .nav-dropdown__btn {
  color: var(--color-terracotta) !important;
}

.nav-dropdown__menu {
  position: absolute;
  top: 120%;
  right: 0;
  width: 320px;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
  border: 1px solid var(--color-border);
  padding: var(--space-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 1000;
  text-align: left;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown.show .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown__header {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-brown-dark);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown__section {
  margin-bottom: 10px;
}

.nav-dropdown__section:last-child {
  margin-bottom: 0;
}

.nav-dropdown__title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-terracotta);
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.nav-dropdown__content {
  font-size: 0.85rem;
  color: var(--color-brown-dark);
  line-height: 1.4;
}

.nav-dropdown__content a {
  color: var(--color-brown-dark);
  text-decoration: none;
  font-weight: 600;
}

.nav-dropdown__content a:hover {
  color: var(--color-terracotta);
  text-decoration: underline;
}

.btn-maps-link {
  display: inline-block;
  margin-top: 6px;
  padding: 6px 12px;
  background: var(--color-terracotta);
  color: #FFF !important;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: background var(--duration-fast);
}

.btn-maps-link:hover {
  background: var(--color-orange);
}

@media (max-width: 992px) {
  .nav-dropdown {
    display: block;
    width: 100%;
  }

  .nav-dropdown__btn {
    width: 100%;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    color: var(--color-brown-dark) !important;
  }

  .nav-dropdown__menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: 1px solid var(--color-border);
    background: #FFF;
    transform: none;
    display: none;
    opacity: 1;
    visibility: visible;
    margin-top: 6px;
  }
  
  .nav-dropdown.show .nav-dropdown__menu {
    display: block;
  }
}

/* ============================================================
   17. PRICE PAGE — HORIZONTAL GALLERY SLIDER
   ============================================================ */
.price-gallery-slider {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  cursor: grab;
  padding-bottom: var(--space-md);
  scrollbar-width: thin;
  scrollbar-color: var(--color-terracotta) rgba(0, 0, 0, 0.08);
}

.price-gallery-slider.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.price-gallery-slider::-webkit-scrollbar {
  height: 8px;
}

.price-gallery-slider::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-full);
}

.price-gallery-slider::-webkit-scrollbar-thumb {
  background: var(--color-terracotta);
  border-radius: var(--radius-full);
}

.price-gallery-slider__track {
  display: flex;
  gap: var(--space-lg);
  width: max-content;
  padding: var(--space-xs) 2px var(--space-md);
}

.price-gallery-slider__item {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: block;
  box-shadow: 0 10px 26px var(--color-shadow);
  transition: transform var(--duration-fast), box-shadow var(--duration-fast);
  user-select: none;
  -webkit-user-drag: none;
  border: none;
  padding: 0;
  background: none;
  font: inherit;
  cursor: pointer;
}

.price-gallery-slider__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px var(--color-shadow);
}

.price-gallery-slider__item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.price-gallery-slider__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--space-md) var(--space-md) var(--space-sm);
  background: linear-gradient(to top, rgba(13, 20, 64, 0.85), transparent);
  color: #fff;
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
}

.price-gallery-slider__hint {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--color-brown-medium);
  margin-top: -6px;
  margin-bottom: var(--space-lg);
}

@media (max-width: 640px) {
  .price-gallery-slider__item {
    width: 180px;
  }

  .price-gallery-slider__item img {
    height: 230px;
  }
}




/* ============================================================
   SCHEDULE PAGE (jadwal.html) — "Jadwalkan Layanan Anda"
   ============================================================ */
.schedule-page {
  background: var(--color-white-warm);
  min-height: 100vh;
  padding: var(--space-2xl) 0 var(--space-2xl);
}

.schedule-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-olive);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  margin-bottom: var(--space-lg);
  transition: color 0.2s ease;
}

.schedule-back:hover {
  color: var(--color-brown-dark);
}

.schedule-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.schedule-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: var(--text-3xl);
  color: var(--color-brown-dark);
  margin: 0 0 var(--space-xs) 0;
}

.schedule-subtitle {
  color: var(--color-olive);
  font-size: var(--text-base);
  margin: 0;
}

.schedule-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

@media (max-width: 900px) {
  .schedule-grid {
    grid-template-columns: 1fr;
  }
}

.order-form-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

@media (max-width: 900px) {
  .order-form-grid {
    grid-template-columns: 1fr;
  }
}

.schedule-panel {
  background: var(--color-white-warm);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  min-height: 340px;
}

.schedule-panel__title {
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--color-brown-dark);
  margin: 0 0 var(--space-md) 0;
}

/* Calendar */
.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

.calendar-nav button {
  background: none;
  border: none;
  font-size: var(--text-lg);
  color: var(--color-brown-medium);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.calendar-nav button:hover:not(:disabled) {
  background: var(--color-cream);
}

.calendar-nav button:disabled {
  color: var(--color-border);
  cursor: not-allowed;
}

.calendar-nav__label {
  font-weight: 700;
  color: var(--color-brown-dark);
  font-size: var(--text-base);
}

.calendar-weekdays,
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}

.calendar-weekdays span {
  font-size: var(--text-xs);
  color: var(--color-olive);
  font-weight: 600;
  padding-bottom: 6px;
}

.calendar-day {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: var(--text-sm);
  color: var(--color-brown-dark);
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.calendar-day:hover:not(.calendar-day--disabled):not(.calendar-day--empty) {
  background: var(--color-cream);
}

.calendar-day--disabled {
  color: var(--color-border);
  cursor: not-allowed;
  font-weight: 400;
}

.calendar-day--empty {
  visibility: hidden;
  cursor: default;
}

.calendar-day--today {
  box-shadow: inset 0 0 0 2px var(--color-terracotta);
}

.calendar-day--selected {
  background: var(--color-terracotta);
  color: #fff;
}

/* Ketersediaan (availability) */
.availability-empty {
  color: var(--color-olive);
  font-size: var(--text-sm);
}

.availability-info {
  font-size: var(--text-xs);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.availability-slots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xs);
}

.availability-slot {
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 10px 8px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-brown-dark);
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.availability-slot:hover {
  border-color: var(--color-terracotta);
}

.availability-slot.active {
  background: var(--color-terracotta);
  border-color: var(--color-terracotta);
  color: #fff;
}

/* Detail Layanan */
.service-detail__title {
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--color-brown-dark);
  margin: 0 0 6px 0;
}

.service-detail__address {
  font-size: var(--text-sm);
  color: var(--color-olive);
  line-height: 1.5;
  margin: 0 0 var(--space-sm) 0;
}

.service-detail__duration {
  font-size: var(--text-sm);
  color: var(--color-brown-dark);
  margin: 0 0 var(--space-md) 0;
}

.service-detail__selection {
  font-size: var(--text-sm);
  color: var(--color-brown-medium);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-cream);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-lg);
}

.service-detail__selection.is-filled {
  color: var(--color-brown-dark);
  font-weight: 600;
}

.btn-continue {
  width: 100%;
  border: none;
  padding: 14px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: var(--text-base);
  cursor: not-allowed;
  background: var(--color-border);
  color: var(--color-white-warm);
  transition: background 0.2s ease;
}

.btn-continue.is-enabled {
  cursor: pointer;
  background: var(--color-brown-dark);
}

.btn-continue.is-enabled:hover {
  background: #0D1440;
}

/* Photobox room selector in Ringkasan Paket */
.summary-room-choice {
  margin: 0 0 var(--space-md);
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--color-brown-light, #ddd);
  border-radius: 12px;
  background: rgba(255,255,255,.55);
}
.summary-room-choice__title {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}
.summary-room-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  cursor: pointer;
  font-size: var(--text-sm);
}
.summary-room-option input { accent-color: var(--color-terracotta, #c45b3c); }
.summary-room-option.active span { font-weight: 700; }
.photobox-category-heading {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: -8px;
}
.photobox-category-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--color-yellow, #ffc72c);
  color: var(--color-brown-dark, #16215c);
  font-size: var(--text-xs);
  font-weight: 800;
}
.photobox-category-heading p { margin: 0; color: var(--color-brown-medium); font-size: var(--text-sm); }

/* ============================================================
   RESERVASI — VISUAL CARD LAYOUT (reference image)
   ============================================================ */
.reservation-theme-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
}
.reservation-theme-card {
  min-width: 0 !important;
  cursor: pointer;
  border-radius: 20px !important;
  overflow: hidden !important;
  position: relative;
  padding: 0 !important;
  background: #111 !important;
  border: 2px solid transparent !important;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.reservation-theme-card:hover { transform: translateY(-3px); }
.reservation-theme-card.active { border-color: var(--color-orange, #ff6b35) !important; }
.reservation-theme-card .spot-card__photo {
  height: auto !important;
  min-height: 0 !important;
  position: relative !important;
  margin: 0 !important;
  background: var(--color-cream-light, #f7f1e7) !important;
  overflow: hidden !important;
}
.reservation-theme-card .spot-card__photo img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
  background: transparent !important;
}
.reservation-card-overlay h2 {
  margin: 0 0 6px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 25px;
  line-height: 1.05;
  font-weight: 800;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  text-shadow: 0 2px 5px rgba(0,0,0,.45);
}
.reservation-card-overlay span {
  font-size: 17px;
  font-weight: 600;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  text-shadow: 0 1px 4px rgba(0,0,0,.45);
}
.reservation-theme-card .reservation-card-overlay,
.reservation-theme-card .reservation-card-overlay h2,
.reservation-theme-card .reservation-card-overlay span {
  color: #fff !important;
}
.reservation-theme-card .spot-card__body,
.reservation-theme-card .spot-card__badge,
.reservation-theme-card .spot-card__facilities,
.reservation-theme-card .spot-card__stats,
.reservation-theme-card .spot-card__price-label,
.reservation-theme-card .spot-card__price-value,
.reservation-theme-card .spot-card__cta,
.reservation-theme-card .spot-card__address,
.reservation-theme-card .spot-card__details-btn { display: none !important; }
.photobox-category-heading { display:none !important; }
.reservation-camera-icon { margin-left: 12px; opacity: .55; font-size: 25px; }
.reservation-summary-card { border-radius: 20px !important; }
.summary-category-select { margin-bottom: 16px; }
.summary-category-select label { display:block; font-weight:700; margin-bottom:8px; }
.summary-category-select select {
  width:100%; padding:14px 16px; border:1px solid rgba(0,0,0,.12); border-radius:12px;
  background:#fff; font-size:16px; color:inherit; outline:none;
}
.summary-room-choice { margin: 12px 0 18px; }
.summary-room-choice__title { display:block; font-weight:700; margin-bottom:8px; }
.summary-room-option { display:flex; align-items:center; gap:10px; padding:10px 12px; border:1px solid rgba(0,0,0,.09); border-radius:10px; margin-top:7px; cursor:pointer; }
.summary-room-option.active { border-color: #ff8a5c; background: rgba(255,138,92,.08); }
.summary-detail-list { display:flex; flex-direction:column; }
.summary-detail-row { display:flex; justify-content:space-between; gap:18px; padding:14px 0; border-bottom:1px solid rgba(0,0,0,.09); }
.summary-detail-row span { font-weight:600; }
.summary-detail-row strong { text-align:right; }
.summary-facilities-row { display:block; }
.summary-facilities-row ul { margin:10px 0 0; padding-left:20px; font-size:14px; line-height:1.7; }
.summary-book-btn { width:100%; border:0; border-radius:11px; padding:14px 18px; margin-top:18px; background: var(--color-brown-dark); color:#fff; font-weight:800; font-size:16px; cursor:pointer; transition: background 0.2s ease; }
.summary-book-btn:hover { background: #0D1440; }
.summary-security { text-align:center; font-size:12px; color:var(--color-brown-medium); margin:12px 0 0; }
@media (max-width: 560px) {
  .reservation-theme-grid { grid-template-columns: 1fr !important; }
  .reservation-theme-card .spot-card__photo { height: auto !important; min-height:0 !important; }
}

/* ============================================================
   CARD PHOTO SLIDER & SESSION PICKER STYLES
   ============================================================ */
.card-photo-slider {
  position: relative;
  width: 100%;
  display: block;
  overflow: hidden;
  background: var(--color-cream-light, #f7f1e7);
}
.card-photo-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  pointer-events: none;
  z-index: 1;
}
.card-photo-slide.active {
  position: relative !important;
  opacity: 1 !important;
  pointer-events: auto;
  z-index: 2;
}
.card-photo-slide img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
}

/* Familia card landscape styling */
@media (min-width: 561px) {
  .reservation-theme-card[data-theme="family"] {
    grid-column: 1 / -1 !important;
  }
  .reservation-theme-card[data-theme="family"] .spot-card__photo {
    max-height: 380px !important;
  }
  .reservation-theme-card[data-theme="family"] .card-photo-slide img {
    object-fit: cover !important;
    max-height: 380px !important;
    width: 100% !important;
  }
}

.reservation-theme-card .spot-card__photo::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to bottom, rgba(0,0,0,.88) 0%, rgba(0,0,0,.25) 50%, rgba(0,0,0,0) 100%) !important;
  pointer-events: none;
  z-index: 3 !important;
}

.reservation-card-overlay {
  position: absolute;
  z-index: 4 !important;
  left: 20px;
  right: 18px;
  top: 18px;
  bottom: auto !important;
  color: #fff;
}

.slider-arrow {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  z-index: 5 !important;
  background: rgba(22, 33, 92, 0.75);
  color: #ffffff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  transition: all 0.25s ease;
  user-select: none;
}
.reservation-theme-card:hover .slider-arrow {
  opacity: 0.9;
}
.slider-arrow:hover {
  background: var(--color-terracotta, #e63946) !important;
  opacity: 1 !important;
  transform: translateY(-50%) scale(1.15);
}
.slider-arrow--prev { left: 10px; }
.slider-arrow--next { right: 10px; }

.slider-indicators {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5 !important;
  display: flex;
  gap: 6px;
  align-items: center;
}
.slider-indicators .indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.slider-indicators .indicator.active {
  background: var(--color-yellow, #ffc72c);
  width: 20px;
  border-radius: 10px;
}

/* Session Picker in Summary */
.summary-session-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.09);
}
.session-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: flex-end;
  max-width: 220px;
}
.session-btn {
  padding: 4px 10px;
  border-radius: 8px;
  border: 1.5px solid var(--color-border, #d8dcee);
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-brown-dark, #16215c);
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.session-btn:hover {
  border-color: var(--color-terracotta, #e63946);
}
.session-btn.active {
  background: var(--color-terracotta, #e63946);
  border-color: var(--color-terracotta, #e63946);
  color: #fff;
}


