/* ============================================
   JLGOV.COM - Stylesheet (The7 Theme Replica)
   Dark professional government/cybersecurity design
   Pure black + white + cyan accent palette
   ============================================ */

/* --- Local Font: Roboto --- */
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/roboto-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/roboto-medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/roboto-semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/roboto-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --- CSS Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Exact palette: black, white, gray + cyan accent */
  --accent-1: #1ebbf0;
  --accent-2: #39dfaa;
  --accent-gradient: linear-gradient(135deg, #1ebbf0 30%, #39dfaa 100%);
  --accent-orange: #ff9955;
  --banner-red: #a01513;
  --black: #000000;
  --charcoal: #111111;
  --white: #ffffff;
  --text-body: #333333;
  --text-light: #b1b4b8;
  --text-muted: #999999;
  --link-color: #21759b;
  --input-border: #e2e2e2;
  --font: 'Roboto', Helvetica, Arial, Verdana, sans-serif;
  --content-width: 1300px;
  --side-gutter: 50px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--text-body);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--link-color);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--accent-1);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  color: var(--white);
  line-height: 1.3;
  font-weight: 700;
}

/* --- Skip to Content --- */
.skip-link {
  position: absolute;
  top: -50px;
  left: 0;
  background: var(--accent-1);
  color: var(--white);
  padding: 8px 16px;
  z-index: 10000;
  transition: top 0.3s;
}
.skip-link:focus {
  top: 0;
}

/* ============================================
   TOP BANNER BAR - Bright Red
   ============================================ */
.top-banner {
  background: var(--banner-red);
  color: var(--white);
  text-align: center;
  padding: 8px var(--side-gutter);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1001;
  line-height: 1.4;
}
.top-banner a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 700;
}
.top-banner a:hover {
  color: var(--accent-1);
}

/* ============================================
   SOCIAL BAR - Integrated into header area
   ============================================ */
.social-bar {
  background: var(--black);
  padding: 4px var(--side-gutter);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.social-bar a {
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  transition: color var(--transition);
}
.social-bar a:hover {
  color: var(--accent-1);
}
.social-bar svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

/* ============================================
   HEADER / NAVIGATION - Solid black bg
   ============================================ */
.site-header {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--side-gutter);
  max-width: var(--content-width);
  margin: 0 auto;
  min-height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  height: 50px;
  width: auto;
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-list {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 0;
}
.nav-list > li {
  position: relative;
}
.nav-list > li > a {
  display: block;
  padding: 24px 14px;
  color: var(--white);
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color var(--transition);
}
.nav-list > li > a:hover,
.nav-list > li > a.active {
  color: var(--accent-1);
}
/* Gradient underline on hover/active */
.nav-list > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: transparent;
  transition: background var(--transition);
}
.nav-list > li > a:hover::after,
.nav-list > li > a.active::after {
  background: var(--accent-gradient);
}

/* Dropdown */
.nav-list .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--black);
  list-style: none;
  z-index: 999;
  border-top: 2px solid var(--accent-1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.nav-list li:hover > .dropdown {
  display: block;
}
.dropdown li a {
  display: block;
  padding: 10px 20px;
  color: var(--white);
  font-size: 13px;
  font-weight: 400;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition), padding-left var(--transition);
}
.dropdown li a:hover {
  color: var(--accent-1);
  padding-left: 24px;
  background: rgba(255,255,255,0.04);
}
.dropdown li:last-child a {
  border-bottom: none;
}

