/* ═══════════════════════════════════════════════════════════════
   SHAHI PRINTING — DESIGN SYSTEM
   Palette: Deep Navy (#1A0A4E) · Gold (#D4AF37) · Cream (#FDF8F0)
   Fonts: Playfair Display (headings) · Outfit (body)
═══════════════════════════════════════════════════════════════ */

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

:root {
  --navy:       #1A0A4E;
  --navy-mid:   #2D1B7E;
  --navy-light: #3D2B9E;
  --gold:       #D4AF37;
  --gold-light: #F5D26E;
  --gold-pale:  #FDF3D0;
  --cream:      #FDF8F0;
  --cream-dark: #F5EDD8;
  --white:      #FFFFFF;
  --text:       #1C1C2E;
  --text-mid:   #4A4A6A;
  --text-light: #8A8AAA;
  --border:     rgba(212,175,55,.18);
  --shadow-sm:  0 2px 12px rgba(26,10,78,.08);
  --shadow-md:  0 8px 32px rgba(26,10,78,.12);
  --shadow-lg:  0 20px 60px rgba(26,10,78,.18);
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

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

img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── SCROLLBAR ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── TOPBAR ───────────────────────────────────────────────── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .3px;
  padding: 8px 0;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar a { color: var(--gold-light); transition: color var(--transition); }
.topbar a:hover { color: var(--white); }
.topbar-sep { opacity: .35; }

/* ── NAVIGATION ───────────────────────────────────────────── */
#mainNav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253,248,240,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
#mainNav.scrolled { box-shadow: var(--shadow-md); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-mark {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(26,10,78,.25);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .5px;
}
.logo-tagline { font-size: 10px; color: var(--text-light); letter-spacing: 1px; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--navy); background: var(--gold-pale); }
.nav-links .nav-cta {
  margin-left: 8px;
  padding: 9px 20px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--gold-light) !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 13px;
  box-shadow: 0 4px 16px rgba(26,10,78,.25);
  transition: all var(--transition);
}
.nav-links .nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(26,10,78,.35);
  background: var(--gold-pale) !important;
  color: var(--navy) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.hamburger:hover { background: var(--gold-pale); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── PAGE SYSTEM ──────────────────────────────────────────── */
.page { display: none; min-height: 100vh; }
.page.active { display: block; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--gold), #B8960C);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-sm);
  letter-spacing: .3px;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(212,175,55,.35);
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,175,55,.5);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--navy);
  transition: all var(--transition);
  cursor: pointer;
  font-family: inherit;
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy) 0%, #0D0630 40%, #1A0A4E 70%, #2D1B7E 100%);
  padding: 100px 24px 80px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212,175,55,.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212,175,55,.04) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}
.hero-glow-1 { width: 500px; height: 500px; background: rgba(212,175,55,.08); top: -100px; right: -100px; animation-delay: 0s; }
.hero-glow-2 { width: 400px; height: 400px; background: rgba(61,43,158,.3); bottom: -50px; left: -80px; animation-delay: 2s; }
.hero-glow-3 { width: 300px; height: 300px; background: rgba(212,175,55,.05); top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 4s; }

