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

:root {
  --turq: #166070;
  --turq-light: #2fb2c9;
  --turq-dark: #115e6e;
  --navy: #111144;
  --navy-light: #166070;
  --navy-dark: #0e0f39;
  --dark: #ffffff;
  --dark2: #fcfaf5;
  --dark3: #f5f2eb;
  --dark4: #ffffff;
  --text: #1a1b3a;
  --text-muted: #4a4b6a;
  --text-soft: #2c2d4a;
  --border-gold: rgba(29, 122, 143, 0.15);
  --border-gold2: rgba(29, 122, 143, 0.1);
}

html {
  scroll-behavior: smooth;
}

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

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark3);
}

::-webkit-scrollbar-thumb {
  background: var(--turq-dark);
  border-radius: 99px;
}

/* ════════════════════════════════
       ISLAMIC GEOMETRIC PATTERN SVG
    ════════════════════════════════ */
.geo-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cg fill='none' stroke='%23c9a84c' stroke-width='.8'%3E%3Cpolygon points='40,4 76,22 76,58 40,76 4,58 4,22'/%3E%3Cpolygon points='40,14 66,28 66,52 40,66 14,52 14,28'/%3E%3Cline x1='40' y1='4' x2='40' y2='14'/%3E%3Cline x1='76' y1='22' x2='66' y2='28'/%3E%3Cline x1='76' y1='58' x2='66' y2='52'/%3E%3Cline x1='40' y1='76' x2='40' y2='66'/%3E%3Cline x1='4' y1='58' x2='14' y2='52'/%3E%3Cline x1='4' y1='22' x2='14' y2='28'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* ════════════════════════════════
       NAVBAR
    ════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(14, 15, 57, 0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}

nav.scrolled {
  background: rgba(14, 15, 57, 0.95);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border-gold);
}

nav.scrolled .nav-links a {
  color: white;
}

nav.scrolled .lang-btn {
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

nav.scrolled .lang-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
}

nav.scrolled .nav-cta {
  color: white;
  border-color: white;
}

nav.scrolled .nav-cta:hover {
  background: var(--turq-light);
  color: white;
}

nav.scrolled .nav-hamburger {
  color: #ffffff !important;
}

nav.scrolled .nav-hamburger svg {
  stroke: #ffffff !important;
}

/* Logo switching */
nav.scrolled .logo-default {
  display: block !important;
}

nav.scrolled .logo-white {
  display: none !important;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-emblem {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nav-logo-emblem svg {
  width: 44px;
  height: 44px;
}

.nav-logo-text {
  line-height: 1.2;
}

.nav-logo-city {
  font-family: 'Outfit', 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--turq);
  letter-spacing: 0.5px;
}

.nav-logo-sub {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 13.5px;
  color: var(--text-soft);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--turq);
}

.nav-cta {
  padding: 9px 22px;
  border-radius: 8px;
  border: 1px solid var(--turq);
  background: rgba(47, 178, 201, 0.08);
  color: var(--turq);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}

.nav-cta:hover {
  background: var(--turq);
  color: #ffffff;
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger svg {
  width: 24px;
  height: 24px;
  stroke: var(--text-soft);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 199;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
  padding: 20px 24px;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 12px 8px;
  color: var(--text-soft);
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid var(--border-gold2);
}

.mobile-menu a:hover {
  color: var(--turq);
}

/* ════════════════════════════════
       HERO
    ════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 140px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%, rgba(47, 178, 201, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(47, 178, 201, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(47, 178, 201, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #fcfaf5 0%, #ffffff 60%, #f5f2eb 100%);
}

.hero .geo-pattern {
  opacity: 0.06;
}

/* Mosque silhouette */
.mosque-silhouette {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1980px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

/* Rotating star decoration */
.star-deco {
  position: absolute;
  opacity: 0.15;
  pointer-events: none;
}

.star-deco.tl {
  top: 120px;
  left: 60px;
  animation: rotateStar 30s linear infinite;
}

.star-deco.tr {
  top: 100px;
  right: 80px;
  animation: rotateStar 40s linear infinite reverse;
}

.star-deco.bl {
  bottom: 140px;
  left: 40px;
  animation: rotateStar 25s linear infinite;
}

@keyframes rotateStar {
  to {
    transform: rotate(360deg);
  }
}

/* Crescent & star logo */
.hero-emblem {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.emblem-ring {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 0;
  border: 1px solid rgba(47, 178, 201, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(circle, rgba(29, 122, 143, 0.1), rgba(255, 255, 255, 0.95));
  box-shadow:
    0 0 60px rgba(47, 178, 201, 0.12),
    inset 0 0 40px rgba(29, 122, 143, 0.08);
}

.emblem-ring::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(47, 178, 201, 0.15);
}

.emblem-ring::after {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1px solid rgba(47, 178, 201, 0.07);
}

.emblem-ring svg {
  width: 60px;
  height: 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 5px;
  margin-bottom: 28px;
  background: rgba(47, 178, 201, 0.08);
  border: 1px solid rgba(47, 178, 201, 0.3);
  font-size: 12px;
  font-weight: 600;
  color: var(--turq);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--turq);
  animation: pulse 2s ease infinite;
  box-shadow: 0 0 8px var(--turq);
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero-arabic {
  font-family: 'Amiri', serif;
  font-size: 28px;
  color: var(--turq);
  margin-bottom: 16px;
  direction: rtl;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}
.hero-title {
  font-family: 'Outfit', 'Montserrat', sans-serif;
  font-size: clamp(34px, 6.5vw, 76px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  color: #1a1b3a;
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.hero-title .turq {
  color: var(--turq);
}

.hero-title .em {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--turq-light);
  text-transform: none;
  letter-spacing: 0;
  margin-top: 5px;
}

.hero-subtitle {
  font-size: clamp(14px, 2vw, 19px);
  color: var(--text-soft);
  max-width: 680px;
  margin: 0 auto 20px;
  line-height: 1.7;
  font-weight: 300;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.38s both;
}

.hero-year {
  font-family: 'Outfit', 'Montserrat', sans-serif;
  font-size: clamp(90px, 18vw, 220px);
  font-weight: 900;
  color: rgba(47, 178, 201, 0.15);
  line-height: 1;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
  letter-spacing: -8px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-top: 14px;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.46s both;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--turq), var(--turq-dark));
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 32px rgba(47, 178, 201, 0.35);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(47, 178, 201, 0.5);
}

.btn-hero-primary svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.3px;
}

.btn-hero-ghost:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(47, 178, 201, 0.3);
  color: var(--turq);
}

.btn-hero-ghost svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: fadeUp 1s 0.9s both;
}

.hero-scroll span {
  font-size: 10.5px;
  color: var(--text-soft);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--turq), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.1);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ════════════════════════════════
       DIVIDER
    ════════════════════════════════ */
.turq-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 auto 60px;
  max-width: 400px;
  padding: 0 24px;
}

.turq-divider::before,
.turq-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--turq), transparent);
  opacity: 0.4;
}

