/* ═══════════════════════════════════════════════════════════════
   CHAPADAPA ENTERPRISES — CINEMATIC GOVERNMENT SOLUTIONS THEME
   Brand Colors: Deep Navy #0A0F1E | Steel #A7A9AC | Accent #3B82F6
   ═══════════════════════════════════════════════════════════════ */

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

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

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #060A14;
  color: #C8CCD4;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}

/* ─── UTILITY ─── */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 5px;
  color: #3B82F6;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-title.light {
  color: #FFFFFF;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #8B93A1;
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 24px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
  box-shadow: 0 8px 40px rgba(59, 130, 246, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #A7A9AC;
  border: 1px solid rgba(167, 169, 172, 0.4);
}

.btn-outline:hover {
  border-color: #3B82F6;
  color: #FFFFFF;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.btn-lg {
  padding: 18px 48px;
  font-size: 0.9rem;
}

.btn-full {
  width: 100%;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1),
              transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

/* Stagger children */
.services-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.services-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.services-grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.services-grid .reveal:nth-child(5) { transition-delay: 0.4s; }
.services-grid .reveal:nth-child(6) { transition-delay: 0.5s; }

.advantages-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.advantages-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.advantages-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.advantages-grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.advantages-grid .reveal:nth-child(6) { transition-delay: 0.4s; }

.credentials-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.credentials-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.credentials-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.credentials-grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.credentials-grid .reveal:nth-child(6) { transition-delay: 0.4s; }

.trust-container .reveal:nth-child(2) { transition-delay: 0.05s; }
.trust-container .reveal:nth-child(3) { transition-delay: 0.1s; }
.trust-container .reveal:nth-child(4) { transition-delay: 0.15s; }
.trust-container .reveal:nth-child(5) { transition-delay: 0.2s; }

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
  background: transparent;
}

.nav.scrolled {
  background: rgba(6, 10, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.3));
}

.nav-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: #A7A9AC;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8B93A1;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #3B82F6;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #FFFFFF;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
  color: #FFFFFF !important;
  padding: 10px 24px;
  border-radius: 4px;
  box-shadow: 0 2px 16px rgba(59, 130, 246, 0.25);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  box-shadow: 0 4px 24px rgba(59, 130, 246, 0.45);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #A7A9AC;
  transition: all 0.3s ease;
}

.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); }

/* ═══════════════════════════════════════
   HERO — CINEMATIC FULL VIEWPORT
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #060A14;
}

/* Animated grid background */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

/* Radial glow behind logo */
.hero-particles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

/* Dark vignette overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(6, 10, 20, 0.4) 60%, rgba(6, 10, 20, 0.9) 100%),
    linear-gradient(180deg, rgba(6, 10, 20, 0.3) 0%, transparent 30%, transparent 70%, rgba(6, 10, 20, 0.8) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px;
  animation: heroFadeIn 1.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes heroFadeIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  color: #3B82F6;
  margin-bottom: 32px;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.hero-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 28px;
  filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.25))
         drop-shadow(0 0 60px rgba(59, 130, 246, 0.1));
  animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: 8px;
  line-height: 1.1;
  background: linear-gradient(180deg, #FFFFFF 0%, #A7A9AC 50%, #6B7280 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.hero-divider {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.hero-divider span {
  display: block;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3B82F6, transparent);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.4);
}

.hero-dba {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 6px;
  color: #3B82F6;
  margin-bottom: 16px;
  text-shadow: 0 0 24px rgba(59, 130, 246, 0.3);
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: #8B93A1;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.hero-scroll span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: #4B5563;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, #3B82F6, transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ═══════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════ */
.trust-bar {
  background: linear-gradient(180deg, #0A0F1E 0%, #0D1321 100%);
  border-top: 1px solid rgba(59, 130, 246, 0.1);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  padding: 32px 24px;
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-icon-wrap {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.trust-icon {
  font-size: 0.85rem;
  color: #3B82F6;
}

.trust-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #8B93A1;
  text-transform: uppercase;
}

.trust-divider {
  width: 1px;
  height: 24px;
  background: rgba(59, 130, 246, 0.15);
}

/* ═══════════════════════════════════════
   MISSION SECTION
   ═══════════════════════════════════════ */
.mission {
  padding: 100px 0;
  background: #060A14;
  position: relative;
}

.mission::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.mission-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #9CA3AF;
  margin-bottom: 20px;
}

.mission-text strong {
  color: #FFFFFF;
}

.mission-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mission-stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.4s ease;
}

