/* AGENDA HERO */
.agenda-hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.agenda-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(7, 32, 64, 0.95),
    rgba(13, 68, 120, 0.85)
  );
  z-index: 1;
}

/* Badge */
.agenda-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.01);
  color: #ffc107; /* Yellow */
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;

  margin-bottom: 24px;
}

/* Title */
.agenda-title {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

/* Subtitle */
.agenda-subtitle {
  font-size: 24px;
  font-weight: 500;
  color: #e8f1ff;
  margin-bottom: 16px;
}

/* Description */
.agenda-desc {
  font-size: 16px;
  line-height: 1.7;
  max-width: 560px;
  color: #d6e4ff;
  margin-bottom: 32px;
}

/* Buttons */
.agenda-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-agenda-primary {
  background: #ffc107;
  color: #001f3f;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-agenda-primary:hover {
  background: #ffb300;
  color: #001f3f;
}

.btn-agenda-secondary {
  background: #ffffff;
  color: #001f3f;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .agenda-title {
    font-size: 44px;
  }

  .agenda-subtitle {
    font-size: 20px;
  }
}

/* SECTION */
/* SECTION */
.themes-section {
  padding: 80px 0;
  background: #f8fafc;
}

/* Header */
.themes-header {
  margin-bottom: 56px;
}

.themes-eyebrow {
  font-size: 12px;
  letter-spacing: 1.6px;
  font-weight: 600;
  color: #0d6efd;
  display: inline-block;
  margin-bottom: 10px;
}

.themes-title {
  font-size: 36px;
  font-weight: 700;
  color: #0b1f33;
}

/* GRID – EXACT CARD WIDTH & GAP */
.themes-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

/* CARD */
.theme-card {
  background: #ffffff;
  border: 1px solid #e6edf5;
  border-radius: 20px;
  padding: 34px 22px 30px;
  text-align: center;
  transition: all 0.25s ease;
}

.theme-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(13, 110, 253, 0.08);
}

/* ICON TILE – THIS WAS THE KEY */
.theme-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #0d6efd;
  background: linear-gradient(145deg, #e6f0ff, #fff6d6);
}

/* REMOVE OLD BG CLASSES EFFECT */
.bg-water,
.bg-energy,
.bg-ai,
.bg-global,
.bg-climate,
.bg-sdg {
  background: linear-gradient(145deg, #e6f0ff, #fff6d6);
}

/* TITLE */
.theme-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #0b1f33;
  margin-bottom: 8px;
}

/* DESCRIPTION */
.theme-card p {
  font-size: 13px;
  color: #6b7c93;
  line-height: 1.55;
  margin: 0;
}

/* RESPONSIVE – EXACT BREAKPOINTS */
@media (max-width: 1200px) {
  .themes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .themes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .themes-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .themes-grid {
    grid-template-columns: 1fr;
  }
}

/* Section */
.congress-calendar {
  padding: 90px 0;
  background: #f8fafc;
}

/* Header */
.calendar-header h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}

.calendar-header p {
  color: #6b7c93;
}

/* Day Card */
.day-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

/* Hero */
.day-hero {
  position: relative;
  background: linear-gradient(rgba(5, 35, 70, 0.7), rgba(5, 35, 70, 0.9)),
    url(images/background/water.webp) center/cover no-repeat;
  padding: 40px;
  color: #fff;
}

.day-badge,
.date-badge {
  position: absolute;
  top: 20px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.day-badge {
  left: 20px;
  background: rgba(255, 255, 255, 0.2);
}
.date-badge {
  right: 20px;
  background: #ffc107;
  color: #001f3f;
}

.day-content h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

/* Highlights */
.day-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 30px;
}

.highlight {
  background: #f1f5f9;
  padding: 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
}

/* Toggle */
.schedule-toggle {
  width: 100%;
  border: none;
  background: #f8fafc;
  padding: 18px;
  font-weight: 600;
  cursor: pointer;
}

/* Schedule */
.schedule-list {
  display: none;
  padding: 30px;
  border-top: 1px solid #e5e7eb;
}

.schedule-item {
  display: flex;
  gap: 20px;
  padding: 18px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: 14px;
}

.schedule-item .time {
  font-weight: 600;
  color: #0d6efd;
  min-width: 110px;
}
/* ENERGY HERO */
.energy-hero {
  background: linear-gradient(rgba(6, 35, 70, 0.85), rgba(6, 35, 70, 0.95)),
    url(images/background/energy.webp) center/cover no-repeat;
}

