/*
Theme Name: ZICA Institute
Theme URI:
Author: Varghese
Author URI:
Description: Custom theme for ZICA Institute. Hand-built for pixel-perfect control.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: zica
*/

/* ==========================================================================
   RESET & BASE
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; }
img, picture, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4, h5, h6 { margin: 0; }
p { margin: 0; }
ul, ol { list-style: none; margin: 0; padding: 0; }

/* ==========================================================================
   DESIGN TOKENS
   ========================================================================== */

:root {
  --color-bg:        #0f1117;
  --color-surface:   rgba(48, 64, 121, 0.15);
  --color-brand:     #f97316;
  --color-text:      #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.5);
  --color-text-secondary: rgba(255, 255, 255, 0.75);
  --color-dark-text: #141826;
  --font-primary:    Avenir, 'Nunito', 'Segoe UI', sans-serif;
  --font-script:     'Bad Script', cursive;
  --font-body:       'Inter', system-ui, sans-serif;
  --max-width:       1440px;
  --page-padding:    45px;
  --brand-shadow:    0px 4px 8px rgba(249, 115, 22, 0.35);
}

body {
  font-family: var(--font-primary);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */

:focus-visible { outline: 2px solid var(--color-brand); outline-offset: 2px; }
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--color-bg); color: #fff; padding: .5rem 1rem; z-index: 9999;
}
.skip-link:focus { left: 0; }
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; width: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ==========================================================================
   SHARED BUTTON STYLES
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  white-space: nowrap;
  border: none;
  position: relative;
  overflow: hidden;
}
.btn:hover  { opacity: 1; transform: translateY(-3px) scale(1.03); box-shadow: 0 10px 24px rgba(249,115,22,0.35); }
.btn:active { transform: translateY(-1px) scale(0.97); }

.btn--primary {
  background: var(--color-brand);
  color: #fff;
  box-shadow: var(--brand-shadow);
}
.btn--outline {
  background: transparent;
  color: var(--color-brand);
  border: 1px solid var(--color-brand);
}
.btn--orange-pill {
  background: var(--color-brand);
  color: #fff;
  height: 40px;
  padding: 0 20px 0 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
  transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
.btn--orange-pill:hover  { transform: translateY(-3px) scale(1.03); box-shadow: 0 10px 24px rgba(249,115,22,0.35); }
.btn--orange-pill:active { transform: translateY(-1px) scale(0.97); }

.btn-anim-init { opacity: 0; transform: translateY(16px) scale(0.96); }
.btn-anim-in   { opacity: 1; transform: translateY(0) scale(1); }
.btn::after,
.btn--orange-pill::after,
.btn-enquire::after,
.enquiry-form__submit::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
  pointer-events: none;
}
.btn:hover::after,
.btn--orange-pill:hover::after,
.btn-enquire:hover::after,
.enquiry-form__submit:hover::after {
  left: 130%;
}
.btn__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 11px;
  background: rgba(20, 24, 38, 0.5);
}

/* ==========================================================================
   SITE HEADER
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  background: rgba(0, 0, 0, 0.5);
}

/* Top bar */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  padding: 0 var(--page-padding);
  border-bottom: 1px solid rgba(176, 176, 176, 0.1);
  background: var(--color-surface);
  overflow: hidden;
  transition: height 0.3s ease, opacity 0.3s ease, border-color 0.3s ease;
}
.site-header.is-scrolled .top-bar {
  height: 0;
  opacity: 0;
  border-color: transparent;
}
.top-bar__contact {
  display: flex;
  align-items: center;
  gap: 24px;
}
.top-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-muted);
  text-decoration: none;
  white-space: nowrap;
}
.top-bar__item img { flex-shrink: 0; }
.top-bar__social {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--color-text-muted);
}
.top-bar__social a { display: flex; align-items: center; }
.top-bar__social a:hover svg * { stroke: var(--color-brand); }

