/* ==========================================================================
   Dubai Property Expo — Australia Roadshow
   Stylesheet
   Structure:
     1. Custom Properties & Reset
     2. Base Typography
     3. Layout Utilities
     4. Buttons & Form Controls
     5. Header & Navigation
     6. Hero
     7. Stats Ticker
     8. Why Dubai
     9. Event Cities (tabs + cards)
     10. Developer Marquee
     11. Agenda Timeline
     12. Testimonials
     13. FAQ Accordion
     14. RSVP Form
     15. Footer
     16. Floating Controls & Misc
     17. Scroll Reveal & Motion
     18. Responsive
     19. Standalone pages (thank you / privacy)
   ========================================================================== */

/* ---------- 1. Custom Properties & Reset ---------- */
:root {
  --navy-950: #060b1a;
  --navy-900: #0a1330;
  --navy-800: #0e1b3d;
  --navy-700: #142455;
  --navy-600: #1c2f6b;
  --gold-300: #f1d999;
  --gold-400: #e6c470;
  --gold-500: #d4af37;
  --gold-600: #b8912a;
  --cream-50: #fbf8f1;
  --cream-100: #f4ecd8;
  --ink-900: #10131c;
  --ink-600: #4a5169;
  --ink-400: #7b829a;
  --white: #ffffff;

  --gradient-gold: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-500) 50%, var(--gold-600) 100%);
  --gradient-navy: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(6, 11, 26, 0.55) 0%, rgba(6, 11, 26, 0.78) 55%, rgba(6, 11, 26, 0.96) 100%);

  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 6px 18px rgba(6, 11, 26, 0.08);
  --shadow-md: 0 18px 40px rgba(6, 11, 26, 0.14);
  --shadow-gold: 0 14px 34px rgba(184, 145, 42, 0.35);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--cream-50);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

::selection {
  background: var(--gold-400);
  color: var(--navy-950);
}

