/* ===========================================================
   LION & SUN — Premium CSS v3
   Cinzel + DM Sans + Vazirmatn — Modern Political Movement
   =========================================================== */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand */
  --gold: #c9a84c;
  --gold-dim: #a68538;
  --gold-glow: #e0c97340;
  --gold-bg: #1a170e;

  /* 2026 Aurora / Chromatic Palette */
  --gold-vibrant: #dfb94d;
  --gold-light: #f4d67e;
  --gold-shimmer: rgba(223, 185, 77, 0.6);
  --aurora-green: rgba(35, 159, 64, 0.15);
  --aurora-crimson: rgba(218, 0, 0, 0.12);
  --aurora-purple: rgba(120, 80, 255, 0.1);

  /* Glass System */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hot: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --blur-sm: blur(4px);
  --blur-md: blur(12px);
  --blur-lg: blur(24px);

  /* Neutrals */
  --white: #ffffff;
  --off: #f6f5f2;
  --sand: #edeae3;
  --gray-200: #d5d0c8;
  --gray-400: #9e978b;
  --gray-500: #7a756c;
  --gray-600: #5c584f;
  --gray-800: #2d2b26;
  --dark: #070708;
  /* Deepened dark */
  --dark-card: #101012;
  --dark-alt: #161618;
  --dark-surface: #0a0a0c;

  --green-ir: #239f40;
  --red-ir: #da0000;

  /* Type */
  --f-display: 'Cinzel', 'Georgia', serif;
  --f-body: 'DM Sans', -apple-system, sans-serif;
  --f-kicker: 'Outfit', 'DM Sans', sans-serif;
  /* New 2026 Monoline */
  --f-fa: 'Vazirmatn', 'DM Sans', sans-serif;

  --container: 1180px;
  --section-py: 140px;

  /* Border Radii */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-full: 999px;

  /* Easings */
  --t: .3s cubic-bezier(0.2, 0.8, 0.2, 1);
  /* Snappier 2026 easing */
  --t-slow: .6s cubic-bezier(0.16, 1, 0.3, 1);
  --t-spring: .6s cubic-bezier(0.175, 0.885, 0.32, 1.1);

  /* Noise texture (SVG data URI) */
  --noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
}

/* RTL */
html[dir="rtl"] {
  font-family: var(--f-fa);
}

html[dir="rtl"] body,
html[dir="rtl"] .btn,
html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] label {
  font-family: var(--f-fa);
}

html[dir="rtl"] .heading-xl {
  font-family: var(--f-fa);
  font-weight: 700;
}

html[dir="rtl"] .hero-title {
  font-family: var(--f-fa);
  font-weight: 800;
}

html[dir="rtl"] .nav-link,
html[dir="rtl"] .kicker,
html[dir="rtl"] .pillar-title,
html[dir="rtl"] .pillar-desc,
html[dir="rtl"] .about-lead,
html[dir="rtl"] .about-body,
html[dir="rtl"] .section-desc,
html[dir="rtl"] .event-title,
html[dir="rtl"] .event-desc,
html[dir="rtl"] .event-meta-text,
html[dir="rtl"] .contact-item,
html[dir="rtl"] .footer-tagline,
html[dir="rtl"] .footer-nav a,
html[dir="rtl"] .hero-subtitle,
html[dir="rtl"] .stat-lbl,
html[dir="rtl"] .memorial-count,
html[dir="rtl"] .hero-tag {
  font-family: var(--f-fa);
}

/* Persian readability — line length, wrapping, rhythm */
html[dir="rtl"] .about-lead,
html[dir="rtl"] .about-body,
html[dir="rtl"] .pillar-desc,
html[dir="rtl"] .hero-subtitle,
html[dir="rtl"] .section-desc {
  line-height: 1.85;
  text-align: right;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

html[dir="rtl"] .hero-title {
  line-height: 1.12;
}

html[dir="rtl"] .pillar-title {
  letter-spacing: 0;
}

/* BASE */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--f-body);
  font-size: 18px;
  color: var(--gray-800);
  background: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-py) 0;
}

/* TYPO */
.kicker {
  display: inline-block;
  font-family: var(--f-kicker);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--gold-vibrant);
  margin-bottom: 16px;
  position: relative;
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
}

.kicker-light {
  color: var(--gold-light);
}

.heading-xl {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 1px;
  color: var(--gray-800);
  margin-bottom: 24px;
}

.heading-light {
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-desc {
  font-size: 18px;
  color: var(--gray-500);
  line-height: 1.7;
}

.section-desc a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--r-full);
  /* 2026 Pill Shape */
  cursor: pointer;
  transition: all var(--t-spring);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

html[dir="rtl"] .btn {
  font-family: var(--f-fa);
  letter-spacing: 0;
  text-transform: none;
}

/* Shimmer Sweep */
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-20deg);
  transition: all 0.5s ease;
  z-index: -1;
}

.btn:hover::after {
  left: 150%;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--dark);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.btn-glass {
  background: var(--glass-bg);
  color: var(--white);
  border-color: var(--glass-border-hot);
  backdrop-filter: var(--blur-md);
  -webkit-backdrop-filter: var(--blur-md);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .5);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 255, 255, 0.1) inset;
  transform: translateY(-2px);
}

