/* ==========================================
   Pars Belge - Personel Belgelendirme
   Corporate Website Styles
   ========================================== */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
  --navy: #012E71;
  --navy-light: #1a5caa;
  --navy-dark: #001a42;
  --red: #E2000F;
  --red-dark: #b0000c;
  --white: #FFFFFF;
  --grey: #F5F7FA;
  --dark: #1A1A1A;
  --text-muted: #6B7280;
  --border: #E5E7EB;
  --radius: 0.625rem;
  --radius-lg: 1rem;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

/* ==========================================
   LAYOUT UTILITIES
   ========================================== */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (max-width: 640px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ==========================================
   TOP INFO BAR
   ========================================== */

.top-bar {
  background: var(--navy);
  color: var(--white);
  padding: 0.5rem 0;
  font-size: 0.8125rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar a {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--white);
  opacity: 0.9;
  transition: opacity 0.2s;
}

.top-bar a:hover {
  opacity: 1;
  color: #fca5a5;
}

.top-bar-right {
  color: rgba(255,255,255,0.5);
  font-size: 0.6875rem;
  letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
  .top-bar {
    display: none;
  }
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */

.header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}

.logo-subtitle {
  font-size: 0.625rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Desktop Nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.8);
  border-radius: var(--radius);
  transition: all 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.8);
  border-radius: var(--radius);
  transition: all 0.2s;
}

.dropdown-toggle:hover,
.dropdown-toggle.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 100;
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  color: #374151;
  transition: all 0.15s;
}

.dropdown-menu a:hover {
  color: var(--navy);
  background: var(--grey);
}

.dropdown-menu a.active {
  color: var(--red);
  background: #fef2f2;
  font-weight: 500;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  padding: 0.5rem;
  color: var(--white);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 0;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu-section {
  margin-bottom: 0.5rem;
}

.mobile-menu-label {
  padding: 0.5rem 1.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}

.mobile-menu a {
  display: block;
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  border-radius: var(--radius);
  margin: 0 0.5rem;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
}

/* ==========================================
   PAGE HEADER (inner pages)
   ========================================== */

.page-header {
  background: var(--navy);
  padding: 4rem 0 5rem;
}

.page-header-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--red);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  max-width: 640px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .page-header {
    padding: 3rem 0 4rem;
  }
  .page-header h1 {
    font-size: 2rem;
  }
  .page-header p {
    font-size: 1rem;
  }
}

/* ==========================================
   HERO SECTION (Home)
   ========================================== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background: var(--navy);
  overflow: hidden;
  display: flex;
  align-items: center;
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border-radius: 9999px;
  color: rgba(255,255,255,0.8);
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  max-width: 600px;
  letter-spacing: -0.02em;
}

.hero h1 span {
  color: var(--red);
}

.hero-desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.3s;
  cursor: pointer;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

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

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

/* Hero Action Buttons */
.hero-actions {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  z-index: 10;
}

.hero-actions-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.5rem;
}

.hero-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  padding: 0.75rem 0.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border-radius: var(--radius);
  color: var(--white);
  transition: all 0.3s;
  font-size: 0.6875rem;
  font-weight: 500;
  text-align: center;
}

.hero-action-btn:hover {
  background: rgba(255,255,255,0.2);
}

.hero-action-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--red);
}

@media (max-width: 1024px) {
  .hero-actions-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 600px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero-actions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-buttons {
    margin-bottom: 2rem;
  }
}

/* ==========================================
   SECTIONS
   ========================================== */

.section {
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .section {
    padding: 6rem 0;
  }
}

.section-grey {
  background: var(--grey);
}

.section-navy {
  background: var(--navy);
  color: var(--white);
}

.section-red {
  background: var(--red);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  margin-bottom: 1rem;
}

.section-label-bar {
  width: 64px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin: 0 auto 0.75rem;
}

.section-label-text {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-navy .section-label-bar {
  background: var(--red);
}

.section-navy .section-label-text {
  color: var(--red);
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.section-navy .section-header h2 {
  color: var(--white);
}

.section-header p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.section-navy .section-header p {
  color: rgba(255,255,255,0.6);
}

/* ==========================================
   CARDS
   ========================================== */

.card-grid {
  display: grid;
  gap: 1.5rem;
}

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

.card-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .card-grid-3,
  .card-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .card-grid-2,
  .card-grid-3,
  .card-grid-4 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  border: 1px solid var(--border);
}

.card:hover {
  box-shadow: var(--shadow-lg);
}

.card-top-border-navy {
  border-top: 3px solid var(--navy);
}

.card-top-border-red {
  border-top: 3px solid var(--red);
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.card-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Value Card */
.value-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--grey);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: box-shadow 0.3s;
}

.value-card:hover {
  box-shadow: var(--shadow);
}

.value-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.value-card h4 {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Info Card */
.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow 0.3s;
}

.info-card:hover {
  box-shadow: var(--shadow-lg);
}

