/* ── 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&display=swap');

/* ── CSS Variables ── */
:root {
  --navy:       #0B1B3A;
  --navy-light: #162850;
  --gold:       #D4AF37;
  --gold-light: #F0DFA0;
  --ivory:      #FAF7F0;
  --ivory-dark: #F0EBE0;
  --text-muted: rgba(11,27,58,0.55);
  --shadow-card: 0 2px 20px rgba(11,27,58,0.08);
  --shadow-lux:  0 4px 32px rgba(11,27,58,0.12);
  --shadow-glow: 0 0 40px rgba(212,175,55,0.18);
  --radius:     16px;
  --radius-sm:  10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--ivory);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: 'Playfair Display', serif; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Utility ── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.text-gold  { color: var(--gold); }
.text-ivory { color: var(--ivory); }
.text-navy  { color: var(--navy); }

.section-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--navy);
  line-height: 1.25;
}
.gold-divider {
  width: 48px; height: 2px;
  background: var(--gold);
  margin: 14px auto 0;
}
.section-header { text-align: center; margin-bottom: 52px; }
.section-header p { color: var(--text-muted); font-size: 14px; margin-top: 14px; max-width: 420px; margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Inter', sans-serif; font-weight: 600;
  font-size: 12px; letter-spacing: 0.04em;
  padding: 9px 20px; border-radius: 999px;
  border: none; cursor: pointer; transition: all 0.2s;
  text-decoration: none; line-height: 1;
}
.btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.btn-primary   { background: var(--gold); color: var(--navy); box-shadow: var(--shadow-lux); }
.btn-primary:hover { background: var(--gold-light); box-shadow: var(--shadow-glow); }
.btn-outline   { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--ivory); }
.btn-outline-ivory { background: transparent; color: var(--ivory); border: 1.5px solid rgba(250,247,240,0.6); }
.btn-outline-ivory:hover { background: var(--ivory); color: var(--navy); }
.btn-whatsapp  { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1ebe5a; }
.btn-instagram { background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045); color: #fff; }
.btn-instagram:hover { opacity: 0.88; }

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,247,240,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11,27,58,0.08);
  box-shadow: 0 1px 12px rgba(11,27,58,0.06);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.navbar-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--navy);
  transition: color 0.2s;
}
.navbar-logo:hover { color: var(--gold); }
.navbar-logo .logo-star { color: var(--gold); font-size: 1.1rem; }

.navbar-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.navbar-links a {
  font-size: 13px; font-weight: 500; color: rgba(11,27,58,0.65);
  letter-spacing: 0.02em; transition: color 0.2s;
}
.navbar-links a:hover, .navbar-links a.active { color: var(--gold); }

.navbar-cta { display: flex; }

/* Mobile hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px; transition: all 0.3s;
}
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: var(--ivory);
  border-top: 1px solid rgba(11,27,58,0.08);
  padding: 8px 20px 16px;
}
.mobile-menu a {
  display: block; padding: 12px 0;
  border-bottom: 1px solid rgba(11,27,58,0.05);
  font-weight: 500; font-size: 15px; color: var(--navy);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn { margin-top: 12px; justify-content: center; }
.mobile-menu.open { display: flex; }

/* ── Page wrapper (offset for fixed nav) ── */
main { padding-top: 64px; }

/* ── Page transitions ── */
.page { display: none; }
.page.active { display: block; }

/* ── HERO ── */
.hero {
  background: var(--navy);
  min-height: 50vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}

/* Animated background orbs */
.hero-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; will-change: transform, opacity;
}
.hero-orb-1 {
  width: 340px; height: 340px;
  top: -80px; right: -60px;
  background: radial-gradient(circle, rgba(212,175,55,0.13) 0%, transparent 70%);
  animation: orbDrift1 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 240px; height: 240px;
  bottom: -60px; left: -40px;
  background: radial-gradient(circle, rgba(212,175,55,0.09) 0%, transparent 70%);
  animation: orbDrift2 10s ease-in-out infinite;
}
.hero-orb-3 {
  width: 160px; height: 160px;
  top: 40%; left: 38%;
  background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 70%);
  animation: orbDrift3 12s ease-in-out infinite;
}