.btn-glass-dark {
  background: rgba(10, 10, 12, 0.4);
  color: rgba(255, 255, 255, .9);
  border-color: var(--glass-border);
  backdrop-filter: var(--blur-md);
}

.btn-glass-dark:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(201, 168, 76, 0.4);
  color: var(--gold-vibrant);
}

.btn-full {
  width: 100%;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 12px;
}

/* =================== NAVBAR =================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all var(--t-slow);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(10, 10, 12, .7);
  backdrop-filter: blur(28px) saturate(1.8);
  -webkit-backdrop-filter: blur(28px) saturate(1.8);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

/* Aurora top border on scroll */
.navbar.scrolled::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-vibrant), var(--green-ir), var(--gold-vibrant), transparent);
  opacity: 0.5;
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  padding: 6px 16px 6px 6px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  border-radius: var(--r-full);
  transition: all var(--t);
}

.nav-logo:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.1);
}

.nav-logo-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  transition: transform var(--t-spring);
  filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.3));
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.5));
}

.nav-logo-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-logo-text {
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
}

.nav-logo-text .amp {
  color: var(--gold-vibrant);
  font-style: italic;
  font-weight: 400;
}

.nav-logo-sub {
  font-family: var(--f-fa);
  font-size: 11px;
  color: rgba(255, 255, 255, .5);
  direction: rtl;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  position: relative;
  padding: 8px 16px;
  font-family: var(--f-kicker);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  transition: color var(--t);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold-vibrant);
  transition: all var(--t-spring);
  transform: translateX(-50%);
  border-radius: 2px;
  opacity: 0;
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after {
  width: 20px;
  opacity: 0.5;
}

.nav-link.active {
  color: var(--gold-vibrant);
}

.nav-link.active::after {
  width: 24px;
  opacity: 1;
  box-shadow: 0 0 10px var(--gold-vibrant);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
}

.lang-toggle {
  padding: 8px 16px;
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-vibrant);
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, .3);
  border-radius: var(--r-full);
  cursor: pointer;
  transition: all var(--t-spring);
  backdrop-filter: blur(4px);
}

.lang-toggle:hover {
  background: rgba(201, 168, 76, .15);
  border-color: var(--gold-vibrant);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.2);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}

.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--t);
}

/* =================== HERO =================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -5%;
  /* slightly larger for parallax margin */
  width: 110%;
  height: 110%;
  transition: transform 0.1s cubic-bezier(0.2, 0.8, 0.2, 1);
  /* Parallax easing */
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: .4;
  filter: contrast(1.1) saturate(1.2);
}

/* 2026 Aurora Mesh Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, var(--aurora-green) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(201, 168, 76, 0.15) 0%, transparent 50%),
    linear-gradient(180deg, rgba(7, 7, 8, .3) 0%, rgba(7, 7, 8, .9) 100%);
  z-index: 1;
  animation: aurora-breathe 15s ease-in-out infinite alternate;
}

@keyframes aurora-breathe {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }

  100% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 160px 24px 80px;
  animation: fade-up 1s var(--t-spring) both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-emblem {
  width: 400px;
  height: 400px;
  margin: 0 auto 5px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 20px rgba(201, 168, 76, .3));
  animation: emblem-glow 4s ease-in-out infinite alternate;
}

/* Triple Ring Glow */
.hero-emblem::before,
.hero-emblem::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid var(--gold-vibrant);
  opacity: 0;
  animation: ripple 3s linear infinite;
}

.hero-emblem::after {
  animation-delay: 1.5s;
}

@keyframes ripple {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes emblem-glow {
  from {
    filter: drop-shadow(0 0 15px rgba(201, 168, 76, .2));
    transform: scale(1);
  }

  to {
    filter: drop-shadow(0 0 40px rgba(201, 168, 76, .6));
    transform: scale(1.02);
  }
}

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(48px, 7vw, 96px);
  /* Larger type */
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

/* Gradient text accent on Iran */
.hero-title span.accent {
  background: linear-gradient(to right, var(--gold-light), var(--gold-vibrant));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
}

.hero-subtitle {
  font-size: clamp(18px, 2.2vw, 26px);
  color: rgba(255, 255, 255, .7);
  font-weight: 300;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 48px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: rgba(10, 10, 12, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--f-kicker);
  font-size: 13px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .4);
  z-index: 2;
}

.hero-tag {
  font-family: var(--f-fa);
  letter-spacing: 0;
}

.hero-divider {
  width: 4px;
  height: 4px;
  background: var(--gold-vibrant);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-vibrant);
}

/* Floating Particles (CSS only) */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: var(--gold-vibrant);
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.3;
  animation: float-up var(--duration, 10s) linear infinite;
  bottom: -10px;
  left: var(--left, 50%);
  width: var(--size, 4px);
  height: var(--size, 4px);
}

@keyframes float-up {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }

  10% {
    opacity: var(--opacity, 0.5);
  }

  90% {
    opacity: var(--opacity, 0.5);
  }

  100% {
    transform: translateY(-100vh) scale(1.5);
    opacity: 0;
  }
}

