/* ==========================================================================
   Luxury Wedding Invitation: Er Salmanul Farizi K & Er Aliya J
   Theme: Velvet Burgundy & Rose Champagne (Traditional Royal Mughal Heritage)
   ========================================================================== */

:root {
  /* Rose Champagne Gold Palette */
  --gold: #C6955C;
  --gold-dark: #9E6B34;
  --gold-light: #E8CBA6;
  --gold-subtle: rgba(198, 149, 92, 0.16);
  --gold-glow: rgba(198, 149, 92, 0.35);
  
  /* Velvet Burgundy & Royal Wine */
  --emerald: #4A0E17;        /* Main accent */
  --emerald-dark: #36060E;   /* Deep text / titles */
  --emerald-light: #6E1A25;  /* Hover / highlights */
  --emerald-subtle: rgba(74, 14, 23, 0.08);
  
  /* Warm Alabaster & Vanilla Canvas */
  --bg-primary: #FDFBF8;
  --bg-section: #F8F1EB;
  --bg-card: #FFFFFF;
  --bg-dark: #0A0506;
  
  --text-primary: #261E1F;
  --text-secondary: #615153;
  --text-muted: #948284;
  --text-light: #BDB0B2;
  
  --font-cinzel: 'Cinzel', serif;
  --font-cinzel-deco: 'Cinzel Decorative', serif;
  --font-playfair: 'Playfair Display', serif;
  --font-great-vibes: 'Great Vibes', cursive;
  --font-pinyon: 'Pinyon Script', cursive;
  --font-amiri: 'Amiri', serif;
  --font-inter: 'Inter', sans-serif;
  --font-cormorant: 'Cormorant Garamond', serif;
  
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-inter);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  background: var(--bg-primary);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-light);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* Canvas & Background Effects */
#petals-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.ambient-blobs {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(85px);
  animation: floatBlob 24s ease-in-out infinite alternate;
}

.blob-1 {
  width: 480px;
  height: 480px;
  top: -10%;
  left: -10%;
  background: rgba(198, 149, 92, 0.14);
}

.blob-2 {
  width: 420px;
  height: 420px;
  top: 35%;
  right: -12%;
  background: rgba(74, 14, 23, 0.08);
  animation-duration: 28s;
  animation-delay: -7s;
}

.blob-3 {
  width: 380px;
  height: 380px;
  bottom: 5%;
  left: 10%;
  background: rgba(232, 203, 166, 0.12);
  animation-duration: 22s;
  animation-delay: -12s;
}

@keyframes floatBlob {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.08); }
  100% { transform: translate(-30px, 35px) scale(0.95); }
}

/* ==========================================================================
   1. Intro Splash Overlay
   ========================================================================== */
#intro-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 1.3s var(--ease-smooth), visibility 1.3s;
}

#intro-overlay.hidden-intro {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 2rem;
}

.intro-bismillah {
  font-family: var(--font-amiri);
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  color: var(--gold-light);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  opacity: 0;
  filter: blur(8px);
  animation: introFadeIn 1s 0.2s forwards var(--ease-smooth);
}

.intro-crest {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro-circle-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.intro-circle-path {
  stroke-dasharray: 630;
  stroke-dashoffset: 630;
  animation: drawCircle 1.6s 0.6s forwards var(--ease-smooth);
}

.intro-monogram {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  opacity: 0;
  transform: scale(0.85);
  animation: popMonogram 1s 1.5s forwards var(--ease-smooth);
}

.monogram-gradient {
  background: linear-gradient(135deg, #8E5A28 0%, #C6955C 50%, #E8CBA6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.intro-tagline {
  margin-top: 2rem;
  font-family: var(--font-inter);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: introFadeIn 1s 2s forwards var(--ease-smooth);
}

@keyframes introFadeIn {
  to { opacity: 1; filter: blur(0px); }
}

@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes popMonogram {
  to { opacity: 1; transform: scale(1); }
}

/* ==========================================================================
   Music Player & Floating Controls
   ========================================================================== */
.floating-audio-control {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 100;
}

.music-btn {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold-subtle);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  color: var(--emerald);
  transition: all 0.3s ease;
}

.music-btn:hover {
  background: #FFFFFF;
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(198, 149, 92, 0.28);
  transform: scale(1.05);
}

.music-btn.playing {
  color: var(--gold-dark);
  animation: pulseRotate 4s linear infinite;
}

.music-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 14px;
}

.music-bar {
  width: 2.5px;
  background: currentColor;
  border-radius: 1px;
}