.mission-stat-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  background: rgba(59, 130, 246, 0.04);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.1);
}

.stat-number {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #3B82F6;
  margin-bottom: 8px;
  text-shadow: 0 0 24px rgba(59, 130, 246, 0.3);
}

.stat-desc {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #6B7280;
  line-height: 1.5;
}

/* ═══════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════ */
.services {
  padding: 100px 0;
  background: linear-gradient(180deg, #060A14 0%, #0A0F1E 50%, #060A14 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 36px 28px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3B82F6, transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover {
  border-color: rgba(59, 130, 246, 0.2);
  background: rgba(59, 130, 246, 0.03);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4),
              0 0 40px rgba(59, 130, 246, 0.06);
}

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

.service-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(59, 130, 246, 0.3);
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 14px;
  line-height: 1.4;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #8B93A1;
  margin-bottom: 20px;
}

.service-driver {
  font-size: 0.75rem;
  line-height: 1.5;
  color: #6B7280;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.driver-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #3B82F6;
  background: rgba(59, 130, 246, 0.1);
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 6px;
  margin-right: 6px;
}

/* ═══════════════════════════════════════
   WHY US SECTION
   ═══════════════════════════════════════ */
.why-us {
  position: relative;
  padding: 100px 0;
  background:
    linear-gradient(180deg, rgba(6, 10, 20, 0.97) 0%, rgba(10, 15, 30, 0.95) 100%);
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.why-us-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(59, 130, 246, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.why-us .section-container {
  position: relative;
  z-index: 1;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.advantage-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 36px 28px;
  transition: all 0.4s ease;
}

.advantage-card:hover {
  border-color: rgba(59, 130, 246, 0.25);
  background: rgba(59, 130, 246, 0.04);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.advantage-icon {
  font-size: 1.6rem;
  color: #3B82F6;
  margin-bottom: 16px;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.advantage-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.advantage-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #8B93A1;
}

/* ═══════════════════════════════════════
   CREDENTIALS SECTION
   ═══════════════════════════════════════ */
.credentials {
  padding: 100px 0;
  background: #060A14;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.cred-card {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.4s ease;
}

.cred-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.1);
}

.cred-card h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3B82F6;
  margin-bottom: 12px;
}

.cred-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #9CA3AF;
}

/* Contract Vehicles */
.contract-vehicles {
  margin-top: 60px;
  text-align: center;
  padding: 40px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.contract-vehicles h3 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.vehicle-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.vehicle-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #3B82F6;
  padding: 10px 20px;
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 100px;
  background: rgba(59, 130, 246, 0.05);
  transition: all 0.3s ease;
}

.vehicle-tag:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.15);
}

/* ═══════════════════════════════════════
   PAST PERFORMANCE SECTION
   ═══════════════════════════════════════ */
.past-performance {
  padding: 100px 0;
  background: linear-gradient(180deg, #060A14 0%, #0A0F1E 50%, #060A14 100%);
  position: relative;
}

.past-performance::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at left, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.performance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.performance-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 36px 28px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.performance-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3B82F6, transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.performance-card:hover {
  border-color: rgba(59, 130, 246, 0.2);
  background: rgba(59, 130, 246, 0.03);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4),
              0 0 40px rgba(59, 130, 246, 0.06);
}

.performance-card:hover .performance-card-glow {
  opacity: 1;
}