/* =================== ABOUT =================== */
.about-section {
  background: var(--dark-surface);
  position: relative;
  overflow: hidden;
  color: var(--white);
}

/* Ambient glow orbs */
.about-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201, 168, 76, .08) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  animation: orb-float 12s ease-in-out infinite alternate;
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: -15%;
  right: -5%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--aurora-green) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  animation: orb-float 15s ease-in-out infinite alternate-reverse;
}

/* Diagonal Aurora Stripe */
.about-section-aurora-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(201, 168, 76, 0.03) 50%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

@keyframes orb-float {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(40px, -30px) scale(1.1);
  }
}

.about-section .section-header .heading-xl {
  color: var(--white);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-lead {
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 24px;
}

.about-body {
  font-size: 18px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.8;
}

/* 2026 Bento Grid */
.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.pillar {
  padding: 40px 32px;
  background: var(--glass-bg);
  backdrop-filter: var(--blur-lg);
  -webkit-backdrop-filter: var(--blur-lg);
  border-radius: var(--r-xl);
  transition: all var(--t-spring);
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

/* Dynamic Top Border per Pillar */
.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--pillar-color, var(--gold-vibrant));
  opacity: 0.5;
  transition: opacity 0.3s;
}

.pillar:hover {
  background: rgba(255, 255, 255, .05);
  border-color: var(--glass-border-hot);
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--pillar-glow, rgba(201, 168, 76, 0.1));
}

.pillar:hover::before {
  opacity: 1;
}

.pillar-num {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--pillar-color, var(--gold-vibrant));
  background: rgba(255, 255, 255, 0.05);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px var(--pillar-glow, rgba(201, 168, 76, 0.1));
}

.pillar-title {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 12px;
}

.pillar-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.7;
}

/* ===== Section Dividers ===== */
.section+.section {
  position: relative;
}

.section+.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(80%, 800px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-shimmer), var(--gold-vibrant), var(--gold-shimmer), transparent);
  z-index: 2;
  opacity: 0.5;
}

/* ===== Global noise overlay ===== */
.section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--noise);
  background-size: 200px;
  pointer-events: none;
  z-index: 0;
  opacity: .3;
}

.about-section::after,
.memorial-section::after {
  display: none;
}

.section>.container {
  position: relative;
  z-index: 1;
}

/* =================== MEMORIAL — Stars of Freedom =================== */
.memorial-section {
  background:
    radial-gradient(ellipse at 50% -20%, rgba(201, 168, 76, .12) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(35, 159, 64, .08) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 80%, rgba(218, 0, 0, .08) 0%, transparent 60%),
    var(--dark);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

/* Holographic glowing grid floor */
.memorial-section::before {
  content: '';
  position: absolute;
  inset: -50%;
  background-image:
    linear-gradient(rgba(201, 168, 76, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, .08) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center bottom;
  transform: perspective(1000px) rotateX(65deg) translateY(100px) scale(1.5);
  transform-origin: center 70%;
  mask-image: radial-gradient(ellipse at center 40%, black 10%, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse at center 40%, black 10%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: grid-move 20s linear infinite, grid-color 10s ease-in-out infinite alternate;
}

@keyframes grid-move {
  0% {
    transform: perspective(1000px) rotateX(65deg) translateY(100px) scale(1.5) rotateZ(0deg);
  }

  100% {
    transform: perspective(1000px) rotateX(65deg) translateY(100px) scale(1.5) rotateZ(2deg);
  }
}

@keyframes grid-color {
  0% {
    filter: hue-rotate(0deg);
  }

  100% {
    filter: hue-rotate(45deg);
  }
}

.memorial-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.memorial-ambient .ambient-dot {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold-vibrant);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 10px var(--gold-vibrant);
  animation: ambient-float 8s ease-in-out infinite;
}

@keyframes ambient-float {

  0%,
  100% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }

  50% {
    opacity: 0.6;
    transform: translateY(-60px) scale(1.5);
  }
}

.memorial-section .container {
  position: relative;
  z-index: 1;
}

.memorial-header-enhanced {
  max-width: 720px;
}

.memorial-section .section-desc {
  color: rgba(255, 255, 255, .6);
  font-size: 18px;
  line-height: 1.8;
}

.memorial-section .section-desc a {
  color: var(--gold-vibrant);
}

/* Eternal Flame */
.eternal-flame-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
  padding-top: 20px;
}

.flame-container {
  position: relative;
  width: 80px;
  height: 120px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.flame-glow {
  position: absolute;
  bottom: 0;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.4) 0%, transparent 70%);
  animation: flame-pulse 2s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes flame-pulse {
  from {
    transform: scale(0.9);
    opacity: 0.6;
  }

  to {
    transform: scale(1.3);
    opacity: 1;
  }
}

