:root {
  --bg: #f5f7fb;
  --card-bg: #ffffff;
  --white: #ffffff;

  /* BRAND COLORS UPDATED */
  --primary: #ea580c; /* Main brand color */
  --primary-orange: #ff5202; /* Orange for buttons and accents */
  --primary-dark: #e54615; /* Darker brand shade */
  --primary-light: #fff4f0; /* Light orange background */

  --text-main: #111827;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px rgba(255, 82, 2, 0.15);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* RESET + GLOBAL */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

html,
body {
  width: 100%;
  overflow-x: hidden; /* no horizontal scroll */
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* LINKS */

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* NAVBAR */

.navbar {
  height: 10vh;
  background-color: #ffffff; /* solid, non-transparent */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: bold;
  color: var(--text-main);

  position: fixed; /* stick to top */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999; /* above everything */
}

/* HEADER / HERO */

header:not(.site-header) {
  background: var(--bg);
  margin-top: 0;
  position: relative;
  overflow: visible;
  padding: 2rem 0 3rem;
  min-height: auto;
  display: flex;
  align-items: center;
}

header:not(.site-header)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 35%, rgba(255, 82, 2, 0.05) 0%, transparent 55%),
    radial-gradient(circle at 80% 65%, rgba(234, 88, 12, 0.03) 0%, transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  z-index: 0;
}

header:not(.site-header)::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 82, 2, 0.3), transparent);
  z-index: 1;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
  background-color: transparent;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 2.5rem;
  }
}

@media (max-width: 992px) {
  .container {
    padding: 0 2rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }
}

/* HERO LAYOUT */

.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 5rem;
  margin-bottom: 0;
  padding: 2rem 0;
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.hero-text {
  font-size: large;
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 0;
}

.hero-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--primary-orange);
  line-height: 1.2;
  animation: fadeInUp 0.8s ease-out;
  letter-spacing: 4.5px;
  position: relative;
  text-transform: uppercase;
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
}

.hero-title span {
  color: #111827;
  display: block;
  font-size: 5.25rem;
  font-weight: 700;
  margin-top: 0.75rem;
  letter-spacing: -2px;
  line-height: 1.06;
  text-transform: none;
  font-family: 'Inter', system-ui, sans-serif;
  position: relative;
}

.hero-title span::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 160px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-orange) 0%, rgba(255, 82, 2, 0.6) 100%);
  border-radius: 2px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.hero-subtitle {
  font-size: 1.175rem;
  color: #374151;
  line-height: 1.9;
  animation: fadeInUp 1s ease-out 0.2s both;
  font-weight: 400;
  margin-top: 3rem;
  max-width: 96%;
  padding: 0 1.5rem;
  letter-spacing: -0.15px;
  position: relative;
  font-family: 'Inter', system-ui, sans-serif;
}

/* right side ~40% width – clean and professional photo presentation */
.hero-photo {
  position: relative;
  animation: fadeInRight 1s ease-out 0.4s both;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 35px;
  overflow: visible;
}

.hero-photo::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: #f8f9fa;
  border-radius: 18px;
  border: 2px solid rgba(255, 82, 2, 0.15);
  box-shadow: 
    0 12px 36px rgba(0, 0, 0, 0.1),
    0 6px 16px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px rgba(0, 0, 0, 0.05);
  z-index: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-photo img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  position: relative;
  z-index: 1;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0;
  filter: contrast(1.05) brightness(0.98);
}

.hero-photo:hover::before {
  background: #ffffff;
  border-color: rgba(255, 82, 2, 0.25);
  box-shadow: 
    0 20px 48px rgba(255, 82, 2, 0.18),
    0 10px 28px rgba(0, 0, 0, 0.12),
    inset 0 0 0 1px rgba(255, 82, 2, 0.1);
  transform: translateY(-4px);
}

.hero-photo:hover img {
  transform: scale(1.01);
}


/* MAIN CONTENT */

/* main {
  padding: 4rem 0 3rem;
  position: relative;
  background: #0a0a0a;
}

main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(255, 82, 2, 0.1), transparent);
  z-index: 0;
}

main > * {
  position: relative;
  z-index: 1;
} */

