/* ===================================================
   SECTION BASE
   =================================================== */
.section {
  padding: 80px 0;
}
@media (max-width: 1024px) {
  .section {
    padding: 60px 0;
  }
}
@media (max-width: 480px) {
  .section {
    padding: 40px 0;
  }
}

/* ===================================================
   HERO SECTION
   =================================================== */
.hero {
  position: relative;
  background: #fff;
  overflow: hidden;
  padding: 100px 0 80px;
  height: 100vh;
  display: flex;
  align-items: center;
}

/* --- Grid --- */
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.foliage {
  position: absolute;
  width: 360px;
  height: 260px;
  opacity: 0.65;
  background:
    radial-gradient(circle at 30% 40%, var(--color-secondary), transparent 60%),
    radial-gradient(circle at 60% 60%, var(--color-secondary), transparent 60%);
  pointer-events: none;
  border-radius: 10px;
}
.foliage.br {
  bottom: -80px;
  right: -90px;
  transform: rotate(14deg);
}
.foliage.tl {
  top: -70px;
  left: -80px;
  transform: rotate(-12deg);
}

/* --- Kicker --- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 16px;
}

.kicker .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-secondary);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

/* --- Heading --- */
.hero h1 {
  font-family: var(--font-family);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--color-primary);
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

/* --- Tagline --- */
.tagline {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 16px;
  line-height: 1.4;
}

/* --- Sub --- */
.sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-light);
  margin: 0 0 28px;
  max-width: 560px;
}

.sub b {
  color: var(--color-primary);
  font-weight: 700;
}

/* --- Meta Pills --- */
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.pill {
  display: inline-block;
  background: #f0f4ff;
  color: var(--color-primary);
  border: 1px solid rgba(0, 32, 88, 0.15);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: box-shadow var(--transition-fast);
}
.pill:hover {
  box-shadow: var(--shadow-md);
}

/* --- CTA Row --- */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

.cta-row .btn {
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-normal);
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  font-family: var(--font-family);
}

/* Primary CTA – sun/green */
.btn.sun {
  background: var(--color-sun);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn.sun:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #ffd56a;
}

/* Secondary CTAs */
.cta-row .btn:not(.sun) {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.cta-row .btn:not(.sun):hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===================================================
   HERO CARD (right column)
   =================================================== */
.hero-card {
  background: var(--color-primary);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.hero-card .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-card .top h3 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.hero-card .badge {
  background: var(--color-secondary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  white-space: nowrap;
}

.hero-card .content {
  padding: 24px;
}

/* --- Mini Stat Grid --- */
.grid.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mini {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px 14px;
  transition: background var(--transition-fast);
}

.mini:hover {
  background: rgba(255, 255, 255, 0.14);
}

.mini .num {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 4px;
}

.mini .lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 360px;
    gap: 36px;
  }
}

@media (max-width: 992px) {
  .hero {
    min-height: auto;
  }

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

  .hero h1 {
    font-size: clamp(36px, 8vw, 52px);
  }

  .hero-card {
    width: 100%;
  }

  .sub {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .foliage {
    opacity: 0.3;
  }
  .hero {
    padding: 8rem 0 48px;
  }

  .hero h1 {
    font-size: 36px;
  }
  .hero-card .content {
    padding: 15px;
  }
  .tagline {
    font-size: 17px;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-row .btn {
    text-align: center;
  }

  .pill {
    font-size: 12px;
    padding: 5px 13px;
    text-align: center;
    flex: 1;
  }

  .mini .num {
    font-size: 17px;
  }
}

/* ===================================================
   ABOUT SECTION
   =================================================== */
#about {
  background: #f5f5f5;
}
#about .titlebar {
  margin-bottom: 48px;
  max-width: 680px;
}
#about .titlebar br {
  display: none;
}

#about .titlebar h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--color-primary);
  margin: 0 0 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

#about .titlebar p {
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin: 0;
}

/* #about – GRID THREE */
#about .grid.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

#about .card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 32, 88, 0.08);
  transition:
    transform var(--transition-normal),
    box-shadow var(--transition-normal);
}

#about .card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
#about .card:hover .benefit-img {
  transform: rotate(5deg);
}

#about .benefit-card {
  display: grid;
  grid-template-columns: 80px 1fr; /* Cột 1: Icon/Img, Cột 2: Content */
  gap: 16px;
  height: 100%;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  align-items: flex-start; /* Để icon không bị kéo giãn theo chiều cao */
  transition: var(--transition-normal);
}

