/* ========================================
   GIRIULLA ICTEC — Purple & Silver Theme
   Clean Minimal Design System
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  /* Core Palette — Bright Bold Purple */
  --purple-deep:   #0d0020;
  --purple-dark:   #1e0045;
  --purple-mid:    #6d28d9;
  --purple-bright: #8b5cf6;
  --purple-vivid:  #a855f7;
  --purple-soft:   #c084fc;
  --purple-pale:   #f3e8ff;
  --purple-glow:   #e879f9;

  /* Silver / Neutral */
  --silver-bright: #f0e8ff;
  --silver-mid:    #d8b4fe;
  --silver-dim:    #9d7ec9;
  --white:         #ffffff;
  --off-white:     #faf8ff;

  /* Accent */
  --accent-gold:   #e879f9;
  --accent-glow:   rgba(168,85,247,0.25);

  /* Text */
  --text-primary:  #0d0020;
  --text-mid:      #3b1f6e;
  --text-light:    #9d7ec9;

  /* Surfaces */
  --surface-0:     #ffffff;
  --surface-1:     #faf8ff;
  --surface-2:     #f3e8ff;
  --border:        rgba(139,92,246,0.15);
  --border-strong: rgba(139,92,246,0.3);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET ─── */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--off-white);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--purple-pale); }
::-webkit-scrollbar-thumb { background: var(--purple-bright); border-radius: 3px; }

/* ─── UTILITY ─── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-pad { padding: 100px 0; }

.tag {
  display: inline-block;
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--purple-bright); margin-bottom: 14px;
  position: relative; padding-left: 20px;
}
.tag::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 12px; height: 1px;
  background: var(--purple-bright);
}

.h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1.02; font-weight: 600;
  letter-spacing: -0.02em;
}
.h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08; font-weight: 600;
  letter-spacing: -0.01em;
}
.h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 600;
}
.lead {
  font-size: 16px; color: var(--text-mid); line-height: 1.75;
  font-weight: 300; max-width: 540px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 6px;
  font-family: 'Outfit', sans-serif; font-size: 13px;
  font-weight: 600; letter-spacing: 0.04em; cursor: pointer;
  transition: all 0.25s var(--ease-out); border: none;
}
.btn-primary {
  background: var(--purple-vivid); color: var(--white);
  box-shadow: 0 4px 24px rgba(168,85,247,0.45), 0 0 0 1px rgba(192,132,252,0.2);
}
.btn-primary:hover {
  background: var(--purple-bright);
  box-shadow: 0 8px 36px rgba(168,85,247,0.6), 0 0 0 1px rgba(192,132,252,0.3);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent; color: var(--purple-bright);
  border: 1.5px solid var(--border-strong);
}
.btn-ghost:hover {
  background: var(--purple-pale); border-color: var(--purple-bright);
}
.btn-white {
  background: var(--white); color: var(--purple-bright);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* ════════════════════════════════
   NAVIGATION
   ════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: 64px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: 0 4px 24px rgba(91,33,182,0.08); }

.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 40px;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 11px;
}
.nav-logo-mark {
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, var(--purple-vivid), var(--purple-glow));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: 16px; color: var(--white); letter-spacing: -0.5px;
  box-shadow: 0 4px 16px rgba(168,85,247,0.4);
}
.nav-logo-text { line-height: 1.25; }
.nav-logo-text strong {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text-primary); letter-spacing: 0.01em;
}
.nav-logo-text span {
  font-size: 10px; color: var(--text-light); letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-menu {
  display: flex; align-items: center; gap: 32px; list-style: none;
}
.nav-menu a {
  font-size: 13px; font-weight: 500; color: var(--text-mid);
  letter-spacing: 0.02em; transition: color 0.2s; position: relative;
  padding-bottom: 2px;
}
.nav-menu a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1.5px; background: var(--purple-bright);
  transform: scaleX(0); transition: transform 0.25s var(--ease-out);
  transform-origin: left;
}
.nav-menu a:hover { color: var(--purple-bright); }
.nav-menu a:hover::after { transform: scaleX(1); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text-primary); transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile menu */
.nav-mobile {
  display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 998; flex-direction: column;
  padding: 32px 40px; gap: 8px; overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 18px; font-weight: 500; color: var(--text-primary);
  padding: 14px 0; border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--purple-bright); }

