
:root {
  --navy: #12315d;
  --navy-deep: #0d2243;
  --gold: #c9a564;
  --gold-soft: #f5ead5;
  --ivory: #f8f3ea;
  --sage: #dfe8db;
  --blush: #f8e8e8;
  --white: #ffffff;
  --text: #1d2a3a;
  --muted: #5d6978;
  --border: rgba(18, 33, 54, 0.12);
  --shadow: 0 22px 48px rgba(15, 31, 53, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: linear-gradient(180deg, #fffdfb 0%, #f8f5f0 100%);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

h1, h2, h3, h4, h5 {
  margin: 0 0 0.7em;
  color: var(--navy-deep);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-family: Georgia, "Times New Roman", serif;
}

p { margin: 0; }

.announcement-bar {
  position: relative;
  z-index: 40;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--border);
  color: var(--navy-deep);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.announcement-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  font-weight: 700;
}

.announcement-inner a {
  color: var(--navy);
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 26px rgba(13, 34, 67, 0.04);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  flex: 1;
}

.brand-logo {
  width: 86px;
  height: 86px;
  object-fit: contain;
  border-radius: 18px;
  background: var(--white);
  padding: 8px;
  border: 1px solid rgba(17, 49, 93, 0.08);
  box-shadow: 0 12px 28px rgba(17, 49, 93, 0.08);
}

.brand-copy { min-width: 0; }
.brand-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.32rem, 2vw, 2.1rem);
  color: var(--navy-deep);
  letter-spacing: -0.03em;
}
.brand-copy p {
  margin: 5px 0 0;
  font-size: 0.83rem;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 0.76rem;
  color: var(--navy-deep);
  font-weight: 700;
}

.header-contacts .phone-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.header-contacts a { color: var(--navy-deep); }

.cta-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(18, 49, 93, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-header:hover, .cta-header:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(18, 49, 93, 0.2);
}