.info-icon {
  width: 56px;
  height: 56px;
  background: rgba(1, 46, 113, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.info-icon svg {
  width: 24px;
  height: 24px;
  color: var(--navy);
}

.info-card h3 {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.info-card p,
.info-card a {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.info-card a:hover {
  color: var(--red);
}

/* ==========================================
   STATS
   ========================================== */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  transition: all 0.5s;
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(1, 46, 113, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
  color: var(--navy);
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================
   PROCESS STEPS
   ========================================== */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-line {
  position: absolute;
  top: 48px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: rgba(255,255,255,0.15);
  z-index: 0;
}

.process-step {
  position: relative;
  text-align: center;
  z-index: 1;
}

.process-circle {
  width: 96px;
  height: 96px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.process-circle span {
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
}

.process-dot {
  width: 16px;
  height: 16px;
  background: var(--red);
  border-radius: 50%;
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: pulseGlow 2s infinite;
}

.process-step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-line,
  .process-dot {
    display: none;
  }
}

/* ==========================================
   ACCORDION (Service Qualifications)
   ========================================== */

.accordion-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 0.75rem;
  transition: box-shadow 0.3s;
}

.accordion-item:hover {
  box-shadow: var(--shadow);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.accordion-num {
  width: 40px;
  height: 40px;
  background: rgba(1, 46, 113, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.875rem;
  flex-shrink: 0;
}

.accordion-title-area {
  flex: 1;
  min-width: 0;
}

.accordion-code {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.accordion-title {
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
}

.accordion-level {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  background: rgba(1, 46, 113, 0.08);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  margin-left: 0.5rem;
  white-space: nowrap;
}

.accordion-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  border-radius: 9999px;
  white-space: nowrap;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  color: #9CA3AF;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.accordion-item.open .accordion-icon {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.25rem;
}

.accordion-item.open .accordion-body {
  max-height: 800px;
  padding: 0 1.25rem 1.25rem;
}

.accordion-body h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.accordion-body h4 svg {
  width: 16px;
  height: 16px;
}

.accordion-body ul {
  margin-bottom: 1rem;
}

.accordion-body li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #4B5563;
  padding: 0.375rem 0;
}

.accordion-body li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--navy);
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.accordion-warning {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.75rem;
  background: #FFFBEB;
  border-radius: var(--radius);
}

.accordion-warning svg {
  width: 16px;
  height: 16px;
  color: #D97706;
  flex-shrink: 0;
}

.accordion-warning p {
  font-size: 0.75rem;
  color: #B45309;
}

/* ==========================================
   WARNING BANNER
   ========================================== */

.warning-banner {
  background: #FFFBEB;
  border-bottom: 1px solid #FDE68A;
}

.warning-banner .container {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.warning-icon {
  width: 40px;
  height: 40px;
  background: #FEF3C7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.warning-icon svg {
  width: 20px;
  height: 20px;
  color: #D97706;
}

.warning-banner h4 {
  font-weight: 700;
  color: #92400E;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.warning-banner p {
  font-size: 0.875rem;
  color: #B45309;
  line-height: 1.6;
}

/* ==========================================
   MODAL
   ========================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  max-width: 420px;
  width: 100%;
  padding: 2rem;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.3s;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #9CA3AF;
  transition: all 0.2s;
}

.modal-close:hover {
  background: var(--grey);
  color: #4B5563;
}

.modal-close svg {
  width: 18px;
  height: 18px;
}

.modal-icon {
  width: 64px;
  height: 64px;
  background: rgba(1, 46, 113, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.modal-icon svg {
  width: 28px;
  height: 28px;
  color: var(--navy);
}

.modal-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.modal-content > p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.modal-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.modal-soon svg {
  width: 16px;
  height: 16px;
}

.modal-btn {
  padding: 0.625rem 1.5rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.875rem;
  transition: background 0.2s;
}

.modal-btn:hover {
  background: var(--navy-dark);
}

/* ==========================================
   ORGANIZATION CHART
   ========================================== */

.org-chart {
  max-width: 640px;
  margin: 0 auto;
}

.org-box {
  text-align: center;
  padding: 1.25rem 2rem;
  border-radius: var(--radius-lg);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  max-width: 360px;
  margin: 0 auto;
}

.org-box svg {
  margin: 0 auto 0.5rem;
  opacity: 0.8;
}

.org-box h4 {
  font-weight: 700;
  font-size: 1.125rem;
}

.org-box p {
  font-size: 0.8125rem;
  opacity: 0.6;
}

.org-box.navy { background: var(--navy); }
.org-box.navy-light { background: #1a4a8a; }
.org-box.red { background: var(--red); }
.org-box.grey { 
  background: var(--grey); 
  color: var(--navy);
  border: 2px solid rgba(1, 46, 113, 0.15);
}

.org-connector {
  display: flex;
  justify-content: center;
  height: 32px;
}

.org-connector-line {
  width: 2px;
  background: rgba(1, 46, 113, 0.2);
}

/* ==========================================
   FORMS
   ========================================== */

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.375rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  outline: none;
  transition: all 0.2s;
}

.form-input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(1, 46, 113, 0.1);
}

.form-input-icon {
  position: relative;
}

.form-input-icon svg {
  position: absolute;
  left: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: #9CA3AF;
}

.form-input-icon .form-input {
  padding-left: 2.5rem;
}

textarea.form-input {
  resize: none;
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
}

/* ==========================================
   ANNOUNCEMENT / NEWS CARDS
   ========================================== */

.announcement-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: box-shadow 0.3s;
  margin-bottom: 1rem;
}

.announcement-item:hover {
  box-shadow: var(--shadow);
}

.announcement-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.announcement-category {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 600;
}

.announcement-date {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.announcement-date svg {
  width: 14px;
  height: 14px;
}

.announcement-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.announcement-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================
   TYPOGRAPHY UTILITIES
   ========================================== */

.text-center { text-align: center; }
.text-navy { color: var(--navy); }
.text-red { color: var(--red); }
.text-muted { color: var(--text-muted); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.max-w-2xl { max-width: 640px; margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 768px; margin-left: auto; margin-right: auto; }
.max-w-4xl { max-width: 896px; margin-left: auto; margin-right: auto; }
.max-w-5xl { max-width: 1024px; margin-left: auto; margin-right: auto; }

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }
.flex-grow { flex-grow: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.min-w-0 { min-width: 0; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

.rounded-xl { border-radius: var(--radius-lg); }
.rounded-lg { border-radius: var(--radius); }
.rounded-full { border-radius: 9999px; }

.bg-white { background: var(--white); }
.bg-grey { background: var(--grey); }
.bg-navy { background: var(--navy); }
.bg-red { background: var(--red); }
.bg-amber-50 { background: #FFFBEB; }
.bg-amber-100 { background: #FEF3C7; }
.bg-green-50 { background: #F0FDF4; }
.bg-red-10 { background: rgba(226, 0, 15, 0.08); }

.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }

.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.block { display: block; }
.hidden { display: none; }
.w-8 { width: 32px; }
.h-8 { height: 32px; }
.w-10 { width: 40px; }
.h-10 { height: 40px; }
.w-12 { width: 48px; }
.h-12 { height: 48px; }
.w-full { width: 100%; }
.h-px { height: 1px; }

.leading-relaxed { line-height: 1.7; }
.tracking-wider { letter-spacing: 0.05em; }
.uppercase { text-transform: uppercase; }
.whitespace-nowrap { white-space: nowrap; }

/* Border */
.border { border: 1px solid var(--border); }
.border-amber-200 { border-color: #FDE68A; }
.border-green-200 { border-color: #BBF7D0; }
.border-white-10 { border: 1px solid rgba(255,255,255,0.1); }
.border-t { border-top: 1px solid var(--border); }
.border-white-10-t { border-top: 1px solid rgba(255,255,255,0.1); }

/* ========================================== 
   RESPONSIVE GRID HELPERS
   ========================================== */

@media (max-width: 1024px) {
  .lg-grid-2 { grid-template-columns: repeat(2, 1fr) !important; }
  .lg-grid-1 { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
  .md-grid-1 { grid-template-columns: 1fr !important; }
  .md-flex-col { flex-direction: column; }
}

@media (max-width: 640px) {
  .sm-grid-1 { grid-template-columns: 1fr !important; }
  .sm-hidden { display: none !important; }
}

/* ==========================================
   ANIMATIONS
   ========================================== */

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

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(226, 0, 15, 0.4);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(226, 0, 15, 0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ==========================================
   FOOTER
   ========================================== */

.footer {
  background: var(--navy);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 3rem 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 48px;
  height: 48px;
}

.footer-logo-text {
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
}

.footer-logo-sub {
  font-size: 0.625rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

.footer h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer h4 svg {
  width: 16px;
  height: 16px;
  color: var(--red);
}

.footer-links li {
  margin-bottom: 0.625rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom .flex {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom svg {
  width: 12px;
  height: 12px;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================
   CONTENT STYLES (for policy pages)
   ========================================== */

.content-prose p {
  color: #4B5563;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.content-prose h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1.5rem 0 0.75rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: #4B5563;
  font-size: 0.9375rem;
}

.checklist svg {
  width: 18px;
  height: 18px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* Numbered circle */
.num-circle {
  width: 32px;
  height: 32px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
}

/* Tag/badge */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.tag-red { background: rgba(226, 0, 15, 0.08); color: var(--red); }

/* Prose */
.prose {
  max-width: none;
}

.prose p {
  color: #4B5563;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.prose h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1.5rem 0 0.75rem;
}

/* Link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.2s;
}

.link-arrow:hover {
  color: var(--red);
}

.link-arrow svg {
  width: 16px;
  height: 16px;
}
