/* ===========================================
   Cheery Co. — Main Stylesheet
   Premium Minimal Celebration Decor Brand
   =========================================== */

/* ── 1. Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── 2. Custom Properties ── */
:root {
  --coral:        #E8625C;
  --coral-light:  #f0847f;
  --coral-dark:   #d44e48;
  --navy:         #1E2A4A;
  --navy-light:   #2d3d6a;
  --white:        #FFFFFF;
  --cream:        #FFF9F4;
  --cream-dark:   #FFF0E6;
  --text:         #2A2A2A;
  --text-muted:   #6B7280;
  --border:       rgba(30, 42, 74, 0.10);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, sans-serif;

  --radius-sm:    8px;
  --radius:       16px;
  --radius-lg:    24px;
  --radius-xl:    32px;

  --shadow-sm:    0 2px 8px rgba(30, 42, 74, 0.08);
  --shadow:       0 8px 32px rgba(30, 42, 74, 0.10);
  --shadow-lg:    0 16px 48px rgba(30, 42, 74, 0.14);
  --shadow-coral: 0 8px 24px rgba(232, 98, 92, 0.28);

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

  --nav-height:   72px;
  --section-pad:  96px;
}

/* ── 3. Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

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

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

/* Grain texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 300px 300px;
}

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

/* ── 4. Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.625rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }

p { line-height: 1.75; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}

/* ── 5. Utilities ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-pad) 0; }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); color: var(--white); }

.text-center { text-align: center; }
.text-coral { color: var(--coral); }
.text-muted { color: var(--text-muted); font-size: 0.9375rem; }

.section-heading {
  max-width: 600px;
  margin: 0 auto 16px;
}
.section-intro {
  max-width: 560px;
  margin: 0 auto 56px;
  color: var(--text-muted);
  font-size: 1.0625rem;
}

/* ── 6. Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn--coral {
  background: var(--coral);
  color: var(--white);
  box-shadow: var(--shadow-coral);
}
.btn--coral:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(232, 98, 92, 0.38);
}

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

.btn--white {
  background: var(--white);
  color: var(--coral);
  box-shadow: var(--shadow);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn--navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

/* Ripple effect */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-anim 0.55s linear;
  background: rgba(255,255,255,0.35);
  pointer-events: none;
}

@keyframes ripple-anim {
  to { transform: scale(4); opacity: 0; }
}

/* WhatsApp button */
.btn--wa {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.30);
}
.btn--wa:hover {
  background: #20bc5a;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.40);
}

/* ── 7. Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav__logo { display: flex; align-items: center; }
.nav__logo svg,
.nav__logo img { height: 56px; width: auto; display: block; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav__links a:hover,
.nav__links a.active {
  background: var(--cream);
  color: var(--coral);
}

.nav__cta { margin-left: 8px; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-8px);
  opacity: 0;
  transition: var(--transition);
}
.nav__mobile.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
.nav__mobile a {
  display: block;
  padding: 14px 16px;
  font-weight: 500;
  color: var(--navy);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  font-size: 1.0625rem;
}
.nav__mobile a:hover { background: var(--cream); color: var(--coral); }
.nav__mobile .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ── 8. Hero ── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
  background: linear-gradient(145deg, #FFF9F4 0%, #FFF3EE 55%, #FFF9F4 100%);
}

/* Coral radial glow top-left */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -5%;
  width: 60%;
  height: 70%;
  background: radial-gradient(ellipse at 30% 30%,
    rgba(232, 98, 92, 0.12) 0%,
    transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Two-column layout */
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border: 1.5px solid rgba(232, 98, 92, 0.35);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--coral);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  box-shadow: 0 0 0 4px rgba(232, 98, 92, 0.08);
  animation: badge-pulse 3s ease-in-out infinite;
}
.hero__badge span { color: var(--text-muted); font-weight: 400; }
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(232,98,92,0.08); }
  50%       { box-shadow: 0 0 0 8px rgba(232,98,92,0.04); }
}