#about .benefit-img {
  width: 80px;
  height: 80px;
  aspect-ratio: 1/1; /* Chuyển về hình vuông cho hợp style 2 cột */
  background: #e9f2e9; /* Màu xanh nhạt theo ảnh mẫu */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--color-secondary);
  flex-shrink: 0;
  transition: var(--transition-normal);
}

#about .benefit-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#about .benefit-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.3;
}

#about .benefit-body p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 1024px) {
  #about .grid.three {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 992px) {
  #about .grid.three {
    grid-template-columns: repeat(2, 1fr);
  }

  #about .titlebar {
    max-width: 100%;
  }
  /* Nếu màn hình quá nhỏ, icon nằm trên chữ cho thoáng */
  #about .benefit-card {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 20px;
  }
  #about .benefit-body {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  #about .grid.three {
    grid-template-columns: 1fr;
  }

  #about .titlebar {
    margin-bottom: 32px;
  }

  .titlebar h2 {
    font-size: 28px;
    line-height: initial;
  }

  #about .benefit-img {
    width: 60px;
    height: 60px;
    margin: 0 auto; /* Canh giữa và tạo khoảng cách dưới */
  }
}

/* ===================================================
   TEACHING PILLARS SECTION
   =================================================== */
#pillars {
  padding: 80px 0;
  background-color: #f9fbf9; /* Nền xanh cực nhẹ cho sạch */
}

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

.teach-title .tag {
  display: inline-block;
  background: var(--color-secondary);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.teach-title h2 {
  font-size: 36px;
  color: var(--color-primary);
  margin: 0;
}

.teach-pill {
  background: var(--color-sun);
  color: var(--color-primary);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
}

/* Grid layout */
.teach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Mặc định 3 cột */
  gap: 15px;
}
.teach-item {
  height: 100%;
  display: flex; /* Đảm bảo card bên trong nhận đủ chiều cao */
}
/* Card Style */
.teach-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
  border: 1px solid #eee;
}

.teach-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.teach-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-image: url("https://kidleaderhub.com/wp-content/uploads/2026/02/Gemini_Generated_Image_k10z08k10z08k10z.webp");
  position: relative;
}

.teach-body {
  padding: 12px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.teach-body h3 {
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.teach-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.teach-body li {
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text-light);
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

/* Icon list kiểu Jungle */
.teach-body li::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: bold;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .teach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .teach-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .teach-title h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .teach-grid {
    grid-template-columns: 1fr; /* Xuống 1 cột đúng ý Duy */
  }

  .teach-card {
    border-radius: 15px;
  }
}

/* ===================================================
   TRACKS SECTION
   =================================================== */

.titlebar {
  margin-bottom: 48px;
}
.titlebar h2 {
  font-size: 36px;
  color: var(--color-primary);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
  text-transform: none;
}

.titlebar p {
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0;
}

/* Nhấn mạnh phần chữ đậm trong p */
.titlebar p b {
  color: var(--color-secondary);
}

#tracks .tracks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* AOS Wrapper */
#tracks .tracks-item {
  height: 100%;
}

/* Card Style */
#tracks .tracks-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #f0f0f0;
  height: 100%;
  overflow: hidden;
  transition:
    transform var(--transition-normal),
    box-shadow var(--transition-normal);
}

#tracks .content-card {
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

#tracks .content-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

#tracks .content-card h3 {
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 12px;
}

/* Custom Bullet List */
#tracks .content-card ul {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
}

#tracks .content-card li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-light);
}

#tracks .content-card li::before {
  content: "▹";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-secondary);
  font-weight: bold;
}

/* Image Handling */

#tracks .image-card {
  max-height: 300px;
}
#tracks .image-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

#tracks .image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 250px;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 768px) {
  #tracks .tracks-grid {
    grid-template-columns: 1fr;
  }

  /* Đảo thứ tự: Nội dung -> Ảnh xen kẽ */
  #tracks .tracks-item:nth-child(2) {
    order: 2;
  }
  #tracks .tracks-item:nth-child(3) {
    order: 2;
  }
}

/* ===================================================
   #skills – TITLEBAR
   =================================================== */
#skills .titlebar {
  margin-bottom: 48px;
  max-width: 680px;
}

#skills .titlebar h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--color-primary);
  margin: 0 0 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

#skills .titlebar p {
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin: 0;
}

/* ===================================================
   #skills – LAYOUT
   =================================================== */
#skills .circle4 {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}

/* ===================================================
   #skills – WHEEL (Donut Pie style)
   =================================================== */
#skills .wheel {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  margin: 0 auto;
}

#skills .wheel svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* --- Cap labels (pill trắng bám 4 góc) --- */
#skills .wheel-item {
  position: absolute;
  background: #fff;
  border-radius: 50px;
  padding: 7px 16px;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  z-index: 3;
  transition: box-shadow var(--transition-normal);
}