.playing .music-bar:nth-child(1) { animation: soundBar 0.8s ease-in-out infinite alternate; }
.playing .music-bar:nth-child(2) { animation: soundBar 0.6s ease-in-out infinite alternate 0.2s; }
.playing .music-bar:nth-child(3) { animation: soundBar 1s ease-in-out infinite alternate 0.4s; }

@keyframes soundBar {
  0% { height: 3px; }
  100% { height: 14px; }
}

@keyframes pulseRotate {
  0% { box-shadow: 0 0 0 0 rgba(198, 149, 92, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(198, 149, 92, 0); }
  100% { box-shadow: 0 0 0 0 rgba(198, 149, 92, 0); }
}

/* ==========================================================================
   Typography & Universal Elements
   ========================================================================== */
.font-cinzel { font-family: var(--font-cinzel); }
.font-cinzel-deco { font-family: var(--font-cinzel-deco); }
.font-playfair { font-family: var(--font-playfair); }
.font-great-vibes { font-family: var(--font-great-vibes); }
.font-pinyon { font-family: var(--font-pinyon); }
.font-amiri { font-family: var(--font-amiri); }
.font-inter { font-family: var(--font-inter); }
.font-cormorant { font-family: var(--font-cormorant); }

.gold-text { color: var(--gold); }
.emerald-text { color: var(--emerald); }

.section-header-center {
  text-align: center;
  margin: 0 auto 2.5rem;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-label {
  font-family: var(--font-inter);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  display: block;
  margin-bottom: 0.65rem;
  text-align: center;
}

.section-heading {
  font-family: var(--font-cinzel);
  color: var(--text-primary);
  font-weight: 500;
  letter-spacing: 0.08em;
  font-size: clamp(1.8rem, 5vw, 2.7rem);
  line-height: 1.25;
  text-align: center;
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.65;
  margin: 1rem auto;
  position: relative;
}

.divider::before, .divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 4px;
  height: 4px;
  background: var(--gold);
  transform: translateY(-50%) rotate(45deg);
}
.divider::before { left: 0; }
.divider::after { right: 0; }

.corner-ornament {
  position: absolute;
  width: 16px;
  height: 16px;
  opacity: 0.45;
  pointer-events: none;
}

.corner-tl { top: 12px; left: 12px; border-top: 1.5px solid var(--gold); border-left: 1.5px solid var(--gold); }
.corner-tr { top: 12px; right: 12px; border-top: 1.5px solid var(--gold); border-right: 1.5px solid var(--gold); }
.corner-bl { bottom: 12px; left: 12px; border-bottom: 1.5px solid var(--gold); border-left: 1.5px solid var(--gold); }
.corner-br { bottom: 12px; right: 12px; border-bottom: 1.5px solid var(--gold); border-right: 1.5px solid var(--gold); }

/* Reveal on Scroll Animation Class */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s var(--ease-smooth), transform 0.85s var(--ease-smooth);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Section 1: Hero Header (Spacious, Airy, Uncluttered, Pure Luxury)
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  padding: 3.5rem 1.5rem 3rem;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .hero-section {
    padding: 3rem 1.2rem 2.5rem;
    gap: 1.5rem;
  }
}

.hero-tagline-top {
  font-family: var(--font-inter);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0;
}

.hero-tagline-top svg {
  color: var(--gold);
}

.hero-spiritual-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0.5rem 0;
}

.hero-bismillah {
  font-family: var(--font-amiri);
  font-size: clamp(1.3rem, 4.2vw, 1.95rem);
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin: 0;
}

.hero-subheading {
  font-family: var(--font-inter);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 500;
  margin: 0;
}

.hero-invitation-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0.5rem 0;
  width: 100%;
}

.hero-title-main {
  font-family: var(--font-cinzel);
  font-size: clamp(0.78rem, 2vw, 0.95rem);
  letter-spacing: 0.65em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  display: block;
}

.hero-invitation-script {
  font-family: var(--font-great-vibes);
  font-size: clamp(3.8rem, 12vw, 6.8rem);
  color: var(--emerald-dark);
  line-height: 1.2;
  font-weight: 400;
  text-shadow: 0 2px 20px rgba(74, 14, 23, 0.08);
  margin: 0;
  padding: 0 0.5rem;
  display: block;
}

