/* =============================================
   StudentFlow University — Global Stylesheet
   ============================================= */

:root {
  --orange:       #F7941D;
  --orange-dark:  #D97B0E;
  --orange-light: #FDE8C8;
  --navy:         #3D4F6A;
  --navy-dark:    #2B3A52;
  --navy-light:   #5A6F8A;
  --white:        #FFFFFF;
  --off-white:    #F8F9FA;
  --gray-100:     #F1F3F5;
  --gray-300:     #CED4DA;
  --gray-600:     #6C757D;
  --gray-800:     #343A40;
  --text:         #2C3E50;
  --shadow-sm:    0 2px 8px rgba(61,79,106,0.10);
  --shadow-md:    0 4px 20px rgba(61,79,106,0.15);
  --shadow-lg:    0 8px 40px rgba(61,79,106,0.20);
  --radius:       10px;
  --radius-lg:    18px;
  --transition:   0.25s ease;
}

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

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a  { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-dark); }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

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

/* ---- Utility ---- */
.text-orange { color: var(--orange); }
.text-navy   { color: var(--navy); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 580px;
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 0 24px;
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mark svg { width: 22px; height: 22px; fill: white; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.3px;
}
.logo-name span { color: var(--orange); }
.logo-sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-600);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--orange-light);
  color: var(--orange-dark);
}
.nav-cta { margin-left: 10px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #4A6080 100%);
  color: var(--white);
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247,148,29,0.2);
  border: 1px solid rgba(247,148,29,0.4);
  color: var(--orange-light);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge::before { content: '●'; color: var(--orange); font-size: 0.6rem; }
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero h1 span { color: var(--orange); }
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.hero-stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
  backdrop-filter: blur(4px);
}
.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
  font-weight: 500;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-card {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(8px);
}
.hero-card-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.hero-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.hero-card-item {
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-card-item::before {
  content: '▸';
  color: var(--orange);
  font-size: 0.7rem;
}
.hero-announcement {
  background: var(--orange);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-ann-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hero-ann-text { font-size: 0.85rem; color: white; font-weight: 500; }
.hero-ann-text strong { display: block; font-size: 0.9rem; }

/* =============================================
   FEATURES / HIGHLIGHTS
   ============================================= */
.features {
  padding: 80px 24px;
  background: var(--off-white);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--gray-100);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--orange-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.feature-card p  { font-size: 0.9rem; color: var(--gray-600); line-height: 1.65; }

/* =============================================
   PROGRAMS PREVIEW (homepage)
   ============================================= */
.programs-preview {
  padding: 80px 24px;
}
.programs-preview .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 24px;
  flex-wrap: wrap;
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.program-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  background: var(--white);
}
.program-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.program-card-header {
  padding: 28px 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.program-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.program-icon.orange { background: var(--orange-light); }
.program-icon.navy   { background: rgba(61,79,106,0.1); }
.program-icon.teal   { background: #E0F4F4; }
.program-icon.green  { background: #E8F5E9; }
.program-card-header h3 { font-size: 1rem; margin-bottom: 4px; }
.program-card-header p  { font-size: 0.82rem; color: var(--gray-600); }
.program-card-body { padding: 0 24px 20px; }
.program-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}
.tag-orange { background: var(--orange-light); color: var(--orange-dark); }
.tag-navy   { background: rgba(61,79,106,0.08); color: var(--navy); }
.tag-gray   { background: var(--gray-100); color: var(--gray-600); }
.program-card-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--gray-600);
}
.program-card-footer a {
  font-weight: 600;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 4px;
}
.program-card-footer a::after { content: '→'; }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #E8820C 100%);
  padding: 70px 24px;
  text-align: center;
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 14px; }
.cta-banner p  { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 540px; margin: 0 auto 32px; }
.cta-actions   { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  padding: 80px 24px;
  background: var(--off-white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 5rem;
  color: var(--orange-light);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-stars { color: var(--orange); font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.92rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
  flex-shrink: 0;
}
.av-orange { background: var(--orange); }
.av-navy   { background: var(--navy); }
.av-teal   { background: #2B9B8E; }
.author-name  { font-size: 0.9rem; font-weight: 700; color: var(--navy); }
.author-title { font-size: 0.78rem; color: var(--gray-600); }

/* =============================================
   NEWS / EVENTS
   ============================================= */
.news { padding: 80px 24px; }
.news .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 24px;
  flex-wrap: wrap;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-card-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.news-card-img.bg-navy   { background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
.news-card-img.bg-orange { background: linear-gradient(135deg, var(--orange), #FFAA4C); }
.news-card-img.bg-teal   { background: linear-gradient(135deg, #2B9B8E, #4EC5B8); }
.news-card-body { padding: 24px; }
.news-meta { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; flex-wrap: wrap; }
.news-type { font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--orange); }
.news-date { font-size: 0.78rem; color: var(--gray-600); }
.news-card h3 { font-size: 1rem; margin-bottom: 8px; }
.news-card p  { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 70px 24px 60px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-mission {
  padding: 80px 24px;
}
.about-mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-visual-main {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  padding: 40px;
  color: white;
}
.about-visual-main h3 { color: white; font-size: 1.4rem; margin-bottom: 16px; }
.about-visual-main p  { color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.7; }
.about-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.about-stat-item { text-align: center; }
.about-stat-item .num { font-size: 1.6rem; font-weight: 800; color: var(--orange); }
.about-stat-item .lbl { font-size: 0.75rem; color: rgba(255,255,255,0.6); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.value-item {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 20px;
  border-left: 3px solid var(--orange);
}
.value-item h4 { font-size: 0.95rem; margin-bottom: 6px; }
.value-item p  { font-size: 0.82rem; color: var(--gray-600); line-height: 1.6; }

.leadership {
  padding: 80px 24px;
  background: var(--off-white);
}
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.leader-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}
.leader-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.leader-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}
.leader-card h3 { font-size: 1rem; margin-bottom: 4px; }
.leader-role    { font-size: 0.82rem; color: var(--orange); font-weight: 600; margin-bottom: 10px; }
.leader-bio     { font-size: 0.82rem; color: var(--gray-600); line-height: 1.6; }

.timeline {
  padding: 80px 24px;
}
.timeline-inner { max-width: 750px; margin: 40px auto 0; position: relative; }
.timeline-inner::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-300);
}
.timeline-item {
  display: flex;
  gap: 28px;
  margin-bottom: 36px;
  position: relative;
}
.timeline-dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
  color: white;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.timeline-content {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 20px 24px;
  flex: 1;
}
.timeline-content h4 { font-size: 0.95rem; margin-bottom: 6px; }
.timeline-content p  { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; }

/* =============================================
   PROGRAMS PAGE
   ============================================= */
.faculty-section {
  padding: 70px 24px;
}
.faculty-section:nth-child(even) { background: var(--off-white); }
.faculty-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 36px;
}
.faculty-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.faculty-header h2 { font-size: 1.6rem; margin-bottom: 6px; }
.faculty-header p  { font-size: 0.9rem; color: var(--gray-600); }
.courses-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.courses-table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.courses-table td {
  padding: 14px 20px;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
}
.courses-table tr:last-child td { border-bottom: none; }
.courses-table tr:hover td { background: var(--off-white); }
.course-name { font-weight: 600; color: var(--navy); }
.course-code { font-size: 0.75rem; color: var(--gray-600); margin-top: 2px; }
.duration-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--orange-light);
  color: var(--orange-dark);
}

/* =============================================
   ADMISSIONS PAGE
   ============================================= */
.admissions-steps {
  padding: 80px 24px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: 48px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 32px);
  right: calc(12.5% + 32px);
  height: 2px;
  background: var(--orange-light);
}
.step-item { text-align: center; padding: 0 16px; position: relative; }
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
}
.step-item.active .step-num { background: var(--orange); }
.step-item h3 { font-size: 0.95rem; margin-bottom: 8px; }
.step-item p  { font-size: 0.82rem; color: var(--gray-600); line-height: 1.6; }