#skills .wheel-item:hover {
  box-shadow: var(--shadow-md);
}

#skills .wheel-item .cap {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

#skills .wheel-item.one {
  top: 18%;
  left: 5%;
}
#skills .wheel-item.two {
  top: 18%;
  right: 5%;
}
#skills .wheel-item.three {
  bottom: 15%;
  left: 10%;
}
#skills .wheel-item.four {
  bottom: 15%;
  right: 0%;
}

/* --- Center label --- */
#skills .wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  text-align: center;
  background: #fff;
  border-radius: 50px;
  padding: 12px 20px;
  box-shadow: var(--shadow-sm);
  pointer-events: none;
}

#skills .wheel-center span {
  font-size: 12px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.4;
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {
}
@media (max-width: 992px) {
}
@media (max-width: 480px) {
  #skills .wheel-item {
    padding: 5px 11px;
  }
  #skills .wheel-item .cap {
    font-size: 10px;
  }
}

/* ===================================================
   #skills – GRID TWO + CARDS
   =================================================== */
#skills .grid.two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

#skills .card {
  background: #fff;
  border: 1px solid rgba(0, 32, 88, 0.08);
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition-normal),
    box-shadow var(--transition-normal);
}

#skills .card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

#skills .card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 10px;
  line-height: 1.3;
}

#skills .card p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.65;
  margin: 0;
}

#skills .card.is-active,
#skills .wheel-item.is-active {
  box-shadow:
    0 0 0 2px var(--color-primary),
    var(--shadow-md);
  transform: translateY(-4px);
}

/* Sector SVG highlight — dùng JS toggle class trên wheel */
#skills .wheel svg path.is-active {
  filter: brightness(0.88);
  transition: filter 0.25s ease;
}
#skills .wheel svg path {
  transition:
    filter var(--transition-fast),
    opacity var(--transition-fast);
}

#skills .wheel svg path.is-active {
  filter: brightness(0.82) saturate(1.3);
}

/* Khi có hover, các path KHÔNG active thì mờ nhẹ */
#skills .wheel:has(.is-active) svg path:not(.is-active) {
  opacity: 0.55;
}

/* ===================================================
   #skills – RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  #skills .circle4 {
    grid-template-columns: 320px 1fr;
    gap: 15px;
  }

  #skills .wheel-center {
    width: 108px;
    height: 108px;
  }
}

@media (max-width: 1024px) {
  #skills .circle4 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  #skills .titlebar h2 {
    font-size: 26px;
  }

  #skills .wheel-center span {
    font-size: 11px;
  }

  #skills .grid.two {
    grid-template-columns: 1fr;
  }

  #skills .card {
    padding: 20px 18px;
  }
}

/* ===================================================
   #day – TITLEBAR
   =================================================== */
#day .titlebar {
  margin-bottom: 48px;
}

#day .titlebar h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--color-primary);
  margin: 0 0 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

#day .titlebar p {
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin: 0;
}

/* ===================================================
   #day – GRID TWO
   =================================================== */
#day .grid.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ===================================================
   #day – TIMELINE
   =================================================== */
#day .timeline {
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Đường line dọc */
#day .timeline::before {
  content: "";
  position: absolute;
  left: 126px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--color-primary);
}

#day .timeitem:last-child {
  padding-bottom: 0;
}

/* Dot trên timeline */
#day .timeitem::after {
  content: "";
  position: absolute;
  left: 118px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--color-primary);
  z-index: 999;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}
#day .timeitem:hover::after {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
}
/* Hover row highlight nhẹ */
#day .timeitem {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 40px;
  padding: 16px 0 16px 0;
  position: relative;
  cursor: pointer;
  transition:
    opacity var(--transition-fast),
    background var(--transition-fast);
  border-bottom: 1px solid rgba(0, 32, 88, 0.08);
  border-radius: 12px;
  padding: 28px 16px;
  margin-bottom: 6px;
}
#day .timeitem:last-child {
  border-bottom: none;
}

#day .timeitem:hover {
  background: rgba(0, 32, 88, 0.04);
}
/* Khi hover 1 item thì các item khác mờ nhẹ */
#day .timeitem:hover::after {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
}

#day .timeitem.is-active::after {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
}

/* Time label */
#day .time {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.4;
  padding-top: 2px;
  text-align: right;
  padding-right: 20px;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

/* Content */
#day .timeitem > div:last-child {
  padding-left: 16px;
}

#day .timeitem h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 6px;
  line-height: 1.3;
}

#day .timeitem p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0;
}