.hero h1 {
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.75;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.hero__trust-dot { color: var(--coral); font-weight: 700; }

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Larger CTA buttons */
.btn--lg { padding: 16px 32px; font-size: 1rem; }

/* Balloon visual */
.hero__visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__balloon-svg {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(232,98,92,0.18));
}
.balloon { transform-origin: center 40%; }
.balloon--1 { animation: balloon-float 4.2s ease-in-out infinite; }
.balloon--2 { animation: balloon-float 5s ease-in-out 0.7s infinite; }
.balloon--3 { animation: balloon-float 4.6s ease-in-out 1.2s infinite; }
.balloon--4 { animation: balloon-float 3.9s ease-in-out 0.4s infinite; }
.balloon--5 { animation: balloon-float 5.3s ease-in-out 1.8s infinite; }
@keyframes balloon-float {
  0%, 100% { transform: translateY(0)   rotate(0deg); }
  35%       { transform: translateY(-14px) rotate(-2deg); }
  70%       { transform: translateY(-7px)  rotate(1.5deg); }
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--coral), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.5); }
}

/* Confetti SVG canvas */
.hero__confetti {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero__confetti svg { width: 100%; height: 100%; }

.confetti-line {
  stroke-width: 1.5;
  stroke-linecap: round;
  opacity: 0;
}
.confetti-line:nth-child(1)  { stroke: rgba(232,98,92,0.30); animation: confetti-1 8s ease-in-out 0s    infinite; }
.confetti-line:nth-child(2)  { stroke: rgba(30,42,74,0.15);  animation: confetti-2 7s ease-in-out 1s    infinite; }
.confetti-line:nth-child(3)  { stroke: rgba(232,98,92,0.20); animation: confetti-1 9s ease-in-out 2s    infinite; }
.confetti-line:nth-child(4)  { stroke: rgba(30,42,74,0.12);  animation: confetti-2 6.5s ease-in-out 0.5s infinite; }
.confetti-line:nth-child(5)  { stroke: rgba(232,98,92,0.25); animation: confetti-1 8.5s ease-in-out 3s  infinite; }
.confetti-line:nth-child(6)  { stroke: rgba(30,42,74,0.18);  animation: confetti-2 7.5s ease-in-out 1.5s infinite; }
.confetti-dot { fill-opacity: 0; animation: confetti-dot 6s ease-in-out infinite; }
.confetti-dot:nth-child(7)  { fill: rgba(232,98,92,0.35); animation-delay: 0.5s; }
.confetti-dot:nth-child(8)  { fill: rgba(30,42,74,0.2);   animation-delay: 2s; }
.confetti-dot:nth-child(9)  { fill: rgba(232,98,92,0.25); animation-delay: 4s; }
.confetti-dot:nth-child(10) { fill: rgba(30,42,74,0.15);  animation-delay: 1s; }

@keyframes confetti-1 {
  0%   { opacity: 0; transform: translateY(0)   rotate(0deg); }
  20%  { opacity: 1; }
  80%  { opacity: 0.7; }
  100% { opacity: 0; transform: translateY(-60px) rotate(15deg); }
}
@keyframes confetti-2 {
  0%   { opacity: 0; transform: translateY(0)   rotate(0deg); }
  20%  { opacity: 0.8; }
  80%  { opacity: 0.5; }
  100% { opacity: 0; transform: translateY(60px) rotate(-10deg); }
}
@keyframes confetti-dot {
  0%, 100% { fill-opacity: 0; transform: scale(0.5); }
  50%       { fill-opacity: 1; transform: scale(1); }
}

/* ── 9. Compact Page Hero ── */
.page-hero {
  padding: calc(var(--nav-height) + 64px) 0 64px;
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 120%,
    rgba(232, 98, 92, 0.10) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { color: var(--text-muted); font-size: 1.0625rem; max-width: 520px; margin: 0 auto; }

/* ── 10. Wave Dividers ── */
.wave { line-height: 0; overflow: hidden; }
.wave svg { display: block; width: 100%; }

/* ── 11. Trust Bar ── */
.trust-bar {
  padding: 56px 0;
  background: var(--cream);
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.trust-item__icon {
  width: 64px;
  height: 64px;
  background: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  color: var(--coral);
  flex-shrink: 0;
}
.trust-item__icon svg { width: 28px; height: 28px; }
.trust-item h4 { color: var(--navy); margin-bottom: 4px; }
.trust-item p { font-size: 0.9375rem; color: var(--text-muted); }

/* ── 12. Package Cards ── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.pkg-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232, 98, 92, 0.15);
}

.pkg-card--popular {
  border-color: rgba(232, 98, 92, 0.30);
  box-shadow: var(--shadow);
}

.pkg-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
}

.pkg-card__icon {
  width: 52px;
  height: 52px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--coral);
}
.pkg-card__icon svg { width: 24px; height: 24px; }

.pkg-card__name {
  font-size: 1.25rem;
  font-family: var(--font-heading);
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 4px;
}

.pkg-card__price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--coral);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 4px;
}
.pkg-card__price-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pkg-card__divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.pkg-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}
.pkg-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.pkg-card__features li::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: var(--cream);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Ccircle cx='9' cy='9' r='9' fill='%23E8625C' fill-opacity='0.12'/%3E%3Cpath d='M5.5 9l2.5 2.5 4.5-4.5' stroke='%23E8625C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: contain;
  margin-top: 1px;
}

.pkg-card .btn { width: 100%; justify-content: center; }

/* ── 13. Gallery ── */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.gallery-filter button {
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--cream);
  border: 1px solid transparent;
  transition: var(--transition);
}
.gallery-filter button:hover {
  color: var(--coral);
  border-color: rgba(232, 98, 92, 0.2);
}
.gallery-filter button.active {
  background: var(--coral);
  color: var(--white);
  box-shadow: var(--shadow-coral);
}

/* Masonry grid */
.masonry {
  columns: 3;
  column-gap: 20px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
}
.masonry-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s var(--transition-slow);
}
.masonry-item:hover img { transform: scale(1.04); }
.masonry-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,42,74,0.65) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.masonry-item:hover .masonry-item__overlay { opacity: 1; }
.masonry-item__label {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.masonry-item.hidden { display: none; }

/* Gallery teaser (home) */
.gallery-teaser {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-teaser-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.gallery-teaser-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-teaser-item:hover img { transform: scale(1.06); }

/* ── 14. Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.testimonial-card__quote {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--coral);
  font-family: var(--font-heading);
  margin-bottom: 16px;
  opacity: 0.5;
}
.testimonial-card__text {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testimonial-card__stars span { color: #F59E0B; font-size: 14px; }
.testimonial-card__author {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--navy);
  margin-bottom: 2px;
}
.testimonial-card__location {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ── 15. CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--coral) 0%, #d44e48 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 50%;
  height: 200%;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 50%;
  height: 200%;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}
.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.0625rem;
  margin-bottom: 36px;
}
.cta-banner .btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── 16. FAQ Accordion ── */
.faq-list { max-width: 740px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  padding: 22px 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy);
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--coral); }
.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--coral);
  transition: transform var(--transition);
}
.faq-item.open .faq-question svg { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 20px;
}
.faq-answer p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.8;
}

