/* ═══════════════════════════════════════════════
   THEOZ SCHOOL — MAIN STYLESHEET 2026
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

:root {
  --navy:    #0a1f3a;
  --navy2:   #1a3a5c;
  --gold:    #e8a020;
  --gold2:   #f5c842;
  --white:   #ffffff;
  --light:   #f4f8fd;
  --gray:    #6b7280;
  --dark:    #111827;
  --radius:  16px;
  --shadow:  0 8px 40px rgba(0,0,0,0.1);
  --shadow-hover: 0 16px 50px rgba(0,0,0,0.18);
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: #fff;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }

/* ──────────────────────────────────────────────
   TOP BAR
   ────────────────────────────────────────────── */
.theoz-topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  font-size: 12.5px;
  font-weight: 500;
  padding: 9px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.theoz-topbar__left {
  display: flex;
  gap: 24px;
  align-items: center;
}

.theoz-topbar__left span,
.theoz-topbar__right span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.theoz-topbar__right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.theoz-topbar__badge {
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.theoz-topbar__cta {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700;
  font-size: 12px;
  padding: 5px 16px;
  border-radius: 50px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.theoz-topbar__cta:hover {
  background: var(--gold2);
  transform: translateY(-1px);
}

/* ──────────────────────────────────────────────
   MAIN HEADER
   ────────────────────────────────────────────── */
.theoz-header {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(10,31,58,0.08);
  position: sticky;
  top: 0;
  z-index: 9999;
  transition: var(--transition);
}

.theoz-header.scrolled {
  box-shadow: 0 4px 30px rgba(10,31,58,0.15);
  background: rgba(255,255,255,0.99);
}

.theoz-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo area */
.theoz-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  overflow: hidden;
  width: 56px;
  height: 56px;
}

.theoz-custom-logo-link {
  display: flex;
  align-items: center;
  line-height: 1;
  overflow: hidden;
  width: 56px;
  height: 56px;
}

.theoz-logo-img,
.theoz-logo img,
.theoz-logo .custom-logo-link img,
.theoz-logo img.custom-logo {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  max-width: 56px !important;
  max-height: 56px !important;
  object-fit: contain !important;
  display: block !important;
  flex-shrink: 0;
}

/* School name beside logo */
.theoz-logo-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 1.3;
  margin-left: 10px;
}

.theoz-logo__text {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theoz-logo__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(10,31,58,0.2);
}

.theoz-logo__name {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.theoz-logo__sub {
  font-size: 10px;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 1.3;
  max-width: 160px;
}

/* Nav */
.theoz-nav { flex: 1; }

.theoz-nav .theoz-nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.theoz-nav .theoz-nav__list > li > a {
  display: block;
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: #374151;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.2px;
  position: relative;
}

.theoz-nav .theoz-nav__list > li > a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.theoz-nav .theoz-nav__list > li > a:hover,
.theoz-nav .theoz-nav__list > li.current-menu-item > a {
  color: var(--navy);
  background: rgba(10,31,58,0.05);
}

.theoz-nav .theoz-nav__list > li > a:hover::after,
.theoz-nav .theoz-nav__list > li.current-menu-item > a::after {
  transform: scaleX(1);
}

/* Header Actions */
.theoz-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.theoz-btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy) !important;
  font-weight: 700;
  font-size: 13.5px;
  padding: 11px 24px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(232,160,32,0.35);
  letter-spacing: 0.3px;
  display: inline-block;
  white-space: nowrap;
}

.theoz-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232,160,32,0.5);
  background: linear-gradient(135deg, var(--gold2), var(--gold));
}

/* Hamburger */
.theoz-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
}

.theoz-hamburger:hover { background: rgba(10,31,58,0.06); }

.theoz-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.theoz-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.theoz-hamburger.active span:nth-child(2) { opacity: 0; }
.theoz-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.theoz-mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid #f0f0f0;
  padding: 20px 24px 24px;
}

.theoz-mobile-nav.open { display: block; }

