/* ═══════════════════════════════════════════
   RESIN ART BY VEDIKA — PREMIUM CSS
   Pastel + Gold Luxury Aesthetic
═══════════════════════════════════════════ */

/* --- VARIABLES --- */
:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-pale: #f5e6b8;
  --rose: #e8a0a0;
  --rose-light: #fce4ec;
  --cream: #fdf8f2;
  --cream-dark: #f5ede0;
  --blush: #f9efe6;
  --text-dark: #2d2318;
  --text-mid: #5a4a3a;
  --text-light: #8a7a6a;
  --white: #ffffff;
  --shadow-soft: 0 8px 40px rgba(180, 140, 80, 0.12);
  --shadow-gold: 0 4px 24px rgba(201, 168, 76, 0.25);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-fix: 0px;
  --transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ═══════════════════════════════════════════
   SCROLL PROGRESS BAR
═══════════════════════════════════════════ */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--rose), var(--gold-light));
  z-index: 10000;
  transition: width 0.1s linear;
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  padding: 0;
  transition: var(--transition);
}

#navbar.scrolled {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  /* padding: 1.1rem 2rem; */
  display: flex;
  padding: 0.4rem 2rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.nav-logo em {
  color: var(--gold);
  font-style: italic;
}

.logo-icon {
  height: 250px;
  width: 240px;
  transition: all 0.4s ease;
  margin-top: -6px;
  position: relative;
  overflow: hidden;
  border-radius: 0px 0px 50% 50%;
  background: rgba(28, 111, 130, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
}

#navbar.scrolled .logo-icon {
  height: 55px;
  width: 55px;

  transform: scale(0.9);
  /* smooth shrink feel */
}

#navbar.scrolled .nav-inner {
  padding: 0.6rem 2rem;
  /* thodu breathing space */
}

/* LOGO FIT */
.logo-icon img {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;
  /* cover = full fill */
  border-radius: inherit;
}

.logo-icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 1.5px dashed rgba(212, 175, 55, 0.4);
  z-index: -1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
  border-radius: 2px;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: linear-gradient(135deg, #25d366, #128c7e) !important;
  color: white !important;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  transition: var(--transition) !important;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45) !important;
}

.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(20, 10, 5, 0.72) 0%,
      rgba(30, 20, 10, 0.58) 50%,
      rgba(15, 8, 3, 0.75) 100%);
}

#particleCanvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.18);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold-light);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  font-size: clamp(1.2rem, 3.2vw, 2rem);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.3px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1.2rem 2rem;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  flex-wrap: wrap;
}

.stat span {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
}

.stat p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 0.1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 11px;
  margin: 0.5rem auto 0;
  position: relative;
  overflow: hidden;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--gold-light);
  border-radius: 2px;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 1.8s infinite;
}

.top-text,
.bottom-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #ffffff;
  /* dark blue like image */
}

/* MEMORIES */
.highlight {
  font-family: 'Great Vibes', cursive;
  font-size: 8rem;
  font-weight: normal;

  /* 🔥 IMPORTANT FIXES */
  display: inline-block;
  line-height: 1.2;
  /* pehla 1.05 hatu → cut thatu */
  /* padding: 0.2em 0; */
  /* top/bottom space aapse */
  overflow: visible;
  /* cut na thay */

  /* GOLD STYLE */
  background: linear-gradient(to bottom,
      #f7e7a1 10%,
      #e8c56a 25%,
      #d4af37 45%,
      #b38b2e 60%,
      #a67c00 80%,
      #8c5f00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  text-shadow:
    /* 0 2px 4px rgba(0, 0, 0, 0.4),
    0 4px 8px rgba(0, 0, 0, 0.3), */
    0 0 15px rgba(212, 175, 55, 0.5),
    0 0 25px rgba(255, 215, 100, 0.3);

  position: relative;
}

.highlight::after {
  content: attr(data-text);

  position: absolute;
  top: 0;
  /* ❌ -3px remove karo */
  left: 0;
  width: 100%;
  height: 100%;

  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.3) 30%,
      transparent 60%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  pointer-events: none;
}

/* ── MOBILE NAVBAR LOGO BIGGER ── */
@media (max-width: 768px) {
  #navbar {
    height: 110px !important;
  }

  .nav-inner {
    height: 110px !important;
    padding: 0 1rem !important;
  }

  .logo-icon {
    height: 120px !important;
    width: 120px !important;
    margin-top: 0 !important;
  }

  .logo-icon img {
    object-fit: contain !important;
  }

  /* Keep logo centered */
  .nav-logo {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
}

@media (max-width: 480px) {
  #navbar {
    height: 100px !important;
  }

  .nav-inner {
    height: 100px !important;
  }

  .logo-icon {
    height: 100px !important;
    width: 100px !important;
  }
}

