/* ===== Variables ===== */
:root {
  --blue-900: #06294f;
  --blue-700: #0b4f9e;
  --blue-600: #1467c9;
  --blue-500: #2589f5;
  --blue-50: #eaf3fc;
  --orange: #ff9800;
  --orange-dark: #e07e00;
  --gray-900: #1c2733;
  --gray-600: #5b6b7b;
  --gray-100: #f5f8fb;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 28px rgba(11, 79, 158, 0.1);
  --shadow-lg: 0 18px 40px rgba(11, 79, 158, 0.16);
  --transition: all 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Poppins", Arial, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-light {
  background: var(--gray-100);
}

.section-title {
  text-align: center;
  font-size: 2.1rem;
  color: var(--blue-900);
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: var(--gray-600);
  max-width: 720px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}

.eyebrow {
  display: block;
  text-align: center;
  color: var(--orange-dark);
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

/* Scroll-reveal: elements fade/slide in once they enter the viewport (toggled via .in-view by js/script.js) */
.card,
.mv-card,
.scheme-card,
.objective-item,
.gallery-item,
.trust-item,
.why-list li,
.program-item,
.contact-info,
.contact-form,
.values-pills span,
.about-block,
.about-visual,
.reg-table {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.card.in-view,
.mv-card.in-view,
.scheme-card.in-view,
.objective-item.in-view,
.gallery-item.in-view,
.trust-item.in-view,
.why-list li.in-view,
.program-item.in-view,
.contact-info.in-view,
.contact-form.in-view,
.values-pills span.in-view,
.about-block.in-view,
.about-visual.in-view,
.reg-table.in-view {
  opacity: 1;
  transform: translateY(0);
}

.cards-grid .card:nth-child(2) { transition-delay: 0.08s; }
.cards-grid .card:nth-child(3) { transition-delay: 0.16s; }
.cards-grid .card:nth-child(4) { transition-delay: 0.24s; }
.cards-grid .card:nth-child(5) { transition-delay: 0.32s; }
.cards-grid .card:nth-child(6) { transition-delay: 0.4s; }

.mv-grid .mv-card:nth-child(2) { transition-delay: 0.12s; }

.scheme-grid .scheme-card:nth-child(2) { transition-delay: 0.08s; }
.scheme-grid .scheme-card:nth-child(3) { transition-delay: 0.16s; }
.scheme-grid .scheme-card:nth-child(4) { transition-delay: 0.24s; }
.scheme-grid .scheme-card:nth-child(5) { transition-delay: 0.32s; }
.scheme-grid .scheme-card:nth-child(6) { transition-delay: 0.4s; }
.scheme-grid .scheme-card:nth-child(7) { transition-delay: 0.48s; }
.scheme-grid .scheme-card:nth-child(8) { transition-delay: 0.56s; }

.objectives-grid .objective-item:nth-child(2) { transition-delay: 0.06s; }
.objectives-grid .objective-item:nth-child(3) { transition-delay: 0.12s; }
.objectives-grid .objective-item:nth-child(4) { transition-delay: 0.18s; }
.objectives-grid .objective-item:nth-child(5) { transition-delay: 0.24s; }
.objectives-grid .objective-item:nth-child(6) { transition-delay: 0.3s; }
.objectives-grid .objective-item:nth-child(7) { transition-delay: 0.36s; }
.objectives-grid .objective-item:nth-child(8) { transition-delay: 0.42s; }

.gallery-grid .gallery-item:nth-child(2) { transition-delay: 0.06s; }
.gallery-grid .gallery-item:nth-child(3) { transition-delay: 0.12s; }
.gallery-grid .gallery-item:nth-child(4) { transition-delay: 0.18s; }
.gallery-grid .gallery-item:nth-child(5) { transition-delay: 0.24s; }
.gallery-grid .gallery-item:nth-child(6) { transition-delay: 0.3s; }
.gallery-grid .gallery-item:nth-child(7) { transition-delay: 0.36s; }
.gallery-grid .gallery-item:nth-child(8) { transition-delay: 0.42s; }
.gallery-grid .gallery-item:nth-child(9) { transition-delay: 0.48s; }

.trust-strip .trust-item:nth-child(2) { transition-delay: 0.08s; }
.trust-strip .trust-item:nth-child(3) { transition-delay: 0.16s; }
.trust-strip .trust-item:nth-child(4) { transition-delay: 0.24s; }

.why-list li:nth-child(2) { transition-delay: 0.08s; }
.why-list li:nth-child(3) { transition-delay: 0.16s; }
.why-list li:nth-child(4) { transition-delay: 0.24s; }
.why-list li:nth-child(5) { transition-delay: 0.32s; }

.values-pills span:nth-child(2) { transition-delay: 0.06s; }
.values-pills span:nth-child(3) { transition-delay: 0.12s; }
.values-pills span:nth-child(4) { transition-delay: 0.18s; }
.values-pills span:nth-child(5) { transition-delay: 0.24s; }
.values-pills span:nth-child(6) { transition-delay: 0.3s; }

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(255, 152, 0, 0.35);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px) scale(1.03);
}

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--blue-700);
}