.theoz-mobile-nav__list { list-style: none; padding: 0; margin: 0 0 16px; }
.theoz-mobile-nav__list li { border-bottom: 1px solid #f4f4f4; }
.theoz-mobile-nav__list li a { display: block; padding: 12px 4px; font-size: 15px; font-weight: 600; color: var(--navy); }
.theoz-mobile-apply { display: block; text-align: center; margin-top: 12px; }

/* ──────────────────────────────────────────────
   PAGE TITLE HIDE (Elementor handles it)
   ────────────────────────────────────────────── */
h1.entry-title { display: none !important; }
.page-header { display: none !important; }

/* ──────────────────────────────────────────────
   ELEMENTOR FULL-WIDTH OVERRIDES
   ────────────────────────────────────────────── */

/* Force ALL sections to be full-width — no boxed constraint */
.elementor-section {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Remove the boxed container max-width so backgrounds bleed edge-to-edge */
.elementor-section.elementor-section-boxed > .elementor-container,
.elementor-section > .elementor-container {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Columns: remove default side padding */
.elementor-column > .elementor-widget-wrap {
  padding: 0 !important;
}

/* HTML widgets: no margin, no padding */
.elementor-widget-html {
  margin: 0 !important;
  padding: 0 !important;
}

.elementor-widget-html .elementor-widget-container {
  padding: 0 !important;
  margin: 0 !important;
}

/* Sections: no top/bottom gap between them */
.elementor-section + .elementor-section {
  margin-top: 0 !important;
}

/* Make sure the inner page wrapper doesn't add horizontal padding */
#content, .site-main, .page-content {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
}

.entry-content {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
}

/* ──────────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────────── */
.site-footer, footer.elementor-location-footer { display: none !important; }

.theoz-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  margin-top: 0;
  position: relative;
}

.theoz-footer__wave {
  line-height: 0;
  overflow: hidden;
  background: #f4f8fd;
  margin-bottom: 0;
}

.theoz-footer__wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

.theoz-footer__main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 40px 40px;
}

.theoz-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 50px;
}

.theoz-footer__brand p {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 20px;
  opacity: 0.75;
}

.theoz-footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theoz-footer__logo-badge {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 50%;
  display: block;
}

.theoz-footer__logo-badge .custom-logo-link,
.theoz-footer__logo-badge a {
  display: block;
  width: 70px !important;
  height: 70px !important;
  line-height: 1;
  overflow: hidden;
}

.theoz-footer__logo-badge img,
.theoz-footer__logo-badge .custom-logo-link img {
  width: 70px !important;
  height: 70px !important;
  max-width: 70px !important;
  max-height: 70px !important;
  min-width: unset !important;
  min-height: unset !important;
  object-fit: contain !important;
  display: block !important;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
  transition: transform 0.3s ease;
  border-radius: 50%;
}

.theoz-footer__logo-badge a:hover img { transform: scale(1.06); }

.theoz-footer__logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--navy);
  font-weight: 900;
  flex-shrink: 0;
}

.theoz-footer__logo-name {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.theoz-footer__logo-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

.theoz-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.theoz-footer__social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.theoz-footer__social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

.theoz-footer__heading {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.theoz-footer__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.theoz-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.theoz-footer__links li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.theoz-footer__links li a::before {
  content: '›';
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.theoz-footer__links li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.theoz-footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.theoz-footer__contact li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.theoz-footer__contact-icon { flex-shrink: 0; font-size: 16px; margin-top: 2px; }

.theoz-footer__bottom {
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.07);
}

.theoz-footer__bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ──────────────────────────────────────────────
   ANIMATION HELPERS
   ────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity:0; transform:translateX(-30px); }
  to   { opacity:1; transform:translateX(0); }
}

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

@keyframes float {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-14px); }
}

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(232,160,32,0.4); }
  70%  { box-shadow: 0 0 0 16px rgba(232,160,32,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,160,32,0); }
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes ticker {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.animate-fadeInUp   { animation: fadeInUp  0.8s ease forwards; }
.animate-fadeInLeft { animation: fadeInLeft 0.8s ease forwards; }
.animate-fadeInRight{ animation: fadeInRight 0.8s ease forwards; }

/* ──────────────────────────────────────────────
   HERO SECTION CUSTOM
   ────────────────────────────────────────────── */
.theoz-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #060f1e 0%, #0a1f3a 50%, #122b50 100%);
}

.theoz-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.theoz-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: blur(1px);
}

.theoz-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,15,30,0.92) 0%, rgba(10,31,58,0.85) 60%, rgba(10,31,58,0.6) 100%);
  z-index: 1;
}

/* Animated blobs */
.theoz-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  z-index: 1;
  animation: float 8s ease-in-out infinite;
}

.theoz-hero__blob--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #e8a020, transparent);
  top: -100px; right: -100px;
  animation-delay: 0s;
}

.theoz-hero__blob--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #1a5c9c, transparent);
  bottom: -80px; left: 10%;
  animation-delay: 3s;
}

.theoz-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.theoz-hero__left { }

.theoz-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,160,32,0.12);
  border: 1px solid rgba(232,160,32,0.3);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

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

.theoz-hero__title {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 10px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.theoz-hero__title .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.theoz-hero__divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  border-radius: 2px;
  margin: 20px 0 24px;
  animation: fadeInUp 0.7s ease 0.4s both;
}