/* ---------- 2. Base Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--navy-950);
  font-weight: 700;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-600);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gradient-gold);
  display: inline-block;
}

.eyebrow--light {
  color: var(--gold-300);
}

.section-heading {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  margin: 0.6rem 0 1rem;
}

.section-sub {
  color: var(--ink-600);
  font-size: 1.05rem;
  max-width: 640px;
}

.section-head {
  margin-bottom: 3rem;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}
.section-head.center .section-sub {
  margin-inline: auto;
}

.text-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- 3. Layout Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

section {
  position: relative;
}

.section-pad {
  padding: 96px 0;
}

@media (max-width: 720px) {
  .section-pad { padding: 64px 0; }
}

.bg-navy {
  background: var(--gradient-navy);
  color: var(--cream-100);
}

.bg-navy .section-sub { color: rgba(244, 236, 216, 0.72); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }

.bg-cream { background: var(--cream-100); }

.divider-glow {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

/* ---------- 4. Buttons & Form Controls ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--navy-950);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 46px rgba(184, 145, 42, 0.45); }

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(244, 236, 216, 0.45);
  color: var(--cream-100);
}
.btn-outline:hover { background: rgba(244, 236, 216, 0.1); border-color: var(--gold-400); }

.btn-outline-dark {
  background: transparent;
  border: 1.5px solid rgba(10, 19, 48, 0.25);
  color: var(--navy-950);
}
.btn-outline-dark:hover { background: rgba(10, 19, 48, 0.06); border-color: var(--navy-700); }

.btn-block { width: 100%; }
.btn-lg { padding: 1.1rem 2.4rem; font-size: 1rem; }

.field {
  margin-bottom: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-800);
  letter-spacing: 0.01em;
}

.field input,
.field select,
.field textarea {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid #e2ddd0;
  background: var(--white);
  color: var(--ink-900);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.field textarea { resize: vertical; min-height: 96px; }

.field.has-error input,
.field.has-error select { border-color: #d1453b; }

.field-error {
  font-size: 0.78rem;
  color: #d1453b;
  min-height: 1em;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; }
}

.radio-pill-group {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.radio-pill {
  position: relative;
}

.radio-pill input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.radio-pill span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid #e2ddd0;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink-600);
  transition: all 0.25s var(--ease);
}

.radio-pill input:checked + span {
  background: var(--gradient-gold);
  border-color: transparent;
  color: var(--navy-950);
  box-shadow: var(--shadow-gold);
}

/* ---------- 5. Header & Navigation ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 500;
  padding: 22px 0;
  transition: padding 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-header.is-scrolled {
  padding: 12px 0;
  background: rgba(6, 11, 26, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.brand-mark svg { width: 100%; height: 100%; }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  color: var(--white);
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.12rem;
  letter-spacing: 0.02em;
}

.brand-text span {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}

.main-nav a {
  color: rgba(244, 236, 216, 0.85);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 6px;
  transition: color 0.25s var(--ease);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px;
  width: 0%;
  background: var(--gradient-gold);
  transition: width 0.3s var(--ease);
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--white);
}
.main-nav a:hover::after,
.main-nav a.is-active::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: var(--cream-100);
  font-weight: 600;
  font-size: 0.9rem;
}

@media (min-width: 1080px) {
  .header-phone { display: inline-flex; }
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(244, 236, 216, 0.25);
  align-items: center;
  justify-content: center;
  color: var(--white);
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: var(--gradient-navy);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  padding: 28px 28px 40px;
}

.mobile-drawer.is-open { transform: translateX(0); }

.mobile-drawer-top {
  display: flex;
  justify-content: flex-end;
}

.mobile-drawer-close {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(244, 236, 216, 0.25);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
}

.mobile-drawer nav {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.mobile-drawer nav a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--cream-100);
}

.mobile-drawer .btn { margin-top: 2.5rem; }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  padding-top: 120px;
  padding-bottom: 60px;
  overflow: hidden;
}

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

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-overlay);
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero-copy .eyebrow { color: var(--gold-300); margin-bottom: 1.2rem; }

.hero-title {
  font-size: clamp(2.6rem, 5.6vw, 4.4rem);
  color: var(--white);
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: normal;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lede {
  margin-top: 1.4rem;
  font-size: 1.12rem;
  color: rgba(244, 236, 216, 0.82);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.4rem;
  flex-wrap: wrap;
}

.hero-locations {
  display: flex;
  gap: 1rem;
  margin-top: 2.8rem;
  flex-wrap: wrap;
}

.hero-loc-chip {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(244, 236, 216, 0.16);
  backdrop-filter: blur(6px);
}

.hero-loc-chip .dot {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-950);
  flex-shrink: 0;
}

.hero-loc-chip strong {
  display: block;
  font-size: 0.92rem;
  color: var(--white);
}
.hero-loc-chip span {
  display: block;
  font-size: 0.76rem;
  color: rgba(244, 236, 216, 0.68);
}

.hero-panel {
  position: relative;
  background: rgba(10, 19, 48, 0.55);
  border: 1px solid rgba(244, 236, 216, 0.18);
  border-radius: var(--radius-lg);
  padding: 2.1rem;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
}

.hero-panel-label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-300);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-panel-city {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1.4rem;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-bottom: 1.6rem;
}

.countdown-unit {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(244, 236, 216, 0.14);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.3rem;
  text-align: center;
}

.countdown-unit strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold-300);
  font-variant-numeric: tabular-nums;
}

.countdown-unit span {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 236, 216, 0.6);
  margin-top: 0.2rem;
}

.hero-panel-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem;
  border-top: 1px dashed rgba(244, 236, 216, 0.2);
}

.hero-panel-price span {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(244, 236, 216, 0.65);
}

.hero-panel-price strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(244, 236, 216, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}

.hero-scroll-cue .mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(244, 236, 216, 0.5);
  border-radius: 999px;
  position: relative;
}
.hero-scroll-cue .mouse::before {
  content: "";
  position: absolute;
  top: 6px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  background: var(--gold-400);
  border-radius: 999px;
  animation: scrollDot 1.8s infinite;
}

@keyframes scrollDot {
  0% { opacity: 1; transform: translateY(0); }
  70% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 0; }
}

/* ---------- 7. Stats Ticker ---------- */
.stats-strip {
  background: var(--navy-950);
  padding: 30px 0;
  border-top: 1px solid rgba(244, 236, 216, 0.08);
  border-bottom: 1px solid rgba(244, 236, 216, 0.08);
}

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

