/* ═══════════════════════════════════════════════════════════════════════════
   MAXZEETON.NG — SECTIONS STYLES
   All shared landing page sections
   ═══════════════════════════════════════════════════════════════════════════ */

/* Ticker / Status Bar */
.ticker {
  background: var(--bg-section-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.ticker-content {
  display: flex;
  gap: 48px;
  animation: scroll 30s linear infinite;
  width: max-content;
}

.ticker-item {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ticker-item i {
  color: var(--red);
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Intro Section - Red Background */
.intro-section {
  background: var(--red);
  padding: 80px 0;
  position: relative;
}

.intro-section h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  line-height: 1.2;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.intro-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 32px;
  backdrop-filter: blur(10px);
}

.intro-card p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .intro-section {
    padding: 60px 0;
  }
  
  .intro-section h2 {
    font-size: 1.8rem;
    margin-bottom: 32px;
  }
  
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .intro-card {
    padding: 24px;
  }
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Explore Offers Section */
.offers-section {
  background: var(--bg-page);
  padding: 80px 0;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 48px;
}

.offer-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
}

.offer-item:hover {
  border-color: var(--red-border);
  box-shadow: 0 8px 30px var(--red-glow);
  transform: translateY(-2px);
}

.offer-icon {
  font-size: 1.8rem;
  color: var(--red);
  flex-shrink: 0;
}

.offer-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.offer-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .offers-section {
    padding: 60px 0;
  }
  
  .offers-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .offer-item {
    padding: 20px;
  }
}


/* About Teaser */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 24px;
}

.about-text p {
  margin-bottom: 16px;
  color: var(--text-light);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .about-teaser {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Build Progress */
.progress-list {
  max-width: 800px;
  margin: 0 auto;
}

.progress-item {
  margin-bottom: 32px;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.progress-label {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--text-primary);
}

.progress-percentage {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--red);
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--bg-section-alt);
  border-radius: 8px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), #ff6b6b);
  border-radius: 8px;
  width: 0%;
  transition: width 1.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

/* Partners Section */
.partners {
  background: var(--bg-section-alt);
  padding: 60px 0;
  text-align: center;
  box-shadow: 
    inset 0 2px 15px rgba(214,0,28,0.4),
    inset 0 -2px 15px rgba(214,0,28,0.4);
}

.partners-track {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  max-width: 200px;
  height: 90px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partner-item:hover {
  opacity: 1;
  transform: translateY(-4px);
}

.partner-item img {
  max-height: 120px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0%);
  transition: all 0.3s;
}

.partner-item:hover img {
  filter: grayscale(0%) brightness(1.1);
  transform: scale(1.05);
}

/* Special handling for horizontal logos - Save the Children larger */
.partner-item img[src*="save_the_children"] {
  max-width: 250px;
  max-height: 180px;
}

@media (max-width: 640px) {
  .partners-track {
    gap: 32px;
  }

  .partner-item {
    min-width: 60px;
    max-width: 160px;
    height: 70px;
  }

  .partner-item img {
    max-height: 80px;
    max-width: 200px;
  }

  .partner-item img[src*="save_the_children"] {
    max-width: 180px;
    max-height: 120px;
  }
}

/* Countdown Section */
.countdown-section {
  background: linear-gradient(135deg, var(--red-dim), rgba(214,0,28,0.05));
  border: 1px solid var(--red-border);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.countdown-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 32px;
}

.countdown-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.countdown-item {
  min-width: 100px;
}

.countdown-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.countdown-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Notify / CTA Section */
.notify-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.notify-section h3 {
  margin-bottom: 16px;
}

.notify-section p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.notify-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.notify-input {
  flex: 1;
  padding: 14px 20px;
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s;
}

.notify-input:focus {
  outline: none;
  border-color: var(--red);
}

.notify-submit {
  padding: 14px 28px;
  background: var(--red);
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.3s, background 0.3s;
  cursor: pointer;
}

.notify-submit:hover {
  transform: translateY(-2px);
  background: var(--red-deep);
  box-shadow: 0 8px 24px var(--red-glow);
}

@media (max-width: 640px) {
  .notify-form {
    flex-direction: column;
  }

  .notify-submit {
    width: 100%;
  }
}

/* Courses Teaser Banner */
.courses-banner {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(249, 115, 22, 0.05));
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.courses-banner h2 {
  color: var(--orange);
  margin-bottom: 16px;
}

.courses-banner p {
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.courses-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--orange);
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.3s;
}

.courses-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
}