.performance-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(59, 130, 246, 0.3);
  margin-bottom: 16px;
}

.performance-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 14px;
  line-height: 1.4;
}

.performance-card > p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #8B93A1;
  margin-bottom: 16px;
}

.performance-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.performance-card ul li {
  font-size: 0.82rem;
  line-height: 1.6;
  color: #6B7280;
  padding-left: 16px;
  position: relative;
  margin-bottom: 8px;
}

.performance-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.4);
}

.performance-disclaimer {
  margin-top: 48px;
  padding: 24px 32px;
  background: rgba(59, 130, 246, 0.04);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 8px;
  text-align: center;
}

.performance-disclaimer p {
  font-size: 0.8rem;
  line-height: 1.7;
  color: #6B7280;
  font-style: italic;
}

/* Stagger for performance grid */
.performance-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.performance-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.performance-grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.performance-grid .reveal:nth-child(5) { transition-delay: 0.4s; }

/* ═══════════════════════════════════════
   TESTIMONIALS SECTION
   ═══════════════════════════════════════ */
.testimonials {
  padding: 100px 0;
  background: #060A14;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.02) 1px, transparent 1px);
  background-size: 100px 100px;
  pointer-events: none;
}

.testimonials .section-container {
  position: relative;
  z-index: 1;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 36px 32px;
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-card:hover {
  border-color: rgba(59, 130, 246, 0.2);
  background: rgba(59, 130, 246, 0.03);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-quote-icon {
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 1;
  color: rgba(59, 130, 246, 0.2);
  margin-bottom: 8px;
}

.testimonial-text {
  font-size: 0.92rem;
  line-height: 1.8;
  color: #9CA3AF;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.08) 100%);
  border: 1px solid rgba(59, 130, 246, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #3B82F6;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

.testimonial-role {
  font-size: 0.75rem;
  color: #6B7280;
  line-height: 1.4;
}

.testimonials-disclaimer {
  margin-top: 48px;
  padding: 24px 32px;
  background: rgba(59, 130, 246, 0.04);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 8px;
  text-align: center;
}

.testimonials-disclaimer p {
  font-size: 0.8rem;
  line-height: 1.7;
  color: #6B7280;
  font-style: italic;
}

/* Stagger for testimonials grid */
.testimonials-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.testimonials-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.testimonials-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

/* ═══════════════════════════════════════
   CAPABILITY STATEMENT SECTION
   ═══════════════════════════════════════ */
.capability-statement {
  position: relative;
  padding: 80px 24px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(6, 10, 20, 0.98) 50%, rgba(59, 130, 246, 0.06) 100%);
  border-top: 1px solid rgba(59, 130, 246, 0.1);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  overflow: hidden;
}

.capability-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.capability-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.capability-content .section-label {
  margin-bottom: 16px;
}

.capability-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #FFFFFF;
  margin-bottom: 16px;
}

.capability-content p {
  font-size: 1rem;
  color: #8B93A1;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ═══════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════ */
.cta-banner {
  position: relative;
  padding: 80px 24px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 10, 20, 0.98) 50%, rgba(59, 130, 246, 0.08) 100%);
  border-top: 1px solid rgba(59, 130, 246, 0.1);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1rem;
  color: #8B93A1;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ═══════════════════════════════════════
   CAREERS SECTION
   ═══════════════════════════════════════ */
.careers {
  padding: 100px 0;
  background: #060A14;
  position: relative;
}

.careers::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.careers .section-container {
  position: relative;
  z-index: 1;
}

.careers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.job-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.job-card:hover {
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.job-card-header {
  padding: 28px 28px 20px;
}

.job-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.job-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.05);
  color: #8B93A1;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.badge-clearance {
  background: rgba(59, 130, 246, 0.1);
  color: #3B82F6;
  border-color: rgba(59, 130, 246, 0.25);
}

.job-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
  line-height: 1.3;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.job-meta-item {
  font-size: 0.78rem;
  color: #6B7280;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Job Details — collapsible */
.job-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 0 28px;
}

.job-details.open {
  max-height: 2000px;
  padding: 0 28px 28px;
}

.job-section {
  margin-bottom: 20px;
}

.job-section h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3B82F6;
  margin-bottom: 12px;
}