/* Main nav */
.main-nav {
  height: 100px;
  border-bottom: 1px solid rgba(42, 45, 58, 0.3);
  background: var(--color-surface);
}
.main-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  width: 200px;
}
.logo-img { height: 56px; width: auto; object-fit: contain; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  height: 100%;
}
.nav-links__item > a {
  font-size: 14px;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
  transition: color 0.25s ease;
}
.nav-links__item > a::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--color-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links__item > a:hover { color: var(--color-brand); }
.nav-links__item > a:hover::before { transform: scaleX(1); }
.nav-links__item--active > a {
  color: var(--color-brand);
  position: relative;
}
.nav-links__item--active > a::before { display: none; }
.nav-links__item--active > a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--color-brand);
  animation: navDashIn 0.4s ease-out;
}
@keyframes navDashIn {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}

/* Courses flyout menu */
.nav-links__item--dropdown {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.courses-flyout {
  position: fixed;
  top: 150px;
  left: 0;
  width: 100%;
  padding-top: 0;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s, top 0.3s ease;
  z-index: 1100;
}
.site-header.is-scrolled .courses-flyout { top: 100px; }
.nav-links__item--dropdown:hover .courses-flyout,
.nav-links__item--dropdown:focus-within .courses-flyout {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.courses-flyout__panel {
  width: 100%;
  background: #14161d;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}
.courses-flyout__row {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px var(--page-padding);
  display: flex;
  justify-content: center;
  gap: 100px;
}
.courses-flyout__col {
  width: 380px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.courses-flyout__heading {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  color: var(--color-brand);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-bottom: 10px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.courses-flyout__list { display: flex; flex-direction: column; gap: 2px; }
.courses-flyout__list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 6px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #fff;
  border-radius: 6px;
  white-space: normal;
  line-height: 1.3;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}
.courses-flyout__list li a:hover {
  background: rgba(249,115,22,0.12);
  color: var(--color-brand);
  padding-left: 12px;
}
.courses-flyout__arrow {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  opacity: 0.5;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.courses-flyout__list li a:hover .courses-flyout__arrow {
  opacity: 1;
  transform: translateX(3px);
}
.courses-flyout__viewall {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  color: var(--color-brand);
}

/* CTA button */
.btn-enquire {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 16px 0 19px;
  background: var(--color-brand);
  color: #fff;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.2px;
  box-shadow: var(--brand-shadow);
  transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.btn-enquire:hover  { opacity: 1; transform: translateY(-3px) scale(1.03); box-shadow: 0 10px 24px rgba(249,115,22,0.45); }
.btn-enquire:active { transform: translateY(-1px) scale(0.97); }
.btn-enquire__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 9px;
  background: #fff;
}

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s;
}

/* ==========================================================================
   SITE MAIN — push content below fixed header
   ========================================================================== */

.site-main { padding-top: 150px; }

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
  position: relative;
  height: 791px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  margin-top: -150px; /* bleed behind header */
  padding-top: 150px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1);
  transform-origin: center;
  transition: opacity 0.8s ease;
}
.hero__bg-img.is-active {
  opacity: 1;
  animation: heroKenBurns 7s ease-out forwards;
}
@keyframes heroKenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.12); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,17,23,0.7) 45%, rgba(15,17,23,0) 100%);
}

.hero__slider {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: var(--max-width);
  padding: 0 var(--page-padding);
  margin-bottom: 32px;
}

.hero__arrow {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.hero__arrow:hover { opacity: 1; }
.hero__arrow img { width: 50px; height: 50px; }
.hero__arrow--next img { transform: rotate(180deg); }

.hero__content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 0 20px;
}

.hero__brand {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-shrink: 0;
  opacity: 0;
  animation: heroFadeUp 0.8s ease-out 0.2s forwards;
}
.hero__badge {
  width: 100px;
  height: auto;
  animation: heroBadgeFloat 3s ease-in-out 1s infinite;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroBadgeFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.hero__titles {
  display: flex;
  flex-direction: column;
  color: #fff;
  font-size: 30px;
  line-height: 1.1;
}
.hero__title-light { font-weight: 300; }
.hero__title-bold  { font-weight: 900; }
.hero__title-thin  { font-weight: 200; }

.hero__divider {
  width: 1px;
  height: 124px;
  background: rgba(255,255,255,0.4);
  flex-shrink: 0;
  opacity: 0;
  animation: heroFadeUp 0.8s ease-out 0.35s forwards;
}

.hero__description {
  display: flex;
  flex-direction: column;
  color: #fff;
  font-size: 22px;
  font-weight: 300;
  line-height: 30px;
  margin-left: 20px;
  opacity: 0;
  animation: heroFadeUp 0.8s ease-out 0.5s forwards;
}

.hero__dots {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  opacity: 0;
  animation: heroFadeUp 0.8s ease-out 0.65s forwards;
}
.hero__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s;
}
.hero__dot--active { background: var(--color-brand); }