.btn-blue {
  background: var(--blue-600);
  color: var(--white);
}

.btn-blue:hover {
  background: var(--blue-700);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
  text-align: center;
}

/* ===== Top bar ===== */
.topbar {
  background: var(--blue-900);
  color: #cfe0f5;
  font-size: 0.85rem;
  padding: 9px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar-left {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.topbar a {
  color: #cfe0f5;
  transition: var(--transition);
}

.topbar a:hover {
  color: var(--orange);
}

.topbar-social {
  display: flex;
  gap: 14px;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 14px rgba(11, 79, 158, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 20px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand img {
  height: 50px;
  width: auto;
  transition: transform 0.35s ease;
}

.brand:hover img {
  transform: rotate(-6deg) scale(1.06);
}

.brand-text h1 {
  font-size: 1.1rem;
  color: var(--blue-900);
  line-height: 1.2;
}

.brand-text span {
  font-size: 0.72rem;
  color: var(--gray-600);
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  padding: 10px 16px;
  font-weight: 600;
  color: var(--gray-900);
  border-radius: 50px;
  transition: var(--transition);
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--blue-50);
  color: var(--blue-700);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.2;
}

.nav-phone strong {
  color: var(--blue-700);
  font-size: 0.98rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--blue-900);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(160deg, var(--blue-50) 0%, #ffffff 60%);
  padding: 70px 0 140px;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1 1 460px;
}

.hero-content .eyebrow {
  text-align: left;
  animation: fadeInUp 0.7s ease both;
}

.hero-content h2 {
  font-size: 2.6rem;
  margin-bottom: 18px;
  line-height: 1.2;
  color: var(--blue-900);
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-content h2 span {
  color: var(--orange);
}

.hero-content p {
  font-size: 1.05rem;
  color: var(--gray-600);
  margin-bottom: 26px;
  max-width: 540px;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-checklist {
  list-style: none;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-checklist li {
  font-weight: 600;
  color: var(--blue-900);
  font-size: 0.95rem;
}

.hero-checklist li::before {
  content: "✓";
  background: var(--orange);
  color: var(--white);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  margin-right: 8px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.4s both;
}

.btn-blue.btn-outline-blue {
  background: var(--white);
  border: 2px solid var(--blue-600);
  color: var(--blue-600);
}

.btn-blue.btn-outline-blue:hover {
  background: var(--blue-600);
  color: var(--white);
}

.hero-image {
  flex: 1 1 320px;
  text-align: center;
  animation: fadeIn 0.9s ease 0.2s both;
}

.hero-image img {
  max-width: 280px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out 1.1s infinite;
}

/* ===== Quick action card (overlaps hero bottom) ===== */
.quick-action {
  max-width: 1180px;
  margin: -90px auto 0;
  padding: 0 20px;
  position: relative;
  z-index: 5;
}

.quick-action-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 34px 38px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.quick-action-card h3 {
  color: var(--blue-900);
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.quick-action-card p {
  color: var(--gray-600);
  font-size: 0.92rem;
}

.quick-action-text {
  flex: 1 1 260px;
}

.quick-action-form {
  flex: 2 1 480px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.quick-action-form select,
.quick-action-form input {
  flex: 1 1 180px;
  padding: 14px 16px;
  border: 1px solid #dbe6f1;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--gray-100);
  color: var(--gray-900);
}

.quick-action-form select:focus,
.quick-action-form input:focus {
  outline: none;
  border-color: var(--blue-600);
}

.quick-action-form button {
  flex: 0 0 auto;
  border: none;
}

/* small inner page hero */
.page-hero {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-hero h2 {
  font-size: 2.1rem;
  margin-bottom: 10px;
  animation: fadeInUp 0.7s ease both;
}

.page-hero p {
  color: #cfe0f5;
  animation: fadeInUp 0.7s ease 0.15s both;
}

.breadcrumb {
  margin-top: 14px;
  font-size: 0.9rem;
  color: #cfe0f5;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.breadcrumb a {
  color: var(--orange);
  font-weight: 600;
}

/* ===== Trust strip ===== */
.trust-strip {
  background: var(--white);
  border-top: 1px solid #eef2f7;
  border-bottom: 1px solid #eef2f7;
  padding: 28px 0;
}

.trust-strip .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--blue-900);
  font-size: 0.92rem;
}

.trust-item .icon-circle {
  width: 38px;
  height: 38px;
  font-size: 1.1rem;
}

/* ===== Mission / Vision ===== */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.mv-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--orange);
}

.mv-card h3 {
  color: var(--blue-900);
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.mv-card p {
  color: var(--gray-600);
}

/* ===== Icon circle ===== */
.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 18px;
  transition: transform 0.35s ease, background 0.35s ease;
}

.card:hover .icon-circle {
  transform: scale(1.12) rotate(-6deg);
  background: var(--orange);
  color: var(--white);
}

/* ===== Cards grid (What we do) ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border: 1px solid #eef2f7;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card h3 {
  color: var(--blue-900);
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.card-link {
  color: var(--blue-600);
  font-weight: 700;
  font-size: 0.9rem;
}

.card-link:hover {
  color: var(--orange-dark);
}

/* ===== Programs list (horizontal cards) ===== */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.program-item {
  background: var(--white);
  border: 1px solid #eef2f7;
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
  font-weight: 700;
  color: var(--blue-900);
}

.program-item:hover {
  box-shadow: var(--shadow);
  border-color: var(--blue-50);
  transform: translateX(4px);
}

.program-item .emoji {
  font-size: 1.5rem;
}

.program-item .arrow {
  margin-left: auto;
  color: var(--orange);
  font-weight: 900;
}

/* ===== Why choose us ===== */
.why-list {
  max-width: 720px;
  margin: 0 auto;
}

.why-list li {
  background: var(--white);
  border-left: 4px solid var(--blue-600);
  padding: 16px 22px;
  margin-bottom: 14px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-list li .check {
  color: var(--orange);
  font-weight: 900;
}

/* ===== Impact strip ===== */
.impact {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: var(--white);
  text-align: center;
  padding: 70px 0;
}

.impact h2 {
  font-size: 1.9rem;
  margin-bottom: 14px;
}

.impact .tagline {
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.impact p {
  max-width: 700px;
  margin: 0 auto;
  color: #cfe0f5;
}

/* ===== Values strip ===== */
.values-strip {
  background: var(--blue-50);
  padding: 30px 0;
}

.values-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.values-pills span {
  background: var(--white);
  color: var(--blue-700);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--blue-600);
}

/* ===== About blocks ===== */
.about-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
}

.about-block.reverse .about-text {
  order: 2;
}

.about-block.reverse .about-visual {
  order: 1;
}

.about-text .eyebrow {
  text-align: left;
}

.about-text h3 {
  color: var(--blue-900);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.about-text p {
  color: var(--gray-600);
  margin-bottom: 12px;
}

.about-visual {
  background: var(--blue-50);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  text-align: center;
}

.about-visual img {
  max-width: 220px;
  margin: 0 auto;
}

/* ===== Registration table ===== */
.reg-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.reg-table tr:nth-child(even) {
  background: var(--gray-100);
}

.reg-table td {
  padding: 16px 22px;
  border-bottom: 1px solid #eef2f7;
}

.reg-table td:first-child {
  font-weight: 700;
  color: var(--blue-900);
  width: 40%;
}

/* ===== Objectives list ===== */
.objectives-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.objective-item {
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  color: var(--blue-900);
}

.objective-item .num {
  background: var(--orange);
  color: var(--white);
  min-width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ===== Scheme cards ===== */
.scheme-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.scheme-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  border-top: 4px solid var(--blue-600);
  transition: var(--transition);
}

.scheme-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.scheme-card .emoji {
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: block;
}

.scheme-card h3 {
  color: var(--blue-900);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.scheme-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-item {
  background: var(--blue-50);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--blue-700);
  font-weight: 700;
  text-align: center;
  padding: 16px;
  border: 2px dashed #b9d4f0;
  gap: 10px;
}

.gallery-item .emoji {
  font-size: 2rem;
}

/* ===== Contact ===== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
}

.contact-info h3 {
  color: var(--blue-900);
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.contact-item .icon-circle {
  margin: 0;
  width: 50px;
  height: 50px;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1rem;
  color: var(--blue-900);
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-weight: 700;
}

.social-icons a:hover {
  background: var(--orange);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
}

.contact-form h3 {
  color: var(--blue-900);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.92rem;
  color: var(--gray-900);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dbe6f1;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  resize: vertical;
  background: var(--gray-100);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-600);
  background: var(--white);
}

/* ===== CTA ===== */
.cta {
  background: linear-gradient(120deg, var(--blue-700), var(--blue-900), var(--blue-700));
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  color: var(--white);
  text-align: center;
  padding: 70px 0;
  position: relative;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta p {
  color: #cfe0f5;
  margin-bottom: 26px;
}

.cta-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  font-weight: 600;
}

.cta-links span {
  color: var(--orange);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--blue-900);
  color: #b6cbe6;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 30px;
  padding: 56px 0 36px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  height: 46px;
  background: var(--white);
  border-radius: 8px;
  padding: 4px;
}

.footer-brand h4 {
  color: var(--white);
  margin-bottom: 4px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: #9fb8da;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--orange);
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.92rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--orange);
}

.footer-col p {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom-left {
  font-size: 0.85rem;
  color: #9fb8da;
}

.legal-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.legal-badges span {
  background: rgba(255, 255, 255, 0.08);
  color: #cfe0f5;
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 600;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .mv-grid,
  .cards-grid,
  .objectives-grid,
  .scheme-grid,
  .gallery-grid,
  .contact-wrap,
  .programs-grid {
    grid-template-columns: 1fr;
  }

  .about-block {
    grid-template-columns: 1fr;
  }

  .about-block.reverse .about-text,
  .about-block.reverse .about-visual {
    order: unset;
  }

  .topbar-left {
    gap: 12px;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 0 20px;
    box-shadow: var(--shadow);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.35s ease;
  }

  .nav-links.open {
    max-height: 400px;
    opacity: 1;
    padding: 10px 20px 20px;
  }

  .nav-links a {
    text-align: center;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-phone {
    display: none;
  }

  .quick-action {
    margin-top: -60px;
  }

  .quick-action-card {
    padding: 26px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 56px 0;
  }

  .hero {
    padding-bottom: 170px;
  }

  .hero-content h2 {
    font-size: 1.9rem;
  }

  .quick-action-form {
    flex-direction: column;
  }

  .quick-action-form select,
  .quick-action-form input,
  .quick-action-form button {
    width: 100%;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }
}
