/* =============================================
   Nkasi LLC - Main Stylesheet
   Raw CSS, no frameworks
   ============================================= */

/* CSS Variables */
:root {
  --primary: #1a2a24;
  --primary-light: #694f3b;
  --accent-green: #2f5568;
  --bright-green: #00d37b;
  --deep-navy: #0c1c2c;
  --text-footer: #aab5a8;
  --cream: #F5F5F0;
  --white: #FFFFFF;
  --dark: #0a0a0a;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --border: #3b5247;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-heading: 'Arial', sans-serif;
  --font-body: 'Arial', sans-serif;
  --font-accent: 'Montserrat', sans-serif;
}

/* =============================================
   WHO WE ARE SECTION (Modern Corporate Design)
   ============================================= */

.wwa-section {
  position: relative;
  background: var(--white);
  overflow: visible;
  width: 100%;
  padding: 0;
}

.wwa-grid {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 0;
  align-items: stretch;
  width: 100%;
}

.wwa-image-column {
  width: 100%;
  height: 100%;
  min-height: 660px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.wwa-image-wrap {
  width: 100%;
  height: 100%;
}

.wwa-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
}

.wwa-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 42, 36, 0.65) 0%, rgba(10, 10, 10, 0.4) 100%);
  mix-blend-mode: hard-light;
}

/* Geometric Divider */
.wwa-divider-container {
  position: absolute;
  top: 0;
  left: 45%;
  height: 100%;
  width: 250px;
  z-index: 10;
  pointer-events: none;
  transform: translateX(-50%);
}

.wwa-shape {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
}

.wwa-shape-blue {
  background: rgba(26, 68, 108, 0.85);
  clip-path: polygon(30% 0, 100% 0, 70% 100%, 0% 100%);
  left: 20px;
}

.wwa-shape-grey {
  background: rgba(100, 100, 100, 0.2);
  clip-path: polygon(40% 0, 100% 0, 60% 100%, 0% 100%);
  left: -30px;
}

/* Content Area */
.wwa-content-column {
  background: var(--primary);
  /*background: #0d0d0d;*/
  padding: 6rem 8% 8rem 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 5;
}

.wwa-l-frame {
  position: absolute;
  top: calc(6rem - 1.25rem);
  left: calc(8% - 1.25rem);
  width: 50px;
  height: 50px;
  border-top: 2px solid #00d37b;
  border-left: 2px solid #00d37b;
}

.wwa-content-inner {
  position: relative;
  width: 100%;
}

.wwa-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  text-align: left;
  margin-bottom: 2.5rem;
}

.wwa-text {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.9;
  color: #fff;
  text-align: left;
  max-width: 600px;
  margin-right: auto;
  opacity: 0.95;
  font-weight: 300;
}

.wwa-action {
  display: flex;
  justify-content: flex-start;
  margin-top: 3.5rem;
}

.wwa-btn-about {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all var(--transition);
  font-size: 0.95rem;
  border-radius: 4px;
}

.wwa-btn-about:hover {
  background: var(--bright-green);
  border-color: var(--bright-green);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 211, 123, 0.25);
}

.wwa-vertical-accent {
  position: absolute;
  bottom: 0;
  right: 8%;
  width: 2px;
  height: 80px;
  background: #00d37b;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .wwa-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .wwa-image-column {
    height: 400px;
    min-height: 400px;
  }

  .wwa-section {
    padding: 0;
  }

  .wwa-content-column {
    flex: 1;
    padding: 4rem 2rem;
    width: 100%;
  }

  .wwa-divider-container {
    display: none;
  }

  .wwa-headline,
  .wwa-text {
    text-align: left;
    margin-left: 0;
  }

  .wwa-action {
    justify-content: flex-start;
  }

  .wwa-l-frame {
    left: 1rem;
    top: 2rem;
  }

  .wwa-vertical-accent {
    right: 2rem;
  }
}

/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.section-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* =============================================
   BUTTONS
   ============================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--bright-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 211, 123, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-light {
  background: var(--white);
  color: var(--primary);
}

.btn-light:hover {
  background: var(--cream);
}

