* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #EEF5E8;
  --card: rgba(255, 255, 255, 0.75);
  --text: #1F2937;
  --muted: #5a6874;
  --border: #DCE8D2;
  --green-primary: #2E7D32;
  --green-dark: #1B5E20;
  --green-light: #C8E6C9;
  --yellow: #FFC107;
  --yellow-dark: #FFA000;
  --red: #F44336;
  --red-dark: #D32F2F;
  --shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
  --radius: 24px;
  --radius-sm: 14px;
  --container: 1280px;
}

body {
  margin: 0;
  font-family: system-ui, "Segoe UI", "Cairo", -apple-system, BlinkMacSystemFont, sans-serif;
  background:white;
  color: var(--text);
  line-height: 1.5;
}

.container {
  width: min(var(--container), calc(100% - 2.5rem));
  margin-inline: auto;
}

.muted {
  color: var(--muted);
}

/* Header */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(238, 245, 232, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(46, 125, 50, 0.2);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.brand-logo img {
  height: 58px;
  width: auto;
  border-radius: 14px;
  transition: transform 0.2s ease;
}

.nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.5rem 0.9rem;
  border-radius: 40px;
  color: var(--text);
  transition: all 0.2s;
  border: 1px solid transparent;
}

.nav a:hover {
  background: rgba(46, 125, 50, 0.1);
  border-color: var(--green-primary);
}

.nav__cta {
  background: var(--green-primary);
  color: white !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.nav__cta:hover {
  background: var(--green-dark);
}

.topbar__actions {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}

.lang-toggle {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--green-primary);
  border-radius: 60px;
  padding: 0.5rem 1rem;
  font-weight: 800;
  cursor: pointer;
  font-size: 0.8rem;
  transition: 0.2s;
}

.lang-toggle:hover {
  background: var(--green-light);
}

.menu-btn {
  display: none;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.5rem 1rem;
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.2rem 1.5rem;
  background: rgba(238, 245, 232, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(46, 125, 50, 0.25);
}

.mobile-menu a {
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--green-primary);
  color: var(--text);
}

/* Hero Section */
.hero {
  padding: 3rem 0 1.8rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.hero__subtitle {
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.hero__lead {
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.8rem;
  max-width: 95%;
}

/* Countdown Timer */
.countdown-container {
  background: rgba(46, 125, 50, 0.08);
  border-radius: 20px;
  padding: 1rem;
  margin-bottom: 1.8rem;
  text-align: center;
  border: 1px solid rgba(46, 125, 50, 0.15);
}

.countdown-title {
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 0.8rem;
}

.countdown {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.countdown-box {
  background: white;
  border-radius: 12px;
  padding: 0.6rem 1rem;
  min-width: 70px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-bottom: 3px solid var(--green-primary);
}

.countdown-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green-primary);
  display: block;
  line-height: 1.2;
}

.countdown-label {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 600;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.6rem;
  border-radius: 60px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.btn--primary {
  background: var(--green-primary);
  color: white;
  box-shadow: 0 8px 18px rgba(46, 125, 50, 0.25);
}

.btn--primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.6);
  border-color: var(--green-primary);
  color: var(--text);
}

.btn--ghost:hover {
  background: rgba(46, 125, 50, 0.08);
  border-color: var(--green-dark);
}

.btn--center {
  margin: 1rem auto 0;
  width: fit-content;
}

.hero__pills {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.pill {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(2px);
  border: 1px solid rgba(46, 125, 50, 0.4);
  padding: 0.45rem 1.1rem;
  border-radius: 60px;
  font-weight: 700;
}

.pill:nth-child(1) {
  border-right: 4px solid var(--green-primary);
}

.pill:nth-child(2) {
  border-right: 4px solid var(--yellow);
}

.pill:nth-child(3) {
  border-right: 4px solid var(--red);
}

.hero__art {
  position: relative;
}

.hero__art::after {
  content: "● ● ●";
  position: absolute;
  bottom: -30px;
  right: 20px;
  font-size: 24px;
  letter-spacing: 8px;
  color: var(--green-primary);
  opacity: 0.4;
}

.road-map {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 32px;
  background: linear-gradient(135deg, #E8F5E9, #DCEDC8);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(46, 125, 50, 0.3);
}

.road-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.road-map:hover img {
  transform: scale(1.03);
}

.road-map__label {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--green-dark), var(--yellow-dark), var(--red-dark));
  backdrop-filter: blur(6px);
  color: white;
  font-weight: bold;
  padding: 0.3rem 1rem;
  border-radius: 60px;
  font-size: 0.8rem;
  z-index: 3;
}

/* Sections */
.section {
  padding: 3.2rem 0;
}

.section--soft {
  background: rgba(46, 125, 50, 0.04);
  border-top: 1px solid rgba(46, 125, 50, 0.12);
  border-bottom: 1px solid rgba(46, 125, 50, 0.12);
}