section {
  margin-bottom: 2rem;
  animation: fadeIn 0.6s ease-out;
  opacity: 0;
  animation-fill-mode: forwards;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

section:nth-child(1) { animation-delay: 0.05s; }
section:nth-child(2) { animation-delay: 0.1s; }
section:nth-child(3) { animation-delay: 0.15s; }
section:nth-child(4) { animation-delay: 0.2s; }
section:nth-child(5) { animation-delay: 0.25s; }

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h2 {
  font-size: 1.85rem;
  margin-bottom: 1.75rem;
  text-align: left;
  background: transparent;
  border-radius: 0;
  color: var(--text-main);
  padding: 0;
  font-weight: 600;
  box-shadow: none;
  position: relative;
  overflow: visible;
  transition: all 0.3s ease;
  letter-spacing: -0.8px;
  display: block;
  width: 100%;
  border: none;
  line-height: 1.3;
  font-family: 'Inter', system-ui, sans-serif;
}

h2::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-orange), rgba(255, 82, 2, 0.3));
  border-radius: 2px;
  transition: width 0.4s ease;
}

h2:hover::before {
  width: 120px;
}

h2:hover {
  transform: none;
  box-shadow: none;
  color: var(--text-main);
}

.section-desc {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 400;
}

/* ABOUT */

.card {
  font-size: 0.98rem;
  padding: 2rem 2.5rem;
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  line-height: 1.8;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 82, 2, 0.15);
  position: relative;
  overflow: hidden;
  color: var(--text-main);
  margin: 0;
}

.card p {
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.card p:last-child {
  margin-bottom: 0;
}

.card strong {
  color: var(--primary-orange);
  font-weight: 600;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-orange), var(--primary));
  transform: scaleY(0);
  transition: transform 0.4s ease;
  transform-origin: top;
}

.card:hover::before {
  transform: scaleY(1);
}

.card:hover {
  box-shadow: 0 16px 48px rgba(255, 82, 2, 0.2);
  border-color: rgba(255, 82, 2, 0.3);
  transform: translateY(-4px);
  background: var(--card-bg);
}

.grid-2 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bullet-list {
  padding-left: 1.1rem;
  font-size: 0.92rem;
}

.bullet-list li {
  transition: all 0.3s ease;
  padding: 0.4rem 0;
  position: relative;
  margin-bottom: 0.25rem;
}

.bullet-list li::marker {
  color: var(--primary-orange);
}

.bullet-list li:hover {
  transform: translateX(8px);
  padding-left: 8px;
}

.bullet-list li span[style*="color: var(--primary-orange)"] {
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
}

.bullet-list li:hover span[style*="color: var(--primary-orange)"] {
  transform: scale(1.3);
  color: var(--primary) !important;
}

/* =========================
   EXPERIENCE TIMELINE
   ========================= */

/* ===== BASE CARD ===== */
.timeline-card {
  overflow: visible;
  font-size: medium;
  background: #ffffff;
  border: 1px solid rgba(255, 82, 2, 0.1);
  padding: 3rem 2.5rem;
}

/* ===== TIMELINE WRAPPER ===== */
.timeline {
  position: relative;
  margin: 2rem auto;
  padding: 1.5rem 0;
  max-width: 1000px;
}

/* Central vertical line */
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: linear-gradient(180deg, 
    transparent 0%,
    rgba(255, 82, 2, 0.2) 10%,
    rgba(255, 82, 2, 0.5) 50%,
    rgba(255, 82, 2, 0.2) 90%,
    transparent 100%);
  transform: translateX(-50%);
  border-radius: 2px;
}

/* ===== TIMELINE ITEM ===== */
.timeline-item {
  position: relative;
  display: flex;
  justify-content: flex-start;
  margin: 2.5rem 0;
}

/* Alternate direction on desktop */
.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

/* ===== TIMELINE CONTENT ===== */
.timeline-content {
  width: 46%;
  background: #ffffff;
  border-radius: 16px;
  padding: 1.75rem 2rem;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 2px 10px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
  position: relative;
  border: 2px solid rgba(255, 82, 2, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 12px 36px rgba(255, 82, 2, 0.15),
    0 6px 20px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 82, 2, 0.3);
  background: #ffffff;
}

.timeline-item:nth-child(odd) .timeline-content {
  text-align: right;
}

/* connector line between node and card on desktop */
.timeline-content::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -80px;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 82, 2, 0.4), rgba(255, 82, 2, 0.15));
  transform: translateY(-50%);
  border-radius: 2px;
}