/* ==========================================================================
   WHY CHOOSE ZICA
   ========================================================================== */

.why-zica {
  background: var(--color-bg);
  padding: 45px var(--page-padding);
}
.why-zica__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
}
.why-zica__heading {
  font-size: 35px;
  font-weight: 300;
  color: #fff;
  text-align: center;
}
.why-zica__heading strong {
  font-weight: 900;
}

.why-zica__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  position: relative;
}
.why-zica__grid::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.2) 50%, transparent);
}
.why-zica__grid::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.2) 50%, transparent);
}
.why-zica__stat {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 60px;
}

.why-zica__stat-number {
  display: flex;
  align-items: center;
  gap: 36px;
}
.why-zica__num {
  font-family: var(--font-script);
  font-size: 65px;
  font-style: italic;
  color: #fff;
  white-space: nowrap;
  line-height: 1;
}
.why-zica__stat-label {
  display: flex;
  flex-direction: column;
  font-family: var(--font-script);
  font-size: 45px;
  font-style: italic;
  color: #fff;
  line-height: 50px;
}
.why-zica__desc {
  font-size: 20px;
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 29px;
}

.why-zica__cta {
  display: flex;
  gap: 16px;
}
.why-zica__cta .btn-enquire {
  height: 40px;
  width: 200px;
  padding: 0 19px;
  justify-content: center;
  font-size: 14px;
}
.why-zica__cta .btn--outline {
  height: 40px;
  width: 200px;
  padding: 0;
  font-size: 14px;
}

/* ==========================================================================
   PLACEMENT COMPANIES
   ========================================================================== */

.placements {
  background: var(--color-bg);
  padding: 45px 0;
}
.placements__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 41px;
}
.placements__heading {
  font-size: 35px;
  font-weight: 300;
  color: #fff;
  text-align: center;
}
.placements__heading-bold { font-weight: 900; }

.placements__logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1350px;
}
.placements__logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 5 / 3;
  background: #fff;
}
.placements__logo-item img {
  width: 50%;
  height: 50%;
  object-fit: contain;
}

.placements__cta {
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   SUCCESSFUL STUDENTS
   ========================================================================== */

.students-section {
  background: var(--color-bg);
  padding: 60px 0;
}
.students-section__inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
}
.students-section__bg {
  position: relative;
  height: 800px;
  border: 1px solid rgba(138,138,138,0.25);
  border-radius: 4px;
  overflow: hidden;
}
.students-section__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.students-section__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 461px;
  background: linear-gradient(0deg, rgba(15,17,23,0.8) 49%, rgba(15,17,23,0) 100%);
}
.students-section__content {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 45px 60px;
}
.students-section__title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-end;
  text-align: right;
  margin-bottom: 40px;
}
.students-section__title-script {
  font-family: var(--font-script);
  font-size: 60px;
  font-style: italic;
  color: #fff;
  line-height: 71px;
}
.students-section__title-bold {
  font-family: var(--font-script);
  font-size: 100px;
  font-style: italic;
  color: #fff;
  line-height: 1;
}
.students-section__row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.students-section__desc {
  flex: 1;
  font-size: 24px;
  font-weight: 300;
  line-height: 32px;
  color: #fff;
}

/* ==========================================================================
   COURSE MODULES (light section)
   ========================================================================== */