@keyframes orbDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-20px, 18px) scale(1.06); }
  66%       { transform: translate(14px, -12px) scale(0.96); }
}
@keyframes orbDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(18px, -22px) scale(1.08); }
  70%       { transform: translate(-10px, 10px) scale(0.94); }
}
@keyframes orbDrift3 {
  0%, 100% { transform: translate(0, 0); opacity: 0.6; }
  50%       { transform: translate(10px, -16px); opacity: 1; }
}

/* Particle canvas overlay */
#hero-particles {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
}

/* Golden shimmer sweep across hero */
.hero-shimmer {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: linear-gradient(105deg,
    transparent 30%,
    rgba(212,175,55,0.04) 48%,
    rgba(212,175,55,0.07) 50%,
    rgba(212,175,55,0.04) 52%,
    transparent 70%
  );
  background-size: 200% 100%;
  animation: shimmerSweep 5s ease-in-out infinite;
}
@keyframes shimmerSweep {
  0%   { background-position: -100% 0; }
  60%, 100% { background-position: 200% 0; }
}

/* Fine grid texture */
.hero-grid {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(212,175,55,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; align-items: center;
  padding: 40px 20px;
  max-width: 1120px; margin: 0 auto; width: 100%;
  position: relative; z-index: 2;
}

/* Staggered entrance animations */
.hero-eyebrow   { opacity: 0; animation: fadeSlideUp 0.7s ease forwards 0.1s; }
.hero h1        { opacity: 0; animation: fadeSlideUp 0.7s ease forwards 0.28s; }
.hero-sub       { opacity: 0; animation: fadeSlideUp 0.7s ease forwards 0.44s; }
.hero-ctas      { opacity: 0; animation: fadeSlideUp 0.7s ease forwards 0.58s; }
.hero-badges    { opacity: 0; animation: fadeSlideUp 0.6s ease forwards 0.72s; }
.hero-visual    { opacity: 0; animation: fadeSlideIn 0.9s ease forwards 0.35s; }

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.hero-eyebrow-line {
  height: 1px; width: 32px;
  background: rgba(212,175,55,0.5);
  transform-origin: left;
  animation: lineGrow 0.6s ease forwards 0.5s;
  transform: scaleX(0); opacity: 0;
}
@keyframes lineGrow {
  to { transform: scaleX(1); opacity: 1; }
}
.hero-eyebrow span { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 500; }

.hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--ivory); line-height: 1.2; margin-bottom: 12px;
}
.hero h1 .gold-line { display: block; color: var(--gold); font-style: italic; }

.hero-sub { color: rgba(250,247,240,0.55); font-size: 14px; margin-bottom: 24px; letter-spacing: 0.03em; }

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Pulse ring on primary CTA */
.hero-ctas .btn-primary {
  position: relative;
}
.hero-ctas .btn-primary::after {
  content: '';
  position: absolute; inset: -3px;
  border-radius: 999px;
  border: 1.5px solid rgba(212,175,55,0.4);
  animation: ctaPulse 2.4s ease-out infinite 1.2s;
  pointer-events: none;
}
@keyframes ctaPulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  70%  { transform: scale(1.14); opacity: 0; }
  100% { transform: scale(1.14); opacity: 0; }
}

.hero-badges { display: flex; gap: 20px; margin-top: 22px; flex-wrap: wrap; }
.hero-badge  { display: flex; align-items: center; gap: 6px; }
.hero-badge span:first-child { font-size: 14px; }
.hero-badge span:last-child  { color: rgba(250,247,240,0.45); font-size: 12px; }

/* Hero illustration */
.hero-visual { display: flex; align-items: center; justify-content: center; position: relative; }