.turq-divider-icon {
  color: var(--turq);
  opacity: 0.7;
  flex-shrink: 0;
}

.turq-divider-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--turq);
}

/* ════════════════════════════════
       SECTIONS COMMON
    ════════════════════════════════ */
section {
  position: relative;
  overflow: hidden;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
}

.section-tag-gallery {
  padding: 0 40px 100px 40px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  border-radius: 5px;
  margin-bottom: 20px;
  background: rgba(47, 178, 201, 0.08);
  border: 1px solid rgba(47, 178, 201, 0.25);
  font-size: 11px;
  font-weight: 600;
  color: var(--turq);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.section-tag::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--turq);
}

.section-title {
  font-family: 'Outfit', 'Montserrat', sans-serif;
  font-size: clamp(26px, 4.2vw, 48px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.section-title .turq {
  color: #2fb2c9;
}

.section-lead {
  font-size: clamp(14px, 1.5vw, 17px);
  color: var(--text-soft);
  /* max-width: 600px; */
  line-height: 1.75;
  font-weight: 300;
}

/* ════════════════════════════════
       ANNOUNCEMENT BAND
    ════════════════════════════════ */
.announce-band {
  background: linear-gradient(90deg, #fcfaf5, #e8f5ed, #fcfaf5);
  border-top: 1px solid rgba(47, 178, 201, 0.2);
  border-bottom: 1px solid rgba(47, 178, 201, 0.2);
  padding: 14px 0;
  overflow: hidden;
}

.ticker-wrap {
  display: flex;
  animation: ticker 30s linear infinite;
  width: max-content;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 48px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  color: var(--turq);
}

.ticker-item::before {
  content: '✦';
  font-size: 10px;
  color: var(--turq);
  opacity: 0.6;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ════════════════════════════════
       ABOUT SECTION
    ════════════════════════════════ */
.about-section {
  background: var(--dark2);
}

.about-section .geo-pattern {
  opacity: 0.035;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-geo-frame {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-geo-frame svg {
  width: 100%;
  height: 100%;
  opacity: 0.8;
}



.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.6;
}

.about-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(47, 178, 201, 0.12);
  border: 1px solid rgba(47, 178, 201, 0.4);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpolyline points='4,9 7,12 14,6' stroke='%23c9a84c' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ════════════════════════════════
       STATS
    ════════════════════════════════ */
.stats-section {
  background: linear-gradient(135deg, #111144 0%, #1b1c4a 50%, #0e0f39 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

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

.stat-item {
  text-align: center;
  padding: 60px 30px;
  border-right: 1px solid var(--border-gold);
  position: relative;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--turq), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.stat-item:hover::before {
  opacity: 0.6;
}

.stat-number {
  font-family: 'Outfit', 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  color: #7bd0e3;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-suffix {
  font-size: 0.5em;
  vertical-align: top;
  margin-top: 0.3em;
  display: inline-block;
}

.stat-label {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.stat-sub {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  opacity: 1;
  margin-top: 4px;
}

/* ════════════════════════════════
       HIGHLIGHTS / CARDS
    ════════════════════════════════ */
.highlights-section {
  background: var(--dark3);
}

.highlights-section .geo-pattern {
  opacity: 0.03;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.highlight-card {
  background: var(--dark4);
  border: 1px solid var(--border-gold2);
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
  cursor: default;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border-color: rgba(47, 178, 201, 0.25);
}

.card-top {
  height: 180px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-top-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.card-top-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.highlight-card:hover .card-top-img {
  transform: scale(1.1);
}

.card-top-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(14, 15, 57, 0.05), rgba(255, 255, 255, 1));
  z-index: 1;
}

.card-top-icon {
  position: relative;
  z-index: 2;
  transition: transform 0.3s;
}

.highlight-card:hover .card-top-icon {
  transform: scale(1.1) translateY(-2px);
}

.card-body {
  padding: 24px;
  position: relative;
  z-index: 2;
  background: #fff;
}

.card-num {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: #1d7a8f;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Outfit', 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.card-text {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ════════════════════════════════
       EVENTS TIMELINE
    ════════════════════════════════ */
.events-section {
  background: var(--dark2);
}

.events-section .geo-pattern {
  opacity: 0.04;
}

.events-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 20px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.event-card {
  background: white;
  border: 1px solid rgba(2, 70, 82, 0.35) !important;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  gap: 20px;
  transition:
    border-color 0.3s,
    transform 0.3s;
}

.event-card:hover {
  border: 1px solid rgba(47, 178, 201, 0.3);
  transform: translateX(4px);
}

.event-date-col {
  flex-shrink: 0;
  text-align: center;
  width: 60px;
}

.event-day {
  font-family: 'Outfit', 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 800;
  color: var(--turq);
  line-height: 1;
}

.event-month {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.event-body {
  flex: 1;
}

.event-category {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--navy-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.event-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.event-desc {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.6;
}

.event-meta {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.event-meta span {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.event-meta svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ════════════════════════════════
       MEVLANA QUOTE
    ════════════════════════════════ */
.quote-section {
  background-color: #1b1c4a;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.quote-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 40px;
  text-align: center;
}

.quote-arabic {
  font-family: 'Amiri', serif;
  font-size: 45px;
  color: white;
  direction: rtl;
  margin-bottom: 40px;
  line-height: 1.8;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.quote-text {
  font-family: 'Outfit', 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(20px, 3vw, 32px);
  font-style: italic;
  line-height: 1.5;
  color: white;
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 500;
}

.quote-author {
  font-size: 16px;
  color: var(--turq);
  font-weight: 600;
}

.quote-author span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}
/* ════════════════════════════════
       OIC INFO
    ════════════════════════════════ */
.oic-section {
  background: var(--dark3);
}

.oic-section .geo-pattern {
  opacity: 0.035;
}

.title-blue
 {
    color: #018BD3 !important;
}

.oic-section {
  background: var(--dark3);
}

.oic-section .geo-pattern {
  opacity: 0.035;
}

.oic-header-wrap {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 60px;
}

.oic-logo-left {
  flex-shrink: 0;
  width: 200px;
  text-align: center;
}

.oic-logo-left img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.oic-text-right {
  flex: 1;
}

.oic-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.oic-fact {
  border: 1px solid var(--border-gold2);
  border-radius: 20px;
  padding: 30px;
  border-bottom: 4px solid var(--turq);
  transition: all 0.3s ease;
}

.oic-fact:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  border-color: var(--turq);
}

.oic-fact-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--turq);
  margin-bottom: 12px;
  font-family: 'Outfit', 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.oic-fact-text {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.7;
}

@media (max-width: 992px) {
  .oic-header-wrap {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .oic-facts {
    grid-template-columns: 1fr;
  }
}


/* ════════════════════════════════
       GALLERY ROW
    ════════════════════════════════ */
.gallery-section {
  background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 50%, #16213e 100%);
  overflow: hidden;
  position: relative;
  padding: 80px 0;
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 0 0 65px 0; /* mobil */
  }
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(47, 178, 201, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(29, 122, 143, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.gallery-container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 70px;
}

.gallery-viewport {
  overflow: clip;
}

.gallery-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  width: max-content;
  user-select: none;
  cursor: grab;
}

.gallery-item {
  width: 320px;
  height: 240px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(47, 178, 201, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(145deg, rgba(35, 36, 84, 0.8), rgba(27, 28, 74, 0.6));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(47, 178, 201, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(47, 178, 201, 0.6);
  box-shadow:
    0 20px 40px rgba(47, 178, 201, 0.2),
    0 10px 20px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.gallery-item-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(47, 178, 201, 0.1);
  border-radius: 50%;
  border: 2px solid rgba(47, 178, 201, 0.3);
  transition: all 0.4s ease;
}

.gallery-item:hover .gallery-item-icon {
  background: rgba(47, 178, 201, 0.2);
  border-color: rgba(47, 178, 201, 0.6);
  transform: scale(1.1);
}

.gallery-item-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--turq);
  fill: none;
  stroke-width: 1.5;
  transition: all 0.4s ease;
}

.gallery-item:hover .gallery-item-icon svg {
  stroke: white;
  filter: drop-shadow(0 0 8px rgba(47, 178, 201, 0.6));
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, rgba(47, 178, 201, 0.9), rgba(29, 122, 143, 0.9));
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: white;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(47, 178, 201, 0.3);
  flex-shrink: 0;
}

.gallery-arrow:hover {
  background: linear-gradient(135deg, rgba(47, 178, 201, 1), rgba(29, 122, 143, 1));
  transform: translateY(-50%) scale(1.1);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 32px rgba(47, 178, 201, 0.5);
}

.gallery-arrow.prev {
  left: 10px;
}

.gallery-arrow.next {
  right: 10px;
}

.gallery-arrow svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

.gallery-arrow:hover svg {
  transform: scale(1.2);
}

.gallery-item-label {
  width: 100%;
  background-color: #49b2c9b0;
  text-shadow: 3px 3px 3px #4747477a;
  font-size: 16px;
  font-weight: 600;
  color: white;
  text-align: center;
  padding: 0 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.4s ease;
}

.gallery-header .section-tag {
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.gallery-header .section-title {
  color: white;
}

.gallery-header .section-sub {
  color: rgba(255, 255, 255, 0.8);
}

.gallery-item:hover .gallery-item-label {
  color: white;
  transform: translateY(-2px);
}

/* ════════════════════════════════
       PARTNERS / FLAGS
    ════════════════════════════════ */
.partners-section {
  background: var(--dark2);
}

.partners-header {
  text-align: center;
  margin-bottom: 50px;
}

.nations-wall-container {
  margin-top: 60px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  padding: 20px 0;
}

/* Edge Fading Gradients */
.nations-wall-container::before,
.nations-wall-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 10;
  pointer-events: none;
}


.nations-marquee {
  width: 100%;
  display: flex;
  overflow: hidden;
  user-select: none;
  padding: 10px 0; /* Add padding to prevent clipping on hover/transform */
}

.nations-track {
  display: flex;
  flex-shrink: 0;
  gap: 20px;
  min-width: 100%;
}

/* Precise Speed Control */
.nations-marquee:nth-child(1) .nations-track { animation: scroll-left 90s linear infinite; }
.nations-marquee:nth-child(2) .nations-track { animation: scroll-right 110s linear infinite; }
.nations-marquee:nth-child(3) .nations-track { animation: scroll-left 100s linear infinite; }

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

.nation-card-mini {
  flex: 0 0 auto;
  width: 240px;
  height: 64px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 50px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 15px;
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.02),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nation-card-mini:hover {
  background: #ffffff;
  border-color: var(--turq-light);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(47, 178, 201, 0.12);
  z-index: 5;
}

.nation-card-mini img {
  width: 36px;
  height: 26px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.nation-card-mini span {
  font-size: 13.5px;
  font-weight: 700;
  color: #1a1b3a;
  white-space: nowrap;
  letter-spacing: 0.4px;
  font-family: 'Outfit', sans-serif;
}

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

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

/* ════════════════════════════════
       CTA SECTION
    ════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, #fcfaf5, #f5f2eb, #ffffff);
  border-top: 1px solid var(--border-gold);
  text-align: center;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 100px 40px;
}

.cta-title {
  font-family: 'Outfit', 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-title .turq {
  color: var(--turq);
}

.cta-sub {
  font-size: 16px;
  color: var(--text-soft);
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ════════════════════════════════
       PARTNER LOGOS SECTION
    ════════════════════════════════ */
.partners-section {
  background: linear-gradient(135deg, #fcfaf5, #f5f2eb, #ffffff);
  border-top: 1px solid var(--border-gold);
  text-align: center;
}

.partners-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
}

.partners-title {
  font-family: 'Outfit', 'Montserrat', sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.partners-title .turq {
  color: var(--turq);
}

.partners-sub {
  font-size: 16px;
  color: var(--text-soft);
  margin-bottom: 60px;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.logo-slider-container {
  overflow: hidden;
  padding: 40px 0;
}

.logo-slider {
  position: relative;
  width: 100%;
}

.logo-track {
  display: flex;
  animation: scroll 20s linear infinite;
  width: fit-content;
}

.logo-item {
  flex: 0 0 auto;
  margin: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 100px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.logo-item img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
.logo-slider-container:hover .logo-track {
  animation-play-state: paused;
}

/* ════════════════════════════════
       FOOTER
    ════════════════════════════════ */
footer {
  background: #0e0f39;
  position: relative;
  padding: 0;
}

.footer-wave {
  position: relative;
  margin-top: -1px;
  line-height: 0;
}

.footer-wave svg {
  width: 100%;
  height: 60px;
  display: block;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 40px 32px;
}

/* ── Top Row: Brand + Social ── */
.footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 0;
}

.footer-brand {
  flex: 1;
  max-width: 380px;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  text-align: center;
}

/* ── Social Links ── */
.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
  padding-top: 4px;
}

.footer-social-link {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
}

.footer-social-link:hover {
  background: rgba(47, 178, 201, 0.15);
  border-color: rgba(47, 178, 201, 0.4);
  color: #2fb2c9;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(47, 178, 201, 0.15);
}

/* ── Divider ── */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 178, 201, 0.2), rgba(255, 255, 255, 0.05), rgba(47, 178, 201, 0.2), transparent);
  margin: 36px 0;
}

/* ── Link Grid ── */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 48px;
  margin-bottom: 44px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  color: #2fb2c9;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
  text-align: center;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #2fb2c9, transparent);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.footer-links a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* ── Contact Links with Icons ── */
.footer-contact-links a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.footer-contact-links a:hover svg {
  opacity: 1;
  stroke: #2fb2c9;
}

/* ── Footer Bottom ── */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12.5px;
  color: rgb(255, 255, 255);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-legal a:hover {
  color: #2fb2c9;
}

/* ════════════════════════════════
       SCROLL REVEAL
    ════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ════════════════════════════════
       RESPONSIVE
    ════════════════════════════════ */

/* ── Tablet ── */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual {
    display: none;
  }

  .oic-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .oic-logo-area {
    position: static;
  }

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

  .footer-contact-col {
    grid-column: 1 / -1;
  }
}

/* ── Small tablet / large phone ── */
@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: block;
  }

  nav {
    padding: 0 20px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border-gold);
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--border-gold);
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-bottom: none;
  }

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

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

/* ── Mobile ── */
@media (max-width: 600px) {
  /* Layout */
  .section-inner {
    padding: 64px 20px;
  }

  /* Navbar */
  nav {
    padding: 0 16px;
    height: 64px;
  }

  .nav-logo-emblem {
    width: 36px;
    height: 36px;
  }

  .nav-logo-emblem svg {
    width: 36px;
    height: 36px;
  }

  .nav-logo-city {
    font-size: 16px;
  }

  .nav-logo-sub {
    font-size: 9px;
    letter-spacing: 1px;
  }

  .mobile-menu {
    top: 64px;
    padding: 16px 20px;
  }

  .mobile-menu a {
    font-size: 16px;
    padding: 14px 8px;
  }

  /* Hero */


  .hero {
    padding: 100px 20px 100px;
    min-height: 100svh;
  }

  .hero-badge {
    font-size: 10.5px;
    padding: 6px 14px;
  }

  .hero-arabic {
    font-size: 20px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .btn-hero-primary,
  .btn-hero-ghost {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 14px 20px;
    font-size: 14px;
  }

  .hero-year {
    font-size: 26vw;
    letter-spacing: -4px;
    bottom: 20px;
  }

  .hero-scroll {
    display: none;
  }

  .emblem-ring {
    width: 88px;
    height: 88px;
  }

  .emblem-ring svg {
    width: 48px;
    height: 48px;
  }

  .star-deco.tl {
    top: 80px;
    left: 12px;
  }

  .star-deco.tl svg,
  .star-deco.tr svg,
  .star-deco.bl svg {
    width: 40px;
    height: 40px;
  }

  .star-deco.tr {
    top: 80px;
    right: 16px;
  }

  .star-deco.bl {
    bottom: 100px;
    left: 8px;
  }

  /* Ticker */
  .ticker-item {
    font-size: 12px;
    padding: 0 28px;
  }



  .about-list li {
    font-size: 13.5px;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    padding: 40px 16px;
  }

  .stat-number {
    font-size: 38px;
  }

  .stat-label {
    font-size: 12px;
  }

  .stat-sub {
    font-size: 10px;
  }

  /* Highlights */
  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .card-top {
    height: 140px;
  }

  .card-body {
    padding: 18px;
  }

  .card-title {
    font-size: 16px;
  }

  .card-text {
    font-size: 13px;
  }

  /* Events */
  .events-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
  }

  .events-header .btn-hero-ghost {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }

  .event-card {
    padding: 20px 16px;
    gap: 14px;
  }

  .event-day {
    font-size: 26px;
  }

  .event-title {
    font-size: 14.5px;
  }

  .event-desc {
    font-size: 12.5px;
  }

  .event-meta {
    flex-wrap: wrap;
    gap: 8px;
  }

  .event-date-col {
    width: 50px;
  }

  /* Quote */
  .quote-inner {
    padding: 64px 20px;
  }

  .quote-arabic {
    font-size: 24px;
  }

  .quote-text {
    font-size: 18px;
  }

  .quote-author {
    font-size: 12px;
  }

  /* OIC */
  .oic-emblem-large {
    width: 160px;
    height: 160px;
  }

  .oic-emblem-large svg {
    width: 96px;
    height: 96px;
  }

  .oic-name {
    font-size: 17px;
  }

  .oic-fact {
    padding: 16px;
  }

  .oic-fact-text {
    font-size: 13px;
  }

  /* Gallery */
  .gallery-item {
    width: 220px;
    height: 160px;
    border-radius: 12px;
  }

  .gallery-item-label {
    font-size: 12px;
  }

  /* Partners */
  .partner-tag {
    font-size: 12px;
    padding: 6px 14px;
  }

  /* CTA */
  .cta-inner {
    padding: 64px 20px;
  }

  .cta-sub {
    font-size: 14px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn-hero-primary,
  .cta-buttons .btn-hero-ghost {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .cta-inner form {
    flex-direction: column;
  }

  .cta-inner form input,
  .cta-inner form button {
    width: 100%;
    min-width: unset;
  }

  /* Nations Marquee Mobile */
  .nations-marquee {
    padding: 15px 0 !important; /* Extra room for mobile hover/touch transforms */
  }

  /* ════════════════════════════════
         MOBILE FOOTER
     ════════════════════════════════ */

  /* Top Row: Stack vertically, center everything */
  .footer-top-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
    margin-bottom: 0;
  }

  .footer-brand {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    justify-content: center;
    margin-bottom: 16px;
  }

  .footer-desc {
    max-width: 340px;
    font-size: 13.5px;
    text-align: center;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.5);
  }

  /* Social: horizontal, centered */
  .footer-social {
    gap: 12px;
    justify-content: center;
  }

  .footer-social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
  }

  /* Divider */
  .footer-divider {
    margin: 28px 0;
  }

  /* Link Grid: 2 columns for links */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
    margin-bottom: 0;
  }

  .footer-col-title {
    font-size: 10.5px;
    letter-spacing: 2.5px;
    margin-bottom: 16px;
    text-align: center;
    padding-bottom: 10px;
  }

  .footer-col-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-col .footer-links {
    align-items: center;
    gap: 8px;
  }

  .footer-links a {
    font-size: 13.5px;
    padding: 4px 0;
    justify-content: center;
  }

  /* Contact Column: full-width card with glass effect */
  .footer-contact-col {
    grid-column: 1 / -1;
    margin-top: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px 20px;
  }

  .footer-contact-col .footer-col-title {
    text-align: center;
    margin-bottom: 18px;
  }

  .footer-contact-col .footer-links {
    align-items: center;
    gap: 14px;
  }

  .footer-contact-links a {
    justify-content: center;
    font-size: 13.5px;
    gap: 10px;
  }

  .footer-contact-links a svg {
    width: 16px;
    height: 16px;
  }

  /* Footer Bottom */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding-top: 28px;
  }

  .footer-copy {
    font-size: 11.5px;
    line-height: 1.5;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
  }

  .footer-legal a {
    font-size: 11.5px;
    position: relative;
  }

  /* Dot separators between legal links */
  .footer-legal a + a::before {
    content: '·';
    position: absolute;
    left: -10px;
    color: rgba(255, 255, 255, 0.2);
    pointer-events: none;
  }

  .footer-inner {
    padding: 32px 20px 28px;
  }

  .footer-wave svg {
    height: 40px;
  }

  /* Gold divider */
  .turq-divider {
    margin-bottom: 40px;
  }

  /* Section titles */
  .section-tag {
    font-size: 10px;
  }
}

/* ── Small phones ── */
@media (max-width: 400px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none !important;
    border-bottom: 1px solid var(--border-gold);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .stat-item {
    padding: 32px 20px;
  }

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

  .hero {
    padding: 90px 16px 90px;
  }

  .section-inner {
    padding: 56px 16px;
  }

  nav {
    padding: 0 14px;
  }

  .footer-inner {
    padding: 0 16px 20px;
  }

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

  .footer-social-link {
    width: 40px;
    height: 40px;
  }

  .footer-contact-col {
    padding: 20px 16px;
  }
}

/* ── Touch targets & tap-friendly ── */
@media (hover: none) and (pointer: coarse) {
  .nav-item,
  .mobile-menu a {
    min-height: 44px;
  }

  .btn-hero-primary,
  .btn-hero-ghost {
    min-height: 48px;
  }

  .partner-tag {
    padding: 10px 16px;
  }

  .event-card:hover {
    transform: none;
  }

  .highlight-card:hover {
    transform: none;
  }
}

/* Premium Modernizations */
.highlight-card {
  background: white;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(47, 178, 201, 0.15);
  border-color: rgba(47, 178, 201, 0.4);
}

.event-ca rd {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.event-card:hover {
  background: #ffffff;
  border-color: rgba(47, 178, 201, 0.3);
  box-shadow: 0 12px 40px rgba(47, 178, 201, 0.1);
}

.oic-fact {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-left: 4px solid var(--turq);
  transition: all 0.3s ease;
}

.oic-fact:hover {
  background: #ffffff;
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--turq-light), var(--turq-dark)) !important;
  box-shadow: 0 8px 32px rgba(47, 178, 201, 0.4) !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--turq), var(--navy-dark));
  z-index: -1;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.btn-hero-primary:hover::before {
  opacity: 1;
}

.btn-hero-primary:hover {
  box-shadow: 0 12px 40px rgba(47, 178, 201, 0.6) !important;
  transform: translateY(-4px) !important;
}

.emblem-ring {
  animation: breathe 6s ease-in-out infinite alternate;
}

@keyframes breathe {
  0% {
    box-shadow:
      0 0 40px rgba(47, 178, 201, 0.1),
      inset 0 0 20px rgba(29, 122, 143, 0.1);
    transform: scale(0.98);
  }

  100% {
    box-shadow:
      0 0 80px rgba(47, 178, 201, 0.3),
      inset 0 0 50px rgba(29, 122, 143, 0.3);
    transform: scale(1.02);
  }
}

.stats-section {
  background: linear-gradient(135deg, #fcfaf5 0%, #f5f2eb 50%, #eee9dd 100%) !important;
  backdrop-filter: blur(10px);
}

.gallery-item {
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.4s ease,
    border-color 0.4s ease;
}

.gallery-item:hover {
  transform: scale(1.05) translateY(-5px);
  border-color: rgba(47, 178, 201, 0.5) !important;
  z-index: 10;
}

.lang-switcher {
  display: flex;
  gap: 8px;
  margin-left: 20px;
}

.lang-btn {
  background: none;
  border: 1px solid var(--border-gold);
  color: var(--text-soft);
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  transition: all 0.2s;
}

.lang-btn.active {
  background: var(--turq);
  color: white;
  border-color: var(--turq);
}

.lang-btn:hover:not(.active) {
  background: rgba(47, 178, 201, 0.1);
  border-color: var(--turq);
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* Premium Modernizations */
.highlight-card {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(47, 178, 201, 0.15);
  border-color: rgba(47, 178, 201, 0.4);
}

.event-card-v2 {
  position: relative;
  display: flex;
  background: var(--dark);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 16px;
  gap: 20px;
  align-items: center;
}

.event-card-v2:hover {
  transform: translateY(-5px);
  border-color: var(--turq-light);
  box-shadow: 0 20px 40px rgba(14, 15, 57, 0.08);
  background: #fff;
}

.event-card-v2 .card-left {
  position: relative;
  flex-shrink: 0;
}

.event-card-v2 .event-thumb {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-gold2);
}

.event-card-v2 .event-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-card-v2:hover .event-thumb img {
  transform: scale(1.1);
}

.event-card-v2 .event-thumb.empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark2);
  color: var(--turq-light);
  font-size: 32px;
}