.main-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 9px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.main-nav a {
  color: var(--navy-deep);
  padding: 8px 10px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover, .main-nav a:focus-visible {
  background: rgba(18, 49, 93, 0.04);
  color: var(--navy);
  outline: none;
}

.nav-toggle { display: none; }

.social-floating-bar {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1002;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
  padding: 10px 8px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.social-floating-bar a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid rgba(17, 49, 93, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-floating-bar a:hover, .social-floating-bar a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(17, 49, 93, 0.1);
  outline: none;
}

.social-floating-bar svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

.social-floating-bar .facebook { color: #1877f2; }
.social-floating-bar .instagram { color: #d61a8d; }
.social-floating-bar .threads { color: #111827; }
.social-floating-bar .youtube { color: #ff0000; }

.whatsapp-float {
  position: fixed;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  z-index: 1001;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.8);
  box-shadow: 0 18px 32px rgba(37,211,102,0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover, .whatsapp-float:focus-visible {
  transform: translateY(-50%) translateY(-2px);
  box-shadow: 0 18px 36px rgba(37,211,102,0.32);
  outline: none;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  display: block;
}

.ahana-chatbot {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: "Segoe UI", Arial, sans-serif;
}

.ahana-chatbot.hidden { display: none; }

.ahana-chatbot__launcher {
  position: relative;
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  box-shadow: 0 18px 32px rgba(17, 49, 93, 0.2);
}

.ahana-chatbot__launcher svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
  display: block;
}

.ahana-chatbot__panel {
  position: absolute;
  bottom: 82px;
  left: 50%;
  transform: translateX(-50%);
  width: min(360px, calc(100vw - 30px));
  background: rgba(255,255,255,0.98);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 42px rgba(17, 49, 93, 0.12);
}

.ahana-chatbot__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(135deg, rgba(17, 49, 93, 0.04), rgba(201, 165, 100, 0.13));
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

.ahana-chatbot__header strong {
  display: block;
  color: var(--navy-deep);
  font-size: 1rem;
}

.ahana-chatbot__header span {
  color: var(--muted);
  font-size: 0.72rem;
}

.ahana-chatbot__close {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 49, 93, 0.06);
  color: var(--navy-deep);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.ahana-chatbot__messages {
  max-height: 300px;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
}

.ahana-chatbot__message {
  max-width: 90%;
  padding: 10px 12px;
  border-radius: 14px;
  line-height: 1.5;
  font-size: 0.92rem;
}

.ahana-chatbot__message--bot {
  align-self: flex-start;
  background: #f3f6ff;
  color: var(--navy-deep);
  border-top-left-radius: 4px;
}

.ahana-chatbot__message--user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  border-top-right-radius: 4px;
}

.ahana-chatbot__quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.ahana-chatbot__quick-actions button {
  border: 1px solid rgba(17, 49, 93, 0.12);
  background: #f5f7ff;
  color: var(--navy-deep);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
}

.ahana-chatbot__links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px 14px;
  border-bottom: 1px solid var(--border);
}

.ahana-chatbot__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  border-radius: 999px;
  background: rgba(17, 49, 93, 0.04);
  color: var(--navy-deep);
  padding: 9px 10px;
  font-size: 0.76rem;
  font-weight: 700;
}

.ahana-chatbot__composer {
  display: flex;
  gap: 8px;
  padding: 12px 16px 16px;
}

.ahana-chatbot__composer input {
  flex: 1;
  border: 1px solid rgba(17, 49, 93, 0.12);
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--text);
  outline: none;
}

.ahana-chatbot__composer button,
.ahana-chatbot__cta {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
}

.ahana-chatbot__cta-row {
  margin-top: 6px;
}

main, .page-main { overflow: hidden; }

.section {
  padding: 88px 24px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  padding: 8px 14px;
  background: rgba(17, 49, 93, 0.06);
  color: var(--navy-deep);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.eyebrow-soft {
  display: inline-block;
  margin: 0 0 18px;
  background: rgba(201, 165, 100, 0.14);
  color: var(--navy-deep);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.hero {
  padding: 72px 24px 56px;
  background: linear-gradient(180deg, rgba(248, 243, 234, 0.95), rgba(255,255,255,0.92));
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 44px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 18px;
  color: var(--navy-deep);
  font-size: clamp(2.75rem, 5vw, 5rem);
  max-width: 680px;
}

.hero-copy .headline-accent {
  display: block;
  color: var(--navy);
}

.hero-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.primary-btn, .secondary-btn, .outline-btn, .mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.primary-btn {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  box-shadow: 0 18px 32px rgba(17, 49, 93, 0.18);
}

.secondary-btn {
  background: var(--white);
  color: var(--navy-deep);
  border: 1px solid var(--border);
  box-shadow: 0 12px 24px rgba(17, 49, 93, 0.06);
}

.outline-btn {
  background: transparent;
  color: var(--navy-deep);
  border: 1px solid rgba(17, 49, 93, 0.15);
}

.mini-btn {
  padding: 10px 15px;
  background: rgba(17, 49, 93, 0.04);
  color: var(--navy-deep);
  border: 1px solid rgba(17, 49, 93, 0.08);
  font-size: 0.8rem;
}

.primary-btn:hover, .secondary-btn:hover, .outline-btn:hover, .mini-btn:hover,
.primary-btn:focus-visible, .secondary-btn:focus-visible, .outline-btn:focus-visible, .mini-btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--border);
  color: var(--navy-deep);
  font-size: 0.82rem;
  font-weight: 700;
}

.trust-item::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--navy) 100%);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-card {
  position: relative;
  width: min(100%, 540px);
  padding: 18px;
  border-radius: 30px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(17, 49, 93, 0.08);
  box-shadow: 0 28px 52px rgba(17, 49, 93, 0.11);
}

.hero-visual-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
}

.hero-badge {
  position: absolute;
  right: -10px;
  bottom: 26px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(17, 49, 93, 0.08);
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: 0 18px 30px rgba(17, 49, 93, 0.12);
}

.hero-badge strong {
  display: block;
  color: var(--navy-deep);
  font-size: 1.45rem;
  line-height: 1.1;
}

.hero-badge span {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-head h2, .section-head h3 {
  margin: 0;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  color: var(--navy-deep);
}

.section-head p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
}

.editorial-copy {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.9;
}

.editorial-copy p + p { margin-top: 18px; }

.editorial-aside {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(249,246,242,0.9));
  padding: 18px;
  box-shadow: var(--shadow);
}

.editorial-aside img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 22px;
}