/* ── 17. About Page ── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-story__text h2 { margin-bottom: 20px; }
.about-story__text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.about-story__accent {
  width: 48px;
  height: 4px;
  background: var(--coral);
  border-radius: 2px;
  margin-bottom: 20px;
}
.about-story__visual {
  position: relative;
}
.about-story__img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-story__img-main img { width: 100%; height: 440px; object-fit: cover; }
.about-story__stat-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 1px solid var(--border);
}
.about-story__stat-card .stat-num { font-size: 2rem; font-weight: 700; color: var(--coral); font-family: var(--font-heading); }
.about-story__stat-card .stat-label { font-size: 0.8125rem; color: var(--text-muted); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-card__icon {
  width: 56px;
  height: 56px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--coral);
}
.why-card__icon svg { width: 24px; height: 24px; }
.why-card h4 { color: var(--navy); margin-bottom: 8px; font-size: 1rem; }
.why-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ── 18. Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-wa-block {
  background: linear-gradient(135deg, #f0f7f0 0%, #e8f5e9 100%);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
}
.contact-wa-block h3 { color: var(--navy); margin-bottom: 12px; }
.contact-wa-block p { color: var(--text-muted); font-size: 0.9375rem; margin-bottom: 32px; line-height: 1.7; }
.contact-wa-block .btn { margin: 0 auto; }

.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.contact-info-card__icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.contact-info-card__icon svg { width: 20px; height: 20px; }
.contact-info-card h4 { color: var(--navy); font-size: 0.9375rem; margin-bottom: 4px; }
.contact-info-card p { font-size: 0.875rem; color: var(--text-muted); }
.contact-info-card a { color: var(--coral); font-weight: 600; }

.contact-note {
  margin-top: 32px;
  background: rgba(232, 98, 92, 0.06);
  border-left: 3px solid var(--coral);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
}
.contact-note p { font-size: 0.9rem; color: var(--text-muted); }
.contact-note strong { color: var(--navy); }

/* ── 19. Footer ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand svg,
.footer__brand img { height: 72px; width: auto; display: block; margin-bottom: 16px; }
.footer__tagline {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,0.7);
}
.footer__social a:hover {
  background: var(--coral);
  color: var(--white);
}
.footer__social a svg { width: 16px; height: 16px; }

.footer__col h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col li a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer__col li a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy { font-size: 0.875rem; color: rgba(255,255,255,0.4); }
.footer__credit { font-size: 0.875rem; color: rgba(255,255,255,0.3); }

/* ── 20. WhatsApp Elements ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  animation: wa-pulse 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
  animation: none;
}
.wa-float svg { width: 28px; height: 28px; color: var(--white); }

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45); }
  50%       { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 8px rgba(37,211,102,0.12); }
}

.wa-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 997;
  background: #25D366;
  color: var(--white);
  padding: 14px 20px;
  font-weight: 600;
  font-size: 0.9375rem;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 -4px 24px rgba(37, 211, 102, 0.3);
}
.wa-sticky-bar svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ── 21. Service Area Strip ── */
.service-area {
  padding: 32px 0;
  background: var(--navy);
  text-align: center;
}
.service-area p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
}
.service-area strong { color: var(--white); }