.courses {
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
  padding: 60px 0 0;
}
.courses::before {
  content: '';
  position: absolute;
  top: -25%;
  left: -25%;
  width: 150%;
  height: 150%;
  background:
    radial-gradient(at 0% 0%, #ff6b6b 0px, transparent 50%),
    radial-gradient(at 33% 0%, #ffa36b 0px, transparent 50%),
    radial-gradient(at 66% 0%, #ffd16b 0px, transparent 50%),
    radial-gradient(at 100% 0%, #ffd166 0px, transparent 50%),
    radial-gradient(at 0% 33%, #b34d99 0px, transparent 50%),
    radial-gradient(at 33% 33%, #cc8c80 0px, transparent 50%),
    radial-gradient(at 66% 33%, #e6b373 0px, transparent 50%),
    radial-gradient(at 100% 33%, #80b359 0px, transparent 50%),
    radial-gradient(at 0% 66%, #6680b3 0px, transparent 50%),
    radial-gradient(at 33% 66%, #59a6a6 0px, transparent 50%),
    radial-gradient(at 66% 66%, #33a68c 0px, transparent 50%),
    radial-gradient(at 100% 66%, #1a8cb3 0px, transparent 50%),
    radial-gradient(at 0% 100%, #05d6a1 0px, transparent 50%),
    radial-gradient(at 33% 100%, #1ab3a6 0px, transparent 50%),
    radial-gradient(at 66% 100%, #1a99b3 0px, transparent 50%),
    radial-gradient(at 100% 100%, #128ab3 0px, transparent 50%);
  animation: coursesGradientFloat 18s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@keyframes coursesGradientFloat {
  0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
  25%  { transform: translate(-3%, 4%) rotate(2deg) scale(1.04); }
  50%  { transform: translate(4%, -3%) rotate(-2deg) scale(1.06); }
  75%  { transform: translate(-4%, -4%) rotate(1deg) scale(1.03); }
  100% { transform: translate(3%, 3%) rotate(-1deg) scale(1); }
}
.courses__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.courses__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 800px;
  max-width: 100%;
  text-align: center;
}
.courses__eyebrow {
  display: inline-block;
  padding: 8px 16px;
  border: 1.5px solid var(--color-bg);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 800;
  color: var(--color-bg);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.courses__heading {
  font-size: 35px;
  line-height: 1.1;
  color: var(--color-bg);
}
.courses__heading strong { font-weight: 900; }
.courses__heading-light  { font-weight: 300; }

.courses__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Course Card */
.course-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}
.course-card__image {
  aspect-ratio: 321 / 192;
  overflow: hidden;
}
.course-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.course-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
}
.course-card__title {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-dark-text);
  line-height: 1.3;
}
.course-card__desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-dark-text);
  opacity: 0.7;
  line-height: 1.6;
}

.courses__footer-info {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 24px;
  color: var(--color-dark-text);
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 30px;
}
.courses__explore-link {
  font-weight: 800;
  text-decoration: underline;
  color: var(--color-dark-text);
}
.courses__footer-sep { font-weight: 500; opacity: 0.9; }
.courses__counselor-link {
  font-weight: 800;
  text-decoration: underline;
  color: var(--color-dark-text);
}

/* ==========================================================================
   ENQUIRY FORM SECTION
   ========================================================================== */

.enquiry-section {
  position: relative;
  z-index: 1;
  padding: 30px var(--page-padding) 80px;
  scroll-margin-top: 150px;
}
.enquiry-section__inner {
  width: 1350px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.enquiry-section__content {
  flex: 1;
  position: relative;
  z-index: 2;
  min-height: 602px;
  margin-right: -60px;
}
.enquiry-section__illustration {
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  height: 602px;
}
.enquiry-section__illustration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.enquiry-section__text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.enquiry-section__eyebrow {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-brand);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.enquiry-section__heading {
  font-size: 56px;
  color: #fff;
  line-height: 1.1;
  width: 430px;
  max-width: 100%;
}
.enquiry-section__heading-light { font-weight: 300; font-size: 35px; }
.enquiry-section__heading-bold  { font-weight: 900; }
.enquiry-section__subtext {
  font-family: var(--font-body);
  font-size: 20px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  width: 404px;
  max-width: 100%;
}

/* Form */
.enquiry-section__form-wrap {
  width: 600px;
  flex-shrink: 0;
}
.enquiry-form {
  background: rgba(15,17,23,0.32);
  border-radius: 24px;
  padding: 32px 32px 32px 60px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  height: 602px;
}
.enquiry-form__header h3 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.enquiry-form__header p {
  font-size: 14px;
  color: var(--color-dark-text);
}
.enquiry-form__notice {
  padding: 14px 18px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
}
.enquiry-form__notice--success {
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.4);
  color: #15803d;
}
.enquiry-form__notice--error {
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.4);
  color: #b91c1c;
}
.enquiry-form__fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.enquiry-form__row {
  display: flex;
  gap: 16px;
}
.enquiry-form__row .form-field {
  flex: 1;
  min-width: 0;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field label {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.form-field input,
.form-field textarea {
  padding: 0 16px;
  background: #f3f4f6;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 4px;
  font-size: 14px;
  color: #374151;
}
.form-field input { height: 48px; }
.form-field textarea {
  padding-top: 12px;
  padding-bottom: 12px;
  resize: vertical;
  height: 77px;
  font-family: var(--font-body);
  line-height: 1.5;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #6b7280; }
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-brand);
}
.form-field__hint {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-text-muted);
  align-self: flex-end;
}
.enquiry-form__submit {
  height: 40px;
  background: var(--color-brand);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
.enquiry-form__submit:hover  { opacity: 1; transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 24px rgba(249,115,22,0.45); }
.enquiry-form__submit:active { transform: translateY(-1px) scale(0.98); }
.enquiry-form__disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  line-height: 1.5;
}

/* ==========================================================================
   ABOUT — PAGE BANNER
   ========================================================================== */

.about-banner {
  position: relative;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  margin-top: -150px;
  padding-top: 150px;
  padding-bottom: 50px;
}
.about-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-banner__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: aboutBannerZoom 20s ease-in-out infinite alternate;
}
@keyframes aboutBannerZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.12); }
}
.about-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,17,23,0.7) 45%, rgba(15,17,23,0) 100%);
}
.about-banner__content {
  position: relative;
  z-index: 1;
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--page-padding);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.about-banner__eyebrow,
.about-banner__title,
.about-banner__subtitle,
.about-banner__text {
  opacity: 0;
  animation: aboutBannerFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.about-banner__eyebrow  { animation-delay: 0.1s; }
.about-banner__title    { animation-delay: 0.22s; }
.about-banner__subtitle { animation-delay: 0.34s; }
.about-banner__text     { animation-delay: 0.46s; }
@keyframes aboutBannerFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.about-banner__eyebrow {
  display: inline-block;
  padding: 8px 16px;
  border: 1.5px solid #fff;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.about-banner__title {
  font-size: 45px;
  font-weight: 300;
  color: #fff;
}
.about-banner__title strong { font-weight: 900; }
.about-banner__subtitle {
  font-size: 30px;
  font-weight: 300;
  color: #fff;
}
.about-banner__subtitle strong { font-weight: 900; }
.about-banner__text {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  max-width: 900px;
}

/* ==========================================================================
   ABOUT — ZICA / ZIMA SPLIT
   ========================================================================== */

.about-split {
  background: var(--color-bg);
  padding: 30px var(--page-padding) 80px;
}
.about-split__inner {
  max-width: 1350px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.about-split__card {
  display: block;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 45px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}
.about-split__card.about-split-anim-in {
  opacity: 1;
  transform: translateY(0);
}
.about-split__card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.09), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
  pointer-events: none;
}
.about-split__card:hover {
  transform: translateY(-10px) scale(1.015);
  background: rgba(255,255,255,0.06);
  border-color: rgba(249,115,22,0.5);
  box-shadow: 0 24px 48px rgba(249,115,22,0.18);
}
.about-split__card.about-split-anim-in:hover {
  transform: translateY(-10px) scale(1.015);
}
.about-split__card:hover::after { left: 130%; }
.about-split__card:hover .about-split__name { color: var(--color-brand); }
.about-split__card:hover .about-split__cta-arrow { transform: translateX(6px); }
.about-split__tag {
  color: var(--color-brand);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.about-split__name {
  font-size: 35px;
  font-weight: 900;
  color: #fff;
  margin: 12px 0 6px;
  transition: color 0.3s ease;
}
.about-split__tagline {
  font-family: var(--font-script);
  font-size: 22px;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}
.about-split__desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}
.about-split__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-split__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #fff;
}
.about-split__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-brand);
  flex-shrink: 0;
}
.about-split__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  color: var(--color-brand);
}
.about-split__cta-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