/* Rotating ring around gift */
.hero-ring {
  position: absolute;
  width: 230px; height: 230px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.12);
  animation: ringRotate 18s linear infinite;
  pointer-events: none;
}
.hero-ring::before {
  content: '';
  position: absolute;
  top: -3px; left: 50%; transform: translateX(-50%);
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(212,175,55,0.8);
}
.hero-ring-2 {
  position: absolute;
  width: 190px; height: 190px;
  border-radius: 50%;
  border: 1px dashed rgba(212,175,55,0.08);
  animation: ringRotate 24s linear infinite reverse;
  pointer-events: none;
}
@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero-glow {
  position: absolute; width: 200px; height: 200px; border-radius: 50%;
  background: rgba(212,175,55,0.08); filter: blur(40px);
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { transform: scale(1);    opacity: 0.8; }
  50%       { transform: scale(1.18); opacity: 1; }
}

/* Floating gift box */
.hero-visual svg {
  position: relative; z-index: 1;
  width: 100%; max-width: 220px;
  animation: floatBox 5s ease-in-out infinite;
  filter: drop-shadow(0 24px 32px rgba(0,0,0,0.35));
}
@keyframes floatBox {
  0%, 100% { transform: translateY(0px) rotate(-0.5deg); }
  50%       { transform: translateY(-12px) rotate(0.5deg); }
}

/* Sparkle dots orbiting the gift */
.hero-sparkles { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.sparkle-dot {
  position: absolute; width: 4px; height: 4px;
  background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 6px rgba(212,175,55,0.9);
}
.sparkle-dot:nth-child(1) { top: 10%; left: 15%; animation: sparkleBlink 2.2s ease-in-out infinite 0s; }
.sparkle-dot:nth-child(2) { top: 20%; right: 10%; animation: sparkleBlink 2.8s ease-in-out infinite 0.4s; }
.sparkle-dot:nth-child(3) { bottom: 25%; left: 8%; animation: sparkleBlink 2.0s ease-in-out infinite 0.9s; width:3px; height:3px; }
.sparkle-dot:nth-child(4) { bottom: 15%; right: 18%; animation: sparkleBlink 3.0s ease-in-out infinite 1.3s; }
.sparkle-dot:nth-child(5) { top: 50%; left: 5%; animation: sparkleBlink 2.5s ease-in-out infinite 0.6s; width:2px; height:2px; }
@keyframes sparkleBlink {
  0%, 100% { opacity: 0; transform: scale(0.6); }
  50%       { opacity: 1; transform: scale(1.3); }
}

/* ── BADGES BAR ── */
.badges-bar { background: var(--gold); padding: 16px 0; }
.badges-bar-inner {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 28px 48px;
}
.badge-item { display: flex; align-items: center; gap: 8px; }
.badge-item .icon { font-size: 1.1rem; }
.badge-item span { font-weight: 600; font-size: 13px; color: var(--navy); letter-spacing: 0.02em; }

/* ── SECTION PADDING ── */
.section { padding: 80px 0; }
.section-navy { background: var(--navy); }
.section-ivory { background: var(--ivory); }
.section-soft  { background: rgba(11,27,58,0.04); }

/* ── PACKAGES ── */
.packages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.pkg-card {
  background: #fff; border: 1px solid rgba(11,27,58,0.1);
  border-radius: var(--radius); padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s;
  position: relative;
}
.pkg-card:hover { transform: translateY(-4px); }
.pkg-card.popular {
  background: var(--navy); border: 2px solid var(--gold);
  box-shadow: var(--shadow-glow);
}
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy);
  font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 999px; white-space: nowrap;
}
.pkg-name  { font-family: 'Playfair Display',serif; font-size: 1.4rem; }
.pkg-card.popular .pkg-name { color: var(--ivory); }
.pkg-desc  { font-size: 13px; color: var(--text-muted); }
.pkg-card.popular .pkg-desc { color: rgba(250,247,240,0.55); }
.pkg-price { font-family: 'Playfair Display',serif; font-size: 1.8rem; font-weight: 700; color: var(--navy); }
.pkg-card.popular .pkg-price { color: var(--gold); }