.flame {
  position: relative;
  width: 36px;
  height: 70px;
  z-index: 1;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: linear-gradient(180deg, #ffcc33 0%, #ff6600 40%, #ff3300 80%, #cc2200 100%);
  animation: flame-dance 0.8s ease-in-out infinite alternate;
  filter: blur(1px);
}

.flame-inner {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 48px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: linear-gradient(180deg, #fff7cc 0%, #ffee88 30%, #ffcc33 80%);
  animation: flame-inner-dance 0.5s ease-in-out infinite alternate-reverse;
  filter: blur(0.5px);
}

@keyframes flame-dance {
  0% {
    transform: scaleX(1) scaleY(1) rotate(0deg);
  }

  25% {
    transform: scaleX(0.9) scaleY(1.05) rotate(-2deg);
  }

  50% {
    transform: scaleX(1.05) scaleY(0.95) rotate(1deg);
  }

  75% {
    transform: scaleX(0.95) scaleY(1.02) rotate(-1deg);
  }

  100% {
    transform: scaleX(1) scaleY(0.98) rotate(2deg);
  }
}

@keyframes flame-inner-dance {
  0% {
    transform: translateX(-50%) scaleX(1) scaleY(1);
  }

  100% {
    transform: translateX(-50%) scaleX(0.85) scaleY(1.1);
  }
}

.flame-base {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 14px;
  background: linear-gradient(180deg, var(--gold-vibrant) 0%, #8b6914 100%);
  border-radius: 0 0 8px 8px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.flame-text {
  margin-top: 32px;
  font-family: var(--f-kicker);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
}

html[dir="rtl"] .flame-text {
  font-family: var(--f-fa);
  letter-spacing: 0;
  text-transform: none;
}

/* Iran Constellation */
.iran-constellation-wrap {
  position: relative;
  max-width: 800px;
  margin: 0 auto 40px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 40%, rgba(20, 24, 36, 0.8) 0%, rgba(10, 12, 20, 0.9) 60%, rgba(6, 8, 16, 0.95) 100%);
  padding: 2px;
  /* For animated border */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Animated Border */
.iran-constellation-wrap::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, transparent 0deg, var(--gold-vibrant) 90deg, transparent 180deg, var(--aurora-green) 270deg, transparent 360deg);
  animation: spin-border 8s linear infinite;
  z-index: -1;
}

.iran-constellation-wrap::after {
  content: '';
  position: absolute;
  inset: 1px;
  background: inherit;
  border-radius: inherit;
  z-index: -1;
}

@keyframes spin-border {
  to {
    transform: rotate(360deg);
  }
}

#iran-constellation-canvas {
  display: block;
  width: 100%;
  height: auto;
  cursor: crosshair;
  background: rgba(0, 0, 0, 0.2);
  border-radius: calc(var(--r-lg) - 1px);
}

.constellation-tooltip {
  position: absolute;
  padding: 12px 18px;
  background: rgba(10, 10, 12, 0.8);
  backdrop-filter: var(--blur-md);
  -webkit-backdrop-filter: var(--blur-md);
  border: 1px solid var(--glass-border-hot);
  border-radius: var(--r-sm);
  color: var(--white);
  font-size: 14px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 10;
  white-space: nowrap;
  max-width: 320px;
  box-shadow: var(--glass-shadow);
}

.constellation-tooltip.visible {
  opacity: 1;
}

.constellation-tooltip .tt-name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--gold-vibrant);
}

.constellation-tooltip .tt-name-fa {
  font-family: var(--f-fa);
  direction: rtl;
  font-size: 14px;
  color: rgba(255, 255, 255, .7);
  margin-top: 4px;
}

.constellation-tooltip .tt-loc {
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
  margin-top: 6px;
}

.memorial-stats-overlay {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 32px;
}

.stat-pill {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(0, 0, 0, .4);
  backdrop-filter: var(--blur-md);
  -webkit-backdrop-filter: var(--blur-md);
  border: 1px solid var(--glass-border-hot);
  border-radius: var(--r-full);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.stat-val {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-vibrant);
}

.stat-lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* Name Ticker */
.name-ticker-wrap {
  overflow: hidden;
  margin: 0 -24px 48px;
  padding: 20px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  position: relative;
  background: rgba(255, 255, 255, 0.01);
  mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
}

.name-ticker {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: ticker-scroll 60s linear infinite;
  font-family: var(--f-fa);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.3);
}

.name-ticker span {
  flex-shrink: 0;
  transition: color 0.3s;
}

.name-ticker span:hover {
  color: var(--gold-vibrant);
}

.name-ticker span::after {
  content: " ✦";
  color: var(--gold-vibrant);
  margin-left: 32px;
  opacity: 0.5;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Candle Action */
.candle-action-wrap {
  text-align: center;
  margin-bottom: 64px;
}

.btn-candle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gold-vibrant);
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--r-full);
  cursor: pointer;
  transition: all var(--t-spring);
  backdrop-filter: var(--blur-sm);
}

html[dir="rtl"] .btn-candle {
  font-family: var(--f-fa);
  letter-spacing: 0;
}

.btn-candle:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold-vibrant);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.2);
  transform: translateY(-4px);
}

.btn-candle.lit {
  animation: candle-glow 1s ease-out;
  background: var(--gold-vibrant);
  color: var(--dark);
}

@keyframes candle-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.8);
  }

  100% {
    box-shadow: 0 0 60px rgba(201, 168, 76, 0);
  }
}

.candle-count {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.candle-count #candle-num {
  color: var(--gold-vibrant);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
}