.hero-hosts {
  max-width: 440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-hosts-desc {
  font-size: clamp(1.1rem, 3.2vw, 1.4rem);
  color: var(--text-primary);
  font-style: italic;
  line-height: 1.6;
  margin-top: 0.35rem;
}

/* ==========================================================================
   Section 2: Couple & Ultra-Smooth Monogram
   ========================================================================== */
.couple-section {
  background: var(--bg-section);
  padding: 6rem 1.5rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.monogram-convergence-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0 3.5rem;
  position: relative;
  height: 110px;
}

.monogram-oval-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 190px;
  height: 90px;
  pointer-events: none;
}

.monogram-oval-path {
  transition: opacity 0.4s ease-out;
  opacity: 0;
}

.monogram-crest-center {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 0.1rem;
}

.monogram-letter {
  font-family: var(--font-cinzel-deco);
  font-size: clamp(3rem, 8vw, 4.4rem);
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  will-change: transform;
}

.monogram-letter-s {
  transform: translateX(-100px);
}

.monogram-letter-a {
  transform: translateX(100px);
}

.monogram-ampersand {
  font-family: var(--font-great-vibes);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--gold);
  margin: 0 0.35rem;
  line-height: 1;
  display: inline-block;
  opacity: 0;
  will-change: opacity, transform;
}

.couple-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 920px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .couple-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

.couple-card {
  text-align: center;
  background: var(--bg-card);
  padding: 2.8rem 2.2rem;
  border-radius: 8px;
  border: 1px solid rgba(198, 149, 92, 0.28);
  box-shadow: 0 4px 24px rgba(74, 14, 23, 0.04);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.couple-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 34px rgba(74, 14, 23, 0.12);
}

