/* ==========================================================================
   DESIGN TOKENS & VARIABLES
   ========================================================================== */
:root {
  --primary-gold: #CFA64A;
  --dark-gold: #9E7427;
  --champagne: #F7F1E7;
  --warm-ivory: #FCFAF6;
  --soft-beige: #EADFCF;
  --dark-text: #2B2B2B;
  --secondary-text: #6A6257;
  --whatsapp-green: #25D366;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;

  --card-radius: 22px;
  --card-border: 1px solid #E7D8BC;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: #e8e4df;
  color: var(--dark-text);
  display: flex;
  justify-content: center;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

/* ==========================================================================
   MICROSITE CONTAINER
   ========================================================================== */
.microsite-container {
  width: 100%;
  max-width: 480px;
  background-color: var(--warm-ivory);
  min-height: 100vh;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.12);
  overflow-x: hidden;
  position: relative;
}

section {
  padding: 32px 20px;
}

/* ==========================================================================
   SECTION DIVIDER / HEADINGS
   ========================================================================== */
.section-divider {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-text);
  text-align: center;
  position: relative;
  margin-bottom: 22px;
  letter-spacing: 1.5px;
}

.section-divider::before {
  content: "\221D";
  display: inline-block;
  margin-right: 12px;
  color: var(--primary-gold);
}

.section-divider::after {
  content: "\221D";
  display: inline-block;
  margin-left: 12px;
  color: var(--primary-gold);
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 1.5rem;
}

.font-bold {
  font-weight: 600;
}

.text-secondary {
  color: var(--secondary-text);
  font-size: 0.8rem;
}

/* ==========================================================================
   BUTTON STYLES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: #fff;
  box-shadow: 0 4px 15px rgba(207, 166, 74, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(207, 166, 74, 0.5);
}

.btn-primary-alt {
  background: #fff;
  color: var(--dark-gold);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-primary-alt:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp {
  background-color: var(--whatsapp-green);
  color: #fff;
}

.btn-whatsapp:hover {
  background-color: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
  background: var(--primary-gold);
  color: #fff;
  transform: translateY(-2px);
}

.btn-wa-light {
  background-color: #fff;
  color: var(--whatsapp-green);
  border: 2px solid #d4d4d4;
  width: 100%;
}

.btn-wa-light:hover {
  border-color: var(--whatsapp-green);
  background-color: #f0faf4;
  transform: translateY(-1px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.7rem;
}

/* ==========================================================================
   FLOATING WHATSAPP FAB
   ========================================================================== */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--whatsapp-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: fab-pulse 2s infinite;
}

.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

@keyframes fab-pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
  }
}

/* ==========================================================================
   SCROLL REVEAL ANIMATION
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   01. HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 60px 24px 40px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background-color: #f5efe6;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1519741497674-611481863552?w=800&q=80');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg,
      rgba(252, 250, 246, 0.97) 0%,
      rgba(252, 250, 246, 0.92) 25%,
      rgba(252, 250, 246, 0.6) 55%,
      rgba(252, 250, 246, 0.0) 80%),
    linear-gradient(0deg,
      rgba(252, 250, 246, 0.85) 0%,
      rgba(252, 250, 246, 0.0) 40%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  color: var(--dark-text);
  width: 100%;
}

.main-logo {
  max-width: 130px;
  margin: 0 0 20px 0;
  filter: none;
  opacity: 1;
}

.wedding-title {
  font-family: 'Instrument Serif', serif;
  font-size: 3.8rem;
  font-weight: 400;
  line-height: 1;
  color: var(--dark-text);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.wedding-title span {
  color: var(--dark-gold);
  display: inline-block;
  text-shadow: none;
}

.tagline {
  font-family: 'Caveat', cursive;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--secondary-text);
  margin-bottom: 24px;
  font-style: normal;
  line-height: 1.4;
}

.tagline .fa-heart {
  color: #e25555;
  font-size: 0.9rem;
  margin-left: 4px;
  vertical-align: middle;
}

.event-info-box {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 22px;
  text-align: left;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 6px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item i {
  font-size: 0.9rem;
  color: var(--primary-gold);
  min-width: 20px;
  text-align: center;
}

.info-item p {
  font-size: 0.7rem;
  color: var(--dark-text);
  line-height: 1.4;
}

.event-info-box .text-secondary {
  color: var(--secondary-text);
  font-size: 0.65rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-actions .btn {
  width: fit-content;
  justify-content: center;
  padding: 11px 28px;
  font-size: 0.65rem;
  border-radius: 12px;
}

.hero-actions .btn-whatsapp {
  background-color: transparent;
  color: var(--whatsapp-green);
  border: 2px solid var(--whatsapp-green);
}

.hero-actions .btn-whatsapp:hover {
  background-color: var(--whatsapp-green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* ==========================================================================
   02. SPECIAL DEAL
   ========================================================================== */