/* Memorial Search */
.memorial-search-wrap {
  max-width: 520px;
  margin: 0 auto 48px;
}

.search-input-wrap {
  position: relative;
}

.search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.3);
  pointer-events: none;
  transition: color 0.3s;
}

html[dir="rtl"] .search-icon {
  left: auto;
  right: 20px;
}

.memorial-search-wrap input {
  width: 100%;
  padding: 16px 24px 16px 52px;
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--white);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-full);
  outline: none;
  transition: all var(--t-spring);
  backdrop-filter: var(--blur-sm);
}

html[dir="rtl"] .memorial-search-wrap input {
  padding: 16px 52px 16px 24px;
  font-family: var(--f-fa);
}

.memorial-search-wrap input::placeholder {
  color: rgba(255, 255, 255, .3);
}

.memorial-search-wrap input:focus {
  border-color: var(--gold-vibrant);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, .15);
  background: rgba(255, 255, 255, 0.08);
}

.memorial-search-wrap input:focus~.search-icon,
.memorial-search-wrap input:focus+.search-icon {
  color: var(--gold-vibrant);
}

/* Memorial Grid */


.rotater-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  min-height: 750px;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 40px 0;
}

.rotater-grid.fade-out {
  opacity: 0;
}

@media (min-width: 1200px) {
  .rotater-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.mem-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: var(--r-md);
  background: rgba(25, 25, 25, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  animation: card-in 0.8s backwards;
}

.mem-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--gold-vibrant);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 20px rgba(201,168,76,0.15);
}

@keyframes card-in {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.mem-card-img-wrap {
  position: relative;
  overflow: hidden;
}

.mem-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s;
  filter: grayscale(40%) brightness(0.9);
}

.mem-card-img-fallback {
  object-fit: contain !important;
  padding: 30px;
  background: var(--dark) !important;
  opacity: 0.15;
  filter: grayscale(100%) brightness(1.5) !important;
}

.mem-card:hover .mem-card-img:not(.mem-card-img-fallback) {
  transform: scale(1.08);
  filter: grayscale(0%) brightness(1.1);
}

.mem-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(10, 10, 12, .95) 100%);
  pointer-events: none;
  transition: background 0.3s;
}

.mem-card:hover .mem-card-overlay {
  background: linear-gradient(transparent 20%, rgba(10, 10, 12, .85) 100%);
}

.mem-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
}

.mem-card-name {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .5px;
  transition: color 0.3s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mem-card:hover .mem-card-name {
  color: var(--gold-vibrant);
}

.mem-card-fa {
  font-family: var(--f-fa);
  font-size: 15px;
  color: var(--gold);
  opacity: .8;
  direction: rtl;
  margin-top: 4px;
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mem-card-meta {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
}

/* Memorial Footer */
.memorial-footer {
  text-align: center;
  padding-top: 40px;
}

.memorial-count {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, .3);
}

/* =================== EVENTS =================== */
.events-section {
  background:
    radial-gradient(ellipse at 30% 0%, rgba(201, 168, 76, .08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 100%, rgba(35, 159, 64, .06) 0%, transparent 40%),
    var(--dark-surface);
  position: relative;
  overflow: hidden;
}

.events-section .section-header .kicker {
  color: var(--gold-vibrant);
}

.events-section .heading-xl {
  color: var(--white);
}

/* Past events: one column so flyer images keep full width / aspect */
.events-list {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.event-card {
  display: flex;
  gap: 0;
  background: var(--glass-bg);
  backdrop-filter: var(--blur-md);
  -webkit-backdrop-filter: var(--blur-md);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 20px;
  transition: all var(--t-spring);
  position: relative;
}

/* Left Accent Bar */
.event-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gold-vibrant);
  transition: width 0.3s;
}

.event-card:hover {
  border-color: var(--glass-border-hot);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(201, 168, 76, 0.1);
  transform: translateY(-4px);
}

.event-card:hover::before {
  width: 6px;
  box-shadow: 2px 0 10px var(--gold-vibrant);
}

.event-card.past {
  opacity: .6;
  filter: grayscale(40%);
}

.event-card.past::before {
  background: rgba(255, 255, 255, 0.2);
}

.event-card.past:hover {
  opacity: .9;
  filter: grayscale(0%);
}

.event-flyer-wrap {
  flex-shrink: 0;
  width: 220px;
  /* Larger flyer */
  cursor: pointer;
  overflow: hidden;
  background: rgba(10, 10, 12, 0.4);
  position: relative;
}

.event-flyer-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.event-flyer-wrap:hover img {
  transform: scale(1.08);
}

.event-card-body {
  padding: 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-date-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}

.event-date-badge {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: var(--r-sm);
  color: var(--gold-vibrant);
  box-shadow: inset 0 0 15px rgba(201, 168, 76, 0.05);
}

.event-card.past .event-date-badge {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  box-shadow: none;
}

.event-month {
  font-family: var(--f-kicker);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.event-day {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.event-title {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--white);
  transition: color 0.3s;
}

.event-card:hover .event-title {
  color: var(--gold-vibrant);
}

.event-meta-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-meta-text::before {
  content: '📍';
  font-size: 11px;
}

.event-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-top: 12px;
  flex: 1;
}

.event-badge-upcoming {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #51cf66;
  background: rgba(43, 138, 62, 0.15);
  border: 1px solid rgba(43, 138, 62, 0.3);
  border-radius: var(--r-full);
}

.event-badge-past {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-full);
}

