/* ======================================
   CASPIAN VALLEY – MAIN STYLESHEET
   ====================================== */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:        #0f2c5a;
  --blue-mid:    #1a4080;
  --blue-light:  #2563eb;
  --gold:        #e8941a;
  --gold-light:  #f5b942;
  --green:       #16a34a;
  --purple:      #7c3aed;
  --white:       #ffffff;
  --off-white:   #f8fafc;
  --gray-50:     #f1f5f9;
  --gray-100:    #e2e8f0;
  --gray-300:    #94a3b8;
  --gray-500:    #64748b;
  --gray-700:    #334155;
  --gray-900:    #0f172a;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow:      0 4px 16px rgba(0,0,0,.10), 0 1px 4px rgba(0,0,0,.06);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.06);
  --transition:  0.25s ease;
  --header-h:    70px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-lg { padding: 13px 28px; font-size: 1rem; }

.btn-primary {
  background: var(--gold);
  color: var(--blue);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,148,26,.35);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--blue);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,148,26,.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}

/* ---- Section Helpers ---- */
.section { padding: 96px 0; }
.section-alt { background: var(--off-white); }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(232,148,26,.1);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 520px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-intro { margin: 0 auto; }
.section-footer { text-align: center; margin-top: 48px; }

.text-accent { color: var(--gold); }

/* ======================================
   HEADER
   ====================================== */
.site-header { position: sticky; top: 0; z-index: 1000; }

/* Top bar */
.header-top {
  background: var(--blue);
  color: rgba(255,255,255,.75);
  font-size: 0.78rem;
  padding: 7px 0;
}
.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.header-contact {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.header-contact span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.header-social {
  display: flex;
  gap: 10px;
}
.header-social a {
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
  display: flex;
  align-items: center;
}
.header-social a:hover { color: var(--gold); }

/* Main nav */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: var(--header-h);
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-logo-img {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}
.footer-brand .brand-logo-img { filter: brightness(0) invert(1); }
.brand-logo {
  width: 44px;
  height: 44px;
  background: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-initials {
  color: var(--gold);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.5px;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue);
}
.brand-sub {
  font-size: 0.68rem;
  color: var(--gray-500);
  font-weight: 400;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--blue);
  background: var(--gray-50);
}
.nav-links > li > a.active { font-weight: 600; }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
  padding: 8px;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 8px 12px;
  font-size: 0.875rem;
  color: var(--gray-700);
  border-radius: 6px;
  transition: all var(--transition);
}
.dropdown li a:hover { background: var(--gray-50); color: var(--blue); }

.nav-cta { margin-left: 8px; flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ======================================
   HERO
   ====================================== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h) - 36px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 60%, #0d3575 100%);
}

.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-shapes { position: absolute; inset: 0; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: var(--white);
}
.shape-1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.shape-2 { width: 350px; height: 350px; bottom: -100px; left: -80px; }
.shape-3 { width: 200px; height: 200px; top: 40%; left: 40%; }

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-block;
  background: rgba(232,148,26,.2);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(232,148,26,.3);
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-actions .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.hero-actions .btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-unit { color: var(--gold); font-weight: 700; font-size: 1.2rem; display: inline; }
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,.55);
  margin-top: 3px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}

/* Hero visual cards */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
}

.hero-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 18px 22px;
  transition: all var(--transition);
}
.hero-card:hover {
  background: rgba(255,255,255,.18);
  transform: translateX(4px);
}
.hero-card-main { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.3); }

.card-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.card-icon-gold { background: rgba(232,148,26,.25); color: var(--gold-light); }
.card-icon-green { background: rgba(22,163,74,.2); color: #4ade80; }

.card-info { display: flex; flex-direction: column; gap: 3px; }
.card-info strong { color: var(--white); font-size: 0.95rem; font-weight: 600; }
.card-info span { color: rgba(255,255,255,.6); font-size: 0.8rem; }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 50%;
  color: rgba(255,255,255,.7);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ======================================
   NOTICE BAR
   ====================================== */
.notice-bar {
  display: flex;
  align-items: center;
  background: var(--gold);
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 500;
  overflow: hidden;
  height: 40px;
}
.notice-label {
  flex-shrink: 0;
  background: var(--blue);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 18px;
  height: 100%;
  display: flex;
  align-items: center;
}
.notice-track-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.notice-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.notice-track span {
  padding: 0 40px;
  flex-shrink: 0;
}
.notice-track span::after {
  content: '•';
  margin-left: 40px;
  opacity: 0.5;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ======================================
   ABOUT
   ====================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap { position: relative; }

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray-300);
  border: 2px dashed var(--gray-100);
  font-size: 0.85rem;
}

.about-badge-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
}
.float-badge {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 16px 20px;
  text-align: center;
  border: 1px solid var(--gray-100);
}
.float-year {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--blue);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}
.float-badge span:last-child { font-size: 0.75rem; color: var(--gray-500); }