@keyframes glowPulse {
  0%, 100% { opacity: .6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  animation: fadeUp .8s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding: 8px 20px;
  border: 1px solid rgba(212,175,55,.3);
  border-radius: 100px;
  background: rgba(212,175,55,.06);
}
.eyebrow-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero-title {
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin-bottom: 16px;
}
.hero-title-main {
  display: block;
  font-size: clamp(64px, 12vw, 120px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -2px;
}
.hero-title-accent {
  display: block;
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 4px;
}

.hero-script {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(22px, 4vw, 32px);
  color: var(--gold-light);
  margin-bottom: 20px;
  opacity: .9;
}

.hero-desc {
  font-size: clamp(15px, 2vw, 17px);
  color: rgba(255,255,255,.7);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-actions .btn-secondary {
  color: var(--gold-light);
  border-color: rgba(212,175,55,.5);
}
.hero-actions .btn-secondary:hover {
  background: rgba(212,175,55,.1);
  color: var(--gold-light);
  border-color: var(--gold);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(212,175,55,.15);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
}
.stat-item { text-align: center; padding: 8px 28px; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 11px; color: rgba(255,255,255,.55); letter-spacing: 1px; text-transform: uppercase; }
.stat-divider { width: 1px; height: 40px; background: rgba(212,175,55,.2); }

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(212,175,55,.6), transparent);
}
@keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ── SECTIONS ─────────────────────────────────────────────── */
.section {
  padding: 96px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-dark {
  max-width: 100%;
  background: linear-gradient(160deg, var(--navy) 0%, #0D0630 100%);
  padding: 96px 24px;
}
.section-dark .section { max-width: 1200px; margin: 0 auto; padding: 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid rgba(212,175,55,.3);
  border-radius: 100px;
  background: var(--gold-pale);
}
.section-dark .section-eyebrow { background: rgba(212,175,55,.1); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title-light { color: var(--white); }
.section-subtitle { font-size: 16px; color: var(--text-mid); max-width: 520px; margin: 0 auto; }
.section-subtitle-light { color: rgba(255,255,255,.6); }

/* ── SERVICES GRID ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(26,10,78,.08);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.svc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.svc-badge.popular { background: var(--gold); color: var(--navy); }
.svc-badge.new { background: #10B981; color: #fff; }
.svc-badge.special { background: var(--navy); color: var(--gold); }

.svc-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-dark);
}
.svc-img img, .svc-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.service-card:hover .svc-img img,
.service-card:hover .svc-img video { transform: scale(1.06); }
.svc-video { position: relative; }

.svc-body {
  padding: 16px 16px 8px;
  flex: 1;
}
.svc-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.svc-desc { font-size: 12px; color: var(--text-light); }

.svc-arrow {
  padding: 8px 16px 14px;
  font-size: 16px;
  color: var(--gold);
  font-weight: 700;
  transition: transform var(--transition);
}
.service-card:hover .svc-arrow { transform: translateX(4px); }

/* ── REVIEWS ──────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 48px;
  padding: 0 24px;
}

.review-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(212,175,55,.15);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}
.review-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(212,175,55,.35);
  transform: translateY(-4px);
}

.review-quote {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  line-height: .8;
  color: var(--gold);
  opacity: .3;
  margin-bottom: 8px;
}
.review-stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 20px; }
.review-footer { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), #B8960C);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.review-name { font-weight: 600; color: var(--white); font-size: 14px; }
.review-source { font-size: 11px; color: rgba(255,255,255,.4); }

.reviews-cta { text-align: center; padding: 0 24px; }

/* ── WHY US ───────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--white);
  border: 1px solid rgba(26,10,78,.08);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.why-icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--gold-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--navy);
  transition: all var(--transition);
}
.why-card:hover .why-icon-wrap {
  background: linear-gradient(135deg, var(--gold), #B8960C);
  color: var(--navy);
}

.why-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.why-desc { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-info-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(212,175,55,.15);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(10px);
}

.contact-brand {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.ci-icon {
  width: 40px;
  height: 40px;
  background: rgba(212,175,55,.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.ci-label { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.ci-value { font-size: 14px; color: rgba(255,255,255,.8); line-height: 1.6; }
.ci-value a { color: rgba(255,255,255,.8); transition: color var(--transition); }
.ci-value a:hover { color: var(--gold); }

.social-row { display: flex; gap: 12px; margin-top: 28px; }
.social-btn {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.9);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  overflow: hidden;
  padding: 8px;
}
.social-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.social-btn img { width: 24px; height: 24px; object-fit: contain; }

.contact-map-wrap { display: flex; flex-direction: column; gap: 16px; }
.map-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212,175,55,.2);
  flex: 1;
  min-height: 300px;
}
.map-box iframe { width: 100%; height: 100%; min-height: 300px; border: none; display: block; }
.map-cta { text-align: center; }

/* ── PAGE HERO ────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, #0D0630 100%);
  padding: 80px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,175,55,.06) 0%, transparent 70%);
  pointer-events: none;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.15);
  transition: all var(--transition);
}
.back-btn:hover { color: var(--gold); border-color: rgba(212,175,55,.4); background: rgba(212,175,55,.06); }

.breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
  letter-spacing: .5px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 6px; }

.page-hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero p { font-size: 15px; color: rgba(255,255,255,.65); max-width: 560px; margin: 0 auto; }

/* ── WEDDING TABS ─────────────────────────────────────────── */
.wedding-tabs-nav {
  display: flex;
  gap: 8px;
  padding: 24px 24px 0;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  border-bottom: 2px solid rgba(26,10,78,.08);
}
.tab-btn {
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  border: 1px solid transparent;
  border-bottom: none;
  transition: all var(--transition);
  background: transparent;
  position: relative;
  bottom: -2px;
}
.tab-btn:hover { color: var(--navy); background: var(--gold-pale); }
.tab-btn.active {
  color: var(--navy);
  background: var(--cream);
  border-color: rgba(26,10,78,.08);
  border-bottom-color: var(--cream);
}

.tab-pane { display: none; padding: 40px 24px; max-width: 1200px; margin: 0 auto; }
.tab-pane.active { display: block; }

.tab-header { margin-bottom: 40px; }
.tab-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.tab-header p { font-size: 14px; color: var(--text-mid); max-width: 600px; }

/* ── DESIGNS GRID ─────────────────────────────────────────── */
.designs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  padding: 40px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.tab-pane .designs-grid { padding: 0; }

.design-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(26,10,78,.08);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.design-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,175,55,.4);
}

/* ── CAROUSEL ─────────────────────────────────────────────── */
.card-carousel {
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
  aspect-ratio: 4/3;
}
.carousel-track {
  display: flex;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  height: 100%;
}
.carousel-slide {
  flex: 0 0 100%;
  height: 100%;
  overflow: hidden;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.design-card:hover .carousel-slide img { transform: scale(1.04); }

.mock-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  transition: all var(--transition);
  z-index: 3;
  opacity: 0;
}
.design-card:hover .carousel-btn { opacity: 1; }
.carousel-btn:hover { background: var(--gold); color: var(--navy); transform: translateY(-50%) scale(1.1); }
.carousel-btn.prev { left: 8px; }
.carousel-btn.next { right: 8px; }

.carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 3;
}
.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  transition: all var(--transition);
  cursor: pointer;
}
.carousel-dot.active { background: var(--gold); width: 16px; border-radius: 3px; }