.feature-grid, .program-grid, .reasons-grid, .team-grid, .gallery-grid, .recognition-grid, .contact-grid {
  display: grid;
  gap: 22px;
}

.feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.program-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.reasons-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.team-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.recognition-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.contact-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card, .program-card, .reason-card, .team-card, .gallery-tile, .recognition-card, .contact-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(17, 49, 93, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 32px rgba(17,49,93,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover, .program-card:hover, .reason-card:hover, .team-card:hover, .gallery-tile:hover, .recognition-card:hover, .contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(17,49,93,0.09);
}

.card {
  padding: 26px 22px;
}

.card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(201,165,100,0.16), rgba(17,49,93,0.05));
  color: var(--navy-deep);
  font-weight: 800;
  margin-bottom: 18px;
}

.card h3, .card h4 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  color: var(--navy-deep);
}

.card p, .program-card p, .reason-card p, .team-card p, .recognition-card p, .contact-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.96rem;
}

.program-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 18px 18px;
  min-height: 100%;
}

.program-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(17, 49, 93, 0.05);
  color: var(--navy-deep);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-card h3 {
  margin: 0;
  font-size: 1.28rem;
  color: var(--navy-deep);
}

.program-age {
  color: var(--navy);
  font-weight: 800;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}

.program-card .mini-btn {
  margin-top: auto;
}

.why-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: center;
}

.reason-card {
  padding: 20px 18px;
}

.reason-card h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.reason-card::before {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--navy) 100%);
  margin-bottom: 12px;
}

.gallery-panel {
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.97), rgba(248,243,234,0.9));
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-tile {
  overflow: hidden;
}

.gallery-tile img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-tile:hover img {
  transform: scale(1.03);
}

.gallery-tile.tall img { height: 360px; }
.gallery-tile.wide img { height: 240px; }

.trust-feature {
  background: linear-gradient(180deg, rgba(17,49,93,0.04), rgba(201,165,100,0.08));
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px 24px;
}

.recognition-card {
  padding: 24px 20px;
}

.recognition-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201,165,100,0.18), rgba(17,49,93,0.06));
  color: var(--navy-deep);
  font-weight: 800;
  margin-bottom: 16px;
}

.recognition-card h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.cta-panel {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(17,49,93,0.04), rgba(201,165,100,0.1));
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 42px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-panel h2, .cta-panel h3 {
  margin: 0 0 12px;
  color: var(--navy-deep);
  font-size: clamp(2.05rem, 3vw, 3.3rem);
}

.cta-panel p {
  margin: 0 auto 22px;
  max-width: 700px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.page-hero {
  padding: 62px 24px 50px;
  background: linear-gradient(180deg, rgba(248,243,234,0.96), rgba(255,255,255,0.92));
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-hero-inner h1 {
  margin: 0 0 14px;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  color: var(--navy-deep);
}

.page-intro {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.site-footer {
  background: linear-gradient(180deg, #fff 0%, #f6f3ee 100%);
  border-top: 1px solid var(--border);
  color: var(--text);
  padding: 44px 24px 18px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.9fr 1.2fr;
  gap: 28px;
  align-items: center;
}

.footer-column {
  min-height: 100%;
}

.footer-title {
  margin: 0 0 12px;
  font-family: "Segoe UI", Arial, sans-serif;
  letter-spacing: 0.02em;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--navy-deep);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
  font-size: 0.96rem;
}

.footer-list li {
  color: var(--muted);
}

.footer-list a { color: var(--navy-deep); }

.footer-chat-slot {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom {
  max-width: 1200px;
  margin: 26px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(17,49,93,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--navy-deep);
  font-size: 0.82rem;
  font-weight: 700;
}

.footer-copyright {
  flex: 1;
  min-width: 220px;
}

.footer-designer {
  margin-left: auto;
  min-width: 150px;
  text-align: right;
}

.inner-contact-pill,
.inner-visit-pill,
.visit-us-float {
  display: none !important;
}

.page-shell {
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(248,243,234,0.7));
}

.page-section {
  padding: 82px 24px;
}

.inner-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 22px 18px;
  min-height: 100%;
}

.team-card img {
  width: 100%;
  max-width: 280px;
  height: 320px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
  margin: 0 auto 18px;
}

.team-role {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(17, 49, 93, 0.06);
  color: var(--navy-deep);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 12px;
}

.team-card h4 {
  margin: 0 0 10px;
  text-align: center;
  color: var(--navy-deep);
}

.team-card p {
  text-align: center;
  margin: 0;
}

.contact-visual-layout,
.admission-visual-layout {
  display: grid;
  gap: 26px;
  align-items: center;
}

.contact-visual-layout {
  grid-template-columns: 1.08fr 0.92fr;
}

.admission-visual-layout {
  grid-template-columns: 0.88fr 1.12fr;
}

.premium-form-panel,
.premium-visual-panel {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.premium-form-panel {
  padding: 28px;
}

.premium-visual-panel {
  overflow: hidden;
  min-height: 100%;
  padding: 0;
}

.premium-visual-panel img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  display: block;
  border-radius: 28px;
}

.premium-form {
  display: block;
}

.premium-form .form-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-header {
  margin-bottom: 22px;
}

.form-header h3 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--navy-deep);
}