.event-ig-link {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--f-kicker);
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-vibrant);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--t);
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-ig-link::after {
  content: '→';
  transition: transform 0.3s;
}

.event-ig-link:hover::after {
  transform: translateX(4px);
}

/* Contact Form Alerts */
.form-alert {
  padding: 16px 20px;
  border-radius: var(--r-md);
  font-size: 14px;
  margin-bottom: 24px;
  animation: alert-in 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes alert-in {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.form-alert-success {
  background: rgba(43, 138, 62, 0.15);
  color: #51cf66;
  border: 1px solid rgba(43, 138, 62, 0.3);
  box-shadow: 0 4px 15px rgba(43, 138, 62, 0.1);
}

.form-alert-error {
  background: rgba(224, 49, 49, 0.15);
  color: #ff6b6b;
  border: 1px solid rgba(224, 49, 49, 0.3);
  box-shadow: 0 4px 15px rgba(224, 49, 49, 0.1);
}

/* =================== SUPPORT (Zelle) — used inside #contact =================== */
.support-lead {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.6;
}

.support-quick-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.btn-support-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 14px 28px;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--r-lg);
  transition: all var(--t-spring);
}

.btn-support-outline:hover {
  border-color: var(--gold-vibrant);
  color: var(--gold-light);
  background: rgba(201, 168, 76, .08);
  box-shadow: 0 8px 32px rgba(201, 168, 76, .12);
}

.support-panel {
  max-width: 520px;
  margin: 0 auto;
  padding: 40px 36px 36px;
  text-align: center;
  background: linear-gradient(165deg, rgba(22, 22, 26, .95), rgba(14, 14, 16, .98));
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-xl);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .45);
}

.support-title {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 16px;
  color: var(--white);
}

.support-desc {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, .78);
  margin-bottom: 28px;
}

.support-zelle-card {
  display: inline-block;
  padding: 16px;
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .35);
  margin-bottom: 20px;
}

.support-zelle-qr {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: var(--r-sm);
}

.support-zelle-email {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.support-zelle-email a {
  color: var(--gold-vibrant);
  margin-inline-start: 8px;
}

.support-zelle-email a:hover {
  text-decoration: underline;
}

.support-zelle-note {
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .35);
  max-width: 400px;
  margin: 0 auto;
}

html[dir="rtl"] .support-zelle-email a {
  margin-inline-start: 0;
  margin-inline-end: 8px;
}

@media (max-width: 600px) {
  .support-panel {
    padding: 32px 22px 28px;
  }

  .btn-support-outline {
    flex: 1;
    min-width: 140px;
  }
}

/* =================== CONTACT =================== */
.contact-section {
  background:
    radial-gradient(ellipse at 70% 20%, rgba(201, 168, 76, .08) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(100, 100, 255, .05) 0%, transparent 50%),
    var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.28fr);
  grid-template-rows: auto;
  column-gap: 56px;
  position: relative;
  z-index: 1;
  align-items: stretch;
}

.contact-right {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
  min-height: 0;
  height: 100%;
}

/* Zelle panel — left column (flex:1 so it matches contact form height) */
.contact-zelle-side {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  margin-top: 14px;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(145deg, rgba(24, 24, 30, .95), rgba(12, 12, 16, .98));
  border: 1px solid rgba(255, 255, 255, .09);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .38);
}

.contact-zelle-side-accent {
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 5px;
  background: linear-gradient(180deg, #8b5cf6, #5b21b6 55%, rgba(91, 33, 182, .4));
  border-radius: var(--r-xl) 0 0 var(--r-xl);
}

html[dir="rtl"] .contact-zelle-side-accent {
  inset-inline-start: auto;
  inset-inline-end: 0;
  border-radius: 0 var(--r-xl) var(--r-xl) 0;
}

.contact-zelle-side-inner {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  padding: 22px 22px 24px 26px;
  width: 100%;
}

html[dir="rtl"] .contact-zelle-side-inner {
  padding-inline: 26px 22px;
}

.contact-zelle-copy {
  flex: none;
  max-width: none;
  text-align: start;
}

html[dir="rtl"] .contact-zelle-copy {
  text-align: end;
}

.zelle-band-kicker {
  display: block;
  font-family: var(--f-kicker);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, .85);
  margin-bottom: 8px;
}

.zelle-band-title {
  font-family: var(--f-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--white);
  margin: 0 0 10px;
  line-height: 1.25;
}

.zelle-band-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, .68);
  margin: 0 0 14px;
}

.zelle-band-email {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 8px;
}

.zelle-band-email-label {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-size: 11px;
  font-family: var(--f-kicker);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #e9d5ff;
  background: rgba(139, 92, 246, .18);
  border: 1px solid rgba(139, 92, 246, .35);
  border-radius: var(--r-sm);
}

.zelle-band-email a {
  color: var(--gold-vibrant);
  font-weight: 600;
  word-break: break-all;
}