.event-card-v2 .date-badge-v2 {
  position: absolute;
  top: -8px;
  left: -8px;
  background: var(--turq);
  color: #fff;
  padding: 4px 10px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 42px;
  box-shadow: 0 4px 12px rgba(22, 96, 112, 0.3);
  z-index: 2;
}

.event-card-v2 .date-badge-v2 .day {
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.event-card-v2 .date-badge-v2 .month {
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.9;
}

.event-card-v2 .card-right {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.event-card-v2 .event-category-v2 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--turq-light);
}

.event-card-v2 .event-title-v2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin: 2px 0;
}

.event-card-v2 .event-desc-v2 {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 600px) {
  .event-card-v2 {
    flex-direction: column;
    align-items: flex-start;
  }
  .event-card-v2 .event-thumb {
    width: 100%;
    height: 150px;
  }
}

.oic-fact {
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 4px solid var(--turq);
  transition: all 0.3s ease;
}

.oic-fact:hover {
  background: rgba(35, 36, 84, 0.6);
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

nav.scrolled {
  background: #0e0f39 !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--turq-light), var(--turq-dark)) !important;
  box-shadow: 0 8px 32px rgba(47, 178, 201, 0.4) !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--turq), var(--navy-dark));
  z-index: -1;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.btn-hero-primary:hover::before {
  opacity: 1;
}