.job-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.job-section ul li {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #8B93A1;
  padding-left: 16px;
  position: relative;
  margin-bottom: 6px;
}

.job-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.4);
}

/* Toggle button */
.job-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 28px;
  background: rgba(59, 130, 246, 0.04);
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3B82F6;
  cursor: pointer;
  transition: all 0.3s ease;
}

.job-toggle:hover {
  background: rgba(59, 130, 246, 0.08);
  color: #60A5FA;
}

.toggle-icon {
  font-size: 1rem;
  font-weight: 400;
  transition: transform 0.3s ease;
}

.job-toggle[aria-expanded="true"] .toggle-icon {
  transform: rotate(45deg);
}

/* Stagger for careers grid */
.careers-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.careers-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.careers-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.careers-grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.careers-grid .reveal:nth-child(6) { transition-delay: 0.4s; }
.careers-grid .reveal:nth-child(7) { transition-delay: 0.48s; }
.careers-grid .reveal:nth-child(8) { transition-delay: 0.56s; }

/* ═══════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════ */
.contact {
  padding: 100px 0;
  background: #060A14;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: rgba(59, 130, 246, 0.2);
}

.contact-card h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3B82F6;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 0.95rem;
  color: #9CA3AF;
}

.contact-card a {
  color: #9CA3AF;
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: #3B82F6;
}

/* Contact Form */
.contact-form-wrap {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 36px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  color: #FFFFFF;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #4B5563;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #3B82F6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group select {
  color: #4B5563;
  cursor: pointer;
}

.form-group select option {
  background: #0A0F1E;
  color: #FFFFFF;
}

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

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  background: #040710;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 24px 40px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 16px;
  opacity: 0.6;
  filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.2));
}

.footer-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: #A7A9AC;
  margin-bottom: 4px;
}

.footer-dba {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: #4B5563;
  margin-bottom: 28px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #4B5563;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #3B82F6;
}

.footer-legal p {
  font-size: 0.75rem;
  color: #374151;
  margin-bottom: 4px;
}

.footer-disclaimer {
  font-size: 0.7rem;
  color: #374151;
}

/* ═══════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .credentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .performance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .careers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-links {
    gap: 20px;
  }
}

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

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(6, 10, 20, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .hero-title {
    letter-spacing: 4px;
  }

  .hero-badge {
    font-size: 0.6rem;
    letter-spacing: 2px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .credentials-grid {
    grid-template-columns: 1fr;
  }

  .performance-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .careers-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trust-container {
    flex-direction: column;
    gap: 16px;
  }

  .trust-divider {
    width: 40px;
    height: 1px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px;
  }

  .vehicle-tags {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .mission-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hero-logo {
    width: 90px;
    height: 90px;
  }

  .contact-form-wrap {
    padding: 24px 16px;
  }

  .section-container {
    padding: 0 16px;
  }

  .job-card-header {
    padding: 20px 20px 16px;
  }

  .job-details.open {
    padding: 0 20px 20px;
  }

  .job-toggle {
    padding: 14px 20px;
  }

  .testimonial-card {
    padding: 28px 20px;
  }
}

/* ─── CINEMATIC EXTRAS ─── */

/* Subtle scanline effect on hero */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  pointer-events: none;
  z-index: 5;
}

/* Focus glow for accessibility */
*:focus-visible {
  outline: 2px solid #3B82F6;
  outline-offset: 2px;
}

/* Smooth image rendering */
img {
  image-rendering: auto;
}

/* Print styles */
@media print {
  .hero-grid-bg,
  .hero-particles,
  .hero-overlay,
  .hero-scroll,
  .nav {
    display: none !important;
  }

  body {
    background: #FFFFFF;
    color: #000000;
  }
}