.stat-item {
  text-align: center;
  color: var(--cream-100);
  border-right: 1px solid rgba(244, 236, 216, 0.1);
}
.stat-item:last-child { border-right: none; }

.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--gold-300);
}

.stat-item span {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: rgba(244, 236, 216, 0.65);
}

/* ---------- 8. Why Dubai ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border: 1px solid rgba(10, 19, 48, 0.05);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: linear-gradient(145deg, #fff4dc, #fbe7b7);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.3rem;
}
.benefit-icon img { width: 30px; height: 30px; object-fit: contain; }

.benefit-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.benefit-card p {
  color: var(--ink-600);
  font-size: 0.94rem;
}

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

.about-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-media img { height: 100%; object-fit: cover; }

.about-media-badge {
  position: absolute;
  bottom: 1.4rem;
  left: 1.4rem;
  background: rgba(6, 11, 26, 0.72);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid rgba(244, 236, 216, 0.2);
}

.about-media-badge strong {
  display: block;
  font-family: var(--font-display);
  color: var(--gold-300);
  font-size: 1.3rem;
}
.about-media-badge span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: rgba(244, 236, 216, 0.75);
}

.about-list {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  color: var(--ink-600);
}

.about-list li .check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--navy-950);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  margin-top: 2px;
}

/* ---------- 9. Event Cities ---------- */
.city-tabs {
  display: inline-flex;
  padding: 0.4rem;
  border-radius: var(--radius-pill);
  background: var(--cream-100);
  border: 1px solid rgba(10, 19, 48, 0.06);
  margin-bottom: 2.6rem;
}

.city-tab {
  padding: 0.7rem 1.7rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-600);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s var(--ease);
}

.city-tab.is-active {
  background: var(--gradient-navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.city-panels { position: relative; }

.city-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.city-panel.is-active {
  display: grid;
  animation: fadeUp 0.5s var(--ease);
}

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

.city-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  box-shadow: var(--shadow-md);
}
.city-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

.city-media-tag {
  position: absolute;
  top: 1.3rem;
  left: 1.3rem;
  background: var(--gradient-gold);
  color: var(--navy-950);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  z-index: 2;
}

.city-info {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 19, 48, 0.05);
  display: flex;
  flex-direction: column;
}

.city-info h3 {
  font-size: 1.9rem;
  margin-bottom: 0.4rem;
}

.city-info .city-venue {
  color: var(--gold-600);
  font-weight: 600;
  font-size: 0.98rem;
  margin-bottom: 1.4rem;
}

.city-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.city-meta-item {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.9rem;
  background: var(--cream-100);
  border-radius: var(--radius-sm);
}

.city-meta-item .icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--gradient-navy);
  color: var(--gold-300);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.city-meta-item strong { display: block; font-size: 0.86rem; color: var(--navy-950); }
.city-meta-item span { display: block; font-size: 0.78rem; color: var(--ink-600); }

.city-countdown-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-400);
  margin-bottom: 0.6rem;
}

.city-countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.6rem;
}

.city-countdown .countdown-unit {
  background: var(--cream-100);
  border: 1px solid rgba(10, 19, 48, 0.06);
}
.city-countdown .countdown-unit strong { color: var(--navy-800); }
.city-countdown .countdown-unit span { color: var(--ink-400); }

.city-actions {
  margin-top: auto;
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

/* ---------- 10. Developer Marquee ---------- */
.marquee-wrap {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 4.2rem;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
  padding: 1.5rem 0;
}

.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

.marquee-track img {
  height: 30px;
  width: auto;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(1);
  transition: opacity 0.3s var(--ease), filter 0.3s var(--ease);
}
.marquee-track img:hover { opacity: 1; filter: grayscale(0); }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- 11. Agenda Timeline ---------- */
.timeline {
  position: relative;
  max-width: 760px;
  margin-inline: auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.55), rgba(212, 175, 55, 0.05));
}

.timeline-item {
  position: relative;
  padding-left: 74px;
  padding-bottom: 2.6rem;
}
.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: 0; top: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(244, 236, 216, 0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  color: var(--gold-300);
  font-size: 0.85rem;
}

.timeline-content h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.timeline-content p {
  color: rgba(244, 236, 216, 0.68);
  font-size: 0.92rem;
  max-width: 520px;
}