.form-header p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 4px;
}

.form-section h4 {
  margin: 0;
  color: var(--navy-deep);
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.field-grid {
  display: grid;
  gap: 16px;
}

.field-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-group label {
  color: var(--navy-deep);
  font-size: 0.82rem;
  font-weight: 700;
}

.premium-form input,
.premium-form select,
.premium-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 49, 93, 0.12);
  border-radius: 14px;
  background: rgba(255,255,255,0.9);
  padding: 12px 14px;
  font: inherit;
  color: var(--text);
  min-height: 48px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.premium-form textarea {
  min-height: 120px;
  resize: vertical;
}

.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
  outline: none;
  border-color: rgba(17, 49, 93, 0.3);
  box-shadow: 0 0 0 4px rgba(17, 49, 93, 0.06);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--navy);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.field-error {
  min-height: 18px;
  font-size: 0.75rem;
  color: #b42318;
}

.form-success {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(148, 201, 152, 0.14);
  border: 1px solid rgba(46, 125, 50, 0.18);
  color: var(--navy-deep);
  font-weight: 700;
}

body.inner-page {
  background: linear-gradient(180deg, #fffdfb 0%, #f8f5f0 100%);
}

body.inner-page main,
body.inner-page .page-main {
  padding-bottom: 120px;
}

.inner-contact-pill,
.inner-visit-pill {
  position: fixed;
  bottom: 20px;
  z-index: 1002;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(17, 49, 93, 0.12);
  box-shadow: 0 18px 30px rgba(17, 49, 93, 0.12);
  text-decoration: none;
  color: var(--navy-deep);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.inner-contact-pill {
  left: 20px;
  line-height: 1.1;
  padding: 12px 18px;
}

.inner-contact-pill span {
  display: none;
}

.inner-visit-pill {
  right: 20px;
}

.inner-contact-pill:hover,
.inner-visit-pill:hover,
.inner-contact-pill:focus-visible,
.inner-visit-pill:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(17, 49, 93, 0.15);
  outline: none;
}

body.inner-page .whatsapp-float {
  left: 20px;
  bottom: 88px;
}

body.inner-page .ahana-chatbot {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
}

body.inner-page .social-floating-bar {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.about-director-showcase {
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  gap: 34px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-director-photo {
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.about-director-photo img {
  width: 100%;
  max-width: 420px;
  height: 500px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: 24px;
}

.about-director-copy {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px 30px;
  box-shadow: var(--shadow);
}

.about-director-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.8;
}

.about-director-copy h3 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 2.8vw, 3rem);
  color: var(--navy-deep);
}

.about-director-copy strong {
  color: var(--navy-deep);
}

.recognition-main {
  padding-bottom: 110px;
}

.recognition-hero {
  padding: 70px 24px 50px;
  background: linear-gradient(180deg, rgba(248,243,234,0.96), rgba(255,255,255,0.92));
  border-bottom: 1px solid var(--border);
}

.recognition-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-label {
  display: inline-block;
  margin: 0 0 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(201, 165, 100, 0.12);
  color: var(--navy-deep);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.recognition-hero-inner h1 {
  margin: 0 auto 16px;
  max-width: 860px;
  font-size: clamp(2.6rem, 4vw, 4.6rem);
  color: var(--navy-deep);
}

.recognition-hero-inner p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.8;
}

.recognition-section {
  padding: 76px 24px 0;
}

.recognition-section .section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.compact-head {
  margin-bottom: 28px;
  text-align: left;
  max-width: 100%;
}

.compact-head h2 {
  font-size: clamp(2rem, 2.5vw, 2.8rem);
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.media-card,
.accreditation-card,
.partner-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(17, 49, 93, 0.09);
  border-radius: 24px;
  box-shadow: 0 18px 30px rgba(17, 49, 93, 0.05);
  overflow: hidden;
}

.card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(17,49,93,0.03), rgba(201,165,100,0.06));
  border-bottom: 1px solid rgba(17, 49, 93, 0.08);
  color: var(--navy-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
}