.about-pillars { display: flex; flex-direction: column; gap: 16px; margin: 28px 0 32px; }
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.pillar-icon {
  width: 40px;
  height: 40px;
  background: rgba(15,44,90,.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.pillar > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pillar strong { color: var(--gray-900); font-size: 0.95rem; }
.pillar span { font-size: 0.85rem; color: var(--gray-500); }

/* ======================================
   PROGRAMS
   ====================================== */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.program-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.program-card-featured {
  background: linear-gradient(145deg, var(--blue) 0%, var(--blue-mid) 100%);
  border-color: transparent;
}
.program-card-featured .program-name { color: var(--white); }
.program-card-featured .program-desc { color: rgba(255,255,255,.7); }
.program-card-featured .program-features li { color: rgba(255,255,255,.8); }
.program-card-featured .program-features svg { stroke: var(--gold); }
.program-card-featured .program-link { color: var(--gold); }

.program-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--gold);
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.program-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.program-icon-blue { background: rgba(37,99,235,.1); color: var(--blue-light); }
.program-icon-gold { background: rgba(232,148,26,.12); color: var(--gold); }
.program-icon-purple { background: rgba(124,58,237,.1); color: var(--purple); }
.program-icon-green { background: rgba(22,163,74,.1); color: var(--green); }

.program-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.program-desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}
.program-features {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 22px;
}
.program-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.825rem;
  color: var(--gray-600, #475569);
}
.program-features svg { stroke: var(--green); flex-shrink: 0; }

.program-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  transition: gap var(--transition);
}
.program-link:hover { text-decoration: underline; }

/* ======================================
   WHY CASPIAN – FEATURES
   ====================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-item {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  background: var(--white);
}
.feature-item:hover {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), var(--shadow);
  transform: translateY(-3px);
}
.feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(15,44,90,.08), rgba(37,99,235,.08));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 16px;
}
.feature-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.feature-item p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ======================================
   NEWS & EVENTS
   ====================================== */
.news-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.news-card-featured { grid-row: 1 / span 2; }

.news-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.news-card:hover .news-img img { transform: scale(1.04); }
.news-img-placeholder {
  background: linear-gradient(135deg, var(--gray-100) 0%, #dde4ef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
}
.news-img-sm { aspect-ratio: 3/1; }

.news-body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
.news-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  background: rgba(15,44,90,.08);
  padding: 3px 9px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.news-tag-green { color: var(--green); background: rgba(22,163,74,.1); }
.news-tag-purple { color: var(--purple); background: rgba(124,58,237,.1); }

.news-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.4;
}
.news-card-featured .news-body h3 { font-size: 1.2rem; }

.news-body h3 a { transition: color var(--transition); }
.news-body h3 a:hover { color: var(--blue); }

.news-body p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 14px;
}
.news-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--gray-300);
}

/* ======================================
   TESTIMONIALS
   ====================================== */
.testimonials-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
}
.testimonials-section .section-label { background: rgba(232,148,26,.2); color: var(--gold-light); }
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-intro { color: rgba(255,255,255,.65); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,.14);
  transform: translateY(-4px);
}
.testimonial-card-accent {
  background: rgba(232,148,26,.15);
  border-color: rgba(232,148,26,.3);
}

.testimonial-quote {
  font-size: 4rem;
  line-height: 0.8;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  margin-bottom: 16px;
  opacity: 0.8;
}
.testimonial-text {
  font-size: 0.925rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.25);
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.author-info { display: flex; flex-direction: column; gap: 2px; }
.author-info strong { color: var(--white); font-size: 0.9rem; }
.author-info span { color: rgba(255,255,255,.55); font-size: 0.78rem; }

/* ======================================
   CTA SECTION
   ====================================== */
.cta-section {
  background: var(--gold);
  padding: 72px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}
.cta-content p {
  color: rgba(15,44,90,.75);
  font-size: 1rem;
  max-width: 500px;
  line-height: 1.6;
}
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.cta-actions .btn-white:hover { background: var(--blue); color: var(--white); }

/* ======================================
   FOOTER
   ====================================== */
.site-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.65);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-sub { color: rgba(255,255,255,.4); }
.footer-brand .brand-logo { background: rgba(255,255,255,.1); }
.footer-tagline {
  margin: 16px 0 20px;
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--blue); }

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
}
.footer-contact svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255,255,255,.35);
}

/* ======================================
   BACK TO TOP
   ====================================== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--blue);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 500;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--gold); color: var(--blue); }

/* ======================================
   INNER PAGE HERO
   ====================================== */
.page-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 12px;
}
.page-hero p {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  max-width: 540px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.85rem;
}
.breadcrumb a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.35); }
.breadcrumb strong { color: rgba(255,255,255,.9); }

/* ======================================
   UTILITIES
   ====================================== */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mb-0 { margin-bottom: 0; }

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

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { order: -1; }
  .about-badge-float { right: 0; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card-featured { grid-row: auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .header-top { display: none; }

  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; align-items: stretch; padding: 16px; border-bottom: 1px solid var(--gray-100); box-shadow: var(--shadow-lg); gap: 2px; z-index: 200; }
  .nav-links.open { display: flex; }
  .nav-links > li > a { border-radius: 8px; }
  .has-dropdown:hover .dropdown { display: none; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--gray-50); margin-top: 4px; display: none; }
  .has-dropdown.open .dropdown { display: block; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .navbar { position: relative; }

  .programs-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-stats { gap: 16px; }
  .stat-divider { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}
