/* ==========================================================================
   FORTIS SYSTEM ONLINE - MODERN CORPORATE DESIGN SYSTEM
   Brand Colors, Typography, Component Tokens & Responsive Layouts
   ========================================================================== */

:root {
  /* Brand Color Tokens (Easily customizable when user specifies final palette) */
  --brand-primary: #0a1e36;        /* Deep Corporate Navy */
  --brand-primary-light: #162f4d;
  --brand-primary-dark: #061324;
  --brand-secondary: #0056b3;      /* Royal Executive Blue */
  --brand-secondary-hover: #004494;
  --brand-accent: #c28e28;         /* Premium Security Gold / Brass */
  --brand-accent-light: #fef3c7;
  --brand-accent-dark: #92400e;
  --brand-danger: #d92d20;         /* Emergency 24/7 Red */
  --brand-success: #079455;

  /* Neutrals & Canvas Tokens (Predominantly White & Clean) */
  --bg-body: #ffffff;
  --bg-surface: #ffffff;
  --bg-surface-subtle: #f8fafc;
  --bg-surface-elevated: #ffffff;
  --bg-muted: #f1f5f9;
  --bg-dark: #0a1e36;

  /* Typography Colors */
  --text-primary: #0f172a;         /* High contrast slate */
  --text-secondary: #334155;       /* Body copy */
  --text-muted: #64748b;           /* Meta & subtext */
  --text-light: #94a3b8;
  --text-inverse: #ffffff;
  --text-inverse-muted: #cbd5e1;

  /* Borders & Dividers */
  --border-light: #e2e8f0;
  --border-subtle: #edf2f7;
  --border-focus: #0056b3;

  /* Shadows (Modern & Subtle) */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);

  /* Typography Settings */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Spacing Tokens */
  --container-max: 1240px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-secondary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, picture, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--brand-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--brand-secondary-hover);
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 4vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3vw, 2.35rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.15rem; font-weight: 600; }

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   LAYOUT CONTAINERS & UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-narrow {
  max-width: 960px;
}