/* ── 22. Theme Modal ── */
.theme-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.theme-modal.open { display: flex; }

.theme-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 30, 0.6);
  backdrop-filter: blur(4px);
  animation: modal-fade 0.25s ease;
}
@keyframes modal-fade { from { opacity: 0; } to { opacity: 1; } }

.theme-modal__sheet {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  width: min(620px, 94vw);
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1;
  animation: modal-scale 0.3s cubic-bezier(0.34, 1.4, 0.64, 1);
}
@keyframes modal-scale {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

.theme-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.08);
  cursor: pointer;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background var(--transition), color var(--transition);
  color: var(--navy);
  line-height: 1;
}
.theme-modal__close:hover { background: var(--coral); color: #fff; }

.theme-modal__img-wrap {
  width: calc(100% - 32px);
  margin: 16px auto 0;
  aspect-ratio: 4/3;
  background: var(--cream);
  position: relative;
}
.theme-modal__img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: var(--cream) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2020/svg' width='48' height='48' fill='none' viewBox='0 0 24 24' stroke='%23E8625C' stroke-width='1.2'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Ccircle cx='8.5' cy='10.5' r='1.5'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M21 15l-5-5L5 19'/%3E%3C/svg%3E") center/48px no-repeat;
}
.theme-modal__img-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  color: transparent;
}

.theme-modal__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.theme-modal__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  line-height: 1.3;
  padding-right: 32px;
}

.theme-modal__colors { display: flex; flex-wrap: wrap; gap: 16px; }
.modal-color-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}
.modal-color-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.1);
  box-shadow: 0 3px 8px rgba(0,0,0,0.14);
}

.theme-modal__section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.theme-modal__best-for { display: flex; flex-wrap: wrap; gap: 8px; }
.modal-tag {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 0.8125rem;
  color: var(--navy);
  font-weight: 500;
}

.theme-modal__description {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 16px 20px;
}