/* ════════════════════════════════
   HERO
   ════════════════════════════════ */
#hero {
  background: var(--purple-deep);
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px; position: relative; overflow: hidden;
}

/* Geometric background */
#hero .geo-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(168,85,247,0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,85,247,0.09) 1px, transparent 1px);
  background-size: 72px 72px;
}
#hero .geo-circle-1 {
  position: absolute; top: -160px; right: -80px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(168,85,247,0.35) 0%, rgba(139,92,246,0.1) 45%, transparent 70%);
  pointer-events: none;
}
#hero .geo-circle-2 {
  position: absolute; bottom: -120px; left: 5%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,121,249,0.2) 0%, rgba(168,85,247,0.08) 50%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center;
}
.hero-left {}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--purple-soft); margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.7s 0.1s var(--ease-out) forwards;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--purple-soft);
  animation: blink 2.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 9.5vw, 120px);
  line-height: 0.95; font-weight: 600; letter-spacing: -0.03em;
  color: var(--white); margin-bottom: 32px;
  opacity: 0; animation: fadeUp 0.7s 0.2s var(--ease-out) forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--purple-soft);
  text-shadow: 0 0 60px rgba(192,132,252,0.6), 0 0 120px rgba(168,85,247,0.3);
}
.hero-title .line-2 {
  display: block; color: rgba(240,232,255,0.75);
  font-size: 0.38em; font-style: normal; font-weight: 400;
  margin-top: 14px; letter-spacing: 0.06em; text-transform: uppercase;
  line-height: 1.5;
}

.hero-desc {
  font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.5);
  line-height: 1.8; max-width: 460px; margin-bottom: 40px;
  opacity: 0; animation: fadeUp 0.7s 0.3s var(--ease-out) forwards;
}

.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.7s 0.4s var(--ease-out) forwards;
}

.hero-right {
  opacity: 0; animation: fadeUp 0.7s 0.5s var(--ease-out) forwards;
}
.hero-stats-card {
  background: rgba(168,85,247,0.08);
  border: 1px solid rgba(192,132,252,0.3);
  border-radius: 16px; padding: 36px 32px;
  display: flex; flex-direction: column; gap: 28px;
  min-width: 200px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 60px rgba(168,85,247,0.15), inset 0 1px 0 rgba(255,255,255,0.05);
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 600; line-height: 1;
  color: var(--purple-soft);
  text-shadow: 0 0 30px rgba(192,132,252,0.5);
  letter-spacing: -0.02em;
}
.hero-stat-label {
  font-size: 10px; color: rgba(255,255,255,0.35);
  letter-spacing: 0.14em; text-transform: uppercase; margin-top: 6px;
}
.hero-stat-divider {
  height: 1px; background: rgba(167,139,250,0.15);
}

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

/* ════════════════════════════════
   ABOUT
   ════════════════════════════════ */
#about { background: var(--off-white); }

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}

.about-info-list { margin-top: 36px; display: flex; flex-direction: column; }
.info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--border);
}
.info-item:first-child { border-top: 1px solid var(--border); }
.info-icon {
  width: 38px; height: 38px; min-width: 38px; border-radius: 8px;
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.info-label {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-light); font-weight: 600; margin-bottom: 4px;
}
.info-value { font-size: 14px; font-weight: 500; color: var(--text-primary); line-height: 1.5; }