.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (max-width: 768px) {
  .section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

.section-subtle {
  background-color: var(--bg-surface-subtle);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-inverse-muted);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--text-inverse);
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background-color: rgba(0, 86, 179, 0.08);
  color: var(--brand-secondary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.badge-tag.gold {
  background-color: rgba(194, 142, 40, 0.12);
  color: var(--brand-accent-dark);
}

.badge-tag.emergency {
  background-color: rgba(217, 45, 32, 0.1);
  color: var(--brand-danger);
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.section-dark .section-subtitle {
  color: var(--text-inverse-muted);
}

/* ==========================================================================
   BUTTONS & CTAs
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--brand-primary);
  color: var(--text-inverse);
  box-shadow: 0 2px 4px rgba(10, 30, 54, 0.15);
}

.btn-primary:hover {
  background-color: var(--brand-secondary);
  color: var(--text-inverse);
  box-shadow: 0 4px 10px rgba(0, 86, 179, 0.25);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: var(--brand-secondary);
  color: var(--text-inverse);
}

.btn-secondary:hover {
  background-color: var(--brand-secondary-hover);
  color: var(--text-inverse);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  color: var(--brand-primary);
  border: 1.5px solid var(--border-light);
}

.btn-outline:hover {
  border-color: var(--brand-primary);
  background-color: var(--bg-surface-subtle);
  color: var(--brand-primary);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--text-inverse);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--text-inverse);
  color: var(--text-inverse);
}

.btn-accent {
  background-color: var(--brand-accent);
  color: #ffffff;
}

.btn-accent:hover {
  background-color: var(--brand-accent-dark);
  color: #ffffff;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   TOP ANNOUNCEMENT & UTILITY BAR
   ========================================================================== */
.top-bar {
  background-color: var(--brand-primary);
  color: var(--text-inverse-muted);
  font-size: 0.825rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-bar-motto {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-style: italic;
  color: #f1f5f9;
}

.top-bar-motto span {
  color: var(--brand-accent);
  font-weight: 700;
  font-style: normal;
}

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

.top-bar-link {
  color: var(--text-inverse-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-link:hover {
  color: var(--text-inverse);
}

.top-bar-link strong {
  color: var(--text-inverse);
}

.emergency-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background-color: rgba(217, 45, 32, 0.2);
  color: #fca5a5;
  border: 1px solid rgba(217, 45, 32, 0.4);
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.75rem;
}

@media (max-width: 991px) {
  .top-bar-motto {
    display: none;
  }
  .top-bar-inner {
    justify-content: center;
  }
}

/* ==========================================================================
   MAIN NAVIGATION & HEADER
   ========================================================================== */
.main-header {
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}

.main-header.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: transparent;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-symbol {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.logo-symbol svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.brand-tagline {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-secondary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--brand-secondary);
  border-radius: var(--radius-full);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  background-color: #ffffff;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--border-focus);
}

@media (max-width: 991px) {
  .nav-menu {
    display: none;
  }
  .nav-actions .btn-quote {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}

/* ==========================================================================
   MOBILE NAVIGATION DRAWER
   ========================================================================== */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 2000;
  background-color: rgba(10, 30, 54, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.mobile-drawer.open {
  opacity: 1;
  visibility: visible;
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 360px;
  height: 100%;
  background-color: #ffffff;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-base) cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-drawer.open .drawer-panel {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 1.5rem;
}

.drawer-close {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.drawer-nav a {
  padding: 0.85rem 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  border-radius: var(--radius-md);
  transition: background-color var(--transition-fast);
}

.drawer-nav a:hover,
.drawer-nav a.active {
  background-color: var(--bg-surface-subtle);
  color: var(--brand-secondary);
}

.drawer-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ==========================================================================
   HERO SECTION (Corporate, White / Light, Trust-Focused)
   ========================================================================== */
.hero-section {
  background: radial-gradient(circle at 85% 20%, rgba(0, 86, 179, 0.05) 0%, transparent 60%),
              radial-gradient(circle at 10% 80%, rgba(194, 142, 40, 0.04) 0%, transparent 50%),
              #ffffff;
  padding: 4.5rem 0 5rem 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  max-width: 620px;
}

.hero-headline {
  margin-bottom: 1.25rem;
  color: var(--brand-primary);
  letter-spacing: -0.03em;
}

.hero-headline span.highlight {
  color: var(--brand-secondary);
  position: relative;
}

.hero-lead {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-number {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1.1;
}

.trust-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.25rem;
}

/* Hero Media / Graphic Card */
.hero-media-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
}

.hero-badge-float {
  position: absolute;
  top: -15px;
  right: 25px;
  background-color: var(--brand-primary);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1rem;
}

.hero-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--bg-surface-subtle);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.hero-feature-item:hover {
  background-color: #ffffff;
  border-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}

.hero-feature-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background-color: rgba(0, 86, 179, 0.1);
  color: var(--brand-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-feature-text h4 {
  font-size: 1rem;
  color: var(--brand-primary);
  margin-bottom: 0.25rem;
}

.hero-feature-text p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-section {
    padding: 3rem 0;
  }
  .hero-content {
    max-width: 100%;
  }
}

/* ==========================================================================
   SERVICES & CARDS
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  position: relative;
  box-shadow: var(--shadow-xs);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 86, 179, 0.3);
  box-shadow: var(--shadow-lg);
}

.service-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(0, 86, 179, 0.1), rgba(10, 30, 54, 0.05));
  color: var(--brand-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon-wrapper svg {
  width: 28px;
  height: 28px;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--brand-primary);
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.service-features-list li {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features-list li svg {
  width: 16px;
  height: 16px;
  color: var(--brand-secondary);
  flex-shrink: 0;
}

.service-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
}

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

/* ==========================================================================
   PPSD ARCHITECTURE (Physical Protection System Design)
   ========================================================================== */
.ppsd-framework {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.ppsd-step {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  position: relative;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-fast);
}

.ppsd-step:hover {
  border-color: var(--brand-secondary);
  box-shadow: var(--shadow-md);
}

.ppsd-number {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.75rem;
  font-weight: 800;
  color: rgba(10, 30, 54, 0.08);
  line-height: 1;
}

.ppsd-step h4 {
  font-size: 1.15rem;
  color: var(--brand-primary);
  margin-bottom: 0.75rem;
}

.ppsd-step p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

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

@media (max-width: 575px) {
  .ppsd-framework {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   MISSION, VISION & VALUES
   ========================================================================== */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.mv-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--brand-secondary);
}

.mv-card.accent::before {
  background: var(--brand-accent);
}

.mv-card.primary::before {
  background: var(--brand-primary);
}

.mv-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: var(--bg-surface-subtle);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.mv-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--brand-primary);
}

.mv-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================================================
   TRAINING CAMP GROUND HIGHLIGHT (Mowe Odofa, Ogun State)
   ========================================================================== */
.facility-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.facility-content h3 {
  font-size: 1.75rem;
  color: var(--brand-primary);
  margin-bottom: 1rem;
}

.facility-details-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.5rem 0 2rem 0;
}

.facility-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  background-color: var(--bg-surface-subtle);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--brand-secondary);
}