@keyframes goldShift {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes shineMove {
  0% {
    left: -60%;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  50% {
    left: 120%;
    opacity: 1;
  }

  70% {
    opacity: 0;
  }

  100% {
    left: 120%;
    opacity: 0;
  }
}

/* LINE + HEART WRAPPER */
.decor-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 6px 0;
}

/* LINES */
.line {
  width: 80px;
  height: 1px;
  background: #b8964c;
}

/* HEART */
.heart {
  color: #b8964c;
  font-size: 0.9rem;
}

@keyframes scrollDot {
  0% {
    top: 5px;
    opacity: 1;
  }

  80% {
    top: 18px;
    opacity: 0;
  }

  100% {
    top: 5px;
    opacity: 0;
  }
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: none;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp-lg {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  font-size: 1.05rem;
  padding: 1rem 2.5rem;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp-lg:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.55);
}

.btn-insta {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  box-shadow: 0 6px 24px rgba(220, 39, 67, 0.35);
}

.btn-insta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(220, 39, 67, 0.45);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #a07832);
  color: white;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.45);
}

.btn-rose {
  background: linear-gradient(135deg, #e91e63, #c2185b);
  color: white;
  box-shadow: 0 6px 24px rgba(233, 30, 99, 0.35);
}

.btn-rose:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(233, 30, 99, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--gold);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

/* Ripple effect */
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
}

@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ═══════════════════════════════════════════
   SECTION COMMON
═══════════════════════════════════════════ */
.section {
  padding: 6rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header.light .section-tag {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.3);
}

.section-header.light .section-title {
  color: white;
}

.section-header.light .section-sub {
  color: rgba(255, 255, 255, 0.75);
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-pale);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  background: rgba(201, 168, 76, 0.06);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 550px;
  margin: 0 auto;
  font-weight: 400;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ═══════════════════════════════════════════
   MASTERPIECES / CATEGORIES GRID
═══════════════════════════════════════════ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  /* height: 700px; */
  min-height: 431px;
}

.cat-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  background: white;
  box-shadow: var(--shadow-soft);
}

.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(180, 140, 80, 0.2);
}

.cat-img-wrap {
  overflow: hidden;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.cat-img {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
}

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

.cat-icon {
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.6);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(201, 168, 76, 0.9), rgba(120, 80, 20, 0.95));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  opacity: 0;
  transition: opacity 0.35s ease;
  padding: 1rem;
}

.cat-overlay span {
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}

.cat-btn {
  color: var(--gold-light) !important;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  transition: background 0.25s;
}

.cat-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.cat-card:hover .cat-overlay {
  opacity: 1;
}

.cat-name {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);

  padding: 12px 12px;
  /* border-radius: 20px; */
  width: 100%;
  display: flex;
  /* 🔥 center properly */
  align-items: center;
  /* vertical center */
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  /* 🔥 transparent white */
  background: rgba(0, 0, 0, 0.25);
  /* 🔥 glass overlay */

  backdrop-filter: blur(6px);
  /* 🔥 premium effect */
  font-size: 0.8rem;
}

/* ═══════════════════════════════════════════
   WEDDING SECTION
═══════════════════════════════════════════ */
.wedding-section {
  background: linear-gradient(135deg, #022031 0%, #04345e 40%, #012642 100%);
  position: relative;
  overflow: hidden;
}

.wedding-bg-deco {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(201, 168, 76, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 200, 200, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.wedding-scroll-wrap {
  position: relative;
}

.wedding-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0 1.5rem;
  scrollbar-width: none;
}

.wedding-scroll::-webkit-scrollbar {
  display: none;
}

.wedding-card {
  flex: 0 0 280px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.wedding-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.4);
}

.glow-card:hover {
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.2), 0 16px 40px rgba(0, 0, 0, 0.3);
}

.wcard-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wcard-icon {
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.wcard-info {
  padding: 1.2rem 1.5rem;
}

.wcard-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: white;
  margin-bottom: 0.4rem;
}

.wcard-info p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}

.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
  z-index: 2;
}

.scroll-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.scroll-arrow.left {
  left: -20px;
}

.scroll-arrow.right {
  right: -20px;
}

/* ═══════════════════════════════════════════
   CUSTOM ORDER SECTION
═══════════════════════════════════════════ */
.custom-section {
  background: var(--cream);
}

.custom-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.custom-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 1rem;
  margin-top: 0.3rem;
}

.custom-desc {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.custom-steps {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.cstep {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 100px;
}

.cstep-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
}

.cstep-text strong {
  font-size: 0.82rem;
  display: block;
  margin-bottom: 0.2rem;
  color: var(--text-dark);
}

.cstep-text p {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.4;
}

.cstep-arrow {
  color: var(--gold-light);
  font-size: 1.2rem;
  align-self: center;
  margin-top: -1rem;
  flex-shrink: 0;
}

.custom-img-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.custom-img-inner {
  background: linear-gradient(145deg, #fdf0e0, #f5dfc0);
  border-radius: 30px;
  height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 2px solid var(--gold-pale);
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  position: relative;
  z-index: 1;
}

.custom-palette-icon {
  font-size: 4rem;
  color: var(--gold);
}

.custom-img-inner p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  text-align: center;
  color: var(--text-mid);
  font-size: 1.1rem;
  line-height: 1.6;
  padding: 0 2rem;
}

.img-deco-ring {
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  border: 2px dashed rgba(201, 168, 76, 0.2);
  border-radius: 40px;
  animation: rotateSlow 20s linear infinite;
  pointer-events: none;
}

@keyframes rotateSlow {
  to {
    transform: rotate(360deg);
  }
}

/* ═══════════════════════════════════════════
   GIFTS SECTION
═══════════════════════════════════════════ */
.gifts-section {
  background: var(--blush);
}

.gifts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gift-card {
  height: 200px;
  border-radius: var(--radius);
  position: relative;
  perspective: 800px;
  cursor: pointer;
}

.gift-front,
.gift-back {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  backface-visibility: hidden;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1.5rem;
  text-align: center;
}

.gift-front {
  background: white;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201, 168, 76, 0.12);
}

