/* ═══════════════════════════════════════════════════════════════
   RADIAN SOLUTIONS — Modern Design System
   ═══════════════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --navy: #0D1F3C;
  --navy-mid: #152644;
  --navy-light: #1E3A7A;
  --navy-deep: #091528;
  --steel: #2D4A9E;
  --gold: #C8972A;
  --gold-light: #E8B84B;
  --gold-glow: rgba(200, 151, 42, 0.15);
  --slate: #8BA3BF;
  --ice: #D4E4F7;
  --white: #FFFFFF;
  --offwhite: #F4F7FB;
  --text-muted: #6B829B;
  --green: #1A8A4A;
  --green-light: #22B05E;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 8px rgba(11, 31, 58, 0.06);
  --shadow-md: 0 4px 20px rgba(11, 31, 58, 0.08);
  --shadow-lg: 0 12px 40px rgba(11, 31, 58, 0.12);
  --shadow-xl: 0 20px 60px rgba(11, 31, 58, 0.16);
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-title.light { color: var(--white); }

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 640px;
}

.section-desc.light { color: var(--slate); }

.gold { color: var(--gold); }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 151, 42, 0.35);
}

.btn-primary:hover::after { opacity: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200, 151, 42, 0.08);
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11, 31, 58, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(200, 151, 42, 0.15);
  transition: all var(--transition-base);
}

.nav.scrolled {
  background: rgba(11, 31, 58, 0.97);
  border-bottom-color: rgba(200, 151, 42, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-links a {
  color: var(--slate);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: all var(--transition-base);
  transform: translateX(-50%);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 60%; }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { width: 60%; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.3rem !important;
  border-radius: var(--radius-sm) !important;
  transition: all var(--transition-base) !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200, 151, 42, 0.4) !important;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Section Inner Container ── */
.section-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding: 100px 2rem 50px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(44, 74, 112, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 74, 112, 0.12) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 100%);
}

.hero-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 151, 42, 0.08) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero-glow-2 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 74, 158, 0.12) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: heroGlow 10s ease-in-out infinite alternate-reverse;
}

@keyframes heroGlow {
  0% { transform: scale(1) translate(0, 0); opacity: 0.6; }
  100% { transform: scale(1.2) translate(30px, -20px); opacity: 1; }
}

#particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease-out;
}

.hero-sub {
  color: var(--slate);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s ease-out 0.1s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeUp 0.8s ease-out 0.2s both;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease-out 0.3s both;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  text-decoration: none;
}

.hero-badge:hover {
  background: rgba(200, 151, 42, 0.1);
  border-color: rgba(200, 151, 42, 0.3);
  transform: translateY(-2px);
}

.hero-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hero-badge-icon.gold-bg { background: rgba(200, 151, 42, 0.2); }
.hero-badge-icon.green-bg { background: rgba(26, 138, 74, 0.2); }

.hero-badge-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
}

.hero-badge-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

/* ── Sector Bar ── */
.sector-bar {
  background: linear-gradient(135deg, rgba(200, 151, 42, 0.15) 0%, rgba(200, 151, 42, 0.08) 50%, rgba(200, 151, 42, 0.15) 100%);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid rgba(200, 151, 42, 0.3);
  padding: 1rem 2rem;
  position: relative;
  z-index: 5;
}

.sector-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.sector-label {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.sector-tabs {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.sector-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--navy);
  border: 1.5px solid var(--navy-deep);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.55rem 1.2rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.sector-tab:hover {
  background: var(--navy-deep);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(200, 151, 42, 0.2);
}

/* ── Stats Section ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.stat-box {
  text-align: center;
  padding: 1.5rem;
}

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.stat-num span { color: var(--gold); }

.stat-text {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.stat-num.light { color: var(--white); }

/* ── About Section ── */
.about-section {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(44, 74, 112, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 74, 112, 0.15) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}

.about-visual-inner {
  position: relative;
  z-index: 1;
}

.about-visual .stat-num { color: var(--white); }
.about-visual .stat-text { color: var(--slate); }

/* ── Defense / Certifications Section ── */
.defense-section {
  padding: 100px 0;
  background: var(--navy-mid);
}

.cert-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0 1.5rem;
}