.theoz-hero__subtitle {
  font-size: 17px;
  color: rgba(200,216,240,0.85);
  line-height: 1.8;
  margin-bottom: 40px;
  animation: fadeInUp 0.7s ease 0.5s both;
  max-width: 540px;
}

.theoz-hero__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.6s both;
}

.theoz-btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy) !important;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 36px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(232,160,32,0.4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.theoz-btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(232,160,32,0.55);
}

.theoz-btn-outline {
  background: transparent;
  color: #fff !important;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 36px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.25);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.theoz-btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
  background: rgba(232,160,32,0.08);
  transform: translateY(-2px);
}

/* Hero Right: Stats card */
.theoz-hero__right {
  animation: fadeInRight 0.8s ease 0.4s both;
}

.theoz-hero__card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 40px 36px;
  position: relative;
}

.theoz-hero__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(232,160,32,0.1), transparent);
  pointer-events: none;
}

.theoz-hero__card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.theoz-hero__card-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.theoz-hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.theoz-hero__stat { text-align: center; }

.theoz-hero__stat-num {
  font-size: 46px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
}

.theoz-hero__stat-num span { color: var(--gold); }

.theoz-hero__stat-label {
  font-size: 12px;
  color: rgba(200,216,240,0.65);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 6px;
  font-weight: 600;
}

.theoz-hero__card-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

.theoz-hero__card-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.theoz-hero__card-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(200,216,240,0.8);
}

.theoz-hero__card-check-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--gold);
  font-weight: 700;
}

/* Hero scroll indicator */
.theoz-hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}

.theoz-hero__scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  border-radius: 1px;
}

/* ──────────────────────────────────────────────
   SECTION LABEL PATTERN
   ────────────────────────────────────────────── */