.gift-front h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.gift-back {
  background: linear-gradient(135deg, var(--gold), #a07832);
  color: white;
  transform: rotateY(180deg);
}

.gift-back p {
  font-size: 0.85rem;
  line-height: 1.6;
}

.gift-back a {
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 2px;
}

.gift-card:hover .gift-front {
  transform: rotateY(-180deg);
}

.gift-card:hover .gift-back {
  transform: rotateY(0deg);
}

.gift-icon {
  font-size: 2.5rem;
  color: var(--gold);
}

/* ═══════════════════════════════════════════
   PROCESS / TIMELINE
═══════════════════════════════════════════ */
.process-section {
  background: var(--cream);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.process-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream-dark), white);
  border: 2px solid var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  z-index: 1;
  position: relative;
}

.process-step:hover .process-icon {
  background: linear-gradient(135deg, var(--gold), #a07832);
  color: white;
  transform: scale(1.12);
}

.process-line {
  position: absolute;
  top: 50%;
  left: calc(50% + 35px);
  right: -50%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-pale), transparent);
}

.step-num {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.process-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.process-content p {
  font-size: 0.83rem;
  color: var(--text-light);
}

/* ═══════════════════════════════════════════
   ARTIST SECTION
═══════════════════════════════════════════ */
.artist-section {
  background: var(--blush);
  position: relative;
  overflow: hidden;
}

.artist-bg-shape {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.artist-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: center;
}

.artist-img-frame {
  position: relative;
  max-width: 380px;
}

.artist-img-placeholder {
  background: linear-gradient(145deg, #fdf0e0, #f5dfc0);
  border-radius: var(--radius) var(--radius) 50% 50% / var(--radius) var(--radius) 50% 50%;
  height: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  border: 2px solid var(--gold-pale);
  box-shadow: var(--shadow-gold);
  position: relative;
  z-index: 1;
}

.artist-img-placeholder img {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  /* image crop thai ne fit thase */

  border-radius: inherit;
  /* same shape apply */
}

.artist-frame-deco {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border-radius: var(--radius) var(--radius) 50% 50% / var(--radius) var(--radius) 50% 50%;
  border: 2px dashed rgba(201, 168, 76, 0.3);
  pointer-events: none;
}

.artist-story {
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 1rem;
  font-size: 0.97rem;
}

.artist-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.artist-tags span {
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--text-mid);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════════ */
.why-section {
  background: var(--cream);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201, 168, 76, 0.08);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(180, 140, 80, 0.18);
}

.why-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-pale), #ffe9a0);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  transition: var(--transition);
}

.why-card:hover .why-icon-wrap {
  background: linear-gradient(135deg, var(--gold), #a07832);
}

.why-icon {
  font-size: 1.5rem;
  color: var(--gold);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  color: white;
}

.why-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.why-card p {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   GALLERY / MASONRY
═══════════════════════════════════════════ */
.gallery-section {
  background: var(--blush);
}

.masonry-grid {
  columns: 4;
  gap: 1rem;
  column-gap: 1rem;
  /* grid-template-columns: repeat(4, 9fr); */
}

.m-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  cursor: pointer;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}

.m-img {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: transform 0.4s ease;
}

.m-item:hover .m-img {
  transform: scale(1.02);
}

.m-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201, 168, 76, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: var(--radius-sm);
  font-size: 2rem;
  color: white;
}

.m-item:hover .m-overlay {
  opacity: 1;
}

.m-label {
  position: absolute;
  bottom: 0.5rem;
  left: 0.7rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-dark);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}

.m-item:hover .m-label {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
  z-index: 2;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.25s;
  z-index: 2;
  backdrop-filter: blur(6px);
}

.lightbox-arrow:hover {
  background: rgba(201, 168, 76, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 1.5rem;
}

.lightbox-next {
  right: 1.5rem;
}

.lightbox-content {
  max-width: min(90vw, 700px);
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.lightbox-img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  display: block;
}

.lightbox-caption {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

@media (max-width: 480px) {
  .lightbox-arrow {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .lightbox-prev {
    left: 0.5rem;
  }

  .lightbox-next {
    right: 0.5rem;
  }
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonials-section {
  /* background: var(--cream); */
  overflow: hidden;
}

.testimonial-track-wrap {
  /* overflow: hidden; */
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
  padding: 0.5rem 0 1rem;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 calc(33.33% - 1rem);
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201, 168, 76, 0.1);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(180, 140, 80, 0.18);
}

.t-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-pale), #ffe082);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.t-header strong {
  font-size: 0.95rem;
  display: block;
}

.t-stars {
  font-size: 0.75rem;
  margin-top: 2px;
}

.t-msg {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-style: italic;
}

.t-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  padding: 0.25rem 0.8rem;
  border-radius: 20px;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-pale);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  padding: 0;
}