/* ---------- 12. Testimonials ---------- */
.testimonial-slider {
  position: relative;
  max-width: 760px;
  margin-inline: auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s var(--ease);
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 0 1.2rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.6rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 19, 48, 0.05);
}

.testimonial-card .stars {
  color: var(--gold-500);
  font-size: 1rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.2em;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy-950);
  line-height: 1.5;
  margin-bottom: 1.6rem;
}

.testimonial-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.testimonial-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gradient-navy);
  color: var(--gold-300);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.testimonial-person strong { font-size: 0.95rem; }
.testimonial-person span { font-size: 0.78rem; color: var(--ink-400); }

.slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2rem;
}

.slider-arrow {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(10, 19, 48, 0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-800);
  transition: all 0.25s var(--ease);
}
.slider-arrow:hover { background: var(--navy-950); color: var(--gold-300); border-color: var(--navy-950); }

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(10, 19, 48, 0.18);
  transition: all 0.3s var(--ease);
}
.slider-dot.is-active {
  width: 24px;
  border-radius: 999px;
  background: var(--gradient-gold);
}

/* ---------- 13. FAQ Accordion ---------- */
.faq-list {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(10, 19, 48, 0.07);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.6rem;
  text-align: left;
  font-weight: 600;
  font-size: 1.01rem;
  color: var(--navy-950);
}

.faq-question .plus {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--cream-100);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.faq-question .plus::before,
.faq-question .plus::after {
  content: "";
  position: absolute;
  background: var(--navy-800);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.faq-question .plus::before { width: 12px; height: 2px; }
.faq-question .plus::after { width: 2px; height: 12px; }

.faq-item.is-open .faq-question .plus { background: var(--gradient-gold); }
.faq-item.is-open .faq-question .plus::before,
.faq-item.is-open .faq-question .plus::after { background: var(--navy-950); }
.faq-item.is-open .faq-question .plus::after { opacity: 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}

.faq-answer-inner {
  padding: 0 1.6rem 1.5rem;
  color: var(--ink-600);
  font-size: 0.95rem;
}

/* ---------- 14. RSVP Form ---------- */
.rsvp-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.rsvp-side {
  background: var(--gradient-navy);
  color: var(--cream-100);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.rsvp-side::after {
  content: "";
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(244, 236, 216, 0.12);
  right: -80px; bottom: -80px;
}

.rsvp-side h3 {
  color: var(--white);
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

.rsvp-side p { color: rgba(244, 236, 216, 0.75); margin-bottom: 2rem; }

.rsvp-perks { display: flex; flex-direction: column; gap: 1.1rem; }

.rsvp-perks li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: rgba(244, 236, 216, 0.9);
}

.rsvp-perks li .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--navy-950);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.rsvp-form-card {
  background: var(--white);
  padding: 3rem;
}

.rsvp-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}
.rsvp-form-card > p {
  color: var(--ink-600);
  margin-bottom: 1.8rem;
  font-size: 0.94rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
}

.form-success.is-visible { display: block; }
.rsvp-form.is-hidden { display: none; }

.form-success .success-icon {
  width: 70px; height: 70px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--navy-950);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
}

.form-success h4 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.form-success p { color: var(--ink-600); }

.form-note {
  font-size: 0.78rem;
  color: var(--ink-400);
  margin-top: 1rem;
}
.form-note a { color: var(--gold-600); text-decoration: underline; }

/* ---------- 15. Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: rgba(244, 236, 216, 0.72);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(244, 236, 216, 0.1);
}

.footer-brand .brand { margin-bottom: 1.1rem; }
.footer-brand p { font-size: 0.9rem; max-width: 300px; color: rgba(244, 236, 216, 0.6); }

.footer-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(244, 236, 216, 0.2);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s var(--ease);
}
.footer-social a:hover { background: var(--gradient-gold); color: var(--navy-950); border-color: transparent; }

.footer-col h5 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a { font-size: 0.9rem; transition: color 0.25s var(--ease); }
.footer-col a:hover { color: var(--gold-400); }

.footer-col .contact-line {
  display: flex;
  gap: 0.6rem;
  font-size: 0.9rem;
  align-items: flex-start;
}

.footer-bottom {
  padding: 1.6rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.8rem;
  color: rgba(244, 236, 216, 0.5);
}

.footer-bottom a { text-decoration: underline; }

.footer-disclaimer {
  font-size: 0.76rem;
  color: rgba(244, 236, 216, 0.4);
  padding: 1.4rem 0;
  border-top: 1px solid rgba(244, 236, 216, 0.08);
  line-height: 1.6;
}

/* ---------- 16. Floating Controls & Misc ---------- */
.floating-controls {
  position: fixed;
  right: 22px;
  bottom: 26px;
  z-index: 400;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.fab {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease);
}
.fab:hover { transform: translateY(-3px) scale(1.04); }