.btn-hero-primary:hover {
  box-shadow: 0 12px 40px rgba(47, 178, 201, 0.6) !important;
  transform: translateY(-4px) !important;
}

.emblem-ring {
  animation: breathe 6s ease-in-out infinite alternate;
}

@keyframes breathe {
  0% {
    box-shadow:
      0 0 40px rgba(47, 178, 201, 0.1),
      inset 0 0 20px rgba(29, 122, 143, 0.1);
    transform: scale(0.98);
  }

  100% {
    box-shadow:
      0 0 80px rgba(47, 178, 201, 0.3),
      inset 0 0 50px rgba(29, 122, 143, 0.3);
    transform: scale(1.02);
  }
}

.stats-section {
  background: linear-gradient(
    135deg,
    rgba(17, 17, 68, 0.8) 0%,
    rgba(27, 28, 74, 0.9) 50%,
    rgba(14, 15, 57, 0.8) 100%
  ) !important;
  backdrop-filter: blur(10px);
}

.gallery-item {
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.4s ease,
    border-color 0.4s ease;
}

.gallery-item:hover {
  transform: scale(1.05) translateY(-5px);
  border-color: rgba(47, 178, 201, 0.5) !important;
  z-index: 10;
}

/* FAQ & News Modern Styles */
.faq-news-section {
  background: linear-gradient(to bottom, #0e0f39, #111144);
  position: relative;
}

.faq-item {
  background: rgba(35, 36, 84, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-item:hover {
  border-color: rgba(47, 178, 201, 0.3);
  background: rgba(35, 36, 84, 0.7);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--turq-light);
}

.faq-question svg {
  transition: transform 0.3s ease;
  color: var(--turq);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 20px 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
}

.news-card {
  display: flex;
  gap: 16px;
  padding: 18px;
  background: linear-gradient(145deg, rgba(35, 36, 84, 0.6), rgba(27, 28, 74, 0.4));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(47, 178, 201, 0.15);
  border-color: rgba(47, 178, 201, 0.4);
}

.news-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(47, 178, 201, 0.1);
  color: var(--turq-light);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  min-width: 70px;
  text-align: center;
  border: 1px solid rgba(47, 178, 201, 0.2);
}

.news-date span {
  font-size: 12px;
  font-weight: 500;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-title {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.news-card:hover .news-title {
  color: var(--turq-light);
}

.news-excerpt {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .faq-news-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Horizontal Timeline Styles */
.horizontal-timeline-container {
  width: 100%;
  overflow-x: auto;
  padding: 40px 20px 80px;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: var(--turq) rgba(255, 255, 255, 0.05);
}

.horizontal-timeline-container:active {
  cursor: grabbing;
}

/* Modern scrollbar for timeline */
.horizontal-timeline-container::-webkit-scrollbar {
  height: 8px;
}

.horizontal-timeline-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin: 0 40px;
}

.horizontal-timeline-container::-webkit-scrollbar-thumb {
  background: var(--turq);
  border-radius: 10px;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.3);
}

.horizontal-timeline-track {
  display: inline-flex;
  position: relative;
  min-width: 100%;
  padding-top: 30px;
}

.horizontal-timeline-track::before {
  content: '';
  position: absolute;
  top: 39px;
  /* Align with dots */
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    rgba(47, 178, 201, 0) 0%,
    rgba(47, 178, 201, 0.4) 5%,
    rgba(47, 178, 201, 0.4) 95%,
    rgba(47, 178, 201, 0) 100%
  );
  border-radius: 4px;
  z-index: 0;
}

.h-timeline-item {
  position: relative;
  width: 360px;
  flex-shrink: 0;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.h-timeline-dot {
  width: 22px;
  height: 22px;
  background: var(--turq);
  border: 4px solid var(--navy-dark);
  border-radius: 50%;
  margin: 0 auto 40px;
  /* Centered visually above the card */
  box-shadow:
    0 0 15px rgba(47, 178, 201, 0.8),
    inset 0 0 4px rgba(255, 255, 255, 0.5);
  z-index: 2;
  position: relative;
  transition: transform 0.3s ease;
}

.h-timeline-item:hover .h-timeline-dot {
  transform: scale(1.3);
  background: var(--turq-light);
}

.h-timeline-content {
  flex: 1;
  display: flex;
}

.h-timeline-content .event-card {
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  width: 100%;
  min-height: 280px;
}

/* News Image Cards */
.news-img-card {
  position: relative;
  display: block;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.news-img-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: opacity 0.4s ease;
  opacity: 0.8;
}

.news-img-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(47, 178, 201, 0.25);
}

.news-img-card:hover::after {
  opacity: 1;
}

.news-img-card:hover .news-overlay {
  transform: translateY(0);
}

.news-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  z-index: 10;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.news-overlay .news-title {
  color: #fff;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* ════════════════════════════════
       FAQ SECTION (Centered)
   ════════════════════════════════ */
.faq-section {
  background: #0e0f39;
  position: relative;
  overflow: hidden;
}

.faq-list-centered {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(47, 178, 201, 0.15);
  border-radius: 14px;
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(47, 178, 201, 0.35);
}

.faq-item.active {
  border-color: rgba(47, 178, 201, 0.5);
  box-shadow: 0 4px 24px rgba(47, 178, 201, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-align: left;
  line-height: 1.5;
  font-family: inherit;
  gap: 16px;
  transition: color 0.3s ease;
}

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

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--turq);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

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

.faq-answer p {
  padding: 0 24px 20px;
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* ════════════════════════════════
       HOME NEWS SECTION
   ════════════════════════════════ */
.home-news-section {
  background: linear-gradient(180deg, var(--dark2) 0%, var(--dark3) 100%);
  position: relative;
}

.home-news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
}

.home-news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.home-news-card {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  min-height: 420px;
  border: 1px solid rgba(47, 178, 201, 0.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-news-card:hover {
  transform: translateY(-8px);
  border-color: rgba(47, 178, 201, 0.4);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(47, 178, 201, 0.12);
}

.home-news-card__img {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.home-news-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-news-card:hover .home-news-card__img img {
  transform: scale(1.06);
}

.home-news-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    0deg,
    rgba(10, 10, 30, 0.95) 0%,
    rgba(10, 10, 30, 0.7) 40%,
    rgba(10, 10, 30, 0.2) 70%,
    transparent 100%
  );
  transition: background 0.4s ease;
}

.home-news-card:hover .home-news-card__overlay {
  background: linear-gradient(
    0deg,
    rgba(10, 10, 30, 0.98) 0%,
    rgba(10, 10, 30, 0.75) 45%,
    rgba(10, 10, 30, 0.25) 75%,
    transparent 100%
  );
}

.home-news-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 32px;
  transform: translateY(8px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-news-card:hover .home-news-card__content {
  transform: translateY(0);
}

.home-news-card__date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--turq);
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  padding: 5px 12px;
  background: #7bd0e3;
  border: 1px solid rgba(47, 178, 201, 0.25);
  border-radius: 20px;
}

.home-news-card__title {
  font-family: 'Outfit', 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-news-card__excerpt {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-news-card__readmore {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--turq);
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-news-card:hover .home-news-card__readmore {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .home-news-grid {
    grid-template-columns: 1fr;
  }

  .home-news-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .home-news-card {
    min-height: 340px;
  }
}

@media (max-width: 600px) {
  .home-news-card {
    min-height: 300px;
  }

  .home-news-card__title {
    font-size: 18px;
  }

  .home-news-card__content {
    padding: 24px;
  }

  .faq-question {
    font-size: 14px;
    padding: 16px 20px;
  }

  .faq-answer p {
    padding: 0 20px 16px;
    font-size: 13px;
  }
}

/* ════════════════════════════════
       CONTINUOUS VERTICAL TIMELINE
    ════════════════════════════════ */

.continuous-timeline-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  position: relative;
  overflow: hidden;
}

.continuous-timeline-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--geo-pattern);
  opacity: 0.03;
  pointer-events: none;
}

.continuous-timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

/* Center Timeline Line */
.timeline-center-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(
    180deg,
    var(--turq) 0%,
    var(--turq-light) 25%,
    var(--turq) 50%,
    var(--turq-light) 75%,
    var(--turq) 100%
  );
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(47, 178, 201, 0.3);
}