.t-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--gold);
}

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq-section {
  background: var(--blush);
}

.faq-container {
  max-width: 800px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  background: white;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201, 168, 76, 0.12);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(180, 140, 80, 0.07);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  transition: color 0.25s;
}

.faq-q:hover {
  color: var(--gold);
}

.faq-q i {
  transition: transform 0.35s;
  color: var(--gold);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open .faq-q i {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 1.5rem 1.2rem;
}

.faq-a p {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, #096670 0%, #118678 50%, #117e73 100%);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(201, 168, 76, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(255, 200, 200, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-sparkles {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 8px;
  margin-bottom: 1rem;
}

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: white;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.cta-banner h2 em {
  color: var(--gold-light);
  font-style: italic;
}

.cta-banner p {
  /* color: rgba(255, 255, 255, 0.7); */
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.insta-section {
  background: var(--cream);
  padding: 80px 0;
  overflow: hidden;
  /* Prevent section itself from scrolling */
}

.reels-wrapper {
  width: 100%;
  position: relative;
  margin-top: 40px;
  cursor: grab;
}

.reels-wrapper.dragging {
  cursor: grabbing;
  user-select: none;
}


.reels-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
  padding: 20px 0;
}

.reels-track::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

/* Reel Card */
.reel-card {
  flex: 0 0 calc(16.66% - 17px);
  /* 6 cards on desktop */
  min-width: 200px;
  aspect-ratio: 9/16;
  scroll-snap-align: start;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #000;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); */
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@media (max-width: 1200px) {
  .reel-card {
    flex: 0 0 calc(25% - 15px);
  }
}

@media (max-width: 900px) {
  .reel-card {
    flex: 0 0 calc(33.33% - 14px);
  }
}

@media (max-width: 768px) {
  .reels-track {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    gap: 15px;
  }

  .reel-card {
    flex: 0 0 calc(50% - 10px);
    min-width: 180px;
  }
}

@media (max-width: 480px) {
  .reel-card {
    flex: 0 0 80%;
  }
}


.reel-card:hover {
  transform: translateY(-10px);
}

.reel-video-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s;
}

/* Overlays */
.reel-overlay-top {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.reel-tag {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.reel-views {
  font-size: 0.8rem;
  font-weight: 500;
}

.reel-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  opacity: 0;
  transition: all 0.3s ease;
}

.reel-card:hover .reel-play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.reel-play-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translate(-50%, -50%) scale(1.1);
}

.reel-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 15px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  z-index: 2;
}

.reel-caption {
  font-size: 0.85rem;
  margin-bottom: 12px;
  line-height: 1.4;
  font-weight: 400;
}

.reel-stats {
  display: flex;
  gap: 15px;
  font-size: 0.8rem;
}

.reel-stats span {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: color 0.3s;
}

.reel-stats span:hover {
  color: var(--gold);
}

/* Mobile Responsive */
@media (max-width: 1200px) {
  .reel-card {
    flex: 0 0 calc(33.33% - 15px);
  }
}