.requirements {
  padding: 80px 24px;
  background: var(--off-white);
}
.req-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.req-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.req-card h3 {
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange-light);
  color: var(--navy);
}
.req-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}
.req-list li:last-child { border-bottom: none; }
.req-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

.key-dates {
  padding: 80px 24px;
}
.dates-table-wrap {
  margin-top: 40px;
  overflow-x: auto;
}
.dates-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.dates-table th {
  background: var(--navy);
  color: var(--white);
  padding: 16px 20px;
  text-align: left;
  font-size: 0.85rem;
}
.dates-table td {
  padding: 14px 20px;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--gray-100);
}
.dates-table tr:last-child td { border-bottom: none; }
.dates-table tr:hover td { background: var(--off-white); }
.date-status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}
.status-open   { background: #E8F5E9; color: #2E7D32; }
.status-upcoming { background: var(--orange-light); color: var(--orange-dark); }
.status-closed { background: var(--gray-100); color: var(--gray-600); }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section {
  padding: 80px 24px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 { font-size: 1.6rem; margin-bottom: 16px; }
.contact-info p  { font-size: 0.92rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--orange-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-text h4 { font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.contact-item-text p  { font-size: 0.85rem; color: var(--gray-600); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}
.contact-form-card h3 { font-size: 1.2rem; margin-bottom: 24px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(247,148,29,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.map-section {
  padding: 0 24px 80px;
}
.map-placeholder {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius-lg);
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  gap: 12px;
}
.map-placeholder .map-icon { font-size: 3rem; }
.map-placeholder h3 { font-size: 1.1rem; color: white; }
.map-placeholder p  { font-size: 0.85rem; color: rgba(255,255,255,0.65); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 24px 0;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo-name { color: white; font-size: 1.1rem; }
.footer-brand .logo-sub  { color: rgba(255,255,255,0.4); }
.footer-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-top: 14px;
  margin-bottom: 20px;
}
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  transition: all var(--transition);
  text-decoration: none;
}
.social-link:hover {
  background: var(--orange);
  color: white;
}
.footer-col h4 {
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 8px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-mission-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    padding: 16px;
    box-shadow: var(--shadow-md);
    gap: 4px;
  }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .values-grid { grid-template-columns: 1fr; }
}