.cert-card {
  background: rgba(13, 31, 60, 0.7);
  border: 1px solid rgba(200, 151, 42, 0.2);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition-base);
}

.cert-card:hover {
  border-color: rgba(200, 151, 42, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.cert-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.cert-emblem {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: rgba(200, 151, 42, 0.15);
  border: 2px solid rgba(200, 151, 42, 0.3);
  flex-shrink: 0;
}

.cert-card-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cert-card-subtitle {
  color: var(--slate);
  font-size: 0.85rem;
  margin-top: 0.15rem;
}

.cert-card-body {
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1.7;
}

.cert-tag {
  display: inline-block;
  background: rgba(26, 138, 74, 0.15);
  border: 1px solid rgba(34, 176, 94, 0.3);
  color: var(--green-light);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cert-tag.gold {
  background: rgba(200, 151, 42, 0.12);
  border-color: rgba(200, 151, 42, 0.3);
  color: var(--gold);
}

.cert-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.learn-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  margin-top: 1.25rem;
  transition: gap var(--transition-base);
}

.learn-more-link:hover { gap: 0.7rem; }

/* Defense smaller cards */
.defense-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.defense-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all var(--transition-base);
}

.defense-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(200, 151, 42, 0.25);
  transform: translateY(-3px);
}

.card-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.card-text {
  color: var(--slate);
  font-size: 0.85rem;
  line-height: 1.65;
}

/* ── Contract Vehicles Section ── */
.contracts-section {
  padding: 100px 0;
  background: var(--offwhite);
}

.contracts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.vehicle-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid var(--ice);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 151, 42, 0.2);
}

.vehicle-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200, 151, 42, 0.1);
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.vehicle-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.vehicle-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.vehicle-meta {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--ice);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.vehicle-meta-item {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--offwhite);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* ── Services Section ── */
.services-section {
  padding: 100px 0;
  background: var(--navy);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(200, 151, 42, 0.25);
  transform: translateY(-4px);
}

.service-card:hover::before { opacity: 1; }

.service-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(200, 151, 42, 0.15);
  line-height: 1;
  margin-bottom: 1rem;
}

.service-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.service-text {
  color: var(--slate);
  font-size: 0.85rem;
  line-height: 1.65;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: gap var(--transition-base);
}

.service-link:hover { gap: 0.6rem; }

/* ── Clients Section ── */
.clients-section {
  padding: 80px 0;
  background: var(--white);
}

.clients-category-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 3px;
  display: inline-block;
  margin-bottom: 1rem;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
  margin-bottom: 2.5rem;
}

.client-card {
  background: var(--offwhite);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  transition: all var(--transition-base);
  border: 1px solid transparent;
}

.client-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--ice);
}

.client-logo-wrap {
  width: 100%;
  height: 64px;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
}

.client-logo-wrap img,
.client-logo-wrap img.client-logo-img {
  max-width: 80%;
  height: 36px;
  width: auto;
  object-fit: contain;
}

.client-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

/* ── Contact Section ── */
.contact-section {
  padding: 100px 0;
  background: var(--navy-mid);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(200, 151, 42, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.contact-label {
  color: var(--slate);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.contact-value {
  color: var(--white);
  font-size: 0.95rem;
  margin-top: 0.25rem;
  line-height: 1.5;
}

.contact-value a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.contact-value a:hover { opacity: 0.8; }

/* Contact Form */
.contact-form-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}

.contact-form-title {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

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

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: rgba(200, 151, 42, 0.06);
  box-shadow: 0 0 0 3px rgba(200, 151, 42, 0.1);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%238BA3BF' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-select option {
  background: var(--navy);
  color: var(--white);
}

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

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  margin-bottom: 1.25rem;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}

.form-checkbox-text {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
}

.form-checkbox-desc {
  color: var(--slate);
  font-size: 0.76rem;
  margin-top: 0.2rem;
}

.form-error {
  background: rgba(220, 53, 69, 0.15);
  border: 1px solid rgba(220, 53, 69, 0.4);
  color: #f8d7da;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  display: none;
}

.form-success {
  text-align: center;
  padding: 2rem;
  display: none;
}

.form-success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.form-success h3 {
  color: var(--green-light);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--slate);
  font-size: 0.9rem;
}