/* =============================================
   NAVIGATION
   ============================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.5rem 0;
  transition: all var(--transition);
  background: transparent;
}

.site-header.scrolled {
  background: var(--primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 0.25rem 0;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-text {
  display: inline-block;
  font-family: 'Droid Serif', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  background: none;
  padding: 0;
  border-bottom: none;
  text-decoration: none;
  letter-spacing: 0.5px;
  line-height: 1.2;
  transition: color var(--transition);
}

.footer-logo .logo-text {
  display: inline-block;
  font-family: 'Droid Serif', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  text-decoration: none;
  line-height: 1.2;
}

/* .logo-text:hover, */
/* .footer-logo .logo-text:hover { */
/* color: var(--primary-light); */
/* } */

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

.nav-links a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: width var(--transition);
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* =============================================
   MOBILE MENU
   ============================================= */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--white);
  z-index: 2000;
  padding: 6rem 2rem 2rem;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu .mobile-logo-text {
  display: inline-block;
  font-family: "Droid Serif", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  background: none;
  padding: 0;
  border-bottom: none;
  text-decoration: none;
  letter-spacing: 0.5px;
  line-height: 1.2;
  transition: color var(--transition);
}

/* .mobile-menu .mobile-logo-text:hover {
  color: var(--primary-light);
} */

.mobile-menu a {
  display: block;
  padding: 1rem 0;
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.mobile-menu a:hover {
  color: var(--primary);
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-dark);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* =============================================
   HERO
   ============================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

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

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.35); */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 2rem;
  animation: fadeInUp 1s ease-out;
}

.hero-label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subheadline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.scroll-arrow {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  cursor: pointer;
  opacity: 0.8;
}

.scroll-arrow svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2;
  animation: arrowBounce 2s infinite;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes arrowBounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* =============================================
   SECTION UTILITIES
   ============================================= */

.section {
  padding: 5rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.dark-section {
  background: var(--primary);
  color: var(--white);
}

.cream-section {
  background: var(--cream);
}

/* =============================================
   SERVICES SPLIT LAYOUT & BLUR ACCORDION
   ============================================= */

.services-split-layout {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  width: 100%;
}

.services-accordion-col {
  flex: 0 0 58%;
  min-width: 0;
}

.services-image-col {
  flex: 1;
  min-width: 0;
}

.blur-accordion-container {
  display: flex;
  flex-direction: column;
}

.blur-accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.5rem 0;
  transition: filter 0.5s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: filter, opacity;
}

/* The Focus-Stealing Blur Effect */
.blur-accordion-container:hover .blur-accordion-item,
.blur-accordion-container:focus-within .blur-accordion-item {
  filter: blur(4px);
  opacity: 0.4;
}

.blur-accordion-container .blur-accordion-item:hover,
.blur-accordion-container .blur-accordion-item:focus-within,
.blur-accordion-container .blur-accordion-item.is-open {
  filter: blur(0px);
  opacity: 1;
}

/* Header Styles */
.accordion-heading {
  margin: 0;
  font-family: var(--font-heading);
}

button.accordion-header {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: inherit;
  color: inherit;
  outline: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  cursor: pointer;
  padding: 0.5rem 0;
}

.naics-num {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.4;
  letter-spacing: 1px;
  min-width: 60px;
}

.accordion-title-text {
  flex: 1;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  transition: transform 0.3s ease;
}

/* Keyboard focus visibility outlines */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--bright-green) !important;
  outline-offset: 4px !important;
}

.accordion-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.blur-accordion-item.is-open .accordion-icon {
  transform: rotate(45deg);
}

/* Smooth Height Animation (Grid Technique) */
.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

.blur-accordion-item.is-open .accordion-content {
  grid-template-rows: 1fr;
}

.accordion-inner {
  min-height: 0;
}

.accordion-inner p {
  padding: 1rem 0 0.5rem 5.25rem;
  /* Aligned with title */
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Right Side Image */
.services-image-col {
  position: sticky;
  top: 120px;
}

.services-sticky-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.services-sticky-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.image-accent-border {
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 100px;
  height: 100px;
  border-bottom: 3px solid var(--bright-green);
  border-right: 3px solid var(--bright-green);
  z-index: -1;
}

/* Responsive */
@media (max-width: 991px) {
  .services-split-layout {
    flex-direction: column;
    gap: 3rem;
  }

  .services-accordion-col {
    flex: 0 0 100%;
    width: 100%;
  }

  .services-image-col {
    display: none;
    position: relative;
    top: 0;
    width: 100%;
  }

  .services-sticky-image img {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .accordion-header {
    gap: 1rem;
  }

  .naics-num {
    min-width: 45px;
    font-size: 0.75rem;
  }

  .accordion-header h3 {
    font-size: 1.1rem;
  }

  .accordion-inner p {
    padding-left: 0;
    margin-top: 0.5rem;
  }
}

/* Remove old services-grid styles */
/* =============================================
   CONTACT BANNER
   ============================================= */

.contact-banner {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 5rem 2rem;
}

.contact-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.contact-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   ABOUT PAGE
   ============================================= */

.about-hero {
  background: var(--primary);
  color: var(--white);
  padding: 8rem 0 4rem;
  text-align: center;
}

.about-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.about-hero .tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
  letter-spacing: normal;
  text-transform: none;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
  /* Reduced from 400px */
}

.two-column.reverse {
  direction: rtl;
}

.two-column.reverse>* {
  direction: ltr;
}

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

.approach-item {
  text-align: center;
  padding: 2rem;
}

.approach-item .icon {
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--white);
  font-size: 1.5rem;
}