/* ==========================================================================
   ABOUT — SIX STRENGTHS
   ========================================================================== */

.about-strengths {
  background: var(--color-bg);
  padding: 0 var(--page-padding) 80px;
}
.about-strengths__inner {
  max-width: 1350px;
  margin: 0 auto;
}
.about-strengths__heading {
  text-align: center;
  font-size: 35px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 48px;
}
.about-strengths__heading strong { font-weight: 900; }
.about-strengths__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.about-strength {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.about-strength:hover {
  transform: translateY(-4px);
  border-color: rgba(249,115,22,0.5);
}
.about-strength__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
}
.about-strength__title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}
.about-strength__desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   ABOUT — DISCOVER CREATIVITY CTA
   ========================================================================== */

.about-cta {
  background: var(--color-bg);
  padding: 80px var(--page-padding);
  text-align: center;
}
.about-cta__inner {
  max-width: 700px;
  margin: 0 auto;
}
.about-cta__heading {
  font-size: 45px;
  font-weight: 300;
  color: #fff;
}
.about-cta__heading strong { font-weight: 900; color: var(--color-brand); }
.about-cta__text {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--color-text-secondary);
  margin: 20px 0 32px;
}
.about-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* ==========================================================================
   ABOUT — LOCATION MAP
   ========================================================================== */