@media (max-width: 768px) {
  .reel-card {
    flex: 0 0 260px;
  }

  .reels-track {
    padding-left: 20px;
    padding-right: 20px;
  }

  .reel-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.9);
  }
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
#footer {
  background: #0f0a05;
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 2rem 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  margin-bottom: 1rem;
  height: 90px;
  width: 90px;
  border-radius: 50%;
  background: rgba(28, 111, 130, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


.footer-logo img {
  height: 90px;
  /* 🔥 adjust karo (40–60px best) */
  width: auto;
  object-fit: contain;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-links h5,
.footer-contact h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: white;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.footer-link {
  /* color: var(--gold); */
  font-weight: 500;
  text-decoration: underline;
  transition: 0.3s;
}

.footer-link:hover {
  text-decoration: underline;
  color: #25d366; /* WhatsApp green */
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.footer-wa-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ═══════════════════════════════════════════
   FLOATING WHATSAPP
═══════════════════════════════════════════ */
.float-wa {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  font-size: 26px;

  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  z-index: 9999;

  transition: all 0.3s ease;
}

/* 🔥 WhatsApp Wave Effect */
.float-wa {
  position: fixed;
  bottom: 25px;
  right: 25px;
  animation: floatAnim 3s ease-in-out infinite;
}

/* Wave circles */
.float-wa::before,
.float-wa::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  z-index: -1;
  animation: wavePulse 2s infinite;
}

/* second wave delay */
.float-wa::after {
  animation-delay: 1s;
}

/* animation */
@keyframes wavePulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  70% {
    transform: scale(1.8);
    opacity: 0;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.float-wa:hover {
  transform: scale(1.15) translateY(-4px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.7);
}

/* Floating animation */
@keyframes floatAnim {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.float-wa-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #e91e63;
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 50px;
  white-space: nowrap;
  animation: pulseBadge 2s infinite;
}

@keyframes floatBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes pulseBadge {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

/* ═══════════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════════ */
.back-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 8000;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: var(--transition);
}

.back-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.back-top:hover {
  background: var(--gold);
  color: white;
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════════
   ANIMATIONS (REVEAL)
═══════════════════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.15s;
}

.delay-2 {
  transition-delay: 0.3s;
}

.delay-3 {
  transition-delay: 0.45s;
}

.delay-4 {
  transition-delay: 0.6s;
}


/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .custom-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .custom-image {
    order: -1;
  }

  .custom-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .custom-tagline,
  .custom-desc {
    text-align: center;
  }

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

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

  .process-line {
    display: none;
  }

  .artist-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .artist-image-col {
    display: flex;
    justify-content: center;
  }

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

  .testimonial-card {
    flex: 0 0 calc(50% - 0.75rem);
  }

  .masonry-grid {
    columns: 3;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.4s ease;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 8999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1rem;
  }

  .hamburger {
    display: flex;
    z-index: 9001;
    position: relative;
  }

  .hero-stats {
    gap: 1rem;
  }

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

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

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

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

  .testimonial-card {
    flex: 0 0 100%;
  }

  .masonry-grid {
    columns: 2;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section {
    padding: 4rem 0;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .wedding-card {
    flex: 0 0 240px;
  }

  .scroll-arrow.left {
    left: 0;
  }

  .scroll-arrow.right {
    right: 0;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .masonry-grid {
    columns: 2;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-divider {
    display: none;
  }

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

  .float-wa {
    bottom: 1rem;
    right: 1rem;
  }

  .back-top {
    bottom: 1rem;
    left: 1rem;
  }

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

  .cstep-arrow {
    transform: rotate(90deg);
  }
}

/* ═══════════════════════════════════════════
   GOLD SHIMMER EFFECT
═══════════════════════════════════════════ */
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

.btn-gold {
  background-size: 200% auto;
  background-image: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  animation: shimmer 3s linear infinite;
}

/* ═══════════════════════════════════════════
   COMPREHENSIVE RESPONSIVE OVERHAUL
   Covers: mobile, tablet, laptop, desktop
═══════════════════════════════════════════ */

/* ── Overlay images fill their containers ── */
.cat-img,
.wcard-img {
  position: relative;
  overflow: hidden;
}

.overlay-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}

/* ── Logo icon size: fluid across breakpoints ── */
.logo-icon {
  height: clamp(60px, 12vw, 250px);
  width: clamp(60px, 12vw, 240px);
}

.hero-badge {
  font-size: clamp(0.7rem, 2vw, 0.82rem);
}

.hero-sub {
  font-size: clamp(0.88rem, 2.2vw, 1.15rem);
}

/* ── Stat values scale fluidly ── */
.stat span {
  font-size: clamp(1.2rem, 3.5vw, 1.6rem);
}

/* ── Section header typography ── */
.section-title {
  font-size: clamp(1.4rem, 4vw, 2.8rem);
}

.section-sub {
  font-size: clamp(0.88rem, 2vw, 1.05rem);
  padding: 0 1rem;
}

/* ── Category cards: image height fluid ── */
.cat-img {
  height: clamp(120px, 16vw, 190px);
  /* height: 100%; */
}

/* ── Wedding cards: image height fluid ── */
.wcard-img {
  height: clamp(140px, 18vw, 180px);
}

/* ── Custom section image ── */
.custom-img-inner {
  height: clamp(280px, 40vw, 420px);
}

.custom-img-inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* ── Artist image height fluid ── */
.artist-img-placeholder {
  height: clamp(300px, 40vw, 460px);
}

/* ── Gift cards: min-height so they don't shrink ── */
.gift-card {
  height: clamp(170px, 22vw, 200px);
}

/* ═══════════════════
   LARGE DESKTOP (1400px+)
═══════════════════ */
@media (min-width: 1400px) {
  .container {
    max-width: 1300px;
  }

  .categories-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .hero-headline {
    font-size: 2.2rem;
  }

  .highlight {
    font-size: 9rem;
  }
}

/* ═══════════════════
   LAPTOP / SMALL DESKTOP (1100px – 1399px)
═══════════════════ */
@media (max-width: 1399px) and (min-width: 1101px) {
  .categories-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .logo-icon {
    height: 140px;
    width: 140px;
  }

  .custom-split {
    gap: 3rem;
  }

  .artist-layout {
    gap: 3.5rem;
  }
}

/* ═══════════════════
   TABLET LANDSCAPE / SMALL LAPTOP (900px – 1100px)
═══════════════════ */
@media (max-width: 1100px) and (min-width: 901px) {
  .logo-icon {
    height: 100px;
    width: 100px;
  }

  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .custom-split {
    gap: 2.5rem;
  }

  .custom-img-inner {
    height: 340px;
  }

  .artist-layout {
    gap: 3rem;
  }

  .artist-img-placeholder {
    height: 380px;
  }

  .gifts-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 2.5rem;
  }

  .hero-stats {
    gap: 1.2rem;
    padding: 1rem 1.5rem;
  }
}

/* ═══════════════════════════════════════════
   MOBILE-ONLY FIXES (≤ 768px)
   Navbar + Artist Section
═══════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Navbar: fixed height, logo perfectly centered ── */
  #navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    z-index: 9999;
    background: transparent;
    transition: transform 0.35s ease, opacity 0.3s ease;
  }

  #navbar.scrolled {
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
  }

  .nav-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    position: relative;
  }

  /* Logo absolutely centered */
  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .logo-icon {
    height: 80px;
    width: 80px;
    margin-top: 0;
  }

  .logo-icon img {
    object-fit: contain;
  }

  /* ── Artist / Meet Vedika section ── */
  .artist-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .artist-image-col {
    order: -1;
    display: flex;
    justify-content: center;
  }

  .artist-img-frame {
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
  }

  /* Key fix: consistent rounded rectangle matching desktop */
  .artist-img-placeholder {
    height: 340px;
    border-radius: var(--radius) var(--radius) 50% 50% / var(--radius) var(--radius) 50% 50%;
    overflow: hidden;
    position: relative;
  }

  .artist-img-placeholder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 28px;
  }

  .artist-frame-deco {
    border-radius: var(--radius) var(--radius) 50% 50% / var(--radius) var(--radius) 50% 50%;
    bottom: -10px;
    right: -10px;
  }

  .artist-tags {
    justify-content: center;
  }

  .artist-text-col {
    padding: 0 8px;
  }

  .artist-text-col .btn {
    width: 100%;
    justify-content: center;
  }
}