.special-deal-section {
  padding: 24px 16px;
}

.deal-card {
  width: 100%;
  position: relative;
  overflow: visible;
  border-radius: 14px;
  text-align: center;
  padding: 0 0 20px;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 211, 115, 0.3) 0%, transparent 20%),
    radial-gradient(circle at 85% 10%, rgba(194, 132, 40, 0.25) 0%, transparent 22%),
    radial-gradient(circle at 50% 50%, rgba(255, 191, 72, 0.12) 0%, transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(177, 115, 36, 0.25) 0%, transparent 25%),
    linear-gradient(135deg, #5c3d12 0%, #16130c 40%, #1a150b 70%, #251707 100%);
  border: 1.5px solid rgba(235, 190, 92, 0.55);
  box-shadow:
    0 0 0 1px rgba(235, 190, 92, 0.1),
    0 12px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.deal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, rgba(255, 213, 116, 0.35) 0 1.5px, transparent 3px);
  background-size: 20px 20px;
  opacity: 0.18;
  filter: blur(1.2px);
  border-radius: 14px;
}

.deal-card::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(207, 166, 74, 0.15);
  border-radius: 10px;
  pointer-events: none;
}

.deal-ribbon {
  width: 340px;
  max-width: 100%;
  height: 80px;
  position: relative;
  margin: -6px auto 0;
  z-index: 6;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.55));
}

.deal-ribbon svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.ribbon-label {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 2px;
  fill: #2d1a06;
  paint-order: stroke fill;
  stroke: rgba(255, 236, 170, 0.55);
  stroke-width: 0.6px;
  filter: drop-shadow(0 1px 0 rgba(255, 240, 180, 0.85));
}

.deal-price-area {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 8px;
}

.badge-mulai {
  width: 48px;
  height: 48px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #fff1b9 0%, #dda043 48%, #9c621c 100%);
  color: #4d2e0c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.3px;
  clip-path: polygon(50% 0%, 62% 18%, 82% 12%, 79% 35%, 100% 50%,
      79% 65%, 82% 88%, 62% 82%, 50% 100%,
      38% 82%, 18% 88%, 21% 65%, 0% 50%,
      21% 35%, 18% 12%, 38% 18%);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  flex-shrink: 0;
}

.deal-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.price-number {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 88px;
  line-height: 0.8;
  font-weight: 900;
  letter-spacing: -3px;
  background: linear-gradient(180deg, #fff4bd 0%, #edbd52 40%, #8c5418 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.5));
}

.price-currency {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 900;
  color: #efbe56;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
  letter-spacing: 2px;
}

.deal-subtitle {
  position: relative;
  z-index: 4;
  margin-top: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 800;
  color: #efbe56;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 3px;
}

.deal-button {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  padding: 9px 28px;
  border-radius: 6px;
  background: linear-gradient(180deg, #efbd56 0%, #d59531 48%, #a5671d 100%);
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 233, 166, 0.5);
  transition: all 0.3s ease;
}

.deal-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 233, 166, 0.5);
}

.deal-button i {
  font-size: 10px;
  color: #fff3d0;
}

/* ==========================================================================
   03. VISIT NOW (BENEFITS GRID)
   ========================================================================== */
.visit-now-section {
  padding-bottom: 20px;
}

.voucher-grid {
  display: flex;
  gap: 8px;
  padding-bottom: 4px;
}

.voucher-card {
  background: #fff;
  border: var(--card-border);
  border-radius: 14px;
  padding: 14px 4px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--card-shadow);
  flex: 1;
  min-width: 0;
}

.voucher-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.voucher-card.full-width {
  grid-column: unset;
}

.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--champagne), var(--soft-beige));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px;
  transition: all 0.3s ease;
}

.voucher-card:hover .icon-circle {
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
}

.icon-circle i {
  font-size: 1rem;
  color: var(--dark-gold);
  transition: color 0.3s ease;
}