/* Sub-dropdown */
.dropdown .sub-dropdown {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 220px;
  background: var(--black);
  list-style: none;
  border-left: 2px solid var(--accent-1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.dropdown li:hover > .sub-dropdown {
  display: block;
}

/* Capability Statement Button */
.cap-btn {
  display: inline-block;
  padding: 10px 20px;
  background: var(--accent-gradient);
  color: var(--white) !important;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: 0;
  transition: opacity var(--transition);
  white-space: nowrap;
  margin-left: 14px;
  border: none;
}
.cap-btn:hover {
  opacity: 0.7;
  color: var(--white) !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform var(--transition), opacity var(--transition);
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION - Pure black bg
   ============================================ */
.hero {
  background: var(--black);
  color: var(--white);
  padding: 60px var(--side-gutter);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(30,187,240,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.hero-content {
  flex: 1;
}
.hero-content h2 {
  font-size: 34px;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.3;
  font-weight: 700;
}
.hero-content p {
  font-size: 13px;
  font-weight: 500;
  line-height: 19px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.85);
}
.hero-image {
  flex: 0 0 300px;
}
.hero-image img {
  max-width: 300px;
  filter: drop-shadow(0 8px 30px rgba(30,187,240,0.2));
}

/* ============================================
   BUTTONS - Cyan gradient bg, flat, 0 radius
   ============================================ */
.btn-cta {
  display: inline-block;
  padding: 13px 19px;
  background: var(--accent-gradient);
  color: var(--white) !important;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
  transition: opacity var(--transition);
  margin-top: 10px;
  border: none;
  cursor: pointer;
}
.btn-cta:hover {
  opacity: 0.7;
  color: var(--white) !important;
}

.btn-secondary {
  display: inline-block;
  padding: 12px 19px;
  background: var(--accent-gradient);
  color: var(--white) !important;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: 0;
  transition: opacity var(--transition);
  border: none;
  cursor: pointer;
}
.btn-secondary:hover {
  opacity: 0.7;
  color: var(--white) !important;
}

.btn-outline {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  color: var(--white) !important;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: 0;
  border: 2px solid rgba(255,255,255,0.3);
  transition: border-color var(--transition), color var(--transition);
  cursor: pointer;
}
.btn-outline:hover {
  border-color: var(--accent-1);
  color: var(--accent-1) !important;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 70px var(--side-gutter);
}
.section-dark {
  background: var(--black);
  color: var(--white);
}
.section-alt {
  background: var(--black);
}
.section-light {
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header h2 {
  font-size: 34px;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 500;
}

/* ============================================
   CMMC READINESS SECTION
   ============================================ */
.cmmc-section {
  padding: 70px var(--side-gutter);
  background: var(--black);
}
.cmmc-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
}
.cmmc-image {
  flex: 0 0 240px;
  text-align: center;
}
.cmmc-image img {
  max-width: 240px;
  margin: 0 auto;
}
.cmmc-content {
  flex: 1;
}
.cmmc-content h2 {
  font-size: 34px;
  margin-bottom: 16px;
  color: var(--white);
  text-transform: uppercase;
}
.cmmc-content p {
  margin-bottom: 14px;
  line-height: 1.7;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

/* ============================================
   SERVICES GRID - Cards on black bg
   ============================================ */
.services-grid {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  background: var(--charcoal);
  border: 1px solid var(--accent-1);
  border-radius: 0;
  padding: 40px 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(30,187,240,0.15);
}
.service-card img {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  object-fit: contain;
}
.service-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
  color: var(--white);
}
.service-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-bottom: 20px;
  font-weight: 500;
}

/* ============================================
   SPLIT SECTIONS (Defense / Commercial)
   ============================================ */
.split-section {
  padding: 70px var(--side-gutter);
  background: var(--black);
}
.split-section.alt-bg {
  background: var(--black);
}
.split-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
}
.split-inner.reverse {
  flex-direction: row-reverse;
}
.split-content {
  flex: 1;
}
.split-content h2 {
  font-size: 34px;
  margin-bottom: 16px;
  color: var(--white);
}
.split-content p {
  line-height: 1.7;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}
.split-images {
  flex: 0 0 320px;
  display: flex;
  gap: 16px;
  justify-content: center;
}
.split-images img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

/* ============================================
   MISSION SECTION
   ============================================ */
.mission-section {
  padding: 70px var(--side-gutter);
  background: var(--black);
}
.mission-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
}
.mission-content {
  flex: 1;
}
.mission-content h2 {
  font-size: 34px;
  margin-bottom: 16px;
  color: var(--white);
}
.mission-content p {
  line-height: 1.7;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}
.mission-content strong {
  color: var(--white);
}
.mission-image {
  flex: 0 0 260px;
  text-align: center;
}
.mission-image img {
  max-width: 260px;
}

/* ============================================
   WHY CLIENTS SECTION
   ============================================ */
.why-section {
  padding: 70px var(--side-gutter);
  background: var(--black);
  color: var(--white);
  text-align: center;
}
.why-section h2 {
  color: var(--white);
  font-size: 34px;
  margin-bottom: 24px;
}
.why-section p {
  max-width: 850px;
  margin: 0 auto 28px;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* ============================================
   PAGE BANNER (Inner Pages)
   ============================================ */
.page-banner {
  background: var(--black);
  color: var(--white);
  padding: 60px var(--side-gutter);
  text-align: left;
  position: relative;
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
}
.page-banner h1 {
  font-size: 34px;
  color: var(--white);
  margin-bottom: 8px;
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
}
.page-banner p {
  font-size: 14px;
  color: var(--text-light);
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}

/* ============================================
   PAGE CONTENT (Inner Pages)
   ============================================ */
.page-content {
  padding: 60px var(--side-gutter);
  max-width: var(--content-width);
  margin: 0 auto;
  background: var(--white);
}
.page-content h2 {
  font-size: 24px;
  margin-bottom: 16px;
  margin-top: 36px;
  color: var(--text-body);
}
.page-content h2:first-child {
  margin-top: 0;
}
.page-content p {
  margin-bottom: 14px;
  line-height: 1.7;
  font-size: 13px;
  font-weight: 500;
}
.page-content a {
  color: var(--link-color);
}
.page-content ul {
  margin: 14px 0 14px 24px;
  list-style: disc;
}
.page-content li {
  margin-bottom: 12px;
  line-height: 1.6;
  font-size: 13px;
  font-weight: 500;
}

.highlight-box {
  background: #f8f8f8;
  border-left: 4px solid var(--accent-1);
  padding: 20px 24px;
  margin: 24px 0;
  border-radius: 0;
}
.highlight-box p {
  margin-bottom: 4px;
}
.highlight-box strong {
  color: #111;
}

/* ============================================
   SERVICES DETAIL (Services Page)
   ============================================ */
.services-detail {
  max-width: var(--content-width);
  margin: 0 auto;
}
.service-detail-block {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 50px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.service-detail-block:last-child {
  border-bottom: none;
}
.service-detail-block.reverse {
  flex-direction: row-reverse;
}
.service-detail-content {
  flex: 1;
}
.service-detail-content h2 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--text-body);
}
.service-detail-content p {
  margin-bottom: 14px;
  line-height: 1.7;
  font-size: 13px;
  font-weight: 500;
}
.service-detail-content ul {
  margin: 14px 0 14px 20px;
}
.service-detail-content li {
  margin-bottom: 8px;
  font-size: 13px;
}
.service-detail-image {
  flex: 0 0 360px;
}
.service-detail-image img {
  border-radius: 0;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  width: 100%;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  gap: 50px;
  padding: 60px var(--side-gutter);
}
.contact-info {
  flex: 0 0 340px;
}
.contact-info h2 {
  font-size: 24px;
  margin-bottom: 24px;
  color: var(--text-body);
}
.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-info-item svg {
  width: 20px;
  height: 20px;
  fill: var(--accent-1);
  flex-shrink: 0;
  margin-top: 3px;
}
.contact-info-item p {
  line-height: 1.5;
  font-size: 13px;
  font-weight: 500;
}
.contact-info-item strong {
  display: block;
  color: #111;
  font-size: 14px;
  margin-bottom: 2px;
}
.contact-form {
  flex: 1;
  background: #f8f8f8;
  padding: 36px;
  border-radius: 0;
  border: 1px solid var(--input-border);
}
.contact-form h2 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--text-body);
}
.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 0;
}
.form-group {
  flex: 1;
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  color: #111;
  margin-bottom: 6px;
}
.form-group label .required {
  color: #c00;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--input-border);
  border-radius: 0;
  font-family: var(--font);
  font-size: 13px;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
  color: var(--text-body);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-1);
  box-shadow: 0 0 0 2px rgba(30,187,240,0.15);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============================================
   FOOTER - Pure Black
   ============================================ */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 50px var(--side-gutter) 0;
}
.footer-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 6px;
}
.footer-col a {
  color: var(--text-light);
  font-size: 13px;
  font-weight: 500;
  transition: color var(--transition);
}
.footer-col a:hover {
  color: var(--accent-1);
}
.footer-col p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.footer-col strong {
  color: var(--white);
}
.footer-logo {
  max-width: 120px;
  margin: 16px 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
  padding: 18px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
}
.footer-bottom a {
  color: rgba(255,255,255,0.45);
}
.footer-bottom a:hover {
  color: var(--accent-1);
}
.go-top {
  color: var(--accent-1) !important;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   ABOUT PAGE - Hero with overlapping feature image
   ============================================ */
.about-hero {
  background: var(--black);
  position: relative;
  overflow: visible;
  z-index: 1;
}
.about-hero-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  padding: 0 var(--side-gutter);
}
.about-hero-image {
  position: relative;
  z-index: 2;
  margin-bottom: -120px;
}
.about-hero-image img {
  max-width: 420px;
  width: 100%;
  display: block;
  filter: drop-shadow(0 8px 30px rgba(30,187,240,0.3));
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-30 { margin-top: 30px; }

/* ============================================
   RESPONSIVE - Breakpoints matching The7
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --side-gutter: 30px;
  }
  .hero-inner {
    gap: 40px;
  }
  .hero-content h2 {
    font-size: 28px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .split-inner {
    gap: 30px;
  }
  .service-detail-block {
    gap: 30px;
  }
  .service-detail-image {
    flex: 0 0 280px;
  }
  .about-hero-image img {
    max-width: 320px;
  }
}

@media (max-width: 778px) {
  :root {
    --side-gutter: 20px;
  }
  .social-bar {
    justify-content: center;
    padding: 6px 20px;
  }
  .header-inner {
    flex-wrap: wrap;
    gap: 10px;
    min-height: 60px;
    padding: 0 20px;
  }
  .menu-toggle {
    display: block;
    order: 3;
  }
  .main-nav {
    display: none;
    width: 100%;
    order: 4;
    flex-direction: column;
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .main-nav.open {
    display: flex;
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
  }
  .nav-list > li > a {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 16px;
  }
  .nav-list > li > a::after {
    display: none;
  }
  .nav-list .dropdown {
    position: static;
    box-shadow: none;
    border-top: none;
    background: rgba(255,255,255,0.04);
  }
  .dropdown .sub-dropdown {
    position: static;
    border-left: none;
    background: rgba(255,255,255,0.06);
  }
  .nav-list li:hover > .dropdown {
    display: none;
  }
  .nav-list li.dropdown-open > .dropdown {
    display: block;
  }
  .cap-btn {
    display: block;
    text-align: center;
    margin: 10px 20px;
  }

  .hero {
    padding: 50px 20px;
  }
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }
  .hero-content h2 {
    font-size: 24px;
  }
  .hero-image {
    flex: none;
  }
  .hero-image img {
    max-width: 200px;
    margin: 0 auto;
  }

  .cmmc-inner {
    flex-direction: column;
    text-align: center;
  }
  .cmmc-image {
    flex: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .split-inner,
  .split-inner.reverse {
    flex-direction: column;
    text-align: center;
  }
  .split-images {
    flex: none;
    justify-content: center;
  }

  .mission-inner {
    flex-direction: column;
    text-align: center;
  }
  .mission-image {
    flex: none;
  }

  .service-detail-block,
  .service-detail-block.reverse {
    flex-direction: column;
  }
  .service-detail-image {
    flex: none;
    width: 100%;
  }

  .contact-section {
    flex-direction: column;
  }
  .contact-info {
    flex: none;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .page-banner {
    padding: 40px 20px;
    text-align: center;
  }
  .page-banner h1 {
    font-size: 24px;
  }
  .about-hero-image {
    margin-bottom: -60px;
  }
  .about-hero-image img {
    max-width: 240px;
    margin: 0 auto;
  }
  .about-hero-inner {
    justify-content: center;
  }
}

@media (max-width: 450px) {
  .hero-content h2 {
    font-size: 20px;
  }
  .section {
    padding: 50px 16px;
  }
  .page-banner h1 {
    font-size: 20px;
  }
  .btn-cta {
    padding: 10px 18px;
    font-size: 12px;
  }
  .services-grid {
    gap: 20px;
  }
  .service-card {
    padding: 30px 20px;
  }
}