.zelle-band-email a:hover {
  text-decoration: underline;
}

.zelle-band-note {
  font-size: 10px;
  line-height: 1.45;
  color: rgba(255, 255, 255, .32);
  margin: 0;
  max-width: 52ch;
}

.contact-zelle-qr-aside {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  text-align: center;
  align-self: center;
}

.zelle-qr-frame {
  padding: 10px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .35), 0 0 0 1px rgba(0, 0, 0, .06);
  line-height: 0;
}

.zelle-qr-img {
  display: block;
  width: 176px;
  height: auto;
  max-width: min(176px, 38vw);
  border-radius: 8px;
}

.zelle-qr-caption {
  font-size: 11px;
  font-family: var(--f-kicker);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
}

.contact-left {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
  min-height: 0;
  height: 100%;
}

.contact-left::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold-vibrant), transparent);
  border-radius: 4px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  color: rgba(255, 255, 255, .7);
}

.contact-item strong {
  display: block;
  color: var(--white);
  font-size: 14px;
  margin-bottom: 4px;
  font-family: var(--f-kicker);
  letter-spacing: 1px;
}

.contact-item a {
  color: var(--gold-vibrant);
  transition: all var(--t);
}

.contact-item a:hover {
  text-shadow: 0 0 10px rgba(201, 168, 76, 0.4);
}

.contact-icon {
  font-size: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--gold-vibrant);
  transition: all var(--t-spring);
}

.contact-item:hover .contact-icon {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.3);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
}

/* Social */
.social-row-contact {
  display: flex;
  gap: 12px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: rgba(255, 255, 255, .5);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-full);
  transition: all var(--t-spring);
  position: relative;
  overflow: hidden;
}

/* Individual Brand Glows */
.social-icon.ig:hover {
  color: #fff;
  border-color: #E1306C;
  background: rgba(225, 48, 108, 0.1);
  box-shadow: 0 0 20px rgba(225, 48, 108, 0.3);
}

.social-icon.tg:hover {
  color: #fff;
  border-color: #0088cc;
  background: rgba(0, 136, 204, 0.1);
  box-shadow: 0 0 20px rgba(0, 136, 204, 0.3);
}

.social-icon.x:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.social-icon.yt:hover {
  color: #fff;
  border-color: #FF0000;
  background: rgba(255, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.social-icon.fb:hover {
  color: #fff;
  border-color: #1877F2;
  background: rgba(24, 119, 242, 0.1);
  box-shadow: 0 0 20px rgba(24, 119, 242, 0.3);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  z-index: 1;
}

.footer .social-row-contact {
  margin-top: 0;
}

.footer .social-icon {
  width: 34px;
  height: 34px;
}

.footer .social-icon svg {
  width: 14px;
  height: 14px;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1 1 auto;
  min-height: 0;
  background: var(--glass-bg);
  backdrop-filter: var(--blur-md);
  -webkit-backdrop-filter: var(--blur-md);
  padding: 40px;
  border-radius: var(--r-xl);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--f-kicker);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .5);
}

.form-group input,
.form-group textarea {
  padding: 16px 20px;
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--white);
  background: rgba(10, 10, 12, 0.4);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  outline: none;
  transition: all var(--t-spring);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold-vibrant);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .15);
  background: rgba(255, 255, 255, .05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, .3);
}

/* Let the message area expand when the form is stretched to match Zelle column */
.contact-form .form-group:has(#contact-message) {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.contact-form #contact-message {
  flex: 1 1 auto;
  min-height: 140px;
}

/* =================== INSTAGRAM (Elfsight embed) =================== */
.ig-section {
  background: var(--dark-surface);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .04);
}

.ig-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-vibrant), transparent);
  opacity: 0.3;
}

.ig-section .section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

/* Wider than default --container so Elfsight can render 4 columns (narrow cap → 2-col breakpoint) */
.ig-section .container {
  max-width: min(1600px, calc(100vw - 48px));
}

/* LTR: when html is dir=rtl (FA), third-party widgets often hug the "start" edge → looks off-center */
.elfsight-instagram-wrap {
  margin: 0 auto;
  min-height: 120px;
  width: 100%;
  direction: ltr;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.elfsight-instagram-wrap .elfsight-app-978352d2-3dec-4493-b520-6822c6ca0e06 {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Elfsight often nests a fixed-width root; center it without fighting their inline layout */
.elfsight-instagram-wrap iframe,
.elfsight-instagram-wrap .elfsight-app-978352d2-3dec-4493-b520-6822c6ca0e06 > * {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

/* =================== FOOTER =================== */
.footer {
  background: linear-gradient(180deg, var(--dark-surface) 0%, #040405 100%);
  border-top: 1px solid var(--glass-border-hot);
  padding: 64px 0 32px;
  position: relative;
  overflow: hidden;
}

/* Footer subtle noise */
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--noise);
  opacity: 0.6;
  pointer-events: none;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  transition: transform var(--t-spring);
  filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.3));
}

.footer-brand:hover .footer-logo {
  transform: rotate(10deg) scale(1.1);
}

.footer-name {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  display: block;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
}

.footer-nav {
  display: flex;
  gap: 32px;
}