.timeline-item:nth-child(odd) .timeline-content::before {
  right: auto;
  left: -80px;
  background: linear-gradient(90deg, rgba(255, 82, 2, 0.15), rgba(255, 82, 2, 0.4));
}

/* ===== YEAR ===== */
.timeline-year {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  color: var(--primary-orange);
  letter-spacing: 0.3px;
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(255, 82, 2, 0.1);
  border-radius: 8px;
  border: 1.5px solid rgba(255, 82, 2, 0.2);
}

/* ===== NODE ===== */
.timeline-node {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-orange) 0%, #ff6b2b 100%);
  color: #ffffff;
  box-shadow: 
    0 10px 30px rgba(255, 82, 2, 0.4), 
    0 0 0 8px rgba(255, 82, 2, 0.12),
    0 0 0 16px rgba(255, 82, 2, 0.06);
  border: 5px solid #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: pulseNode 2.5s ease-in-out infinite;
}

@keyframes pulseNode {
  0%, 100% {
    box-shadow: 
      0 10px 30px rgba(255, 82, 2, 0.4), 
      0 0 0 8px rgba(255, 82, 2, 0.12),
      0 0 0 16px rgba(255, 82, 2, 0.06);
  }
  50% {
    box-shadow: 
      0 12px 36px rgba(255, 82, 2, 0.5), 
      0 0 0 10px rgba(255, 82, 2, 0.18),
      0 0 0 20px rgba(255, 82, 2, 0.08);
  }
}

.timeline-item:hover .timeline-node {
  transform: translate(-50%, -50%) scale(1.2);
  box-shadow: 
    0 16px 40px rgba(255, 82, 2, 0.5), 
    0 0 0 12px rgba(255, 82, 2, 0.2),
    0 0 0 24px rgba(255, 82, 2, 0.1);
}

.timeline-icon {
  font-size: 1.6rem;
}

.timeline-text {
  font-size: 0.95rem;
  color: #4b5563;
  margin-top: 0.75rem;
  line-height: 1.75;
  font-weight: 400;
}

/* Highlight organizations/institutions in text */
.timeline-text strong {
  color: var(--text-main);
  font-weight: 700;
}

/* Highlight key terms throughout the page */
.hero-subtitle strong,
.bullet-list strong,
.card strong {
  color: var(--text-main);
  font-weight: 700;
}

/* Load More FAQs Button */
#loadMoreFaqs {
  transition: all 0.3s ease;
}

#loadMoreFaqs:hover {
  background: #e65a00 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 82, 2, 0.3);
}

#loadMoreFaqs:active {
  transform: translateY(0);
}

/* MEDIA + FAQ */

/* Section wrapper */
#media {
  margin-block: 3rem;
}

#media h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

#media .section-desc {
  font-size: large;
  margin-bottom: 1.5rem;
}

/* GRID LAYOUT */
/* Default: 1 column (mobile) */
.media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* Tablet: 2 columns */
@media (min-width: 768px) {
  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }
}

/* Desktop: Keep 2 columns for better video card display */
@media (min-width: 992px) {
  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
  }
}

/* CARD BASE STYLE (articles + videos) */
.media-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 0;
  border: 1px solid rgba(255, 82, 2, 0.12);
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.media-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-orange), #ff8c5a);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
  z-index: 1;
}

.media-item:hover::before {
  transform: scaleX(1);
}

.media-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(255, 82, 2, 0.2);
  border-color: rgba(255, 82, 2, 0.3);
}

/* Text styles inside card */
.media-item h3 {
  font-size: 0.98rem;
  margin: 0 0 0.25rem;
}

.media-item p {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin: 0 0 0.5rem;
}

/* Article link button */
.media-item > a:not(.video-card) {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.86rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  text-decoration: none;
  margin-top: auto;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.media-item > a:not(.video-card):hover {
  background: var(--accent);
  color: #ffffff;
}

/* YOUTUBE VIDEO CARD */
.video-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: all 0.3s ease;
}

.video-card:hover {
  text-decoration: none;
}

/* Thumbnail area */
.video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0;
  overflow: hidden;
  background: #000;
}

/* Thumbnail image */
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark overlay */
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1.25rem;
  transition: background 0.3s ease;
}

.media-item:hover .video-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

