/* VIPGLOA LLC - Government Contractor Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@500;600;700;800&display=swap');

:root {
  --color-primary-dark: #0A192F;
  --color-primary-navy: #0F2444;
  --color-corporate-blue: #1E3A8A;
  --color-accent-blue: #2563EB;
  --color-accent-gold: #D97706;
  --color-gold-hover: #B45309;
  --color-text-dark: #0F172A;
  --color-text-body: #334155;
  --color-text-muted: #64748B;
  --color-bg-light: #F8FAFC;
  --color-bg-alt: #F1F5F9;
  --color-card-bg: #FFFFFF;
  --color-border: #E2E8F0;
  --color-border-dark: #1E293B;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-body);
  background-color: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: 108px;
}

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

a {
  color: var(--color-accent-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-corporate-blue);
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* STICKY HEADER CONTAINER - ALWAYS FIXED AT TOP 0 ON SCROLL */
.sticky-header-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* TOP IDENTIFICATION & UTILITY BAR */
.top-bar {
  background-color: var(--color-primary-dark);
  color: #E2E8F0;
  font-size: 0.8rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.785rem;
  color: #CBD5E1;
}

.top-bar-left .sep {
  color: rgba(255, 255, 255, 0.25);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-contact {
  color: #93C5FD !important;
  font-weight: 500;
  font-size: 0.785rem;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* SITE HEADER & MAIN NAVIGATION */
.site-header {
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--color-border);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 20px;
}

.brand-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-main {
  display: flex;
  align-items: center;
  gap: 6px;
}

.brand-logo-mark {
  width: 112px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.brand-subtext {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--color-accent-gold);
  font-weight: 700;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: flex-end;
}

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

.nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-dark);
  padding: 6px 2px;
  white-space: nowrap;
  position: relative;
  transition: color 0.2s ease;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-dark);
  padding: 6px 2px;
  white-space: nowrap;
  position: relative;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: var(--color-accent-gold);
  border-radius: 999px;
  transition: width 0.25s ease, left 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-corporate-blue);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
  left: 0;
}

.mobile-actions {
  display: none;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-primary-dark);
  transition: all 0.3s ease;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--color-accent-gold);
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: var(--color-gold-hover);
  color: #FFFFFF;
}

.btn-secondary {
  background-color: var(--color-primary-navy);
  color: #FFFFFF;
}

.btn-secondary:hover {
  background-color: var(--color-primary-dark);
  color: #FFFFFF;
}

.btn-outline {
  background-color: transparent;
  border-color: var(--color-corporate-blue);
  color: var(--color-corporate-blue);
}

.btn-outline:hover {
  background-color: var(--color-corporate-blue);
  color: #FFFFFF;
}

.btn-sm {
  padding: 6px 14px;
  font-size: 0.825rem;
}

.btn-xs {
  padding: 4px 10px;
  font-size: 0.75rem;
  border-radius: 4px;
}

/* HERO SECTION */
.hero-section {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary-navy) 100%);
  color: #FFFFFF;
  padding: 72px 0;
  border-bottom: 4px solid var(--color-accent-gold);
  position: relative;
  overflow: hidden;
}

.hero-video-section {
  isolation: isolate;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: var(--color-primary-dark);
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 25, 47, 0.74) 0%, rgba(15, 36, 68, 0.84) 100%);
}

/* Homepage video overlay: slightly lighter than inner-page heroes */
.hero-video-section.hero-home .hero-media::after {
  background: linear-gradient(180deg, rgba(10, 25, 47, 0.72) 0%, rgba(15, 36, 68, 0.80) 100%);
}

/* Gentle blur on homepage video so text pops without losing motion detail */
.hero-video-section.hero-home .hero-media .hero-video {
  filter: blur(1px) contrast(0.98);
  transform: translateZ(0);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video {
  position: relative;
  z-index: 1;
}

.hero-video-section .hero-animated-layer {
  z-index: -1;
}

.hero-animated-layer {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.25), transparent 35%),
              radial-gradient(circle at bottom right, rgba(217, 119, 6, 0.2), transparent 30%);
  animation: heroPulse 6s ease-in-out infinite;
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(217, 119, 6, 0.2);
  border: 1px solid var(--color-accent-gold);
  color: #FBBF24;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 2.75rem;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #94A3B8;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-video-section .hero-subtitle {
  color: #E2E8F0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* CREDIBILITY STRIP */
.credibility-strip {
  background-color: var(--color-bg-alt);
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border);
}

.credibility-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.cred-badge {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cred-badge::before {
  content: '✓';
  color: var(--color-accent-gold);
  font-weight: 900;
}

/* SECTION COMMONS */
.section {
  padding: 64px 0;
}

.section-alt {
  background-color: var(--color-bg-light);
}

.section-header {
  margin-bottom: 44px;
}

.section-title {
  font-size: 2rem;
  color: var(--color-primary-dark);
  margin-bottom: 12px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--color-accent-gold);
  margin-top: 10px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.image-frame {
  overflow: hidden;
}

.image-frame img {
  transition: transform 0.55s ease, filter 0.55s ease;
}

.image-frame:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.03);
}

.card.reveal:hover {
  transform: translateY(-6px);
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--color-primary-navy);
}

.card-text {
  color: var(--color-text-body);
  font-size: 0.95rem;
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes heroPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

/* FORMS */
.form-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.form-label.required::after {
  content: ' *';
  color: #E11D48;
}

.form-control,
.form-select {
  padding: 10px 14px;
  font-size: 0.95rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background-color: #FFFFFF;
  color: var(--color-text-dark);
  font-family: var(--font-body);
}

.form-control:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-accent-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.alert {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  font-weight: 500;
}

.alert-success {
  background-color: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: #065F46;
}

/* FOOTER */
.site-footer {
  background-color: var(--color-primary-dark);
  color: #94A3B8;
  padding: 60px 0 24px 0;
  border-top: 4px solid var(--color-accent-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col-title {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #CBD5E1;
  font-size: 0.9rem;
}

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

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

.footer-id-line {
  color: #E2E8F0;
  font-weight: 600;
}

/* RESPONSIVE BREAKPOINTS & MOBILE DRAWER */
@media (max-width: 1280px) {
  .mobile-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    box-shadow: var(--shadow-lg);
    border-bottom: 3px solid var(--color-accent-gold);
    padding: 20px 24px;
    z-index: 1000;
  }

  .main-nav.active {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
  }

  .nav-link {
    width: 100%;
    padding: 10px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--color-border);
  }

  .mobile-actions {
    display: block;
    padding-top: 12px;
  }

  .top-actions {
    display: none;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 135px;
  }

  .top-bar-left {
    flex-wrap: wrap;
    gap: 6px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-video-section {
    min-height: 600px;
  }

  .brand-logo-mark {
    width: 92px;
    height: 36px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .hero-animated-layer {
    animation: none;
  }

  .reveal {
    transition: none;
  }

}