.section__head {
  margin-bottom: 2rem;
  text-align: center;
}

.section__head h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.section__head h2:after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-primary), var(--yellow), var(--red));
  margin: 8px auto 0;
  border-radius: 4px;
}

/* Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Cards */
.card {
  background: var(--card);
  backdrop-filter: blur(2px);
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.25s;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.02);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--green-primary);
  box-shadow: var(--shadow);
}

.card__icon {
  font-size: 2.4rem;
  margin-bottom: 0.75rem;
}

.card:hover .card__icon {
  animation: pulse 0.5s ease;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.track-card {
  text-decoration: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  padding: 1.2rem;
  border: 1px solid var(--border);
  transition: 0.2s;
  display: block;
}

.track-card:hover {
  transform: translateY(-3px);
  border-color: var(--green-primary);
}

.track-card__num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-primary);
  opacity: 0.7;
  line-height: 1;
}

/* Timeline */
.timeline-mini {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.timeline-mini__item {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  padding: 1rem;
  display: flex;
  gap: 1rem;
  border: 1px solid var(--border);
}

.t-dot {
  width: 12px;
  height: 12px;
  background: var(--green-primary);
  border-radius: 50%;
  margin-top: 6px;
  box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.2);
}

.t-date {
  font-weight: 800;
  color: var(--green-dark);
}

ul {
  list-style: none;
  padding-right: 0;
}

ul li {
  padding: 0.4rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}

.input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: white;
  font-family: inherit;
}

.input:focus, select:focus, textarea:focus {
  border-color: var(--green-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15);
}

/* Footer */
.footer {
  background: #E8F5E9;
  border-top: 1px solid rgba(46, 125, 50, 0.25);
  padding: 2.5rem 0 1rem;
  margin-top: 1rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer__brand {
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.footer__links a {
  display: block;
  margin-bottom: 0.5rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

.footer__links a:hover {
  color: var(--green-primary);
}

.footer__qr {
  margin-top: 0.8rem;
}

.footer__qr img {
  background: white;
  border-radius: 16px;
  padding: 6px;
  border: 1px solid var(--green-primary);
  width: 85px;
}

.footer__bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.8rem;
}

/* ==================== TARGET AUDIENCE SECTION ==================== */
.target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
  margin: 2rem 0;
}

.target-card {
  background: var(--card);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(46, 125, 50, 0.25);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.target-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--green-primary), var(--yellow), var(--red));
  transition: height 0.3s ease;
}

.target-card:hover::before {
  height: 100%;
}

.target-card:hover {
  transform: translateY(-6px);
  border-color: var(--green-primary);
  box-shadow: var(--shadow);
}

.target-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.target-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--green-dark);
  font-weight: 800;
}

.target-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.target-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px dashed rgba(46, 125, 50, 0.3);
}

/* ==================== TRAFFIC LIGHTS DECORATION ==================== */
.traffic-lights-decor {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 1rem;
}

.traffic-light {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  animation: glow 1.5s ease-in-out infinite;
}

.traffic-light.red {
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  animation-delay: 0s;
}

.traffic-light.yellow {
  background: var(--yellow);
  box-shadow: 0 0 8px var(--yellow);
  animation-delay: 0.5s;
}

.traffic-light.green {
  background: var(--green-primary);
  box-shadow: 0 0 8px var(--green-primary);
  animation-delay: 1s;
}

@keyframes glow {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* ==================== REGISTER SECTION ==================== */
.register-simple {
  text-align: center;
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.08), rgba(46, 125, 50, 0.02));
  border-radius: var(--radius);
  padding: 2rem;
}

.register-simple h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.register-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* Table styles */
.table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 16px;
  overflow: hidden;
}

.table th, .table td {
  padding: 12px 10px;
  border: 1px solid rgba(229, 231, 235, 0.8);
  text-align: center;
  font-weight: 800;
}

.table th {
  background: rgba(46, 125, 50, 0.1);
  color: var(--green-dark);
}

/* Responsive */
@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  
  .grid-3, .grid-4, .grid-2 {
    grid-template-columns: 1fr;
  }
  
  .nav {
    display: none;
  }
  
  .menu-btn {
    display: inline-flex;
  }
  
  .mobile-menu.open {
    display: flex;
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .timeline-mini {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    text-align: center;
  }
  
  .countdown-box {
    min-width: 55px;
    padding: 0.4rem 0.7rem;
  }
  
  .countdown-number {
    font-size: 1.3rem;
  }
  
  .target-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .target-card {
    padding: 1.3rem;
  }
  
  .target-icon {
    font-size: 2.5rem;
  }
}

 .track-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    padding: 20px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
  }
  .track-list {
    margin-top: 15px;
    padding-right: 20px; /* للغة العربية */
    list-style-type: disc;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
  }
  .track-list li {
    margin-bottom: 8px;
  }
  h3 {
    color: #222;
    margin-bottom: 10px;
  }