/* ── Extra small phones (≤ 480px): slightly smaller logo ── */
@media (max-width: 480px) {
  .logo-icon {
    height: 64px;
    width: 64px;
  }

  #navbar {
    height: 64px;
  }

  .artist-img-placeholder {
    height: 300px;
  }

  .artist-img-frame {
    max-width: 240px;
  }
}

/* ═══════════════════
   TABLET PORTRAIT (601px – 900px)
═══════════════════ */
@media (max-width: 900px) and (min-width: 601px) {
  .logo-icon {
    height: 75px;
    width: 75px;
  }

  #navbar.scrolled .logo-icon {
    height: 48px;
    width: 48px;
  }

  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .cat-img {
    height: 130px;
  }

  .custom-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .custom-image {
    order: -1;
  }

  .custom-img-inner {
    height: 300px;
    max-width: 400px;
    margin: 0 auto;
  }

  .artist-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .artist-image-col {
    display: flex;
    justify-content: center;
  }

  .artist-img-frame {
    max-width: 300px;
    margin: 0 auto;
  }

  .artist-img-placeholder {
    height: 340px;
  }

  .artist-frame-deco {
    right: -10px;
    bottom: -10px;
  }

  .artist-tags {
    justify-content: center;
  }

  .gifts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .gift-card {
    height: 185px;
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .process-line {
    display: none;
  }

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

  .masonry-grid {
    columns: 3;
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 0.75rem);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .wedding-card {
    flex: 0 0 250px;
  }

  .section {
    padding: 4.5rem 0;
  }

  .hero-stats {
    gap: 1rem;
    padding: 1rem 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .wcard-img {
    height: 160px;
  }
}

/* ═══════════════════
   MOBILE LARGE (481px – 600px)
═══════════════════ */
@media (max-width: 600px) and (min-width: 481px) {
  .logo-icon {
    height: 65px;
    width: 65px;
  }

  .nav-inner {
    padding: 0.5rem 1.2rem;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
  }

  .cat-img {
    height: 120px;
  }

  .custom-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .custom-image {
    order: -1;
  }

  .custom-img-inner {
    height: 260px;
  }

  .custom-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cstep {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 1rem;
    min-width: unset;
    width: 100%;
  }

  .cstep-text {
    flex: 1;
  }

  .cstep-arrow {
    transform: rotate(90deg);
    align-self: center;
    margin: 0;
    margin-left: 3.5rem;
  }

  .artist-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .artist-image-col {
    display: flex;
    justify-content: center;
  }

  .artist-img-frame {
    max-width: 280px;
    margin: 0 auto;
  }

  .artist-img-placeholder {
    height: 300px;
  }

  .artist-tags {
    justify-content: center;
  }

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

  .gift-card {
    height: 170px;
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .process-line {
    display: none;
  }

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

  .masonry-grid {
    columns: 2;
    gap: 0.8rem;
    column-gap: 0.8rem;
  }

  .m-item {
    margin-bottom: 0.8rem;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: unset;
  }

  .wedding-card {
    flex: 0 0 230px;
  }

  .wcard-img {
    height: 145px;
  }

  .section {
    padding: 3.5rem 0;
  }

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

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

  .hero-stats {
    flex-wrap: wrap;
    gap: 0.8rem;
    padding: 0.9rem 1.2rem;
  }

  .stat-divider {
    display: none;
  }

  .hero-stats .stat {
    flex: 1;
    min-width: 80px;
    text-align: center;
  }
}

/* ═══════════════════
   MOBILE (≤ 480px)
═══════════════════ */
@media (max-width: 480px) {

  /* Navbar */
  .logo-icon {
    height: 56px;
    width: 56px;
  }

  .nav-inner {
    padding: 0.4rem 1rem;
  }

  #navbar.scrolled .logo-icon {
    height: 44px;
    width: 44px;
  }

  /* Hero */
  #hero {
    min-height: 100svh;
  }

  .hero-content {
    padding: 1rem;
  }

  .hero-badge {
    font-size: 0.68rem;
    padding: 0.35rem 0.9rem;
  }

  .highlight {
    font-size: 3rem !important;
    line-height: 1;
  }

  .top-text,
  .bottom-text {
    font-size: clamp(1rem, 4.5vw, 1.4rem);
  }

  .hero-sub {
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
  }

  .btn {
    font-size: 0.85rem;
    padding: 0.75rem 1.5rem;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.6rem;
    padding: 0.8rem 1rem;
    justify-content: space-around;
  }

  .stat {
    flex: 1;
    min-width: 70px;
    text-align: center;
  }

  .stat span {
    font-size: 1.2rem;
  }

  .stat p {
    font-size: 0.7rem;
  }

  .stat-divider {
    display: none;
  }

  .hero-scroll-hint {
    bottom: 1.5rem;
  }

  /* Categories */
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    min-height: 780px;
  }

  .cat-img {
    height: 110px;
  }

  .cat-name {
    font-size: 0.75rem;
    padding: 0.6rem 0.5rem;
  }

  /* Wedding */
  .wedding-card {
    flex: 0 0 200px;
  }

  .wcard-img {
    height: 130px;
  }

  .wcard-info h4 {
    font-size: 0.95rem;
  }

  .wcard-info p {
    font-size: 0.75rem;
  }

  .wcard-info {
    padding: 0.8rem 1rem;
  }

  /* Custom */
  .custom-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .custom-image {
    order: -1;
  }

  .custom-img-inner {
    height: 240px;
    border-radius: 20px;
  }

  .custom-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .cstep {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 0.8rem;
    min-width: unset;
    width: 100%;
  }

  .cstep-text {
    flex: 1;
  }

  .cstep-num {
    flex-shrink: 0;
  }

  .cstep-arrow {
    transform: rotate(90deg);
    margin: 0;
    align-self: center;
    margin-left: 2.5rem;
    margin-right: 0;
  }

  /* Gifts */
  .gifts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .gift-card {
    height: 160px;
  }

  .gift-icon {
    font-size: 1.8rem;
  }

  .gift-front h4 {
    font-size: 0.9rem;
  }

  .gift-back p {
    font-size: 0.75rem;
  }

  .gift-front,
  .gift-back {
    padding: 1rem 0.8rem;
    gap: 0.5rem;
  }

  /* Process */
  .process-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .process-line {
    display: none;
  }

  .process-icon {
    width: 56px;
    height: 56px;
    font-size: 1.2rem;
  }

  .process-content h4 {
    font-size: 0.9rem;
  }

  .process-content p {
    font-size: 0.75rem;
  }

  /* Artist */
  .artist-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .artist-image-col {
    display: flex;
    justify-content: center;
  }

  .artist-img-frame {
    max-width: 240px;
    margin: 0 auto;
  }

  .artist-img-placeholder {
    height: 260px;
  }

  .artist-frame-deco {
    right: -8px;
    bottom: -8px;
  }

  .artist-tags {
    justify-content: center;
  }

  .artist-story {
    font-size: 0.88rem;
  }

  /* Why */
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .why-card {
    padding: 1.5rem 1rem;
  }

  .why-card h4 {
    font-size: 0.9rem;
  }

  .why-card p {
    font-size: 0.75rem;
  }

  .why-icon-wrap {
    width: 52px;
    height: 52px;
    margin-bottom: 0.8rem;
  }

  /* Gallery */
  .masonry-grid {
    columns: 2;
    gap: 0.6rem;
    column-gap: 0.6rem;
  }

  .m-item {
    margin-bottom: 0.6rem;
  }

  /* Testimonials */
  .testimonial-card {
    flex: 0 0 100%;
    padding: 1.5rem;
  }

  .t-msg {
    font-size: 0.82rem;
  }

  /* FAQ */
  .faq-q {
    font-size: 0.85rem;
    padding: 1rem 1.2rem;
  }

  .faq-a p {
    font-size: 0.82rem;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 4rem 1.2rem;
  }

  .cta-banner h2 {
    font-size: 1.5rem;
  }

  .cta-banner p {
    font-size: 0.88rem;
  }

  .btn-whatsapp-lg {
    font-size: 0.95rem;
    padding: 0.85rem 2rem;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-bottom: 2rem;
  }

  .footer-brand {
    grid-column: unset;
  }

  .footer-logo img {
    height: 80px;
  }

  #footer {
    padding: 3rem 1.2rem 0;
  }

  /* Reels */
  .reel-card {
    flex: 0 0 75vw;
    min-width: 160px;
  }

  /* Floating WA */
  .float-wa {
    bottom: 1.2rem;
    right: 1.2rem;
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  .back-top {
    bottom: 1.2rem;
    left: 1.2rem;
    width: 40px;
    height: 40px;
  }

  /* Section spacing */
  .section {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .container {
    padding: 0 1rem;
  }

  /* Scroll arrows */
  .scroll-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }

  .scroll-arrow.left {
    left: 2px;
  }

  .scroll-arrow.right {
    right: 2px;
  }
}