.theoz-section {
  padding: 90px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.theoz-section-full {
  padding: 90px 0;
}

.theoz-section__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.theoz-section__tag::before {
  content: '';
  width: 24px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.theoz-section__title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.theoz-section__subtitle {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  max-width: 620px;
}

.theoz-section__subtitle--center {
  text-align: center;
  margin: 0 auto;
}

.theoz-section__title--center { text-align: center; }
.theoz-section__tag--center   { justify-content: center; }

/* ──────────────────────────────────────────────
   ABOUT SECTION
   ────────────────────────────────────────────── */
.theoz-about { background: #fff; }

.theoz-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.theoz-about__img-wrap {
  position: relative;
}

.theoz-about__img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}

.theoz-about__img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.theoz-about__img-main:hover img { transform: scale(1.04); }

.theoz-about__img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 8px 30px rgba(232,160,32,0.4);
  text-align: center;
  min-width: 120px;
}

.theoz-about__img-badge-num {
  font-size: 40px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.theoz-about__img-badge-text {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  opacity: 0.8;
}

.theoz-about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0 36px;
}

.theoz-about__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.theoz-about__feature-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: rgba(232,160,32,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* ──────────────────────────────────────────────
   PROGRAMS
   ────────────────────────────────────────────── */
.theoz-programs-wrap {
  background: var(--light);
  padding: 90px 0;
}

.theoz-programs {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.theoz-programs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.theoz-program-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.theoz-program-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: height 0.3s ease;
}

.theoz-program-card--gold::after   { background: linear-gradient(90deg, var(--gold), var(--gold2)); }
.theoz-program-card--navy::after   { background: linear-gradient(90deg, var(--navy), var(--navy2)); }
.theoz-program-card--teal::after   { background: linear-gradient(90deg, #0ea5e9, #38bdf8); }
.theoz-program-card--purple::after { background: linear-gradient(90deg, #7c3aed, #a78bfa); }

.theoz-program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.theoz-program-card:hover::after { height: 6px; }

.theoz-program-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}

.theoz-program-card--gold   .theoz-program-card__icon { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.theoz-program-card--navy   .theoz-program-card__icon { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.theoz-program-card--teal   .theoz-program-card__icon { background: linear-gradient(135deg, #e0f2fe, #bae6fd); }
.theoz-program-card--purple .theoz-program-card__icon { background: linear-gradient(135deg, #ede9fe, #ddd6fe); }

.theoz-program-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.theoz-program-card__desc {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.theoz-program-card__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
}

.theoz-program-card--gold   .theoz-program-card__badge { background: #fef9ec; color: #c47e00; }
.theoz-program-card--navy   .theoz-program-card__badge { background: #eff6ff; color: var(--navy); }
.theoz-program-card--teal   .theoz-program-card__badge { background: #f0f9ff; color: #0369a1; }
.theoz-program-card--purple .theoz-program-card__badge { background: #f5f3ff; color: #6d28d9; }

/* ──────────────────────────────────────────────
   ACTIVITIES / GALLERY STRIP
   ────────────────────────────────────────────── */
.theoz-activities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.theoz-activity {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.theoz-activity img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.theoz-activity:hover img { transform: scale(1.08); }

.theoz-activity__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,31,58,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.theoz-activity:hover .theoz-activity__overlay { opacity: 1; }

.theoz-activity__label {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ──────────────────────────────────────────────
   WHY CHOOSE US
   ────────────────────────────────────────────── */
.theoz-why-wrap {
  background: #fff;
  padding: 90px 0;
}

.theoz-why {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.theoz-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.theoz-why-card {
  padding: 40px 32px;
  border-radius: 20px;
  background: var(--light);
  border: 1px solid rgba(10,31,58,0.07);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.theoz-why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.theoz-why-card--1::before { background: linear-gradient(90deg, var(--gold), var(--gold2)); }
.theoz-why-card--2::before { background: linear-gradient(90deg, var(--navy), var(--navy2)); }
.theoz-why-card--3::before { background: linear-gradient(90deg, #0ea5e9, #38bdf8); }

.theoz-why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  background: #fff;
}

.theoz-why-card:hover::before { opacity: 1; }

.theoz-why-card__emoji { font-size: 44px; margin-bottom: 18px; }

.theoz-why-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.theoz-why-card__desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
}

/* ──────────────────────────────────────────────
   FACILITIES
   ────────────────────────────────────────────── */
.theoz-facilities-wrap {
  background: var(--navy);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.theoz-facilities-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(232,160,32,0.07), transparent 60%),
              radial-gradient(ellipse at bottom left, rgba(26,58,92,0.3), transparent 60%);
}

.theoz-facilities {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.theoz-facilities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.theoz-facility-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.theoz-facility-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,160,32,0.04), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.theoz-facility-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-5px);
  border-color: rgba(232,160,32,0.2);
}

.theoz-facility-card:hover::after { opacity: 1; }

.theoz-facility-card__icon { font-size: 38px; }

.theoz-facility-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.theoz-facility-card__desc {
  font-size: 13.5px;
  color: rgba(200,216,240,0.65);
  line-height: 1.7;
  flex: 1;
}

/* ──────────────────────────────────────────────
   CTA BANNER
   ────────────────────────────────────────────── */
.theoz-cta-wrap {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.theoz-cta-wrap::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

.theoz-cta-wrap::after {
  content: '';
  position: absolute;
  bottom: -60%; left: -5%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.theoz-cta {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.theoz-cta__title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}

.theoz-cta__sub {
  font-size: 16px;
  color: rgba(10,31,58,0.75);
  line-height: 1.6;
  max-width: 520px;
}

.theoz-cta__btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.theoz-btn-dark {
  background: var(--navy);
  color: #fff !important;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 12px;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(10,31,58,0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-align: center;
  justify-content: center;
}

.theoz-btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(10,31,58,0.4);
  background: #0a2a4e;
}

.theoz-btn-white {
  background: rgba(255,255,255,0.35);
  color: var(--navy) !important;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 32px;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.theoz-btn-white:hover {
  background: rgba(255,255,255,0.55);
  transform: translateY(-2px);
}

/* ──────────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .theoz-topbar { display: none; }
  .theoz-hero__content { grid-template-columns: 1fr; }
  .theoz-hero__right { display: none; }
  .theoz-about__grid { grid-template-columns: 1fr; }
  .theoz-programs__grid { grid-template-columns: 1fr 1fr; }
  .theoz-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .theoz-header__inner { padding: 0 20px; }
  .theoz-nav { display: none; }
  .theoz-hamburger { display: flex; }
  .theoz-programs__grid { grid-template-columns: 1fr 1fr; }
  .theoz-why__grid { grid-template-columns: 1fr; }
  .theoz-facilities__grid { grid-template-columns: 1fr 1fr; }
  .theoz-activities { grid-template-columns: 1fr 1fr; }
  .theoz-cta { flex-direction: column; text-align: center; }
  .theoz-cta__btns { flex-direction: row; }
  .theoz-footer__grid { grid-template-columns: 1fr; }
  .theoz-footer__bottom-inner { flex-direction: column; text-align: center; gap: 8px; }
  .theoz-section, .theoz-programs, .theoz-why, .theoz-facilities, .theoz-cta-wrap { padding-left: 20px; padding-right: 20px; }
}

@media (max-width: 480px) {
  .theoz-programs__grid { grid-template-columns: 1fr; }
  .theoz-facilities__grid { grid-template-columns: 1fr; }
  .theoz-activities { grid-template-columns: 1fr 1fr; }
}