/* Month Sections */
.timeline-month-section {
  position: relative;
  margin: 120px 0;
}

.timeline-month-section.left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.timeline-month-section.right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Month Markers */
.timeline-month-marker {
  position: relative;
  z-index: 10;
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.timeline-month-section.left .timeline-month-marker {
  align-items: flex-start;
  padding-left: 60px;
}

.timeline-month-section.right .timeline-month-marker {
  align-items: flex-end;
  padding-right: 60px;
}

.timeline-month-circle {
  display: inline-block;
  background: linear-gradient(135deg, var(--turq) 0%, var(--turq-light) 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 2px;
  box-shadow: 0 8px 32px rgba(47, 178, 201, 0.4);
  position: relative;
  border: 3px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.timeline-month-circle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  border-radius: 50px;
  pointer-events: none;
}

/* Month Events Container */
.timeline-month-events {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: calc(50% - 80px);
}

.timeline-month-section.left .timeline-month-events {
  align-items: flex-start;
  margin-left: 80px;
}

.timeline-month-section.right .timeline-month-events {
  align-items: flex-end;
  margin-right: 80px;
}

/* Individual Event Items */
.timeline-event-item {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.timeline-month-section.left .timeline-event-item {
  flex-direction: row;
}

.timeline-month-section.right .timeline-event-item {
  flex-direction: row-reverse;
}

.timeline-event-item .timeline-content {
  flex: 1;
}

.timeline-month-section.left .timeline-event-item .timeline-content {
  text-align: left;
}

.timeline-month-section.right .timeline-event-item .timeline-content {
  text-align: right;
}

/* Timeline Dots */
.timeline-event-item .timeline-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: var(--turq-light);
  border: 4px solid var(--dark);
  border-radius: 50%;
  z-index: 5;
  box-shadow:
    0 0 0 4px rgba(47, 178, 201, 0.3),
    0 0 20px rgba(47, 178, 201, 0.6);
  transition: all 0.3s ease;
}

.timeline-month-section.left .timeline-event-item .timeline-dot {
  right: -24px;
  left: auto;
  transform: translateY(-50%);
}

.timeline-month-section.right .timeline-event-item .timeline-dot {
  left: -24px;
  transform: translateY(-50%);
}

.timeline-event-item:hover .timeline-dot {
  transform: translateY(-50%) scale(1.3);
  box-shadow:
    0 0 0 6px rgba(47, 178, 201, 0.4),
    0 0 30px rgba(47, 178, 201, 0.8);
}

.timeline-month-section.left .timeline-event-item:hover .timeline-dot {
  transform: translateY(-50%) scale(1.3);
}

.timeline-month-section.right .timeline-event-item:hover .timeline-dot {
  transform: translateY(-50%) scale(1.3);
}

/* Event Cards */
.timeline-event-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-gold);
  display: flex;
  gap: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.timeline-month-section.left .timeline-event-card {
  flex-direction: row;
}

.timeline-month-section.right .timeline-event-card {
  flex-direction: row-reverse;
}

.timeline-event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--turq) 0%, var(--turq-light) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-month-section.right .timeline-event-card::before {
  transform-origin: right;
}