.facility-item-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--brand-primary);
}

.facility-item-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.facility-badge-box {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.camp-address-card {
  padding: 1.25rem;
  background-color: rgba(0, 86, 179, 0.04);
  border: 1px solid rgba(0, 86, 179, 0.15);
  border-radius: var(--radius-md);
}

.camp-address-card h5 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-secondary);
  margin-bottom: 0.35rem;
}

.camp-address-card p {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-primary);
  margin: 0;
}

@media (max-width: 991px) {
  .facility-feature {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ==========================================================================
   CALL TO ACTION STRIP
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta-banner-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.cta-banner-content {
  max-width: 680px;
}

.cta-banner-content h2 {
  color: #ffffff;
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  margin-bottom: 0.75rem;
}

.cta-banner-content p {
  color: var(--text-inverse-muted);
  font-size: 1.1rem;
  margin: 0;
}

.cta-banner-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-banner {
    padding: 2.5rem 1.75rem;
  }
  .cta-banner-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   INTERACTIVE TABS & ACCORDIONS (Services & FAQs)
   ========================================================================== */
.tabs-nav {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 2.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.tab-btn {
  padding: 0.75rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.tab-btn:hover {
  color: var(--brand-primary);
}

.tab-btn.active {
  color: var(--brand-secondary);
  border-bottom-color: var(--brand-secondary);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 200ms ease;
}

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

/* Accordion */
.accordion-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.accordion-item.open {
  border-color: var(--brand-secondary);
}

.accordion-trigger {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-primary);
}

.accordion-icon {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-fast);
  color: var(--text-muted);
}

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

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base) ease-out;
}

.accordion-item.open .accordion-body {
  max-height: 400px;
}

.accordion-body-inner {
  padding: 0 1.5rem 1.25rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================================================
   CONTACT FORM & LOCATION CARDS
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
}

.contact-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

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

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-secondary);
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.12);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-alert {
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  display: none;
}

.form-alert.success {
  background-color: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.info-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.office-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-fast);
}

.office-card:hover {
  border-color: rgba(0, 86, 179, 0.3);
  box-shadow: var(--shadow-md);
}

.office-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  background-color: rgba(0, 86, 179, 0.08);
  color: var(--brand-secondary);
  margin-bottom: 0.75rem;
}

.office-badge.training {
  background-color: rgba(194, 142, 40, 0.12);
  color: var(--brand-accent-dark);
}

.office-name {
  font-size: 1.15rem;
  color: var(--brand-primary);
  margin-bottom: 0.5rem;
}

.office-address {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.office-direct {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.office-direct a {
  color: var(--brand-secondary);
  font-weight: 600;
}

@media (max-width: 991px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   GALLERY / SHOWCASE
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.gallery-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-base);
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 86, 179, 0.3);
}

.gallery-thumb {
  position: relative;
  aspect-ratio: 16/10;
  background-color: var(--bg-muted);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-card:hover .gallery-thumb img {
  transform: scale(1.05);
}

.gallery-info {
  padding: 1.25rem 1.5rem;
}

.gallery-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-secondary);
  margin-bottom: 0.35rem;
}

.gallery-title {
  font-size: 1.05rem;
  color: var(--brand-primary);
  margin-bottom: 0.4rem;
}

.gallery-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   FOOTER (Official, Crisp, Clean Locations)
   ========================================================================== */
.site-footer {
  background-color: var(--bg-dark);
  color: var(--text-inverse-muted);
  padding-top: 4.5rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: 1.25rem;
}

.footer-logo .logo-symbol {
  background: linear-gradient(135deg, var(--brand-secondary), var(--brand-accent));
}

.footer-logo .brand-name {
  color: #ffffff;
}

.footer-logo .brand-tagline {
  color: var(--text-inverse-muted);
}

.footer-about {
  font-size: 0.9rem;
  color: var(--text-inverse-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-motto-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--brand-accent);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-style: italic;
  color: #e2e8f0;
}

.footer-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-inverse-muted);
  font-size: 0.9rem;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-location-block {
  margin-bottom: 1.25rem;
}

.footer-location-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.footer-location-text {
  font-size: 0.875rem;
  color: var(--text-inverse-muted);
  line-height: 1.45;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

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

.footer-bottom-links a {
  color: var(--text-light);
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

@media (max-width: 991px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

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