/* Qualifications & Registrations Section */
.qualifications-section {
  background: #0d0d0d;
  color: #fff;
  padding: 6rem 0;
}

.qual-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--text-light);
  margin-bottom: 4rem;
  text-transform: uppercase;
}

.qual-subsection {
  margin-bottom: 4rem;
}

.qual-subsection:last-child {
  margin-bottom: 0;
}

.qual-sublabel {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

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

.reg-card {
  background: var(--white);
  border: 1px solid rgba(26, 42, 36, 0.08);
  border-radius: 8px;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all var(--transition);
}

.reg-card:hover {
  border-color: rgba(26, 42, 36, 0.15);
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 42, 36, 0.04);
}

.reg-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 1px;
}

.reg-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

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

.naics-pill {
  background: var(--white);
  border: 1px solid rgba(26, 42, 36, 0.1);
  color: var(--primary);
  padding: 0.5rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.naics-pill:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.certs-row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.cert-badge-img {
  height: 150px;
  width: auto;
  object-fit: contain;
}

.pmp-badge {
  height: 180px;
}

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

@media (max-width: 768px) {
  .qualifications-section {
    padding: 4rem 0;
  }

  .qual-label {
    margin-bottom: 3rem;
  }

  .certs-row {
    gap: 1.5rem;
  }

  .cert-badge-img {
    height: 140px;
  }

  .pmp-badge {
    height: 160px;
  }
}

@media (max-width: 576px) {
  .reg-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   SERVICES PAGE
   ============================================= */

.service-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

.service-section:last-child {
  border-bottom: none;
}

.service-section .two-column {
  gap: 3rem;
}

.service-section .service-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-section .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

.service-section .service-content .naics {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.service-section .service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.service-section .service-content p {
  color: var(--text-light);
  line-height: 1.8;
}

/* =============================================
   CONTACT PAGE
   ============================================= */

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color var(--transition);
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 61, 43, 0.1);
}

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

.contact-info h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

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

.contact-info .info-item .icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.verify-section {
  background: var(--cream);
  padding: 3rem 0;
  text-align: center;
}

.verify-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.verify-item {
  font-size: 0.9rem;
  color: var(--text-light);
}

.verify-item strong {
  display: block;
  color: var(--text-dark);
  font-size: 1rem;
}

/* =============================================
   FOOTER
   ============================================= */

.site-footer {
  background: var(--primary);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col>h4:first-of-type,
.footer-logo-wrap {
  margin-bottom: 0.75rem;
  /* Reduced from 1.5rem */
  display: flex;
  align-items: center;
  min-height: 1.2rem;
  line-height: 1.2;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 0;
  color: #fff;
  line-height: 1.2;
}

.footer-logo-wrap .logo-text {
  display: inline-block;
  font-family: 'Merriweather', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  text-decoration: none;
  line-height: 1.2;
}

.footer-col h4:not(:first-child) {
  margin-top: 2rem;
  /* Add space above sub-headers like Hours */
}

.footer-col a,
.footer-col span,
.footer-col p {
  display: block;
  color: var(--text-footer);
  padding: 0.4rem 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-col a {
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-tagline {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.social-icons a:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

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

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

.footer-bottom a:hover {
  color: var(--white);
}

.footer-sam-info {
  text-align: right;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .desktop-cta {
    display: none;
  }

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

  .section {
    padding: 3rem 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .contact-banner {
    padding: 3rem 1.5rem;
  }

  .verify-grid {
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 1.5rem;
    padding-top: 2rem;
  }

  .footer-sam-info {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 1rem;
  }

  .container {
    padding: 0 1rem;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }
}