/* Play button circle */
.play-button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: rgba(255, 82, 2, 0.95);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.media-item:hover .play-button {
  transform: scale(1.1);
  background: rgba(255, 82, 2, 1);
  box-shadow: 0 6px 30px rgba(255, 82, 2, 0.5);
}

/* Play triangle */
.play-button::before {
  content: "";
  border-style: solid;
  border-width: 9px 0 9px 14px;
  border-color: transparent transparent transparent #ffffff;
  margin-left: 3px;
}

/* Video text meta */
.video-meta {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.video-meta h3 {
  font-size: 1.1rem;
  margin: 0;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.4;
  transition: color 0.3s ease;
}

.media-item:hover .video-meta h3 {
  color: var(--primary-orange);
}

.video-meta p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Slight hover zoom for thumbnail on card hover */
.media-item:hover .video-thumb img {
  transform: scale(1.08);
}

.faq-list details {
  background: linear-gradient(to bottom, #ffffff 0%, #fffaf8 100%);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 82, 2, 0.1);
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-list details:hover {
  border-color: rgba(255, 82, 2, 0.3);
  box-shadow: 0 4px 16px rgba(255, 82, 2, 0.15);
  transform: translateY(-2px);
}

.faq-list details[open] {
  border-color: rgba(255, 82, 2, 0.4);
  box-shadow: 0 6px 20px rgba(255, 82, 2, 0.2);
  background: linear-gradient(to bottom, #ffffff 0%, #fff4f0 100%);
}

.faq-list summary {
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none;
  color: var(--text-main);
  padding: 0.3rem 0;
  transition: color 0.3s ease;
  position: relative;
  padding-left: 1.5rem;
}

.faq-list summary::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--primary-orange);
  transition: transform 0.3s ease;
  font-size: 0.8rem;
}

.faq-list details[open] summary::before {
  transform: rotate(90deg);
}

.faq-list details[open] summary {
  color: var(--primary-orange);
  margin-bottom: 0.5rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding-left: 1.5rem;
  animation: fadeIn 0.3s ease-out;
}

/* FOOTER */

footer {
  border-top: 2px solid rgba(255, 82, 2, 0.2);
  background: var(--bg);
  padding: 1.5rem 2rem;
  margin-top: 3rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-text {
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ff5202;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.social-icon:hover {
  background: #ff6b2b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 82, 2, 0.4);
}

@media (max-width: 768px) {
  footer {
    padding: 1.2rem 1.5rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-text {
    font-size: 0.85rem;
  }

  .social-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 1rem;
  }

  .footer-social {
    gap: 10px;
  }

  .social-icon {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1200px) {
  .hero {
    gap: 4rem;
    max-width: 1200px;
  }
  
  .hero-title span {
    font-size: 4.5rem;
  }
}

@media (max-width: 992px) {
  .hero {
    gap: 3.5rem;
  }

  .hero-title span {
    font-size: 4rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  /* HERO STACKS */
  body {
    padding: 0;
    width: 100%;
    overflow-x: hidden;
  }

  header:not(.site-header) {
    padding: 2rem 0 2.5rem;
    min-height: auto;
  }

  .container {
    padding: 0 1.25rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 1.5rem 0;
    text-align: center;
  }

  .hero-text {
    padding: 0;
    text-align: center;
  }

  .hero-title {
    font-size: 0.8rem;
    letter-spacing: 3.5px;
    text-align: center;
    margin-bottom: 1.25rem;
  }

  .hero-title span {
    font-size: 3rem;
    margin-top: 0.5rem;
    letter-spacing: -1px;
  }

  .hero-title span::after {
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    bottom: -18px;
  }

  .hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.85;
    max-width: 100%;
    margin-top: 2.25rem;
    padding: 0 1rem;
    text-align: center;
    color: #4b5563;
  }

  .hero-photo {
    justify-content: center;
    padding: 30px 25px;
    align-items: center;
    overflow: visible;
  }

  .hero-photo::before {
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .hero-photo img {
    max-width: 100%;
    width: 100%;
    max-width: 350px;
    height: auto;
  }


  h2 {
    text-align: center;
    font-size: 1.5rem;
    padding: 0;
    margin-bottom: 1.25rem;
  }

  h2::before {
    left: 50%;
    transform: translateX(-50%);
  }

  h2:hover::before {
    width: 100px;
  }

  .section-desc {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .card {
    font-size: 0.95rem;
    padding: 1.5rem 1.25rem;
    border-radius: 14px;
  }

  section {
    margin-bottom: 2rem;
  }

  /* TIMELINE: simplified stacked layout */
  .timeline {
    margin: 1.5rem 0;
    padding: 0;
  }

  .timeline::before {
    left: 20px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: none;
  }

  .timeline-item {
    flex-direction: row;
    align-items: flex-start;
    margin: 1.75rem 0;
    padding-left: 50px;
    position: relative;
  }

  .timeline-item:nth-child(odd) {
    flex-direction: row;
  }

  /* Connecting line from node to content */
  .timeline-item::after {
    content: "";
    position: absolute;
    left: 44px; /* Right edge of node (20px + 24px radius) */
    top: 24px; /* Vertically centered with node */
    width: 16px; /* Short connecting line */
    border-top: 2px dotted rgba(234, 88, 12, 0.7);
    z-index: 1;
  }

  .timeline-node {
    position: absolute;
    left: 20px;
    top: 0;
    width: 36px;
    height: 36px;
    transform: translate(-50%, 0);
  }

  .timeline-content {
    width: 100%;
    margin-left: 1rem;
    padding: 1rem;
    text-align: left !important;
  }

  .timeline-content::before {
    content: none;
  }

  .timeline-year {
    margin-bottom: 0.25rem;
    font-size: 0.92rem;
    text-align: left;
  }

  .timeline-text {
    margin-top: 0;
    font-size: 0.88rem;
  }

  section {
    margin-bottom: 2rem;
  }

  .media-grid {
    gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .media-item {
    border-radius: 14px;
  }

  .video-meta {
    padding: 1.25rem;
  }

  .video-meta h3 {
    font-size: 1rem;
  }

  .video-meta p {
    font-size: 0.9rem;
    -webkit-line-clamp: 4;
  }

  .play-button {
    width: 50px;
    height: 50px;
  }

  .play-button::before {
    border-width: 7px 0 7px 12px;
  }

  .video-overlay {
    padding: 1rem;
  }
  
  #media h2 {
    font-size: 1.4rem;
  }
  
  #media .section-desc {
    font-size: 0.95rem;
  }

  .faq-list details {
    padding: 0.7rem 0.8rem;
  }

  .faq-list summary {
    font-size: 0.9rem;
  }

  .faq-list p {
    font-size: 0.85rem;
  }
}

@media (max-width: 600px) {
  .media-grid {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }
  
  .media-item {
    padding: 0.9rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  header:not(.site-header) {
    padding: 1.5rem 0 2rem;
  }

  .hero {
    padding: 1rem 0;
    gap: 2rem;
  }

  .hero-title {
    font-size: 0.7rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
  }

  .hero-title span {
    font-size: 2.25rem;
    margin-top: 0.5rem;
    letter-spacing: -0.5px;
  }

  .hero-title span::after {
    width: 100px;
    height: 2.5px;
    bottom: -16px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.75;
    margin-top: 2rem;
    padding: 0 0.75rem;
  }

  .hero-photo {
    padding: 25px 20px;
  }

  .hero-photo::before {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 14px;
  }

  .hero-photo img {
    max-width: 280px;
  }

  h2 {
    font-size: 1.25rem;
    padding: 0;
    margin-bottom: 1rem;
  }

  .section-desc {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }

  .card {
    font-size: 0.9rem;
    padding: 1.25rem 1rem;
    line-height: 1.7;
    border-radius: 12px;
  }

  .timeline-content {
    padding: 0.9rem 0.8rem;
    margin-left: 0.5rem;
  }

  .timeline-year {
    font-size: 0.85rem;
  }

  .timeline-text {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .timeline-node {
    width: 32px;
    height: 32px;
    left: 18px;
  }

  .timeline-item {
    padding-left: 45px;
    margin: 1.5rem 0;
  }

  .media-item {
    padding: 0.8rem;
  }

  .media-item h3 {
    font-size: 0.95rem;
  }

  .media-item p {
    font-size: 0.85rem;
  }

  .faq-list details {
    padding: 0.7rem 0.8rem;
  }

  .faq-list summary {
    font-size: 0.9rem;
  }

  .faq-list p {
    font-size: 0.85rem;
    line-height: 1.5;
  }
}