.voucher-card:hover .icon-circle i {
  color: #fff;
}

.voucher-card p {
  font-size: 0.56rem;
  font-weight: 500;
  color: var(--dark-text);
  line-height: 1.25;
}

/* ==========================================================================
   04. BOOK NOW (EXCLUSIVE OFFERS)
   ========================================================================== */
.book-now-section {
  padding-top: 16px;
}

.benefit-card {
  background: #fff;
  border: var(--card-border);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  display: flex;
  overflow: hidden;
}

.benefit-left {
  background: linear-gradient(145deg, var(--primary-gold), var(--dark-gold));
  color: #fff;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 120px;
}

.benefit-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}

.benefit-amount {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
}

.benefit-unit {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.benefit-right {
  flex: 1;
  padding: 24px 20px;
}

.benefit-list {
  list-style: none;
  margin-bottom: 16px;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.75rem;
  color: var(--dark-text);
  margin-bottom: 8px;
  line-height: 1.4;
}

.benefit-list li i {
  color: var(--primary-gold);
  font-size: 0.8rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.btn-txt {
  background: none;
  border: none;
  color: var(--primary-gold);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 1px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  font-family: var(--font-body);
}

.btn-txt:hover {
  color: var(--dark-gold);
}

/* ==========================================================================
   05. EVENT SCHEDULE
   ========================================================================== */
.schedule-section {
  position: relative;
  padding: 32px 20px;
}

.schedule-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}

.schedule-subtitle {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-gold);
  margin-bottom: 8px;
}

.schedule-intro {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--secondary-text);
  margin-top: 12px;
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.schedule-item {
  background: #fff;
  border: var(--card-border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.schedule-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.08);
}

.schedule-date-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-bottom: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.schedule-label {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #fff;
  background: var(--primary-gold);
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.schedule-date-info h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark-text);
  margin: 0;
}

.schedule-date {
  font-size: 0.82rem;
  color: var(--secondary-text);
  margin-top: 4px;
}

.schedule-main-time {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-gold);
  background: var(--champagne);
  padding: 8px 14px;
  border-radius: 50px;
  white-space: nowrap;
}

.schedule-detail {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.schedule-row {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 0 0 18px 24px;
  border-left: 1px dashed rgba(201, 162, 76, 0.45);
}

.schedule-row:last-child {
  padding-bottom: 0;
}

.schedule-row::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 4px;
  width: 9px;
  height: 9px;
  background: var(--primary-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(201, 162, 76, 0.14);
}

.schedule-row span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-gold);
  line-height: 1.5;
}

.schedule-row p {
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--dark-text);
  margin: 0;
}

/* Mobile */
@media (max-width: 576px) {
  .schedule-section {
    padding: 44px 0;
  }

  .schedule-heading {
    margin-bottom: 26px;
  }

  .schedule-intro {
    font-size: 0.8rem;
  }

  .schedule-item {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .schedule-date-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .schedule-main-time {
    font-size: 0.72rem;
    padding: 7px 12px;
  }

  .schedule-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding-left: 18px;
    padding-bottom: 16px;
  }

  .schedule-row span {
    font-size: 0.74rem;
  }

  .schedule-row p {
    font-size: 0.78rem;
    line-height: 1.55;
  }
}

/* ==========================================================================
   06. FEATURED VENDORS
   ========================================================================== */
.vendor-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.vendor-cat {
  text-align: center;
  transition: transform 0.3s ease;
}

.vendor-cat:hover {
  transform: translateY(-4px);
}

.icon-circle-lg {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.vendor-cat:hover .icon-circle-lg {
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  border-color: var(--primary-gold);
}

.icon-circle-lg i {
  font-size: 1.3rem;
  color: var(--dark-gold);
  transition: color 0.3s ease;
}

.vendor-cat:hover .icon-circle-lg i {
  color: #fff;
}

.vendor-cat span {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--secondary-text);
}

/* ==========================================================================
   07. GALLERY / SLIDER
   ========================================================================== */
.gallery-section {
  padding-left: 0;
  padding-right: 0;
}

.gallery-section .section-divider {
  padding: 0 20px;
}

.gallery-slider {
  position: relative;
  overflow: hidden;
}

.slider-track {
  position: relative;
  width: 100%;
  height: 260px;
}

.gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.gallery-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  z-index: 2;
  pointer-events: none;
}