.about-map {
  background: var(--color-bg);
  padding: 0 var(--page-padding) 80px;
}
.about-map__inner {
  max-width: 1350px;
  margin: 0 auto;
}
.about-map__header {
  text-align: center;
  margin-bottom: 32px;
}
.about-map__heading {
  font-size: 35px;
  font-weight: 300;
  color: #fff;
}
.about-map__heading strong { font-weight: 900; color: var(--color-brand); }
.about-map__address {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-secondary);
  margin-top: 12px;
}
.about-map__frame-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  height: 450px;
}
.about-map__frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.about-map__cta {
  text-align: center;
  margin-top: 24px;
}

/* ==========================================================================
   ZICA / ZIMA — PAGE TABS
   ========================================================================== */

.page-tabs {
  background: var(--color-bg);
  padding: 40px var(--page-padding) 0;
}
.page-tabs__inner {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.page-tabs__group {
  display: inline-flex;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 4px;
  gap: 4px;
}
.page-tabs__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 800;
  color: var(--color-text-secondary);
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.page-tabs__tab:hover {
  color: #fff;
}
.page-tabs__tab--active {
  background: var(--color-brand);
  color: #fff;
  box-shadow: 0 6px 16px rgba(249,115,22,0.3);
}
.page-tabs__tab--active:hover {
  color: #fff;
}

/* ==========================================================================
   ZICA COURSES — CATALOG
   ========================================================================== */

.course-catalog {
  background: var(--color-bg);
  padding: 80px var(--page-padding) 40px;
}
.course-catalog__inner {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.course-catalog__category {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.course-catalog__cat-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 16px;
}
.course-catalog__cat-title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}
.course-catalog__cat-duration {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  color: var(--color-brand);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border: 1.5px solid var(--color-brand);
  border-radius: 100px;
}
.course-catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.course-item {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  overflow: hidden;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  scroll-margin-top: 170px;
}
.course-item:hover {
  border-color: rgba(249,115,22,0.4);
  transform: translateY(-4px);
}
.course-item__image {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.course-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.course-item:hover .course-item__image img {
  transform: scale(1.06);
}
.course-item__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  padding: 18px 20px 20px;
}
.course-item__title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}
.course-item__desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.course-item__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 4px;
}
.course-item__arrow {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  opacity: 0.5;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.course-item:hover .course-item__arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* ==========================================================================
   STUDENT WORK — VIDEO SHOWCASE
   ========================================================================== */

.work-video {
  background: var(--color-bg);
  padding: 30px var(--page-padding) 80px;
}
.work-video__inner {
  max-width: 1350px;
  margin: 0 auto;
}
.work-video__heading {
  text-align: center;
  font-size: 35px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 16px;
}
.work-video__heading strong { font-weight: 900; }
.work-video__subtext {
  text-align: center;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto 40px;
}
.work-video__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.work-video__embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: #000;
}
.work-video__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   STUDENT WORK — GALLERY
   ========================================================================== */