.pkg-includes { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pkg-includes li { display: flex; gap: 8px; font-size: 13px; align-items: flex-start; }
.pkg-includes li::before { content: '✦'; color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.pkg-card.popular .pkg-includes li { color: rgba(250,247,240,0.75); }

.pkg-cta { margin-top: auto; }
.pkg-cta a {
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 11px; border-radius: 999px;
  font-weight: 600; font-size: 12px; letter-spacing: 0.04em;
  background: var(--navy); color: var(--ivory);
  transition: background 0.2s;
}
.pkg-cta a:hover { background: var(--navy-light); }
.pkg-card.popular .pkg-cta a { background: var(--gold); color: var(--navy); }
.pkg-card.popular .pkg-cta a:hover { background: var(--gold-light); }

/* ── HOW IT WORKS ── */
.steps-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 40px; position: relative;
}
.steps-connector {
  position: absolute; top: 32px;
  left: calc(16.67% + 16px); right: calc(16.67% + 16px);
  height: 1px; background: rgba(212,175,55,0.25);
}
.step { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display',serif; font-size: 1.3rem;
  color: var(--gold); background: var(--navy); position: relative; z-index: 1;
}
.step h3 { font-family: 'Playfair Display',serif; font-size: 1.15rem; color: var(--ivory); }
.step p  { color: rgba(250,247,240,0.5); font-size: 13px; line-height: 1.6; }

/* ── GALLERY ── */
/* Gallery — clean 4-col uniform grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius-sm); overflow: hidden;
  position: relative; cursor: pointer;
  background: var(--navy);
  border: 1px solid rgba(212,175,55,0.18);
  box-shadow: 0 2px 20px rgba(11,27,58,0.2);
  transition: transform 0.3s cubic-bezier(.22,.68,0,1.2), box-shadow 0.3s, border-color 0.3s;
}
.gallery-item::after {
  content: '';
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(135deg, rgba(212,175,55,0.07) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover {
  transform: translateY(-5px) scale(1.025);
  box-shadow: 0 16px 40px rgba(11,27,58,0.35), 0 0 0 1.5px rgba(212,175,55,0.5);
  border-color: rgba(212,175,55,0.5);
}
.gallery-item:hover::after { opacity: 1; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0; z-index: 3;
  display: none; /* hidden until JS confirms it loaded */
}
.gallery-svg-wrap {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
}
.gallery-svg-wrap svg { width: 100%; height: 100%; }

.gallery-label {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
  padding: 28px 12px 10px;
  background: linear-gradient(to top, rgba(11,27,58,0.82) 0%, transparent 100%);
  text-align: center;
  opacity: 0.7;
  transform: translateY(2px);
  transition: opacity 0.3s, transform 0.3s;
}
.gallery-item:hover .gallery-label { opacity: 1; transform: translateY(0); }
.gallery-label span {
  color: var(--gold);
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(11,27,58,0.8);
}

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card {
  background: #fff; border: 1px solid rgba(11,27,58,0.06);
  border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-card);
}
.stars { color: var(--gold); font-size: 13px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { color: rgba(11,27,58,0.65); font-size: 13px; line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(212,175,55,0.15);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display',serif; font-size: 14px; color: var(--gold);
  flex-shrink: 0;
}
.author-name  { font-weight: 600; font-size: 13px; color: var(--navy); }
.author-loc   { font-size: 11px; color: rgba(11,27,58,0.4); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(11,27,58,0.1); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 0; text-align: left;
}
.faq-question span:first-child {
  font-family: 'Playfair Display',serif; font-size: 1.05rem; color: var(--navy);
  transition: color 0.2s;
}
.faq-question:hover span:first-child { color: var(--gold); }
.faq-icon {
  font-size: 1.3rem; color: var(--gold); flex-shrink: 0;
  transition: transform 0.3s; line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none; padding: 0 0 18px; color: rgba(11,27,58,0.6);
  font-size: 14px; line-height: 1.7; padding-right: 40px;
}
.faq-item.open .faq-answer { display: block; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--navy); text-align: center;
  padding: 80px 20px; position: relative; overflow: hidden;
}
.cta-banner-glow {
  position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(212,175,55,0.06); filter: blur(60px); pointer-events: none;
}
.cta-banner .star { color: var(--gold); font-size: 2rem; display: block; margin-bottom: 20px; }
.cta-banner h2 { font-size: clamp(1.6rem,3vw,2.2rem); color: var(--ivory); margin-bottom: 12px; }
.cta-banner p  { color: rgba(250,247,240,0.5); font-size: 14px; margin-bottom: 28px; }