.timeline-event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-color: var(--turq-light);
}

.timeline-event-card:hover::before {
  transform: scaleX(1);
}

.event-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(47, 178, 201, 0.1) 0%, rgba(47, 178, 201, 0.05) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.event-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--turq);
  stroke-width: 2;
}

.event-content {
  flex: 1;
}

.event-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.3;
}

.event-description {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 15px;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.timeline-month-section.left .event-tags {
  justify-content: flex-start;
}

.timeline-month-section.right .event-tags {
  justify-content: flex-end;
}

.event-tag {
  background: linear-gradient(135deg, rgba(47, 178, 201, 0.1) 0%, rgba(47, 178, 201, 0.05) 100%);
  color: var(--turq);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid rgba(47, 178, 201, 0.2);
  transition: all 0.3s ease;
}

.event-tag:hover {
  background: var(--turq);
  color: white;
  transform: translateY(-2px);
}

/* Timeline Animations */
.timeline-month-section.reveal .timeline-month-circle {
  opacity: 0;
  transform: translateY(30px) scale(0.8);
}

.timeline-month-section.reveal.visible .timeline-month-circle {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: monthAppear 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.timeline-month-section.reveal .timeline-event-item {
  opacity: 0;
}

.timeline-month-section.reveal.visible .timeline-event-item {
  opacity: 1;
}

.timeline-month-section.reveal .timeline-event-item .timeline-content {
  opacity: 0;
  transform: translateX(-40px);
}

.timeline-month-section.left.reveal .timeline-event-item .timeline-content {
  transform: translateX(40px);
}

.timeline-month-section.reveal.visible .timeline-event-item .timeline-content {
  opacity: 1;
  transform: translateX(0);
  animation: contentSlide 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.timeline-month-section.reveal .timeline-event-item .timeline-dot {
  opacity: 0;
  transform: translateY(-50%) scale(0);
}

.timeline-month-section.left.reveal .timeline-event-item .timeline-dot {
  transform: translateY(-50%) scale(0);
}

.timeline-month-section.right.reveal .timeline-event-item .timeline-dot {
  transform: translateY(-50%) scale(0);
}

.timeline-month-section.reveal.visible .timeline-event-item .timeline-dot {
  opacity: 1;
  transform: translateY(-50%) scale(1);
  animation: dotAppear 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

/* Stagger animations for events within months */
.timeline-month-section:nth-child(1).visible .timeline-event-item:nth-child(1) .timeline-content {
  animation-delay: 0.2s;
}
.timeline-month-section:nth-child(1).visible .timeline-event-item:nth-child(2) .timeline-content {
  animation-delay: 0.4s;
}

.timeline-month-section:nth-child(2).visible .timeline-event-item:nth-child(1) .timeline-content {
  animation-delay: 0.6s;
}
.timeline-month-section:nth-child(2).visible .timeline-event-item:nth-child(2) .timeline-content {
  animation-delay: 0.8s;
}
.timeline-month-section:nth-child(2).visible .timeline-event-item:nth-child(3) .timeline-content {
  animation-delay: 1s;
}
.timeline-month-section:nth-child(2).visible .timeline-event-item:nth-child(4) .timeline-content {
  animation-delay: 1.2s;
}

.timeline-month-section:nth-child(3).visible .timeline-event-item:nth-child(1) .timeline-content {
  animation-delay: 1.4s;
}
.timeline-month-section:nth-child(3).visible .timeline-event-item:nth-child(2) .timeline-content {
  animation-delay: 1.6s;
}
.timeline-month-section:nth-child(3).visible .timeline-event-item:nth-child(3) .timeline-content {
  animation-delay: 1.8s;
}

.timeline-month-section:nth-child(4).visible .timeline-event-item:nth-child(1) .timeline-content {
  animation-delay: 2s;
}
.timeline-month-section:nth-child(4).visible .timeline-event-item:nth-child(2) .timeline-content {
  animation-delay: 2.2s;
}

@keyframes monthAppear {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes contentSlide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes dotAppear {
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .timeline-month-events {
    width: calc(50% - 60px);
  }

  .timeline-month-section.left .timeline-month-events {
    margin-left: 60px;
  }

  .timeline-month-section.right .timeline-month-events {
    margin-right: 60px;
  }

  .timeline-month-section.left .timeline-month-marker {
    padding-left: 40px;
  }

  .timeline-month-section.right .timeline-month-marker {
    padding-right: 40px;
  }

  .timeline-event-card {
    padding: 24px;
    gap: 20px;
  }

  .event-icon {
    width: 50px;
    height: 50px;
  }

  .event-icon svg {
    width: 24px;
    height: 24px;
  }

  .event-title {
    font-size: 18px;
  }

  .timeline-month-circle {
    padding: 12px 24px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .timeline-center-line {
    left: 30px;
  }

  .timeline-month-section {
    align-items: flex-start !important;
    margin: 80px 0;
  }

  .timeline-month-marker {
    align-items: flex-start !important;
    padding-left: 80px !important;
    padding-right: 0 !important;
  }

  .timeline-month-events {
    width: calc(100% - 80px);
    margin-left: 80px !important;
    margin-right: 0 !important;
    align-items: flex-start !important;
  }

  .timeline-event-item {
    flex-direction: row !important;
  }

  .timeline-event-item .timeline-content {
    text-align: left !important;
  }

  .timeline-event-item .timeline-dot {
    left: 30px !important;
    right: auto !important;
    transform: translateY(-50%) !important;
  }

  .timeline-event-card {
    padding: 20px;
    flex-direction: row !important;
  }

  .event-tags {
    justify-content: flex-start !important;
  }

  .event-title {
    font-size: 16px;
  }

  .event-description {
    font-size: 14px;
  }

  .timeline-month-circle {
    padding: 10px 20px;
    font-size: 14px;
    letter-spacing: 1px;
  }
}

@media (max-width: 480px) {
  .timeline-month-events {
    width: calc(100% - 60px);
    margin-left: 60px !important;
  }

  .timeline-month-marker {
    padding-left: 60px !important;
  }

  .timeline-center-line {
    left: 20px;
  }

  .timeline-event-item .timeline-dot {
    left: 20px !important;
    width: 20px;
    height: 20px;
  }

  .timeline-event-card {
    padding: 16px;
    gap: 16px;
  }

  .event-icon {
    width: 40px;
    height: 40px;
  }

  .event-icon svg {
    width: 20px;
    height: 20px;
  }

  .event-tag {
    font-size: 11px;
    padding: 4px 12px;
  }

  .timeline-month-circle {
    font-size: 12px;
    padding: 8px 16px;
  }
}

/* ════════════════════════════════
       PROGRAM SECTION (WOW Timeline)
   ════════════════════════════════ */
.program-section {
    background: linear-gradient(165deg, #0c0d2e 0%, #111144 40%, #162233 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.program-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(47,178,201,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.program-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(47,178,201,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.program-header {
    text-align: center;
    margin-bottom: 60px;
}

.program-header .section-tag {
    color: rgba(255,255,255,0.7);
    border-color: rgba(47,178,201,0.3);
}

.program-header .section-title {
    color: #fff;
}

.program-scroll-area {
    overflow-x: auto;
    overflow-y: visible;
    padding: 20px 40px 40px;
    scrollbar-width: thin;
    scrollbar-color: var(--turq-light) rgba(255,255,255,0.05);
    cursor: grab;
}

.program-scroll-area:active {
    cursor: grabbing;
}

.program-scroll-area::-webkit-scrollbar {
    height: 5px;
}
.program-scroll-area::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
}
.program-scroll-area::-webkit-scrollbar-thumb {
    background: var(--turq);
    border-radius: 10px;
}

.program-track {
    display: flex;
    gap: 28px;
    width: max-content;
    padding-bottom: 10px;
}

.program-card {
    position: relative;
    width: 300px;
    min-height: 260px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.program-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(47, 178, 201, 0.3);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(47, 178, 201, 0.08);
}

/* Watermark */
.program-card__watermark {
    position: absolute;
    top: -15px;
    right: -10px;
    font-family: 'Outfit', 'Montserrat', sans-serif;
    font-size: 120px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
    letter-spacing: -5px;
    user-select: none;
}

.program-card:hover .program-card__watermark {
    color: rgba(47, 178, 201, 0.06);
}

/* Card Header */
.program-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 28px 0;
}

.program-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(47, 178, 201, 0.12);
    border: 1px solid rgba(47, 178, 201, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.program-card:hover .program-card__icon {
    background: rgba(47, 178, 201, 0.2);
    border-color: rgba(47, 178, 201, 0.4);
    box-shadow: 0 0 20px rgba(47, 178, 201, 0.15);
}

.program-card__icon svg {
    width: 22px;
    height: 22px;
    color: var(--turq-light);
}

.program-card__title-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.program-card__month {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1;
}

.program-card__count {
    font-size: 11px;
    font-weight: 600;
    color: var(--turq-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

/* Accent Line */
.program-card__accent {
    height: 3px;
    margin: 20px 28px 0;
    background: linear-gradient(to right, var(--turq), var(--turq-light), transparent);
    border-radius: 10px;
}

.program-card:nth-child(even) .program-card__accent {
    background: linear-gradient(to right, #9499c7, #b5b9e0, transparent);
}

.program-card:nth-child(3n) .program-card__accent {
    background: linear-gradient(to right, #e8a87c, #f0c9a8, transparent);
}

/* Card Body */
.program-card__body {
    padding: 20px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.program-event {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.program-event__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--turq-light);
    flex-shrink: 0;
    margin-top: 6px;
    box-shadow: 0 0 8px rgba(47, 178, 201, 0.4);
}

.program-card:nth-child(even) .program-event__dot {
    background: #9499c7;
    box-shadow: 0 0 8px rgba(148, 153, 199, 0.4);
}

.program-card:nth-child(3n) .program-event__dot {
    background: #e8a87c;
    box-shadow: 0 0 8px rgba(232, 168, 124, 0.4);
}

.program-event__text {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.45;
}

/* Badge */
.program-card__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 50px;
}

/* Past cards */
.program-card--past {
    opacity: 0.55;
    filter: saturate(0.3);
}

.program-card--past:hover {
    opacity: 0.8;
    filter: saturate(0.6);
}

.program-event--past .program-event__text {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.35);
}

.program-event--past .program-event__dot {
    background: rgba(255, 255, 255, 0.15) !important;
    box-shadow: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .program-scroll-area {
        padding: 10px 20px 30px;
    }
    .program-card {
        width: 260px;
        min-height: 220px;
    }
    .program-card__num {
        font-size: 32px;
    }
    .program-card__watermark {
        font-size: 80px;
    }
}

/* ════════════════════════════════
       LANGUAGE SWITCHER
   ════════════════════════════════ */
html[lang="en"] .lang-tr { display: none !important; }
html[lang="tr"] .lang-en { display: none !important; }

/* Default to showing TR */
html:not([lang="en"]) .lang-en { display: none !important; }