.theme-modal__inclusions-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.theme-modal__inclusions-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text);
}
.theme-modal__inclusions-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #dcfce7 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/11px no-repeat;
  flex-shrink: 0;
}

.theme-modal__price-box {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.theme-modal__price {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
}
.theme-modal__price-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.theme-modal__discount {
  background: #16a34a;
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
}

.theme-modal__ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.theme-modal__ctas .btn { justify-content: center; }

/* Mobile — bottom sheet */
@media (max-width: 640px) {
  .theme-modal { align-items: flex-end; }
  .theme-modal__sheet {
    width: 100%;
    max-height: 92vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    animation: modal-slide-up 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
  }
  @keyframes modal-slide-up {
    from { transform: translateY(100%); opacity: 0.5; }
    to   { transform: translateY(0);    opacity: 1; }
  }
  .theme-modal__inclusions-list { grid-template-columns: 1fr; }
  .theme-modal__ctas { grid-template-columns: 1fr; }
  .theme-modal__price-box { flex-direction: column; align-items: flex-start; }
}

/* ── 23. Scroll Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── 23. Responsive ── */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }

  .packages-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .about-story { grid-template-columns: 1fr; gap: 48px; }
  .about-story__visual { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

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

  .nav__links,
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .wa-float { bottom: 90px; right: 20px; }
  .wa-sticky-bar { display: flex; }

  .hero__grid { grid-template-columns: 1fr; gap: 0; }
  .hero__visual { display: none; }
  .hero__trust { font-size: 0.8125rem; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .btn--lg { padding: 14px 24px; font-size: 0.9375rem; }

  .trust-bar__grid { grid-template-columns: 1fr; gap: 24px; }

  .masonry { columns: 2; }

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

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

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

  .cta-banner .btn-group { flex-direction: column; align-items: center; }
  .cta-banner .btn { width: 100%; max-width: 320px; justify-content: center; }
}

@media (max-width: 480px) {
  :root { --section-pad: 48px; }

  h1 { font-size: 1.875rem; }
  h2 { font-size: 1.625rem; }

  .masonry { columns: 1; }
  .gallery-teaser { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .packages-grid { max-width: 100%; }
}

/* ── 21. Theme Grid ── */
.themes-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.theme-filter-btn {
  padding: 10px 22px;
  border-radius: 999px;
  border: 2px solid var(--border);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.theme-filter-btn:hover { border-color: var(--coral); color: var(--coral); }
.theme-filter-btn.active { background: var(--coral); border-color: var(--coral); color: var(--white); }

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

.theme-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.07);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition), opacity 0.3s ease;
  display: flex;
  flex-direction: column;
}
.theme-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
.theme-card.hidden { display: none; }

.theme-card__img-wrap {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--cream) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' fill='none' viewBox='0 0 24 24' stroke='%23E8625C' stroke-width='1.2'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Ccircle cx='8.5' cy='10.5' r='1.5'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M21 15l-5-5L5 19'/%3E%3C/svg%3E") center/48px no-repeat;
}
.theme-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  color: transparent;
}

.theme-card__body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}
.theme-card__name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.theme-card__colors { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 2px; }
.theme-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px 3px 5px;
  border-radius: 999px;
  background: #f8f8f8;
  border: 1px solid rgba(0,0,0,0.1);
  font-size: 0.72rem;
  color: #555;
  white-space: nowrap;
}
.theme-chip__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
  flex-shrink: 0;
}
.theme-card__best-for {
  font-size: 0.8125rem;
  color: #888;
  line-height: 1.45;
  margin-top: 2px;
}
.theme-card__best-for strong { color: #444; font-weight: 500; }
.theme-card__price {
  margin-top: auto;
  padding-top: 12px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--coral);
  letter-spacing: -0.02em;
}
.theme-card .btn { width: 100%; justify-content: center; margin-top: 10px; }
.price-gst-note { font-size: 0.75rem; color: #9E9E9E; font-style: italic; margin-top: 2px; }

/* Promo Banner */
.promo-banner {
  background: #16a34a;
  color: #fff;
  text-align: center;
  padding: 18px 24px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Custom Theme Card */
.custom-theme-card {
  margin-top: 24px;
  background: var(--cream);
  border: 2px dashed rgba(232, 98, 92, 0.4);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.custom-theme-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
}
.custom-theme-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  max-width: 480px;
  line-height: 1.7;
  margin: 0;
}

/* Theme grid responsive */
@media (max-width: 1024px) {
  .themes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .themes-grid { grid-template-columns: 1fr; }
  .theme-filter-btn { font-size: 0.875rem; padding: 8px 16px; }
  .custom-theme-card { padding: 32px 20px; }
}

/* ── Custom Enquiry Section ─────────────────── */
.custom-enquiry-section { background: var(--cream); }

.custom-enquiry-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}
.custom-enquiry-intro h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 12px;
}
.custom-enquiry-sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.custom-enquiry-cta { display: inline-flex; gap: 6px; }