/* ── FOOTER ── */
.footer { background: var(--navy); color: var(--ivory); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 8px; font-family:'Playfair Display',serif; font-size:1.15rem; margin-bottom:12px; }
.footer-logo .star { color: var(--gold); }
.footer-tagline { color: rgba(250,247,240,0.5); font-size: 13px; line-height: 1.6; }

.footer-heading { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: rgba(250,247,240,0.55); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

.footer-socials { display: flex; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.footer-info { color: rgba(250,247,240,0.45); font-size: 12px; line-height: 1.8; }

.footer-bottom {
  border-top: 1px solid rgba(250,247,240,0.08);
  text-align: center; padding: 18px 20px;
  color: rgba(250,247,240,0.25); font-size: 12px;
}

/* ── FLOATING WA BUTTON ── */
.wa-fab {
  position: fixed; bottom: 24px; right: 20px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  border: none; cursor: pointer;
}
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.wa-fab svg { width: 28px; height: 28px; }

/* ── ABOUT PAGE ── */
.about-hero { background: var(--navy); padding: 72px 0 56px; text-align: center; position: relative; overflow: hidden; }
.about-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212,175,55,0.07) 0%, transparent 70%);
}
.about-hero h1 { font-size: clamp(2rem,4vw,3rem); color: var(--ivory); position: relative; }
.about-quote { text-align: center; margin-bottom: 48px; }
.about-quote .open-quote { font-family: 'Playfair Display',serif; font-size: 4rem; color: var(--gold); line-height: 0.5; display: block; margin-bottom: 20px; }
.about-quote blockquote { font-family:'Playfair Display',serif; font-size: clamp(1.2rem,2.5vw,1.6rem); color: var(--navy); line-height: 1.5; }
.about-story p { color: var(--text-muted); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }

.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.value-card { background:#fff; border:1px solid rgba(11,27,58,0.07); border-radius:var(--radius); padding:28px; text-align:center; box-shadow:var(--shadow-card); }
.value-icon { font-size:1.5rem; color:var(--gold); display:block; margin-bottom:14px; }
.value-card h3 { font-family:'Playfair Display',serif; font-size:1.1rem; margin-bottom:10px; }
.value-card p  { font-size:13px; color:var(--text-muted); line-height:1.6; }

.founder-note {
  background: var(--navy); border-radius: var(--radius);
  padding: 40px 48px; position: relative; overflow: hidden;
}
.founder-note::before {
  content: '"'; font-family:'Playfair Display',serif;
  font-size: 140px; color: rgba(212,175,55,0.08);
  position: absolute; top: -10px; right: 20px;
  line-height: 1; pointer-events: none;
}
.founder-note p   { color: rgba(250,247,240,0.7); font-size: 15px; line-height: 1.8; position: relative; }
.founder-sig { display: flex; align-items: center; gap: 10px; margin-top: 20px; }
.founder-sig .star { color: var(--gold); }
.founder-sig span { font-family:'Playfair Display',serif; font-style:italic; color:var(--gold); font-size:1.1rem; }

/* ── PACKAGES PAGE ── */
.packages-hero { background: var(--navy); padding: 72px 0 56px; text-align: center; position: relative; overflow: hidden; }
.packages-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(212,175,55,0.07) 0%, transparent 70%); }
.packages-hero h1 { font-size: clamp(2rem,4vw,3rem); color: var(--ivory); position: relative; }
.packages-hero p  { color: rgba(250,247,240,0.5); font-size: 14px; margin-top: 12px; max-width: 480px; margin-left:auto; margin-right:auto; position:relative; }

.build-box {
  background: var(--navy); border-radius: var(--radius);
  padding: 48px; text-align: center; margin-top: 40px;
}
.build-box .star { color: var(--gold); font-size: 2rem; display:block; margin-bottom:14px; }
.build-box h2 { font-size: 1.5rem; color: var(--ivory); margin-bottom: 12px; }
.build-box p  { color: rgba(250,247,240,0.55); font-size: 14px; max-width: 440px; margin: 0 auto 24px; line-height: 1.7; }