/* Schedule Tags */
.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
}

.keynote {
  background: #e8f1ff;
  color: #0d6efd;
}
.panel {
  background: #fff3cd;
  color: #d39e00;
}
.break {
  background: #edf2f7;
  color: #6b7280;
}
.workshop {
  background: #e6fffa;
  color: #0f766e;
}
.showcase {
  background: #fef3c7;
  color: #b45309;
}
.roundtable {
  background: #eef2ff;
  color: #4338ca;
}
/* ESG HERO */
.esg-hero {
  background: linear-gradient(rgba(8, 40, 65, 0.85), rgba(8, 40, 65, 0.95)),
    url(images/background/esg.webp) center/cover no-repeat;
}

/* ESG TAG VARIANTS */
.ceremony {
  background: #e0f2fe;
  color: #0369a1;
}
.case-study {
  background: #ecfeff;
  color: #155e75;
}
.forum {
  background: #f0fdf4;
  color: #166534;
}
/* EDUCATION HERO */
.education-hero {
  background: linear-gradient(rgba(10, 40, 75, 0.85), rgba(10, 40, 75, 0.95)),
    url(images/background/education.webp) center/cover no-repeat;
}

/* DAY 4 TAGS */
.academic {
  background: #e0f2fe;
  color: #075985;
}

.competition {
  background: #fff7ed;
  color: #c2410c;
}
/* SECTION */
.faq-section {
  padding: 90px 0;
  background: #f8fafc;
}

/* Header */
.faq-header {
  margin-bottom: 60px;
}

.faq-eyebrow {
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: #0d6efd;
  display: inline-block;
  margin-bottom: 10px;
}

.faq-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0b1f33;
  margin-bottom: 10px;
}

.faq-header p {
  color: #6b7c93;
  font-size: 16px;
}

/* Grid */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Item */
.faq-item {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e6edf5;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 18px 36px rgba(13, 110, 253, 0.08);
}

/* Question */
.faq-question {
  width: 100%;
  padding: 22px 24px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 24px 22px;
  color: #5f738a;
  line-height: 1.6;
  display: none;
}

/* OPEN STATE */
.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* Arrow */
.faq-arrow {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

/* Answer hidden */
.faq-answer {
  display: none;
  padding: 0 24px 22px;
  color: #5f738a;
}

/* Active state */
.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}
/* CTA SECTION */
.impact-cta {
  padding: 110px 20px;
  background: radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.06),
      transparent 60%
    ),
    linear-gradient(135deg, #0a3d73, #0f6ea3);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Title */
.impact-cta h2 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* Subtitle */
.impact-cta p {
  max-width: 680px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Primary Button */
.btn-cta-primary {
  background: #ffc107;
  color: #0b1f33;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-cta-primary:hover {
  background: #ffb300;
  transform: translateY(-2px);
}

/* Secondary Button */
.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .impact-cta h2 {
    font-size: 32px;
  }

  .impact-cta p {
    font-size: 16px;
  }
}
/* DAY HERO BASE */
.day-hero {
  position: relative;
  padding: 48px 48px 56px;
  border-radius: 22px;
  overflow: hidden;
  color: #ffffff;
}

/* DAY 1 BACKGROUND */
.day1-hero {
  background-image: url("../images/agenda/water.png");
  background-size: cover;
  background-position: center;
  min-height: 260px;
}
.day2-hero {
  background-image: url("../images/agenda/day2.png");
  background-size: cover;
  background-position: center;
  min-height: 260px;
}
.esg-hero {
  background-image: url("../images/agenda/day3.png");
}
.education-hero {
  background-image: url("../images/agenda/day4.png");
}

/* BADGES */
.day-badge,
.date-badge {
  position: absolute;
  top: 20px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.day-badge {
  left: 20px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
}

.date-badge {
  right: 20px;
  background: #ffc107;
  color: #0b1f33;
}

/* CONTENT */
.day-content {
  max-width: 720px;
  margin-top: 90px;
}

.day-content h3 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.25;
}

.day-content p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .day-hero {
    padding: 32px 24px 40px;
  }

  .day-content {
    margin-top: 70px;
  }

  .day-content h3 {
    font-size: 26px;
  }
}