.footer-nav a {
  font-family: var(--f-kicker);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  transition: color var(--t);
  position: relative;
}

.footer-nav a:hover {
  color: var(--gold-vibrant);
}

.footer-bottom {
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .3);
  position: relative;
  z-index: 1;
}

/* =================== MODALS =================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 4, 5, 0.92);
  backdrop-filter: var(--blur-lg);
  -webkit-backdrop-filter: var(--blur-lg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-slow);
  padding: 24px;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  position: relative;
  max-width: 900px;
  width: 100%;
  background: var(--dark-card);
  border: 1px solid var(--glass-border-hot);
  border-radius: var(--r-xl);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), inset 0 0 40px rgba(255, 255, 255, 0.02);
  transform: scale(0.96) translateY(20px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.modal-sm {
  max-width: 550px;
}

.modal-overlay.open .modal-card {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: var(--blur-md);
  -webkit-backdrop-filter: var(--blur-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--t-spring);
}

.modal-close:hover {
  background: var(--gold-vibrant);
  border-color: var(--gold-vibrant);
  color: var(--dark);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
}

html[dir="rtl"] .modal-close {
  right: auto;
  left: 16px;
}

.event-flyer-full {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  background: #000;
}

.event-modal-details {
  padding: 24px;
  text-align: center;
}

/* Modal Inner Design */
.modal-inner {
  display: flex;
  flex-direction: column;
}

.modal-img-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  background: #000;
  position: relative;
  overflow: hidden;
}

.modal-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 15, 18, 1) 0%, transparent 100%);
}

#modal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.modal-overlay.open #modal-image {
  transform: scale(1.05);
}

.modal-details {
  padding: 0 40px 40px;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-top: -60px;
}

#modal-name {
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 4px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

#modal-name-fa {
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.modal-meta-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
}

/* =================== RESPONSIVE / MOBILE =================== */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all var(--t-spring);
    z-index: 999;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  /* Typography Scale */
  .heading-xl {
    font-size: 32px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  /* Bento Grid Fix */
  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pillar-grid {
    grid-template-columns: 1fr;
  }

  /* Contact Fix */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: start;
  }

  .contact-left,
  .contact-right {
    grid-column: 1;
    grid-row: auto;
    height: auto;
    min-height: 0;
  }

  .contact-zelle-side {
    flex: none;
    min-height: 0;
  }

  .contact-zelle-side-inner {
    flex: none;
    min-height: 0;
  }

  .contact-zelle-qr-aside {
    margin-top: 0;
  }

  .contact-form {
    flex: none;
    min-height: 0;
  }

  .contact-form .form-group:has(#contact-message) {
    flex: none;
    display: flex;
    flex-direction: column;
  }

  .contact-form #contact-message {
    flex: none;
    min-height: 120px;
  }

  .contact-zelle-side-inner {
    align-items: stretch;
    padding: 22px 20px;
    text-align: center;
  }

  .contact-zelle-copy {
    text-align: center;
  }

  html[dir="rtl"] .contact-zelle-copy {
    text-align: center;
  }

  .zelle-band-note {
    margin-inline: auto;
  }

  .contact-zelle-qr-aside {
    margin-inline: auto;
  }

  .zelle-qr-img {
    max-width: min(188px, 52vw);
    width: 100%;
  }

  .event-card {
    flex-direction: column;
  }

  .event-flyer-wrap {
    width: 100%;
    height: 250px;
  }

  /* Footer Fix */
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    gap: 16px;
  }
}

/* Upcoming Promo */
.upcoming-promo-section {
  padding: 72px 0 80px;
  background: var(--dark-bg);
  border-top: 1px solid rgba(201, 168, 76, 0.18);
  border-bottom: 1px solid var(--glass-border);
}

.upcoming-promo-card {
  display: flex;
  flex-wrap: wrap;
  background: linear-gradient(145deg, rgba(26, 26, 28, 0.85), rgba(18, 18, 20, 0.7));
  backdrop-filter: blur(25px);
  border: 1px solid rgba(201, 168, 76, 0.38);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.55);
  position: relative;
}

.upcoming-promo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at top left, rgba(201,168,76,0.1), transparent 70%);
  pointer-events: none;
}

.upcoming-promo-img {
  flex: 0 0 300px;
  position: relative;
  min-height: 250px;
}

.upcoming-promo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.upcoming-promo-card:hover .upcoming-promo-img img {
  transform: scale(1.08);
}

.upcoming-promo-body {
  flex: 1 1 350px;
  padding: 25px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-kicker {
  color: var(--gold-vibrant);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.promo-kicker::after {
  content: '';
  height: 1px;
  width: 40px;
  background: var(--gold-vibrant);
}

.promo-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.01em;
}

.promo-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
}

.promo-meta span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.promo-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
  max-width: 650px;
}

.promo-actions {
  display: flex;
  gap: 20px;
}

.upcoming-cta {
  min-width: 230px;
  box-shadow: 0 10px 24px rgba(201, 168, 76, 0.28);
}

@media (max-width: 991px) {
  .upcoming-promo-section {
    padding: 52px 0 60px;
  }
  .upcoming-promo-body {
    padding: 40px;
  }
}