/* ===================================================
   #day – IMAGE CARD
   =================================================== */
#day .day-thumb {
  border-radius: 20px;
  overflow: hidden;
  position: sticky;
  top: 100px;
  height: 100%;
}

#day .day-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: opacity var(--transition-normal);
}

/* ===================================================
   #day – RESPONSIVE
   =================================================== */
@media (max-width: 992px) {
  #day .grid.two {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  #day .card {
    min-height: 240px !important;
  }
}

@media (max-width: 480px) {
  #about .titlebar br {
    display: inline;
  }
  #day .titlebar h2 {
    font-size: 26px;
  }

  #day .timeitem {
    grid-template-columns: 72px 1fr;
    gap: 12px;
    padding: 20px 12px;
  }

  #day .timeitem::after,
  #day .timeline::before {
    display: none;
  }

  #day .time {
    font-size: 12px;
  }
}

/* ===================================================
   #outcomes – TITLEBAR
   =================================================== */
#outcomes .titlebar {
  margin-bottom: 48px;
}

#outcomes .titlebar h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--color-primary);
  margin: 0 0 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

#outcomes .titlebar p {
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin: 0;
}

/* ===================================================
   #outcomes – ZIGZAG
   =================================================== */
#outcomes .zigzag {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#outcomes .zigrow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ===================================================
   #outcomes – ZIGITEM
   =================================================== */
#outcomes .zigitem {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-height: 250px;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 32, 88, 0.08);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition-normal),
    box-shadow var(--transition-normal);
}

#outcomes .zigitem:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* --- Image --- */
#outcomes .zigimg {
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
}

#outcomes .zigimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

#outcomes .zigitem:hover .zigimg img {
  transform: scale(1.05);
}

/* --- Body --- */
#outcomes .zigbody {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

#outcomes .zigbody h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.3;
}

#outcomes .zigbody p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.65;
  margin: 0;
}

/* ===================================================
   #outcomes – RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  #outcomes .zigrow {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 992px) {
  #outcomes .zigrow {
    grid-template-columns: 1fr;
  }

  #outcomes .zigitem {
    max-height: fit-content;
  }
  #outcomes .zigimg {
    max-height: 200px;
  }
}

@media (max-width: 480px) {
  #outcomes .titlebar h2 {
    font-size: 26px;
  }

  #outcomes .zigitem {
    grid-template-columns: 1fr;
  }
}

/* ===================================================
   #moments – TITLEBAR
   =================================================== */
#moments .titlebar {
  margin-bottom: 32px;
}

#moments .titlebar h2 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--color-primary);
  margin: 0 0 10px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

#moments .titlebar p {
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin: 0;
}

/* ===================================================
   #moments – GRID TWO
   =================================================== */
#moments .grid.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ===================================================
   #moments – CARD
   =================================================== */
#moments .card {
  background: var(--color-primary);
  border-radius: 20px;
  padding: 28px 30px;
  border: none;
  box-shadow: var(--shadow-md);
  transition:
    transform var(--transition-normal),
    box-shadow var(--transition-normal);
}

#moments .card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

#moments .card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.3;
}

#moments .card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin: 0;
}

/* ===================================================
   #moments – IMAGE
   =================================================== */
#moments .moments-img {
  margin-top: 20px;
  border-radius: 20px;
  overflow: hidden;
  max-height: 500px;
  box-shadow: var(--shadow-lg);
}

#moments .moments-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

#moments .moments-img:hover img {
  transform: scale(1.03);
}

/* ===================================================
   #moments – RESPONSIVE
   =================================================== */
@media (max-width: 992px) {
  #moments .grid.two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  #moments .card {
    padding: 22px 20px;
  }
}

/* ===================================================
   #reviews – TITLEBAR
   =================================================== */
#reviews .titlebar {
  margin-bottom: 40px;
  max-width: 680px;
}

#reviews .titlebar h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--color-primary);
  margin: 0 0 10px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

#reviews .titlebar p {
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin: 0;
}

/* ===================================================
   #reviews – SLIDE INNER GRID
   =================================================== */
#reviews .slide {
  display: grid !important;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px 48px;
  background: #fff;
  border: 1px solid rgba(0, 32, 88, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  outline: none;
}

/* --- Parent Image --- */
#reviews .ph-parent {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8efff, #d0e4ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary-light);
  flex-shrink: 0;
  overflow: hidden;
}

#reviews .ph-parent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Slide Body --- */
#reviews .slide-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#reviews .slide-body h3 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 800;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.3;
}

#reviews .slide-body p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.75;
  margin: 0;
}