.carousel-count {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0,0,0,.5);
  color: #fff;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 100px;
  z-index: 3;
}

/* ── DESIGN INFO ──────────────────────────────────────────── */
.design-info { padding: 20px; }
.design-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.design-style { font-size: 12px; color: var(--text-light); margin-bottom: 8px; }
.design-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}
.design-actions { display: flex; gap: 8px; flex-wrap: wrap; }

.btn-order {
  flex: 1;
  padding: 10px 16px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-align: center;
  font-family: inherit;
  cursor: pointer;
  border: none;
}
.btn-order:hover {
  background: linear-gradient(135deg, var(--gold), #B8960C);
  color: var(--navy);
  transform: translateY(-1px);
}

.btn-view {
  padding: 10px 14px;
  background: var(--cream-dark);
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  font-family: inherit;
  cursor: pointer;
  border: 1px solid rgba(26,10,78,.1);
}
.btn-view:hover { background: var(--gold-pale); border-color: var(--gold); }

/* ── NIKKAH NAMA CARDS ────────────────────────────────────── */
.design-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.mock-card-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.mock-ornament img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 180px;
}

/* ── OFFER BANNER ─────────────────────────────────────────── */
.offer-banner {
  padding: 0 24px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.offer-banner-inner {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(212,175,55,.2);
  text-align: center;
}
.offer-badge {
  display: inline-block;
  background: #EF4444;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.offer-banner-inner h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 4vw, 36px);
  color: var(--gold);
  margin-bottom: 12px;
}
.offer-banner-inner p {
  color: rgba(255,255,255,.8);
  font-size: 14px;
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.offer-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: linear-gradient(160deg, #0D0630 0%, var(--navy) 100%);
  border-top: 1px solid rgba(212,175,55,.15);
  padding: 64px 24px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.footer-tagline { font-size: 12px; color: rgba(255,255,255,.4); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.footer-address { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 8px; }
.footer-contact { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }

.footer-links-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-links-col a:hover { color: var(--gold); }

.footer-copy {
  border-top: 1px solid rgba(212,175,55,.1);
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.3);
  max-width: 1200px;
  margin: 0 auto;
}

/* ── FLOATING BUTTONS ─────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: all var(--transition);
  animation: waPulse 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.6); }
@keyframes waPulse {
  0%,100%{box-shadow:0 6px 24px rgba(37,211,102,.4)}
  50%{box-shadow:0 6px 32px rgba(37,211,102,.7),0 0 0 8px rgba(37,211,102,.1)}
}

.scroll-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

/* ── MODALS ───────────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(13,6,48,.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.modal.open { opacity: 1; pointer-events: auto; }

.modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(.95) translateY(20px);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.modal.open .modal-box { transform: scale(1) translateY(0); }

.modal-box-wide { max-width: 600px; padding: 0; overflow: hidden; text-align: left; }
.modal-content-pad { padding: 28px 32px 32px; }
.modal-content-pad h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 10px;
}
.modal-content-pad p { font-size: 14px; color: var(--text-mid); margin-bottom: 20px; line-height: 1.6; }

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-mid);
  transition: all var(--transition);
  z-index: 2;
}
.modal-close:hover { background: #FEE2E2; color: #EF4444; }

.modal-icon { font-size: 48px; margin-bottom: 16px; }
.modal-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 10px;
}
.modal-box p { font-size: 14px; color: var(--text-mid); margin-bottom: 24px; }
.modal-note { font-size: 12px; color: var(--text-light); margin-top: 16px !important; }

.modal-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.wa-btn:hover { background: #1DA851; transform: translateY(-2px); }

.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--navy);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.call-btn:hover { background: var(--navy-mid); transform: translateY(-2px); }

.offer-img { width: 100%; max-height: 320px; object-fit: cover; display: block; }

/* ── PREVIEW MODAL ────────────────────────────────────────── */
.preview-box {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.preview-box img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.preview-close { position: absolute; top: -12px; right: -12px; }
.preview-caption {
  color: rgba(255,255,255,.7);
  font-size: 13px;
  margin-top: 12px;
  text-align: center;
}

/* ── GALLERY MODAL ────────────────────────────────────────── */
.gallery-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(.95) translateY(20px);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.modal.open .gallery-box { transform: scale(1) translateY(0); }

.gallery-header { padding: 28px 28px 0; }
.gallery-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 4px;
}
.gallery-header p { font-size: 13px; color: var(--text-light); }

.gallery-close-btn { position: absolute; top: 16px; right: 16px; z-index: 2; }

.gallery-main-view {
  padding: 20px 28px;
  background: var(--cream-dark);
  margin: 16px 28px;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-main-view img, .gallery-main-view video {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
  cursor: zoom-in;
}

.gallery-caption { padding: 0 28px 12px; font-size: 13px; color: var(--text-mid); text-align: center; }

.gallery-thumbs {
  display: flex;
  gap: 10px;
  padding: 0 28px 20px;
  overflow-x: auto;
  scrollbar-width: thin;
}
.gallery-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--cream-dark);
}
.gallery-thumb.active { border-color: var(--gold); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.video-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--gold);
  font-size: 20px;
}

.gallery-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding: 0 28px 28px;
}
.gallery-nav-btn {
  padding: 10px 24px;
  background: var(--cream-dark);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  font-family: inherit;
  cursor: pointer;
  border: 1px solid rgba(26,10,78,.1);
}
.gallery-nav-btn:hover { background: var(--navy); color: var(--gold-light); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 40px;
    gap: 4px;
    box-shadow: -8px 0 40px rgba(26,10,78,.15);
    transition: right .35s cubic-bezier(.4,0,.2,1);
    z-index: 999;
    border-left: 1px solid var(--border);
  }
  .nav-links.open { right: 0; }
  .nav-links a { width: 100%; padding: 12px 16px; font-size: 15px; border-radius: var(--radius-sm); }
  .nav-links .nav-cta { margin-left: 0; margin-top: 8px; width: 100%; justify-content: center; }

  .hero-stats { gap: 0; padding: 16px 20px; }
  .stat-item { padding: 8px 16px; }
  .stat-divider { display: none; }

  .services-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }

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

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

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .section { padding: 64px 20px; }
  .section-dark { padding: 64px 20px; }

  .designs-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); padding: 24px 20px; }

  .wedding-tabs-nav { padding: 20px 20px 0; gap: 4px; }
  .tab-btn { padding: 10px 14px; font-size: 12px; }

  .contact-info-card { padding: 28px 24px; }
  .contact-grid { padding: 0 20px; }

  .modal-box { padding: 28px 24px; }
  .gallery-box { border-radius: var(--radius-lg); }
  .gallery-main-view { margin: 12px 16px; }
  .gallery-thumbs { padding: 0 16px 16px; }
  .gallery-nav { padding: 0 16px 20px; }
  .gallery-header { padding: 20px 16px 0; }
  .gallery-caption { padding: 0 16px 10px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; gap: 8px; }
  .stat-divider { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .topbar-inner { font-size: 11px; gap: 8px; }
  .topbar-sep { display: none; }
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── OVERLAY for mobile nav ───────────────────────────────── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,6,48,.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.nav-overlay.visible { opacity: 1; pointer-events: auto; }