.work-gallery {
  background: var(--color-bg);
  padding: 30px var(--page-padding) 80px;
}
.work-gallery__inner {
  max-width: 1350px;
  margin: 0 auto;
}
.work-gallery__heading {
  text-align: center;
  font-size: 35px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 48px;
}
.work-gallery__heading strong { font-weight: 900; }
.work-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.work-gallery__item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.work-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.work-gallery__item:hover img { transform: scale(1.08); }

/* ==========================================================================
   STUDENT WORK — ARTIST OF THE MONTH
   ========================================================================== */

.spotlight {
  background: var(--color-bg);
  padding: 0 var(--page-padding) 80px;
}
.spotlight__inner {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 40px;
}
.spotlight__image {
  width: 280px;
  height: 280px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
}
.spotlight__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.spotlight__badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--color-brand);
  color: #fff;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.spotlight__name {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}
.spotlight__meta {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
}
.spotlight__quote {
  font-family: var(--font-script);
  font-size: 20px;
  font-style: italic;
  color: rgba(255,255,255,0.8);
}

/* ==========================================================================
   BLOG — GRID
   ========================================================================== */

.blog-grid {
  background: var(--color-bg);
  padding: 30px var(--page-padding) 80px;
}
.blog-grid__inner {
  max-width: 1350px;
  margin: 0 auto;
}
.blog-grid__heading {
  text-align: center;
  font-size: 35px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 48px;
}
.blog-grid__heading strong { font-weight: 900; }
.blog-grid__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249,115,22,0.5);
}
.blog-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.blog-card__meta {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-brand);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 800;
}
.blog-card__title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}
.blog-card__excerpt {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}
.blog-card__link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  color: var(--color-brand);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 8px;
}

/* ==========================================================================
   PLACEMENTS PAGE
   ========================================================================== */

.placement-stats {
  background: var(--color-bg);
  padding: 60px var(--page-padding);
}
.placement-stats__grid {
  max-width: 1350px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.placement-stat {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
}
.placement-stat__num {
  display: block;
  font-size: 44px;
  font-weight: 900;
  color: var(--color-brand);
  line-height: 1.1;
}
.placement-stat__label {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-top: 8px;
}

.testimonials {
  background: var(--color-bg);
  padding: 20px var(--page-padding) 80px;
}
.testimonials__inner {
  max-width: 1350px;
  margin: 0 auto;
}
.testimonials__heading {
  text-align: center;
  font-size: 35px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 48px;
}
.testimonials__heading strong { font-weight: 900; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249,115,22,0.5);
}
.testimonial-card__quote {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}
.testimonial-card__person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
}
.testimonial-card__name {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
}
.testimonial-card__role {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-brand);
}

/* ==========================================================================
   SITE FOOTER
   ========================================================================== */