.fab-whatsapp { background: #25d366; color: #fff; }
.fab-top {
  background: var(--white);
  color: var(--navy-950);
  border: 1px solid rgba(10, 19, 48, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--ease);
}
.fab-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

.badge-flyer {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}
.badge-flyer img { width: 100%; }
.badge-flyer-cta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(6,11,26,0.85));
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 700;
  background: rgba(6, 11, 26, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-height: 90vh; border-radius: var(--radius-md); box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(244,236,216,0.3);
}

/* ---------- 17. Scroll Reveal & Motion ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
}

/* ---------- 18. Responsive ---------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-panel { max-width: 460px; }
  .about-split { grid-template-columns: 1fr; }
  .about-media { min-height: 320px; }
  .city-panel { grid-template-columns: 1fr; }
  .city-media { min-height: 280px; }
  .rsvp-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 1.6rem; }
  .stat-item:nth-child(2) { border-right: none; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .city-meta-grid { grid-template-columns: 1fr; }
  .rsvp-side, .rsvp-form-card { padding: 2rem; }
}

@media (max-width: 560px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .countdown-unit strong { font-size: 1.25rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .site-header { padding: 16px 0; }
  .site-header .container { gap: 0.6rem; }
  .brand { gap: 0.5rem; }
  .brand-mark { width: 34px; height: 34px; }
  .brand-text strong { font-size: 0.92rem; }
  .brand-text span { display: none; }
  .header-cta { gap: 0.5rem; }
  .header-cta .btn-primary { padding: 0.7rem 1rem; font-size: 0.82rem; }
  .nav-toggle { width: 38px; height: 38px; flex-shrink: 0; }
}

/* ---------- 19. Standalone pages ---------- */
.page-hero {
  background: var(--gradient-navy);
  color: var(--white);
  padding: 180px 0 90px;
  text-align: center;
}

.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p { color: rgba(244, 236, 216, 0.75); margin-top: 0.8rem; }

.legal-content {
  max-width: 820px;
  margin-inline: auto;
  padding: 80px 24px 100px;
}
.legal-content h2 { font-size: 1.4rem; margin-top: 2.2rem; margin-bottom: 0.7rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--ink-600); margin-bottom: 0.9rem; }
.legal-content ul { padding-left: 1.2rem; list-style: disc; }
.legal-content li { margin-bottom: 0.5rem; }
.legal-updated { color: var(--ink-400); font-size: 0.85rem; margin-bottom: 2rem; }

.thankyou-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-navy);
  color: var(--white);
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.thankyou-hero .container { max-width: 620px; position: relative; z-index: 2; }

.thankyou-icon {
  width: 92px; height: 92px;
  margin: 0 auto 1.8rem;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--navy-950);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem;
  box-shadow: var(--shadow-gold);
}

.thankyou-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.thankyou-hero p { color: rgba(244, 236, 216, 0.78); font-size: 1.05rem; margin-bottom: 1rem; }

.thankyou-details {
  margin: 2.2rem 0;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.thankyou-actions {
  margin-top: 2.2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.thankyou-steps {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  text-align: left;
}

.thankyou-step {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(244, 236, 216, 0.15);
  border-radius: var(--radius-md);
  padding: 1.4rem;
}
.thankyou-step strong {
  display: block;
  font-family: var(--font-display);
  color: var(--gold-300);
  margin-bottom: 0.4rem;
}
.thankyou-step p { font-size: 0.85rem; color: rgba(244, 236, 216, 0.65); margin: 0; }

@media (max-width: 720px) {
  .thankyou-steps { grid-template-columns: 1fr; text-align: center; }
}