.form-note {
  color: var(--text-muted);
  font-size: 0.72rem;
  margin-top: 1rem;
  text-align: center;
  line-height: 1.5;
}

/* ── Footer ── */
footer {
  background: var(--navy-deep);
  padding: 60px 2rem 0;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer-tagline {
  color: var(--slate);
  font-size: 0.88rem;
  margin-top: 1rem;
  line-height: 1.6;
}

.footer-codes {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 0.75rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  font-family: var(--font-heading);
}

.footer-code-label {
  color: var(--slate);
  font-weight: 400;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-code-sep {
  color: var(--steel);
  margin: 0 0.25rem;
  opacity: 0.5;
}

/* Footer Badge Links */
.footer-badges-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
}

.footer-badge-group-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.footer-badge-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.footer-badge-link:hover {
  color: var(--gold);
  border-color: rgba(200, 151, 42, 0.3);
  background: rgba(200, 151, 42, 0.08);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.82rem;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.cert-strip {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cert-strip-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .footer-badges-section { gap: 1rem; }
  .footer-inner { flex-direction: column; gap: 2rem; }
}

/* ── Detail/Sub Pages ── */
.detail-page-header {
  background: var(--navy);
  padding: 100px 2rem 60px;
  position: relative;
  overflow: hidden;
}

.detail-page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(44, 74, 112, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 74, 112, 0.15) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 100%);
}

.detail-page-header .hero-glow,
.detail-page-header .hero-glow-2 {
  position: absolute;
}

.detail-page-inner {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--slate);
  font-size: 0.85rem;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color var(--transition-fast);
}

.detail-back:hover { color: var(--white); }

.detail-page-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.05;
}

.detail-page-sub {
  color: var(--slate);
  font-size: 1.05rem;
  margin-top: 1rem;
  max-width: 640px;
  line-height: 1.7;
}

.detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  background: rgba(200, 151, 42, 0.15);
  border: 1px solid rgba(200, 151, 42, 0.3);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.detail-content {
  max-width: 1320px;
  margin: 0 auto;
  padding: 60px 2rem 80px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 3rem;
}

.detail-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.detail-section-title:first-child { margin-top: 0; }

.detail-text {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* Info Box */
.info-box {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(200, 151, 42, 0.2);
}

.info-box-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
}

.info-row:last-child { border-bottom: none; }
.info-label { color: var(--slate); }
.info-val { color: var(--white); font-weight: 600; text-align: right; }

/* Checklist */
.checklist { list-style: none; }

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.check {
  color: var(--green-light);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.feature-card {
  background: var(--offwhite);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--ice);
  transition: all var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.feature-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

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

/* CTA Section */
.cta-section {
  background: var(--navy);
  padding: 60px 2rem;
  text-align: center;
  border-radius: var(--radius-lg);
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(200, 151, 42, 0.1) 0%, transparent 70%);
}

.cta-section .section-title { margin-bottom: 0.75rem; }

.cta-section p {
  color: var(--slate);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}

.cta-section .btn-primary { position: relative; z-index: 1; }

/* ── About Page Specific ── */
.about-hero {
  background: var(--navy);
  padding: 120px 2rem 80px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(44, 74, 112, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 74, 112, 0.15) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 40%, transparent 100%);
}

.about-hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200, 151, 42, 0.12);
  border: 1px solid rgba(200, 151, 42, 0.3);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-light);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.about-hero-sub {
  color: var(--slate);
  font-size: 1.1rem;
  margin-top: 1.25rem;
  max-width: 600px;
  line-height: 1.75;
}

.about-body {
  padding: 60px 2rem;
  max-width: 1320px;
  margin: 0 auto;
}

.origin-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.origin-card {
  background: var(--offwhite);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--ice);
  transition: all var(--transition-base);
}

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

.origin-year {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.origin-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.origin-title {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.origin-text {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Values */
.values-section {
  margin-bottom: 4rem;
}

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

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

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

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--ice);
  transition: all var(--transition-base);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 151, 42, 0.2);
}

.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-glow);
  border-radius: var(--radius-md);
}

.value-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.value-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Accolades */
.accolades-section {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  margin-bottom: 4rem;
}