.site-footer {
  background: #080a10;
  color: rgba(255,255,255,0.6);
  padding: 40px var(--page-padding);
  text-align: center;
  font-size: 14px;
}
.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.site-footer__copyright { margin-top: 16px; }
.footer-nav__list {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-nav__list a { color: rgba(255,255,255,0.6); }
.footer-nav__list a:hover { color: var(--color-brand); }

/* ==========================================================================
   WORDPRESS CORE CLASSES
   ========================================================================== */

.alignleft  { float: left;  margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.aligncenter { display: block; margin-inline: auto; }

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

@media (max-width: 1100px) {
  :root { --page-padding: 24px; }

  .hero__content { gap: 20px; }
  .hero__description { font-size: 22px; }

  .why-zica__stat { padding: 30px; }
  .why-zica__num { font-size: 50px; }
  .why-zica__stat-label { font-size: 35px; }

  .work-video__grid { grid-template-columns: repeat(2, 1fr); }
  .courses__grid { grid-template-columns: repeat(2, 1fr); }

  .enquiry-section__form-wrap { width: 480px; }
  .enquiry-form { padding: 28px 21px; }

  .about-split__inner { grid-template-columns: 1fr; }
  .about-strengths__grid { grid-template-columns: repeat(2, 1fr); }

  .course-catalog__grid { grid-template-columns: repeat(2, 1fr); }

  .placement-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }

  .work-video__grid { grid-template-columns: 1fr; }
  .work-gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .spotlight__inner { padding: 30px; }
  .spotlight__image { width: 220px; height: 220px; }

  .blog-grid__list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --page-padding: 16px; }

  .top-bar { display: none; }
  .main-nav { height: 70px; }
  .site-main { padding-top: 70px; }

  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(15,17,23,0.98);
    padding: 16px;
    gap: 0;
    z-index: 999;
  }
  .nav-links.is-open { display: flex; }
  .nav-links__item > a { padding: 12px 0; font-size: 16px; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-links__item--active > a::after { display: none; }
  .main-nav .btn-enquire { display: none; }

  .hero { height: auto; min-height: 500px; padding: 100px 16px 40px; margin-top: -70px; padding-top: 70px; }
  .hero__content { flex-direction: column; gap: 24px; }
  .hero__brand { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero__divider { width: 80px; height: 1px; }
  .hero__titles { font-size: 32px; width: auto; }
  .hero__description { font-size: 18px; line-height: 36px; }
  .hero__badge { width: 80px; }

  .why-zica__grid { grid-template-columns: 1fr; }
  .why-zica__grid::before, .why-zica__grid::after { display: none; }
  .why-zica__stat { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .why-zica__stat:last-child { border-bottom: none; }
  .why-zica__heading { font-size: 28px; }
  .why-zica__num { font-size: 40px; }
  .why-zica__stat-label { font-size: 28px; line-height: 1.2; }
  .why-zica__desc { font-size: 16px; }

  .placements__heading { font-size: 32px; }
  .placements__logos { grid-template-columns: repeat(2, 1fr); }

  .students-section__bg { height: auto; min-height: 500px; }
  .students-section__content { position: relative; padding: 24px 24px 0; }
  .students-section__title { justify-content: flex-start; text-align: left; }
  .students-section__title-bold { font-size: 60px; }
  .students-section__title-script { font-size: 40px; }
  .students-section__row { flex-direction: column; }
  .students-section__desc { font-size: 18px; }

  .courses__grid { grid-template-columns: 1fr; }
  .courses__heading { font-size: 36px; }
  .courses__footer-info { font-size: 16px; flex-direction: column; gap: 8px; }

  .enquiry-section__inner { flex-direction: column; }
  .enquiry-section__form-wrap { width: 100%; }
  .enquiry-form { height: auto; padding: 22px 17px; }
  .enquiry-section__heading { font-size: 36px; }

  .about-banner { height: auto; min-height: 500px; padding: 100px 16px 40px; margin-top: -70px; padding-top: 70px; }
  .about-banner__title { font-size: 32px; }
  .about-banner__subtitle { font-size: 22px; }
  .about-strengths__grid { grid-template-columns: 1fr; }
  .about-cta__heading { font-size: 32px; }
  .about-cta__buttons { flex-direction: column; }
  .about-map__frame-wrap { height: 320px; }
  .about-map__heading { font-size: 28px; }

  .page-tabs { padding: 24px 16px 0; }
  .page-tabs__group { width: 100%; max-width: 360px; }
  .page-tabs__tab { flex: 1; padding: 12px 20px; font-size: 14px; }

  .course-catalog__grid { grid-template-columns: 1fr; }
  .course-catalog__cat-title { font-size: 22px; }

  .placement-stats__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonials__heading { font-size: 28px; }

  .work-video__heading { font-size: 26px; }
  .work-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .spotlight__inner { flex-direction: column; text-align: center; }
  .spotlight__image { width: 100%; height: 240px; }

  .blog-grid__list { grid-template-columns: 1fr; }
}
