/* ═══════════════════════════════════════════════════════
   Amasiko Training Centre — Home Page Styles
   ═══════════════════════════════════════════════════════ */

/* ── Announcement Banner ────────────────────────────────── */
.announcement-banner {
  background: var(--gold);
  color: var(--navy-deep);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.announcement-banner a { text-decoration: underline; color: var(--navy-deep); font-weight: 700; }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?w=1600&auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  animation: heroZoom 14s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.00); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(9,21,48,0.93) 0%,
    rgba(14,31,69,0.82) 50%,
    rgba(14,31,69,0.55) 100%
  );
}

/* Gold diagonal accent */
.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 28px 80px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  padding: 7px 16px;
  border-radius: 40px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease both;
}

.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

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

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  max-width: 760px;
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.15s ease both;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 40px;
  font-weight: 300;
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeUp 0.7s 0.45s ease both;
}

.btn-hero-primary {
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 7px;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.01em;
}
.btn-hero-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.4);
}

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 7px;
  border: 2px solid rgba(255,255,255,0.45);
  transition: all var(--ease);
  font-family: 'DM Sans', sans-serif;
}
.btn-hero-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201,168,76,0.08);
}

/* Stats row */
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.6s ease both;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-stat-item { display: flex; flex-direction: column; }

.hero-stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

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

/* ── SETA Accreditation Strip ───────────────────────────── */
.seta-strip {
  background: var(--navy-deep);
  padding: 22px 0;
  border-top: 3px solid var(--gold);
  overflow: hidden;
}

.seta-strip-inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.seta-strip-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  white-space: nowrap;
  padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
  margin-right: 16px;
}

.seta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  transition: all var(--ease);
}
.seta-badge:hover { border-color: var(--gold); color: var(--gold-light); }
.seta-badge-icon { font-size: 0.85rem; }

/* ── Section Commons ────────────────────────────────────── */
.section { padding: 88px 0; }
.section-alt { background: var(--off-white); }
.section-navy { background: var(--navy); }

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title em { font-style: italic; color: var(--gold); }
.section-title-white { color: var(--white); }
.section-title-white em { color: var(--gold-light); }

.section-sub {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.75;
}
.section-sub-white { color: rgba(255,255,255,0.6); }

/* ── Programmes Section ─────────────────────────────────── */
.programmes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.programme-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.programme-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.programme-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.3);
}
.programme-card:hover::before { transform: scaleX(1); }

.prog-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  transition: background var(--ease);
}
.programme-card:hover .prog-icon { background: var(--gold-pale); }

.prog-seta {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.prog-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}

.prog-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.65;
  flex: 1;
}

.prog-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--ease), color var(--ease);
}
.prog-link:hover { color: var(--gold-dark); gap: 10px; }

/* ── Why Amasiko ────────────────────────────────────────── */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.why-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 10px;
  border-left: 4px solid var(--gold);
}

.why-img-badge strong { display: block; font-size: 1.4rem; color: var(--gold-light); font-family: 'Cormorant Garamond', serif; }
.why-img-badge span   { font-size: 0.75rem; color: rgba(255,255,255,0.6); }

.why-list { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--ease);
}
.why-item:hover { border-color: rgba(201,168,76,0.4); background: var(--gold-pale); transform: translateX(4px); }

.why-item-icon {
  width: 40px; height: 40px;
  background: var(--navy);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.why-item-text strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.why-item-text span   { font-size: 0.8rem; color: var(--text-light); }

/* ── How It Works ───────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all var(--ease);
}
.step-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  border: 3px solid var(--gold);
}

.step-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step-desc  { font-size: 0.84rem; color: var(--text-light); line-height: 1.7; }

/* ── Testimonials ───────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
  transition: all var(--ease);
}
.testimonial-card:hover { background: rgba(255,255,255,0.10); border-color: rgba(201,168,76,0.35); }

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.6;
  margin-bottom: 16px;
  opacity: 0.6;
}

.testimonial-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-deep);
  font-family: 'Cormorant Garamond', serif;
  flex-shrink: 0;
}

.testimonial-name { font-size: 0.88rem; font-weight: 700; color: var(--white); }
.testimonial-prog { font-size: 0.75rem; color: var(--gold-light); margin-top: 2px; }

/* ── CTA Banner ─────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(201,168,76,0.06);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(201,168,76,0.04);
}

.cta-banner-content { position: relative; z-index: 1; }

.cta-banner-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.cta-banner-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-banner-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

.btn-cta-gold {
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 7px;
  transition: background var(--ease), transform var(--ease);
  font-family: 'DM Sans', sans-serif;
}
.btn-cta-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-cta-outline {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 7px;
  border: 2px solid rgba(255,255,255,0.35);
  transition: all var(--ease);
  font-family: 'DM Sans', sans-serif;
}
.btn-cta-outline:hover { border-color: var(--gold); color: var(--gold-light); }

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--navy-deep);
  padding: 72px 0 0;
  border-top: 3px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin: 18px 0 24px;
  max-width: 260px;
}

.footer-accred {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.footer-accred-badge {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 8px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-link {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--ease), padding-left var(--ease);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-link:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-contact-icon { color: var(--gold); font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-text { font-size: 0.84rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-left { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-bottom-right { display: flex; gap: 20px; }
.footer-bottom-link { font-size: 0.78rem; color: rgba(255,255,255,0.3); transition: color var(--ease); }
.footer-bottom-link:hover { color: var(--gold-light); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .why-layout { grid-template-columns: 1fr; }
  .why-img-wrap { max-height: 360px; }
  .why-img-wrap img { height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .programmes-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .programmes-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { text-align: center; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
  .seta-strip-inner { gap: 6px; }
  .seta-strip-label { display: none; }
}