.addons-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.addon-card {
  background:#fff; border:1px solid rgba(11,27,58,0.08); border-radius:var(--radius-sm);
  padding:20px; text-align:center;
  box-shadow:var(--shadow-card); transition: border-color 0.2s, box-shadow 0.2s;
}
.addon-card:hover { border-color: rgba(212,175,55,0.4); box-shadow: var(--shadow-lux); }
.addon-name  { font-weight:600; font-size:13px; color:var(--navy); margin-bottom:4px; }
.addon-price { font-size:12px; color:var(--gold); font-weight:500; }

/* ── CONTACT PAGE ── */
.contact-hero { background: var(--navy); padding: 72px 0 56px; text-align: center; position: relative; overflow: hidden; }
.contact-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(212,175,55,0.07) 0%, transparent 70%); }
.contact-hero h1 { font-size: clamp(2rem,4vw,3rem); color: var(--ivory); position: relative; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

.contact-channel {
  display: flex; align-items: center; gap: 16px;
  border: 1px solid rgba(11,27,58,0.1); border-radius: var(--radius);
  padding: 20px; background:#fff; transition: all 0.2s;
  text-decoration: none; color: inherit;
}
.contact-channel:hover { box-shadow: var(--shadow-lux); transform: translateY(-2px); }
.channel-icon {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.channel-icon.wa  { background: #25D366; }
.channel-icon.ig  { background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045); }
.channel-icon svg { width: 24px; height: 24px; }
.channel-label { font-weight: 600; font-size: 14px; color: var(--navy); }
.channel-sub   { font-size: 12px; color: var(--text-muted); }
.channel-arrow { margin-left: auto; color: rgba(11,27,58,0.25); font-size: 1.1rem; transition: color 0.2s; }
.contact-channel:hover .channel-arrow { color: var(--gold); }

.info-card { background:#fff; border:1px solid rgba(11,27,58,0.07); border-radius:var(--radius); padding:24px; box-shadow:var(--shadow-card); }
.info-card h3 { font-size:11px; letter-spacing:0.2em; text-transform:uppercase; font-weight:600; color:var(--navy); margin-bottom:16px; }
.info-row { display:flex; gap:12px; align-items:flex-start; margin-bottom:14px; }
.info-row:last-child { margin-bottom:0; }
.info-row .dot { color:var(--gold); flex-shrink:0; }
.info-row-label { font-size:10px; font-weight:600; text-transform:uppercase; letter-spacing:0.1em; color:var(--navy); margin-bottom:2px; }
.info-row-val { font-size:13px; color:var(--text-muted); }
.info-row-val a { color:var(--text-muted); transition:color 0.2s; }
.info-row-val a:hover { color:var(--gold); }

/* Form */
.contact-form-wrap { background:#fff; border:1px solid rgba(11,27,58,0.07); border-radius:var(--radius); padding:32px; box-shadow:var(--shadow-card); }
.contact-form-wrap h2 { font-size:1.2rem; color:var(--navy); margin-bottom:6px; }
.contact-form-wrap .form-sub { font-size:12px; color:var(--text-muted); margin-bottom:24px; }

.form-group { margin-bottom:16px; }
.form-group label { display:block; font-size:10px; font-weight:600; text-transform:uppercase; letter-spacing:0.12em; color:var(--text-muted); margin-bottom:6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width:100%; border:1.5px solid rgba(11,27,58,0.12); border-radius:12px;
  padding:12px 16px; font-family:'Inter',sans-serif; font-size:13px; color:var(--navy);
  background: rgba(250,247,240,0.4); outline:none; transition:border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color:var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color:rgba(11,27,58,0.28); }
.form-group textarea { resize:vertical; min-height:100px; }
.form-note { font-size:11px; color:rgba(11,27,58,0.3); text-align:center; margin-top:10px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .packages-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-connector { display: none; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; max-width: 360px; margin: 40px auto 0; }
  .addons-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-visual { display: none; }
  .navbar-links, .navbar-cta { display: none; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .founder-note { padding: 28px; }
}

@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .addons-grid { grid-template-columns: repeat(2,1fr); }
}