.couple-badge {
  font-family: var(--font-inter);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.couple-title-eng {
  font-family: var(--font-cinzel);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.couple-name {
  font-family: var(--font-great-vibes);
  font-size: clamp(2.6rem, 6.5vw, 3.6rem);
  color: var(--emerald-dark);
  margin-bottom: 0.2rem;
  line-height: 1.15;
  font-weight: 400;
}

.couple-lineage {
  font-family: var(--font-inter);
  font-size: 0.92rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 0.4rem;
}

.couple-house {
  font-family: var(--font-inter);
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.3rem;
}

.couple-location {
  font-family: var(--font-inter);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  font-weight: 600;
  text-transform: uppercase;
}

/* ==========================================================================
   Section 3: Live Countdown
   ========================================================================== */
.countdown-section {
  padding: 6rem 1.5rem;
  background: var(--bg-primary);
  text-align: center;
  position: relative;
  z-index: 2;
}

.countdown-box-wrapper {
  max-width: 650px;
  margin: 0 auto;
  background: linear-gradient(135deg, #FAF4EE 0%, #F5ECE3 100%);
  border: 1px solid rgba(198, 149, 92, 0.35);
  border-radius: 8px;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 5vw, 2.5rem);
  position: relative;
  box-shadow: 0 6px 30px rgba(74, 14, 23, 0.06);
}

.countdown-event-title {
  font-family: var(--font-inter);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.countdown-date-highlight {
  font-family: var(--font-cinzel);
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.countdown-time-highlight {
  font-family: var(--font-cinzel);
  font-size: clamp(1.3rem, 4vw, 2rem);
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.countdown-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.4rem, 2vw, 1rem);
  flex-wrap: wrap;
  margin-top: 2rem;
}

.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-number {
  font-family: var(--font-cinzel);
  font-size: clamp(1.5rem, 4.5vw, 2.2rem);
  font-weight: 600;
  color: var(--text-primary);
  background: #FFFFFF;
  border: 1px solid rgba(198, 149, 92, 0.28);
  border-radius: 6px;
  padding: 0.6rem 0.8rem;
  min-width: clamp(56px, 14vw, 76px);
  text-align: center;
  box-shadow: 0 3px 12px rgba(74, 14, 23, 0.04);
}

.timer-label {
  font-family: var(--font-inter);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-weight: 500;
}

.timer-separator {
  font-family: var(--font-cinzel);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  opacity: 0.65;
}

/* ==========================================================================
   Section 4: Events & Venues
   ========================================================================== */
.events-section {
  background: var(--bg-section);
  padding: 6rem 1.5rem;
  position: relative;
  z-index: 2;
}

.events-stacked-container {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  max-width: 660px;
  margin: 3rem auto 0;
}

.event-stacked-card {
  background: #FFFFFF;
  border: 1px solid rgba(198, 149, 92, 0.35);
  border-radius: 12px;
  padding: clamp(2.2rem, 5vw, 3.2rem);
  position: relative;
  text-align: center;
  box-shadow: 0 6px 30px rgba(74, 14, 23, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.event-stacked-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 42px rgba(74, 14, 23, 0.15);
}

.event-card-top {
  text-align: center;
}

.event-pill-badge {
  font-family: var(--font-inter);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--emerald);
  font-weight: 600;
  display: inline-block;
  background: var(--emerald-subtle);
  padding: 0.35rem 1.1rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.event-card-title {
  font-size: clamp(2.8rem, 7vw, 4rem);
  color: var(--emerald-dark);
  line-height: 1.1;
  font-weight: 400;
}

/* Centered Layout for Event Details */
.event-card-centered-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  margin: 1.8rem auto 2.2rem;
  max-width: 520px;
}

.event-centered-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  background: #FAF5F0;
  padding: 1rem 1.4rem;
  border-radius: 8px;
  border: 1px solid rgba(198, 149, 92, 0.2);
  position: relative;
}

.event-centered-icon {
  color: var(--gold-dark);
  margin-bottom: 0.35rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.venue-highlight-row {
  background: linear-gradient(180deg, #FAF4EF 0%, #F5EAE0 100%);
  border-color: rgba(198, 149, 92, 0.32);
  padding: 1.3rem 1.5rem;
}

.event-meta-label {
  font-family: var(--font-inter);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  font-weight: 600;
  text-align: center;
}

.event-meta-val {
  font-family: var(--font-inter);
  font-size: 0.98rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

.event-venue-name {
  font-family: var(--font-cinzel);
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  color: var(--emerald-dark);
  font-weight: 600;
  margin-bottom: 0.25rem;
  text-align: center;
}

.event-address-sub {
  font-family: var(--font-inter);
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  text-align: center;
}

.event-card-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.5rem;
}

.btn-full-center {
  width: 100%;
  max-width: 320px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  background: linear-gradient(135deg, #4A0E17 0%, #36060E 100%);
  color: #F3DEC9;
  font-family: var(--font-inter);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 1.8rem;
  border-radius: 6px;
  border: 1px solid rgba(198, 149, 92, 0.45);
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(74, 14, 23, 0.25);
  transition: all 0.3s ease;
}

.btn-full-center svg {
  color: #C6955C;
  transition: transform 0.3s ease;
}

.btn-full-center:hover {
  background: linear-gradient(135deg, #5C1520 0%, #440911 100%);
  color: #FFFFFF;
  border-color: #C6955C;
  box-shadow: 0 6px 24px rgba(74, 14, 23, 0.38);
  transform: translateY(-2px);
}

.btn-full-center:hover svg {
  transform: scale(1.1);
  color: #E8CBA6;
}

/* ==========================================================================
   Section 5: Best Compliments
   ========================================================================== */
.compliments-section {
  padding: 6rem 1.5rem;
  background: var(--bg-primary);
  text-align: center;
  position: relative;
  z-index: 2;
}

.compliments-card {
  max-width: 720px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid rgba(198, 149, 92, 0.3);
  border-radius: 8px;
  padding: 3.2rem 2.2rem;
  box-shadow: 0 4px 24px rgba(74, 14, 23, 0.04);
  position: relative;
}

.compliments-list {
  font-family: var(--font-playfair);
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  font-style: italic;
  color: var(--emerald-dark);
  line-height: 2.2;
  margin-top: 1.5rem;
}

.compliment-name {
  display: inline-block;
  padding: 0 0.4rem;
  position: relative;
}

/* ==========================================================================
   Section 6: Blessings & Footer
   ========================================================================== */
.footer-section {
  background: linear-gradient(180deg, var(--bg-section) 0%, #F5EAE0 100%);
  padding: 6rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(198, 149, 92, 0.2);
}

.prayer-quote {
  font-family: var(--font-playfair);
  font-size: clamp(1.1rem, 3vw, 1.45rem);
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.9;
  max-width: 620px;
  margin: 0 auto 2rem;
}

.arabic-dua {
  font-family: var(--font-amiri);
  font-size: clamp(1.3rem, 4vw, 1.85rem);
  color: var(--gold-dark);
  margin-bottom: 3rem;
}

.footer-monogram {
  font-family: var(--font-cinzel-deco);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-date {
  font-family: var(--font-inter);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.footer-tagline-bottom {
  font-family: var(--font-playfair);
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  font-style: italic;
  color: var(--emerald);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.footer-tagline-bottom svg {
  color: var(--gold);
}