/* Highlight cards */
.about-cards { display: flex; flex-direction: column; gap: 18px; }
.about-hl-card {
  background: var(--surface-0); border: 1px solid var(--border);
  border-radius: 14px; padding: 28px 30px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.about-hl-card:hover {
  box-shadow: 0 8px 32px rgba(91,33,182,0.08);
  transform: translateY(-3px);
}
.about-hl-card h4 { font-size: 15px; font-weight: 600; color: var(--text-primary); margin-bottom: 10px; }
.about-hl-card p { font-size: 13.5px; color: var(--text-mid); line-height: 1.72; }
.about-hl-card.dark {
  background: var(--purple-deep); border-color: rgba(167,139,250,0.15);
}
.about-hl-card.dark h4 { color: var(--purple-soft); }
.about-hl-card.dark p { color: rgba(255,255,255,0.5); }

/* ════════════════════════════════
   FACILITIES
   ════════════════════════════════ */
#facilities { background: var(--surface-2); }

.facilities-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.facility-item {
  background: var(--surface-0); border: 1px solid var(--border);
  border-radius: 14px; padding: 36px 30px;
  transition: all 0.3s var(--ease-out);
  position: relative; overflow: hidden;
}
.facility-item::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--purple-bright), var(--purple-soft));
  transform: scaleX(0); transition: transform 0.35s var(--ease-out);
  transform-origin: left;
}
.facility-item:hover {
  box-shadow: 0 12px 40px rgba(91,33,182,0.1);
  transform: translateY(-4px);
}
.facility-item:hover::after { transform: scaleX(1); }
.facility-emoji { font-size: 28px; margin-bottom: 20px; }
.facility-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 600; line-height: 1;
  color: var(--purple-vivid); letter-spacing: -0.02em;
  margin-bottom: 8px;
  text-shadow: 0 0 30px rgba(168,85,247,0.4);
}
.facility-name { font-size: 14px; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
.facility-desc { font-size: 13px; color: var(--text-light); line-height: 1.65; }

/* ════════════════════════════════
   COURSES
   ════════════════════════════════ */
#courses { background: var(--off-white); }

.courses-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 52px;
}
.courses-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.course-card {
  background: var(--surface-0); border: 1px solid var(--border);
  border-radius: 14px; padding: 30px 26px;
  display: flex; flex-direction: column;
  transition: all 0.3s var(--ease-out);
  cursor: default;
}
.course-card:hover {
  border-color: var(--purple-soft);
  box-shadow: 0 8px 32px rgba(91,33,182,0.1);
  transform: translateY(-3px);
}
.course-pill {
  display: inline-block; font-size: 9px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--purple-pale); color: var(--purple-vivid);
  padding: 4px 10px; border-radius: 100px; margin-bottom: 18px;
  width: fit-content; border: 1px solid rgba(168,85,247,0.2);
}
.course-name { font-size: 15px; font-weight: 600; color: var(--text-primary); margin-bottom: 10px; line-height: 1.4; }
.course-desc { font-size: 13px; color: var(--text-light); line-height: 1.68; flex: 1; }
.course-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 22px; font-size: 12px; font-weight: 600;
  color: var(--purple-bright); letter-spacing: 0.04em;
  transition: gap 0.2s;
}
.course-link:hover { gap: 10px; }
.course-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.course-card:hover .course-link svg { transform: translateX(3px); }

/* ════════════════════════════════
   MANAGEMENT / TEAM
   ════════════════════════════════ */
#management { background: var(--purple-deep); }

#management .tag { color: var(--purple-soft); }
#management .tag::before { background: var(--purple-soft); }
#management .h2 { color: var(--white); }

.team-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  margin-bottom: 60px;
}
.team-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(167,139,250,0.15);
  border-radius: 14px; padding: 26px 28px;
  display: flex; gap: 18px; align-items: flex-start;
  transition: all 0.3s var(--ease-out);
}
.team-card:hover {
  background: rgba(167,139,250,0.08);
  border-color: rgba(167,139,250,0.3);
}
.team-avatar {
  width: 48px; height: 48px; min-width: 48px; border-radius: 10px;
  background: linear-gradient(135deg, var(--purple-bright), var(--purple-soft));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 20px;
  font-weight: 600; color: var(--white);
}
.team-card h4 { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.team-role {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--purple-soft); font-weight: 600; margin-bottom: 8px;
}
.team-quals { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.55; }
.team-date { font-size: 11px; color: rgba(255,255,255,0.2); margin-top: 5px; }

/* Staff table */
.staff-label {
  font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600;
  color: var(--white); margin-bottom: 24px;
}
.staff-table {
  width: 100%; border-collapse: collapse;
  background: rgba(255,255,255,0.03); border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(167,139,250,0.12);
}
.staff-table thead tr { background: rgba(124,58,237,0.3); }
.staff-table th {
  padding: 14px 20px; font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--purple-soft); text-align: left;
}
.staff-table td {
  padding: 16px 20px; font-size: 13px; color: rgba(255,255,255,0.6);
  border-top: 1px solid rgba(167,139,250,0.08); vertical-align: top;
  line-height: 1.55;
}
.staff-table td strong { color: rgba(255,255,255,0.9); font-weight: 600; }
.staff-table tr:hover td { background: rgba(167,139,250,0.06); }

