/* ===================================
   HOMEPAGE CSS STYLES
   Modern Landing Page Design
   =================================== */

/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===================================
   NAVIGATION STYLES
   (Defined in madani-public.css for brand consistency)
   =================================== */

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 600px;
}

.hero-text {
  color: white;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: slideInLeft 1s ease-out;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.6;
  animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  animation: slideInLeft 1s ease-out 0.4s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  gap: 8px;
}

.btn-primary {
  background: white;
  color: #2563eb;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* Hero Graphics */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInRight 1s ease-out 0.6s both;
}

.hero-graphic {
  position: relative;
  width: 400px;
  height: 400px;
}

.main-graphic {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
}

.graphic-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.05)
  );
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: float 6s ease-in-out infinite;
}

.graphic-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 12px;
  animation: pulse 2s ease-in-out infinite;
}

.floating-card {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 15px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #333;
}

.floating-card i {
  color: #2563eb;
  font-size: 1.2rem;
}

.card-1 {
  top: 20%;
  left: 10%;
  animation: float 4s ease-in-out infinite;
}

.card-2 {
  top: 60%;
  right: 10%;
  animation: float 4s ease-in-out infinite 1s;
}

.card-3 {
  bottom: 20%;
  left: 20%;
  animation: float 4s ease-in-out infinite 2s;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.hero-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

/* ===================================
   STATS SECTION
   =================================== */
.stats-section {
  padding: 4rem 0;
  background: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #2563eb;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: #64748b;
  font-weight: 500;
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features {
  padding: 6rem 0;
  background: #f8fafc;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #64748b;
  line-height: 1.6;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
  padding: 6rem 0;
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-text p {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.about-list {
  list-style: none;
  margin-bottom: 2.5rem;
}

.about-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: #374151;
}

.about-list i {
  color: #10b981;
  margin-right: 1rem;
  font-size: 1.2rem;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-placeholder {
  width: 400px;
  height: 300px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.image-placeholder i {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.image-placeholder p {
  font-size: 1.125rem;
  font-weight: 500;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
  padding: 6rem 0;
  background: #f8fafc;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-item i {
  color: #2563eb;
  font-size: 1.5rem;
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.contact-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #64748b;
  line-height: 1.5;
}

.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-loading {
  display: none !important;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: #1e293b;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 300px;
}

.brand-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.brand-logo i {
  color: #2563eb;
  margin-right: 0.5rem;
}

.footer-brand p {
  color: #94a3b8;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #94a3b8;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: white;
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media screen and (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  /* Mobile Navigation — handled by madani-public.css */

  /* Hero Section */
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-graphic {
    width: 300px;
    height: 300px;
  }

  .floating-card {
    font-size: 0.875rem;
    padding: 10px 15px;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  /* About */
  .about-text h2 {
    font-size: 2rem;
  }

  .image-placeholder {
    width: 100%;
    max-width: 350px;
    height: 250px;
  }

  /* Footer */
  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* Spacing adjustments */
  .container {
    padding: 0 15px;
  }

  .features,
  .about,
  .contact {
    padding: 4rem 0;
  }
}

@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-graphic {
    width: 250px;
    height: 250px;
  }

  .floating-card {
    font-size: 0.75rem;
    padding: 8px 12px;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .about-text h2 {
    font-size: 1.75rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* Print Styles */
@media print {
  .navbar,
  .hero-wave,
  .contact-form,
  .footer {
    display: none;
  }

  .hero {
    background: white;
    color: black;
    min-height: auto;
    padding: 2rem 0;
  }

  .hero-title,
  .section-header h2,
  .about-text h2 {
    color: black;
  }
}

/* ===========================================
   MADANI ACADEMY � Public page styles
   Additions for About / Admissions / Contact
   pages, brand color, page-header, etc.
   =========================================== */

:root {
  --brand-primary: #1f7a4d; /* deep emerald */
  --brand-secondary: #c9a227; /* warm gold */
  --brand-dark: #0e3b2a;
  --brand-light: #f4f8f6;
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --border-color: #e5e7eb;
}

body.public-landing {
  background: #ffffff;
  color: var(--text-dark);
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
}

/* ===========================================
   HERO
   =========================================== */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #e9f5ef 0%, #fdfaf0 100%);
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  color: var(--brand-primary);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 12px;
}
.hero-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.15;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 18px;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 22px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 28px;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.hero-meta i {
  color: var(--brand-primary);
  margin-right: 6px;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-graphic {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto;
}
.hero-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 200px;
  z-index: 2;
}
.graphic-circle {
  position: absolute;
  inset: 0;
  border: 2px dashed var(--brand-primary);
  border-radius: 50%;
  opacity: 0.4;
  animation: spin 30s linear infinite;
}
.graphic-shape {
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(31, 122, 77, 0.08),
    rgba(201, 162, 39, 0.08)
  );
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 120px 0 60px;
  }
  .hero-graphic {
    width: 240px;
    height: 240px;
  }
}

/* ===========================================
   BUTTONS
   =========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}
.btn-primary {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
}
.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}
.btn-secondary:hover {
  background: var(--brand-primary);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--brand-dark);
  border-color: #fff;
}
.btn-light:hover {
  background: var(--brand-light);
  color: var(--brand-dark);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--brand-dark);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ===========================================
   STATS
   =========================================== */
.stats-section {
  padding: 60px 0;
  background: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
}
.stat-item {
  padding: 20px;
}
.stat-number {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1;
}
.stat-label {
  color: var(--text-muted);
  margin-top: 6px;
  font-size: 0.95rem;
}

/* ===========================================
   FEATURES
   =========================================== */
.features {
  padding: 80px 0;
  background: #fafafa;
}
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header h2 {
  font-size: 2.1rem;
  color: var(--brand-dark);
  margin-bottom: 12px;
}
.section-header p {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature-card {
  background: #fff;
  padding: 30px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
}
.feature-card h3 {
  color: var(--brand-dark);
  margin-bottom: 8px;
  font-size: 1.15rem;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===========================================
   HIGHLIGHTS
   =========================================== */
.highlights {
  padding: 80px 0;
  background: #fff;
}
.highlights-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 768px) {
  .highlights-container {
    grid-template-columns: 1fr;
  }
}
.highlights-text h2 {
  font-size: 1.9rem;
  color: var(--brand-dark);
  margin-bottom: 16px;
}
.highlights-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
}
.highlights-list {
  list-style: none;
  padding: 0;
}
.highlights-list li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-dark);
}
.highlights-list i {
  color: var(--brand-primary);
  font-size: 1.1rem;
}

/* ===========================================
   CTA BAND
   =========================================== */
.cta {
  background: linear-gradient(
    135deg,
    var(--brand-primary) 0%,
    var(--brand-dark) 100%
  );
  color: #fff;
  padding: 60px 0;
}
.cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.cta h2 {
  font-size: 1.7rem;
  margin-bottom: 6px;
}
.cta p {
  opacity: 0.9;
}
.cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===========================================
   PAGE HEADER (sub-pages)
   =========================================== */
.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #e9f5ef 0%, #fdfaf0 100%);
  text-align: center;
}
.page-header h1 {
  font-size: 2.4rem;
  color: var(--brand-dark);
  margin-bottom: 10px;
}
.page-header p {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* ===========================================
   ABOUT
   =========================================== */
.about-section {
  padding: 60px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 30px;
}
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}
.about-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.about-card h2 {
  color: var(--brand-dark);
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.about-card h2 i {
  color: var(--brand-primary);
  margin-right: 8px;
}
.info-list {
  list-style: none;
  padding: 0;
}
.info-list li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--border-color);
}
.info-list li:last-child {
  border-bottom: none;
}
.about-mission p {
  color: var(--text-muted);
  line-height: 1.7;
}

.values-section {
  padding: 60px 0;
  background: var(--brand-light);
}
.text-center {
  text-align: center;
}
.values-section h2 {
  color: var(--brand-dark);
  margin-bottom: 30px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.value-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.value-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.value-card h3 {
  color: var(--brand-dark);
  margin-bottom: 6px;
}
.value-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===========================================
   ADMISSIONS
   =========================================== */
.admission-section {
  padding: 60px 0;
}
.step-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 30px auto 0;
  counter-reset: step;
}
.step-item {
  display: flex;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 22px;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.step-number {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.step-body h3 {
  color: var(--brand-dark);
  margin-bottom: 4px;
}
.step-body p {
  color: var(--text-muted);
}

.documents-section {
  padding: 60px 0;
  background: var(--brand-light);
}
.docs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 768px) {
  .docs-grid {
    grid-template-columns: 1fr;
  }
}
.documents-section h2 {
  color: var(--brand-dark);
  margin-bottom: 10px;
}
.documents-section h2 i {
  color: var(--brand-primary);
  margin-right: 8px;
}
.documents-list {
  list-style: none;
  padding: 0;
}
.documents-list li {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 8px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.documents-list i {
  color: var(--brand-primary);
}

/* ===========================================
   CONTACT
   =========================================== */
.contact-section {
  padding: 60px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.contact-info-card,
.contact-form-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.contact-info-card h2,
.contact-form-card h2 {
  color: var(--brand-dark);
  margin-bottom: 20px;
}
.contact-list {
  list-style: none;
  padding: 0;
}
.contact-list li {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border-color);
  align-items: flex-start;
}
.contact-list li:last-child {
  border-bottom: none;
}
.contact-list i {
  color: var(--brand-primary);
  font-size: 1.1rem;
  margin-top: 2px;
}
.contact-list strong {
  display: block;
  margin-bottom: 2px;
  color: var(--brand-dark);
}
.contact-list p,
.contact-list a {
  color: var(--text-muted);
  text-decoration: none;
}
.contact-list a:hover {
  color: var(--brand-primary);
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 600px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}
.contact-form .form-group {
  margin-bottom: 14px;
}
.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.92rem;
}
.contact-form .required {
  color: #dc2626;
}
.contact-form .form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.contact-form .form-control:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(31, 122, 77, 0.12);
}
.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}
.mt-3 {
  margin-top: 1rem;
}

/* ===========================================
   PUBLIC FOOTER
   =========================================== */
.public-footer {
  background: var(--brand-dark);
  color: #e6f1ea;
  padding: 50px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 30px;
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.public-footer h4 {
  color: #fff;
  margin-bottom: 8px;
}
.public-footer h5 {
  color: #fff;
  margin-bottom: 12px;
}
.public-footer ul {
  list-style: none;
  padding: 0;
}
.public-footer ul li {
  padding: 4px 0;
}
.public-footer a {
  color: #cfe5d8;
  text-decoration: none;
}
.public-footer a:hover {
  color: #fff;
}
.contact-list a {
  color: #cfe5d8;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 16px 0;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #cfe5d8;
}