.accolades-section .section-label { color: var(--gold); }
.accolades-section .section-title { color: var(--white); }
.accolades-section .section-header { margin-bottom: 2rem; }

.accolades-intro {
  color: var(--slate);
  font-size: 0.95rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.accolades-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.accolade-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.accolade-org {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.accolade-awards { display: flex; flex-direction: column; gap: 0.75rem; }

.accolade-award {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.accolade-award:last-child { border-bottom: none; }

.award-year {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  width: 48px;
  flex-shrink: 0;
}

.award-rank {
  color: var(--slate);
  font-size: 0.88rem;
}

.award-rank strong { color: var(--white); }

/* Team */
.team-section { margin-bottom: 4rem; }

.team-intro {
  color: var(--text-muted);
  text-align: center;
  max-width: 500px;
  margin: -1.5rem auto 3rem;
  font-size: 0.95rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.team-card {
  background: var(--offwhite);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--ice);
  transition: all var(--transition-base);
}

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

.team-photo-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--gold);
}

.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
}

.team-title {
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-bio {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.team-bio p + p { margin-top: 0.75rem; }

/* ── Leader Cards (Photo + Bio Layout) ── */
.leader-card {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  background: var(--offwhite);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--ice);
  margin-bottom: 2.5rem;
  transition: all var(--transition-base);
}

.leader-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 151, 42, 0.2);
}

.leader-photo-wrap {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: 220px;
  min-width: 220px;
  height: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-right: 2.5rem;
}

.leader-photo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
}

.leader-info {
  -webkit-flex: 1;
  flex: 1;
  min-width: 0;
}

.leader-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.leader-title {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--ice);
}

.leader-bio {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.leader-bio p + p {
  margin-top: 0.85rem;
}

@media (max-width: 768px) {
  .leader-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  .leader-photo-wrap {
    width: 180px;
    height: 220px;
  }
  .leader-title {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-base);
  z-index: 99;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(200, 151, 42, 0.4);
}

/* ── Hero Announcements ── */
.hero-announcements {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.hero-announce-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
  font-weight: 600;
}

.hero-announce-link {
  font-size: 0.85rem;
  color: var(--gold);
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(200, 151, 42, 0.3);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  background: rgba(200, 151, 42, 0.05);
}

.hero-announce-link:hover {
  background: rgba(200, 151, 42, 0.15);
  border-color: var(--gold);
}

/* ── Announcement Modal ── */
.announcement-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s ease;
}

.announcement-overlay.active {
  display: flex;
}

.announcement-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.announcement-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--steel);
  cursor: pointer;
  line-height: 1;
  z-index: 10;
  transition: color 0.2s;
}

.announcement-close:hover {
  color: var(--navy);
}

.announcement-title {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
  margin: 0;
  position: relative;
}

.announcement-body {
  flex: 1;
  overflow: auto;
  padding: 0;
}

.announcement-pdf {
  width: 100%;
  height: 75vh;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .announcement-modal {
    width: 95%;
    max-height: 85vh;
  }
  .announcement-pdf {
    height: 60vh;
  }
  .hero-announcements {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Staggered animation delays */
.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; }

/* ── Responsive Design ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-cards-row { grid-template-columns: 1fr; }
  .defense-cards-row { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .accolades-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .origin-section { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 31, 58, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem;
    gap: 0.25rem;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
    z-index: 999;
  }

  .nav-links.mobile-open a {
    font-size: 1rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
  }

  .nav-links.mobile-open .nav-cta {
    margin-top: 1rem;
    text-align: center;
    justify-content: center;
  }

  .hero { min-height: auto; padding: 120px 1.5rem 60px; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }

  .services-grid { grid-template-columns: 1fr; }
  .defense-cards-row { grid-template-columns: 1fr; }
  .contracts-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  .hero-badges { flex-direction: column; }

  .sector-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .sector-tabs { flex-wrap: wrap; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .about-hero { padding: 100px 1.5rem 60px; }
  .about-body { padding: 40px 1.5rem; }
  .accolades-section { padding: 2.5rem 1.5rem; }

  .detail-page-header { padding: 90px 1.5rem 50px; }
  .detail-content { padding: 40px 1.5rem 60px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .stats-row { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
}