/* ════════════════════════════════
   VISION & OBJECTIVES
   ════════════════════════════════ */
#vision { background: var(--off-white); }

.vision-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.vision-block { margin-bottom: 36px; }
.vision-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; color: var(--text-primary);
  margin-bottom: 12px;
}
.vision-block p { font-size: 14.5px; color: var(--text-mid); line-height: 1.78; font-weight: 300; }

.objectives { list-style: none; display: flex; flex-direction: column; gap: 0; }
.obj-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.obj-item:first-child { border-top: 1px solid var(--border); }
.obj-badge {
  width: 28px; height: 28px; min-width: 28px; border-radius: 6px;
  background: var(--purple-pale); color: var(--purple-bright);
  font-size: 12px; font-weight: 700; display: flex;
  align-items: center; justify-content: center;
}
.obj-title { font-size: 14px; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.obj-desc { font-size: 13px; color: var(--text-light); line-height: 1.6; font-weight: 300; }

/* ════════════════════════════════
   CONTACT
   ════════════════════════════════ */
#contact { background: var(--surface-2); }

.contact-layout {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; align-items: start;
}
.contact-items { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  background: var(--surface-0); border: 1px solid var(--border);
  border-radius: 12px; padding: 18px 22px;
  display: flex; align-items: center; gap: 16px;
  transition: box-shadow 0.25s;
}
.contact-card:hover { box-shadow: 0 4px 20px rgba(91,33,182,0.07); }
.contact-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: var(--purple-pale); border-radius: 9px;
  display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.contact-card-label {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-light); font-weight: 600; margin-bottom: 3px;
}
.contact-card-val { font-size: 13.5px; font-weight: 500; color: var(--text-primary); }

/* Form */
.form-card {
  background: var(--surface-0); border: 1px solid var(--border);
  border-radius: 18px; padding: 44px;
  box-shadow: 0 4px 30px rgba(91,33,182,0.06);
}
.form-card h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 28px;
  color: var(--text-primary); margin-bottom: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-mid);
}
.form-input, .form-select, .form-textarea {
  border: 1.5px solid #e5e0f0; border-radius: 8px;
  padding: 11px 16px; font-family: 'Outfit', sans-serif;
  font-size: 14px; color: var(--text-primary);
  background: var(--surface-1); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--purple-bright);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
}
.form-textarea { resize: vertical; min-height: 96px; }
.form-submit {
  width: 100%; padding: 14px; border-radius: 8px;
  background: var(--purple-bright); color: var(--white); border: none;
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 600;
  letter-spacing: 0.04em; cursor: pointer;
  transition: all 0.25s var(--ease-out);
  box-shadow: 0 4px 20px rgba(124,58,237,0.25);
}
.form-submit:hover {
  background: var(--purple-mid); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(124,58,237,0.35);
}
.form-submit.sent {
  background: #059669; box-shadow: 0 4px 20px rgba(5,150,105,0.25);
}

/* ════════════════════════════════
   FOOTER
   ════════════════════════════════ */
#footer {
  background: var(--purple-deep);
  padding: 52px 0 36px;
  border-top: 1px solid rgba(167,139,250,0.1);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 48px; flex-wrap: wrap; margin-bottom: 48px;
}
.footer-brand { max-width: 280px; }
.footer-brand .logo-mark {
  width: 40px; height: 40px; border-radius: 9px;
  background: linear-gradient(135deg, var(--purple-bright), var(--purple-soft));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: 17px; color: var(--white); margin-bottom: 14px;
}
.footer-brand h4 { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.footer-brand p { font-size: 12.5px; color: rgba(255,255,255,0.35); line-height: 1.7; }

.footer-links h5 {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--purple-soft); font-weight: 600; margin-bottom: 16px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px; color: rgba(255,255,255,0.4); transition: color 0.2s;
}
.footer-links a:hover { color: var(--purple-soft); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: rgba(167,139,250,0.6); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--purple-soft); }

/* ════════════════════════════════
   RESPONSIVE
   ════════════════════════════════ */
@media (max-width: 960px) {
  .container { padding: 0 24px; }
  .section-pad { padding: 72px 0; }
  .nav-menu, .nav-cta-btn { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .about-grid, .vision-layout, .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .facilities-row, .courses-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .courses-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
  .facilities-row, .courses-grid { grid-template-columns: 1fr; }
}