.card-logo img {
  display: block;
  max-width: 100%;
  max-height: 58px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(17, 49, 93, 0.08));
}

.card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 18px 18px 20px;
}

.card-copy h3 {
  margin: 0;
  font-size: 1.06rem;
  color: var(--navy-deep);
}

.card-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.closing-shell {
  max-width: 1200px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, rgba(17,49,93,0.04), rgba(201,165,100,0.08));
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px 30px;
  box-shadow: var(--shadow);
}

.closing-copy h2 {
  margin: 0 0 12px;
  color: var(--navy-deep);
  font-size: clamp(2rem, 3vw, 3rem);
}

.closing-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.recognition-footer {
  padding-top: 38px;
}

.recognition-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--navy-deep);
  font-size: 0.8rem;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .program-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .recognition-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-director-showcase { grid-template-columns: 1fr; }
  .closing-shell { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .header-inner { flex-wrap: wrap; }
  .header-meta { width: 100%; justify-content: space-between; }
  .header-contacts { align-items: flex-start; }
  .hero-inner, .editorial-grid, .why-wrap, .contact-visual-layout, .admission-visual-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .premium-visual-panel img { min-height: 420px; }
}

@media (max-width: 720px) {
  .announcement-inner { flex-direction: column; gap: 5px; }
  .site-header { position: static; }
  .header-inner { padding: 14px 16px; }
  .header-meta { flex-direction: column; align-items: flex-start; }
  .brand-wrap { width: 100%; }
  .brand-logo { width: 72px; height: 72px; }
  .main-nav {
    display: none;
    padding: 0 16px 16px;
    justify-content: flex-start;
    background: rgba(255,255,255,0.96);
  }
  .main-nav.open { display: flex; }
  .nav-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(17,49,93,0.12);
    background: var(--white);
    color: var(--navy-deep);
    box-shadow: 0 8px 16px rgba(17,49,93,0.08);
  }
  .main-nav a { width: 100%; }
  .social-floating-bar { right: 10px; bottom: 90px; top: auto; transform: none; gap: 8px; padding: 8px; }
  .social-floating-bar a { width: 38px; height: 38px; }
  .whatsapp-float { left: 12px; bottom: 16px; width: 52px; height: 52px; }
  .visit-us-float { right: 12px; bottom: 16px; padding: 12px 14px; font-size: 0.64rem; }
  .inner-contact-pill,
  .inner-visit-pill {
    bottom: 16px;
    padding: 10px 12px;
    font-size: 0.58rem;
  }
  .inner-contact-pill { left: 12px; }
  .inner-visit-pill { right: 12px; }
  body.inner-page .whatsapp-float { left: 12px; bottom: 80px; }
  .ahana-chatbot { left: 50%; bottom: 16px; transform: translateX(-50%); }
  .ahana-chatbot__panel { bottom: 72px; }
  .hero, .section, .page-section { padding-left: 16px; padding-right: 16px; }
  .hero-copy h1 { max-width: 100%; }
  .hero-visual-card img { height: 360px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .primary-btn, .secondary-btn, .outline-btn, .mini-btn { width: 100%; }
  .field-grid.two-col { grid-template-columns: 1fr; }
  .premium-form-panel { padding: 18px; }
  .feature-grid, .program-grid, .reasons-grid, .team-grid, .gallery-grid, .recognition-grid, .contact-grid, .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-designer { margin-left: 0; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