.slider-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--dark-text);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  pointer-events: auto;
}

.slider-btn:hover {
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 14px 0 0;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--soft-beige);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

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

/* ==========================================================================
   08. VENUE / MAP
   ========================================================================== */
.venue-card {
  background: #fff;
  border: var(--card-border);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.map-wrapper {
  width: 100%;
  height: 180px;
  background: var(--soft-beige);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.venue-info {
  padding: 20px;
}

.venue-info h3 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 8px;
  line-height: 1.4;
}

.venue-info h3 i {
  color: var(--primary-gold);
  margin-right: 6px;
}

.venue-info p {
  font-size: 0.75rem;
  color: var(--secondary-text);
  line-height: 1.5;
  margin-bottom: 16px;
}

/* ==========================================================================
   09. REGISTRATION
   ========================================================================== */
.registration-section {
  background: var(--champagne);
}

.registration-card {
  background: #fff;
  border: var(--card-border);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 28px 24px;
  text-align: center;
}

.registration-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.qr-box {
  text-align: center;
  flex-shrink: 0;
}

.qr-placeholder {
  width: 140px;
  height: 140px;
  border: 2px solid var(--primary-gold);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 4px 16px rgba(207, 166, 74, 0.15);
}

.qr-placeholder i {
  font-size: 4.5rem;
  color: var(--dark-gold);
  opacity: 0.85;
}

.qr-label {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--secondary-text);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.registration-info {
  width: 100%;
}

.registration-info h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 6px;
}

.registration-info p {
  font-size: 0.72rem;
  color: var(--secondary-text);
  line-height: 1.5;
  margin-bottom: 18px;
}

.registration-info .btn {
  width: 100%;
  font-size: 0.7rem;
  padding: 13px 22px;
}

/* ==========================================================================
   10. WHATSAPP CONTACT
   ========================================================================== */
.whatsapp-consultant {
  background: rgba(234, 223, 207, 0.3);
  text-align: center;
}

.consultant-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--dark-text);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.consultant-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ==========================================================================
   11. FAQ SECTION
   ========================================================================== */
.faq-section {
  padding-bottom: 24px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #fff;
  border: var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark-text);
  text-align: left;
  line-height: 1.4;
  transition: color 0.3s ease;
}

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

.faq-icon {
  font-size: 0.7rem;
  color: var(--primary-gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 18px;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 18px 16px;
}

.faq-answer p {
  font-size: 0.73rem;
  color: var(--secondary-text);
  line-height: 1.6;
  border-top: 1px solid var(--soft-beige);
  padding-top: 12px;
}

/* ==========================================================================
   12 & 13. FOOTER & SOCIAL MEDIA
   ========================================================================== */
.main-footer {
  background-color: #1A1A1A;
  color: #888;
  padding: 36px 20px;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  max-width: 100px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #ccc;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: #fff;
}

.copyright {
  font-size: 0.65rem;
  color: #666;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (min-width: 481px) {
  body {
    padding: 20px 0;
    background-color: #d8d0c6;
  }

  .microsite-container {
    border-radius: 24px;
    min-height: auto;
  }
}

@media (max-width: 360px) {
  .wedding-title {
    font-size: 2.8rem;
  }

  .deal-price {
    font-size: 4rem;
  }

  .benefit-card {
    flex-direction: column;
  }

  .benefit-left {
    min-width: 100%;
    padding: 20px;
    flex-direction: row;
    gap: 12px;
  }

  .benefit-amount {
    font-size: 2.2rem;
  }

  .voucher-card {
    padding: 10px 2px;
  }

  .voucher-card p {
    font-size: 0.5rem;
  }

  .vendor-category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .slider-track {
    height: 200px;
  }
}

/* ==========================================================================
   PACKAGE MODAL
   ========================================================================== */
.pkg-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 16px;
}

.pkg-modal-overlay[hidden] {
  display: none;
}

.pkg-modal-box {
  position: relative;
  background: var(--warm-ivory);
  border-radius: var(--card-radius);
  overflow: hidden;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.pkg-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pkg-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: #111;
}

.pkg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.pkg-slide.active {
  opacity: 1;
}

.pkg-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pkg-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 24px;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.pkg-prev { left: 10px; }
.pkg-next { right: 10px; }

.pkg-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}

.pkg-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}

.pkg-dot.active {
  background: #fff;
}