/* ═══════════════════
   EXTRA SMALL (≤ 360px)
═══════════════════ */
@media (max-width: 360px) {
  .logo-icon {
    height: 48px;
    width: 48px;
  }

  .highlight {
    font-size: 3rem;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .cat-img {
    height: 95px;
  }

  .gifts-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .gift-card {
    height: 145px;
  }

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

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 0.8rem;
  }

  .stat-divider {
    display: none;
  }

  .masonry-grid {
    columns: 1;
  }

  .reel-card {
    flex: 0 0 85vw;
  }

  .container {
    padding: 0 0.75rem;
  }
}

/* ═══════════════════
   NAVIGATION: Mobile menu overlay fix
═══════════════════ */
@media (max-width: 768px) {
  .highlight {
    font-size: 4rem !important;
    line-height: 1.3;
  }

  .nav-links {
    top: 0;
    padding-top: 5rem;
    overflow-y: auto;
  }

  .nav-inner {
    padding: 0.3rem 1rem;
  }

  .logo-icon {
    height: 64px;
    width: 64px;
  }

  /* Navbar always visible on mobile (don't hide it) */
  /* #navbar.scrolled {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  } */

  /* #navbar.scrolled .logo-icon {
    height: 48px;
    width: 48px;
  } */
}

/* ═══════════════════
   TOUCH DEVICE: flip cards show back on tap
═══════════════════ */
@media (hover: none) {
  .gift-card.flipped .gift-front {
    transform: rotateY(-180deg);
  }

  .gift-card.flipped .gift-back {
    transform: rotateY(0deg);
  }

  /* Show overlay on category cards when tapped */
  .cat-card:focus .cat-overlay,
  .cat-card:focus-within .cat-overlay {
    opacity: 1;
  }
}