.enquiry-form-wrap {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.enquiry-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}
.req { color: var(--coral); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(0,0,0,0.14);
  border-radius: 10px;
  font-size: 0.9375rem;
  font-family: var(--font-body);
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232,98,92,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.form-submit-btn { width: 100%; justify-content: center; margin-top: 4px; }

.form-success {
  margin-top: 4px;
  padding: 14px 16px;
  background: #dcfce7;
  color: #166534;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}
.form-error {
  margin-top: 4px;
  padding: 14px 16px;
  background: #fee2e2;
  color: #991b1b;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 640px) {
  .enquiry-form-wrap { padding: 28px 20px; }
}

/* ── Gallery Page ───────────────────────────── */
.gallery-hero {
  padding: 120px 0 72px;
  background: var(--cream);
  text-align: center;
}
.gallery-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--navy);
  margin-bottom: 16px;
}
.gallery-hero__sub {
  color: var(--text-muted);
  font-size: 1.0625rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

.gallery-section { background: #fff; }

.gallery-placeholder-note {
  text-align: center;
  margin-top: 40px;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-style: italic;
}

/* Gallery CTA banner */
.gallery-cta-banner {
  background: var(--navy);
  padding: 64px 0;
}
.gallery-cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.gallery-cta-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #fff;
  margin-bottom: 10px;
}
.gallery-cta-banner__sub {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 480px;
}
.gallery-cta-banner__btn {
  flex-shrink: 0;
  white-space: nowrap;
}

/* Gallery form section */
.gallery-form-section { background: var(--cream); }
.gallery-form-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}
.gallery-form-header__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 10px;
}
.gallery-form-header__note {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* Two-column form row */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}

/* Success panel */
.form-success-panel {
  text-align: center;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.form-success-panel__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.form-success-panel h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
}
.form-success-panel p {
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 400px;
}
.form-success-panel__wa { gap: 8px; margin-top: 8px; }

@media (max-width: 768px) {
  .gallery-cta-banner__inner { flex-direction: column; text-align: center; }
  .gallery-cta-banner__sub { max-width: 100%; }
}

/* ── How it Works ───────────────────────────── */
.how-it-works { background: var(--cream); }

.how-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 56px;
}
.how-step {
  flex: 1;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
}
.how-step__num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(232,98,92,0.12);
  line-height: 1;
  letter-spacing: -0.04em;
}
.how-step__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid rgba(232,98,92,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  box-shadow: 0 4px 16px rgba(232,98,92,0.1);
  margin-top: -8px;
}
.how-step h4 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--navy);
  font-weight: 700;
}
.how-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 220px;
}
.how-step__connector {
  flex-shrink: 0;
  width: 48px;
  margin-top: 28px;
  opacity: 0.6;
}
.how-step__connector svg { width: 100%; height: auto; }

/* Packages custom note */
.packages-custom-note {
  text-align: center;
  margin: 16px 0 40px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.packages-custom-note a { color: var(--coral); font-weight: 500; text-decoration: none; }
.packages-custom-note a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .how-steps { flex-direction: column; align-items: center; gap: 8px; }
  .how-step { max-width: 340px; padding: 0; }
  .how-step__connector { transform: rotate(90deg); width: 36px; margin: 0; }
}