#reviews .who {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: 0.03em;
}
/* ===================================================
   #reviews – RESPONSIVE
   =================================================== */
@media (max-width: 992px) {
  #reviews .slide {
    grid-template-columns: 160px 1fr;
    gap: 28px;
    padding: 32px 36px;
  }

  #reviews .ph-parent {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 480px) {
  #reviews .slide {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 24px;
    gap: 20px;
  }

  #reviews .ph-parent {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }

  #reviews .titlebar h2 {
    font-size: 26px;
  }
}

/* ===================================================
   #recap – GRID TWO
   =================================================== */
#recap .grid.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* ===================================================
   #recap – CARD
   =================================================== */
#recap .card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid rgba(0, 32, 88, 0.08);
  box-shadow: var(--shadow-sm);
}

#recap .card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-primary);
  margin: 0 0 14px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

#recap .card p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin: 0;
}

/* ===================================================
   #recap – THUMBNAIL
   =================================================== */
#recap .recap-thumb {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}

#recap .recap-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

#recap .recap-thumb:hover img {
  transform: scale(1.04);
}

/* Overlay */
#recap .recap-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 32, 88, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-normal);
  text-decoration: none;
}

#recap .recap-thumb:hover .recap-overlay {
  background: rgba(0, 32, 88, 0.55);
}

/* Play button */
#recap .play-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition:
    transform var(--transition-normal),
    box-shadow var(--transition-normal);
}

#recap .play-btn i {
  font-size: 24px;
  color: var(--color-primary);
  margin-left: 4px; /* căn icon play */
}

#recap .recap-thumb:hover .play-btn {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

/* ===================================================
   #recap – RESPONSIVE
   =================================================== */
@media (max-width: 992px) {
  #recap .grid.two {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 480px) {
  #recap .card {
    padding: 24px 20px;
  }

  #recap .card h3 {
    font-size: 18px;
  }

  #recap .play-btn {
    width: 52px;
    height: 52px;
  }

  #recap .play-btn i {
    font-size: 18px;
  }
}

/* ===================================================
   #info – TITLEBAR
   =================================================== */
#info .titlebar {
  margin-bottom: 40px;
}

#info .titlebar h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--color-primary);
  margin: 0 0 10px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

#info .titlebar p {
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin: 0;
}


#info .grid.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}


#info .card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px;
  border: 1px solid rgba(0, 32, 88, 0.08);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition-normal),
    box-shadow var(--transition-normal);
}

#info .card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

#info .card h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
}

#info .card p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin: 0;
}

#info .card p b {
  color: var(--color-primary);
  font-size: 17px;
}


@media (max-width: 992px) {
  #info .grid.three {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  #info .titlebar h2 {
    font-size: 26px;
  }

  #info .grid.three {
    grid-template-columns: 1fr;
  }

  #info .card {
    padding: 22px 18px;
  }
}

/* ===================================================
   #contact – GRID TWO
   =================================================== */
#contact .grid.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

/* ===================================================
   #contact – CARD
   =================================================== */
#contact .card {
  background: var(--color-primary);
  border-radius: 24px;
  padding: 40px 36px;
  border: none;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 0;
}

#contact .card h3 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.3;
}

#contact .card > p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0;
}

/* ===================================================
   #contact – DIVIDER
   =================================================== */
#contact .divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 24px 0;
}

/* ===================================================
   #contact – CONTACT GRID
   =================================================== */
#contact .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ===================================================
   #contact – FOOTBOX
   =================================================== */
#contact .footbox {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#contact .footbox-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-secondary);
}

#contact .footbox-value {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  line-height: 1.4;
}

#contact .footbox-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

/* ===================================================
   #contact – CTA
   =================================================== */
#contact .contact-cta {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

#contact .btn.sun {
  background: var(--color-sun);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

#contact .btn.sun:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

#contact .btn.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

#contact .btn.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ===================================================
   #contact – QR PLACEHOLDER
   =================================================== */
#contact .contact-qr {
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 32, 88, 0.08);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

#contact .qr-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: rgba(0, 32, 88, 0.3);
  text-align: center;
}

#contact .qr-placeholder i {
  font-size: 72px;
}

#contact .qr-placeholder span {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}

/* ===================================================
   #contact – RESPONSIVE
   =================================================== */
@media (max-width: 992px) {
  #contact .grid.two {
    grid-template-columns: 1fr;
  }

  #contact .contact-qr {
    min-height: 260px;
  }
}

@media (max-width: 480px) {
  #contact .card {
    padding: 28px 22px;
  }

  #contact .contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #contact .contact-cta {
    flex-direction: column;
  }

  #contact .contact-cta .btn {
    text-align: center;
  }
}