/* ═══════════════════
   SAFE AREA (notch devices)
═══════════════════ */
@supports (padding: max(0px)) {
  .float-wa {
    bottom: max(1.5rem, env(safe-area-inset-bottom));
    right: max(1.5rem, env(safe-area-inset-right));
  }

  .back-top {
    bottom: max(1.5rem, env(safe-area-inset-bottom));
    left: max(1.5rem, env(safe-area-inset-left));
  }

  #footer {
    padding-bottom: max(0px, env(safe-area-inset-bottom));
  }
}

/* ═══════════════════
   SMOOTH IMAGE SCALING FIX
═══════════════════ */
.m-img img,
.cat-img img,
.wcard-img img,
.custom-img-inner img,
.artist-img-placeholder img,
.logo-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Prevent horizontal overflow globally ── */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

.wedding-scroll-wrap {
  position: relative;
}

@media (max-width: 768px) {
  .wedding-scroll-wrap {
    padding: 0;
  }
}

/* ── Section tag wraps on very narrow screens ── */
.section-tag {
  white-space: normal;
  text-align: center;
  max-width: 90vw;
}

/* ── Artist text center align on mobile ── */
@media (max-width: 900px) {
  .artist-text-col .btn {
    display: inline-flex;
  }
}

/* ── FAQ container full width on mobile ── */
@media (max-width: 768px) {
  .faq-container {
    max-width: 100%;
    padding: 0 1rem;
  }
}

/* ── Fix hero overlay images (wcard-img) ── */
.wcard-img {
  position: relative;
  overflow: hidden;
}

.wcard-img img.overlay-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Gallery masonry images ── */
.m-img {
  overflow: hidden;
}

.m-img img.overlay-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Ensure masonry items have relative positioning ── */
.m-item {
  position: relative;
}

.reels-wrapper {
  position: relative;
}

/* arrows position */
.reels-wrapper .scroll-arrow.left {
  left: -20px;
}

.reels-wrapper .scroll-arrow.right {
  right: -20px;
}

/* Testimonial arrows */
.testimonial-track-wrap .scroll-arrow.left {
  left: -20px;
}

.testimonial-track-wrap .scroll-arrow.right {
  right: -20px;
}

/* mobile fix */
@media (max-width: 768px) {
  .reels-wrapper .scroll-arrow.left {
    left: 5px;
  }

  .reels-wrapper .scroll-arrow.right {
    right: 5px;
  }

  .testimonial-track-wrap .scroll-arrow.left {
    left: 5px;
  }

  .testimonial-track-wrap .scroll-arrow.right {
    right: 5px;
  }
}