/* ================================================
   JA APEX SOLUTIONS — Design System v2
   Strict Blue (#1A365D) & White (#FFFFFF)
   Corporate Executive Cleaning
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ---- Custom Properties ---- */
:root {
  /* Strict dual-color palette */
  --apex-blue: #1A365D;
  --pristine-white: #FFFFFF;

  /* Derived from the two brand colors only */
  --blue-90: #0f2340;
  --blue-80: #15304f;
  --blue-70: #1A365D;
  --blue-60: #234a7a;
  --blue-50: #2d5f99;
  --blue-20: rgba(26, 54, 93, 0.20);
  --blue-10: rgba(26, 54, 93, 0.10);
  --blue-08: rgba(26, 54, 93, 0.08);
  --blue-05: rgba(26, 54, 93, 0.05);
  --blue-03: rgba(26, 54, 93, 0.03);
  --white-90: rgba(255, 255, 255, 0.9);
  --white-70: rgba(255, 255, 255, 0.7);
  --white-50: rgba(255, 255, 255, 0.5);
  --white-30: rgba(255, 255, 255, 0.3);
  --white-15: rgba(255, 255, 255, 0.15);
  --white-08: rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --fs-display: clamp(2.5rem, 5vw, 4rem);
  --fs-h1: clamp(2rem, 4vw, 3.25rem);
  --fs-h2: clamp(1.75rem, 3vw, 2.5rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.625rem);
  --fs-h4: 1.2rem;
  --fs-body: 1rem;
  --fs-body-lg: 1.125rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.75rem;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --container-max: 1160px;
  --container-narrow: 860px;
  --nav-height: 80px;

  /* Borders */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows — blue-tinted */
  --shadow-sm: 0 1px 4px rgba(26, 54, 93, 0.06);
  --shadow-md: 0 4px 16px rgba(26, 54, 93, 0.08);
  --shadow-lg: 0 8px 32px rgba(26, 54, 93, 0.10);
  --shadow-xl: 0 12px 48px rgba(26, 54, 93, 0.12);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 200ms var(--ease-out);
  --transition-base: 350ms var(--ease-out);
  --transition-slow: 600ms var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--apex-blue);
  background-color: var(--pristine-white);
  overflow-x: hidden;
}

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

a {
  color: var(--apex-blue);
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

a:hover {
  opacity: 0.75;
}

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font-body);
  font-size: var(--fs-body);
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--apex-blue);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

.section-label {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--apex-blue);
  margin-bottom: var(--space-sm);
  display: inline-block;
  opacity: 0.6;
}

.section-title {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: var(--fs-body-lg);
  color: var(--apex-blue);
  opacity: 0.7;
  max-width: 640px;
  line-height: 1.8;
}

.section-subtitle.centered {
  margin-left: auto;
  margin-right: auto;
}

.text-center { text-align: center; }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: var(--container-narrow);
}

section {
  padding: var(--space-3xl) 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2.25rem;
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  position: relative;
}

.btn--primary {
  background: var(--apex-blue);
  color: var(--pristine-white);
  border: 2px solid var(--apex-blue);
}

.btn--primary:hover {
  background: var(--blue-90);
  border-color: var(--blue-90);
  color: var(--pristine-white);
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn--outline:hover {
  background: var(--apex-blue);
  color: var(--pristine-white);
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* White variants for dark backgrounds */
.btn--white {
  background: var(--pristine-white);
  color: var(--apex-blue);
  border: 2px solid var(--pristine-white);
}

.btn--white:hover {
  background: transparent;
  color: var(--pristine-white);
  border-color: var(--pristine-white);
  opacity: 1;
  transform: translateY(-2px);
}

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

.btn--white-outline:hover {
  background: var(--pristine-white);
  color: var(--apex-blue);
  opacity: 1;
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1rem 2.75rem;
  font-size: var(--fs-body);
}

/* ---- Navigation ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: var(--pristine-white);
  transition: all var(--transition-base);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--apex-blue);
  line-height: 1.2;
}

.nav-logo-text .sub {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.5;
  display: block;
}

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

.nav-links a {
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--apex-blue);
  position: relative;
  padding: 0.25rem 0;
  opacity: 0.6;
  transition: opacity var(--transition-fast);
}

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

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
}

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

.nav-cta {
  margin-left: 0.5rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--apex-blue);
  transition: all var(--transition-fast);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--pristine-white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

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

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--apex-blue);
  letter-spacing: 1px;
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  background: var(--apex-blue);
  color: var(--pristine-white);
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--apex-blue) 0%, rgba(26, 54, 93, 0.85) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 700px;
  padding: var(--space-2xl) 0;
}

.hero-label {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--pristine-white);
  opacity: 0.6;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-label::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--pristine-white);
  opacity: 0.6;
}

.hero h1 {
  font-size: var(--fs-display);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  color: var(--pristine-white);
}

.hero-description {
  font-size: var(--fs-body-lg);
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--pristine-white);
  border-bottom: 1px solid var(--blue-08);
  padding: var(--space-xl) 0;
}

.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.trust-item {
  text-align: center;
  padding: var(--space-md);
}

.trust-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-sm);
  background: var(--blue-05);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--apex-blue);
}

.trust-item h4 {
  font-size: var(--fs-small);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.trust-item p {
  font-size: var(--fs-xs);
  opacity: 0.5;
}

/* ---- Introduction Section ---- */
.intro-section {
  background: var(--pristine-white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.intro-content h2 {
  margin-bottom: var(--space-md);
}

.intro-content p {
  line-height: 1.9;
  opacity: 0.75;
  font-size: var(--fs-body-lg);
}

.intro-visual {
  position: relative;
}

.intro-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ---- Services Section ---- */
.services-section {
  background: var(--blue-03);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.service-card {
  background: var(--pristine-white);
  border: 1px solid var(--blue-08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--blue-20);
}

.service-card-img {
  height: 240px;
  overflow: hidden;
}

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

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

.service-card-body {
  padding: var(--space-lg);
}

.service-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-sm);
}

.service-card p {
  opacity: 0.7;
  line-height: 1.8;
}

/* ---- Daily Checklist Section ---- */
.checklist-section {
  background: var(--apex-blue);
  color: var(--pristine-white);
}

.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.checklist-content .section-label {
  color: var(--pristine-white);
  opacity: 0.5;
}

.checklist-content h2 {
  color: var(--pristine-white);
  margin-bottom: var(--space-md);
}

.checklist-content p {
  color: var(--white-70);
  line-height: 1.9;
  font-size: var(--fs-body-lg);
}

.checklist-card {
  background: var(--white-08);
  border: 1px solid var(--white-08);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  backdrop-filter: blur(10px);
}

.checklist-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--white-08);
}

.checklist-card-icon {
  width: 44px;
  height: 44px;
  background: var(--pristine-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--apex-blue);
}

.checklist-card-header h3 {
  color: var(--pristine-white);
  font-size: var(--fs-h4);
}

.checklist-card-header span {
  font-size: var(--fs-xs);
  color: var(--white-50);
}

.daily-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.65rem 0;
  font-size: var(--fs-small);
  color: var(--white-70);
  border-bottom: 1px solid var(--white-08);
}

.daily-item:last-child {
  border-bottom: none;
}

.daily-item .check {
  color: var(--pristine-white);
  font-weight: 700;
}

.daily-item .time {
  margin-left: auto;
  font-size: var(--fs-xs);
  color: var(--white-30);
  white-space: nowrap;
}

/* ---- About / Team Section ---- */
.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-2xl);
  background: var(--apex-blue);
  color: var(--pristine-white);
  text-align: center;
}

.page-hero h1 {
  color: var(--pristine-white);
}

.page-hero .section-label {
  color: var(--pristine-white);
  opacity: 0.5;
}

.page-hero .section-subtitle {
  color: var(--white-70);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.team-card {
  background: var(--pristine-white);
  border: 1px solid var(--blue-08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.team-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--blue-20);
}

.team-card-img {
  height: 400px;
  overflow: hidden;
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--transition-slow);
}

.team-card:hover .team-card-img img {
  transform: scale(1.03);
}

.team-card-body {
  padding: var(--space-lg);
}

.team-card-body .role {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--apex-blue);
  opacity: 0.5;
  margin-bottom: var(--space-xs);
}

.team-card-body h3 {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-sm);
}

.team-card-body p {
  font-size: var(--fs-small);
  line-height: 1.9;
  opacity: 0.7;
}

/* ---- SOP Timeline ---- */
.sop-section {
  background: var(--blue-03);
}

.sop-timeline {
  position: relative;
  margin-top: var(--space-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.sop-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 28px;
  width: 2px;
  background: var(--blue-10);
}

.sop-step {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
}

.sop-step-number {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--apex-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--pristine-white);
  font-size: 1rem;
  position: relative;
  z-index: 2;
}

.sop-step-content h4 {
  margin-bottom: 0.25rem;
  margin-top: 0.5rem;
}

.sop-step-content p {
  font-size: var(--fs-small);
  opacity: 0.6;
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: var(--apex-blue);
  padding: var(--space-3xl) 0;
  text-align: center;
  color: var(--pristine-white);
}

.cta-banner h2 {
  color: var(--pristine-white);
  margin-bottom: var(--space-sm);
}

.cta-banner p {
  color: var(--white-70);
  font-size: var(--fs-body-lg);
  margin-bottom: var(--space-lg);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .section-label {
  color: var(--pristine-white);
  opacity: 0.5;
}

/* ---- Contact Page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.contact-form-wrapper {
  background: var(--pristine-white);
  border: 1px solid var(--blue-08);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--apex-blue);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--pristine-white);
  border: 2px solid var(--blue-10);
  border-radius: var(--radius-sm);
  color: var(--apex-blue);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--apex-blue);
  box-shadow: 0 0 0 3px var(--blue-08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--apex-blue);
  opacity: 0.3;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231A365D' d='M6 8.825L0.35 3.175l0.7-0.7L6 7.425l4.95-4.95 0.7 0.7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  color: var(--apex-blue);
}

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

.form-submit {
  margin-top: var(--space-md);
}

.form-submit .btn {
  width: 100%;
}

/* Contact Info Sidebar */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-info-card {
  background: var(--pristine-white);
  border: 1px solid var(--blue-08);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.contact-info-item {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--blue-05);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--blue-05);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--apex-blue);
}

.contact-info-item h4 {
  font-size: var(--fs-small);
  margin-bottom: 0.125rem;
}

.contact-info-item p,
.contact-info-item a {
  font-size: var(--fs-small);
  opacity: 0.6;
}

.contact-hours {
  background: var(--pristine-white);
  border: 1px solid var(--blue-08);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.contact-hours h3 {
  font-size: var(--fs-h4);
  margin-bottom: var(--space-sm);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: var(--fs-small);
  border-bottom: 1px solid var(--blue-03);
}

.hours-row:last-child { border-bottom: none; }
.hours-row .day { opacity: 0.8; }
.hours-row .time { opacity: 0.5; }

/* ---- Map ---- */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--blue-08);
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
  filter: saturate(0.3) contrast(1.1);
}

/* ---- Footer ---- */
.footer {
  background: var(--apex-blue);
  color: var(--pristine-white);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand .nav-logo-text {
  color: var(--pristine-white);
}

.footer-brand p {
  font-size: var(--fs-small);
  color: var(--white-50);
  margin-top: var(--space-sm);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-md);
  color: var(--pristine-white);
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  font-size: var(--fs-small);
  color: var(--white-50);
  transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--pristine-white);
  opacity: 1;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: var(--space-md);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--white-15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-50);
  font-size: var(--fs-small);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--pristine-white);
  color: var(--apex-blue);
  border-color: var(--pristine-white);
  opacity: 1;
}

.footer-bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid var(--white-08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: var(--fs-xs);
  color: var(--white-30);
}

.footer-bottom a {
  font-size: var(--fs-xs);
  color: var(--white-30);
}

.footer .map-container {
  margin-top: var(--space-md);
  border-color: var(--white-08);
}

.footer .map-container iframe {
  height: 200px;
  filter: saturate(0) brightness(0.6) contrast(1.2);
}

/* ---- GSAP Animation Prep ---- */
.gs-fade {
  opacity: 0;
  transform: translateY(40px);
}

.gs-fade-right {
  opacity: 0;
  transform: translateX(-40px);
}

.gs-fade-left {
  opacity: 0;
  transform: translateX(40px);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .intro-grid,
  .checklist-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  :root {
    --space-3xl: 5rem;
    --space-2xl: 4rem;
  }

  .nav-links {
    display: none;
  }

  .nav-cta.desktop-only {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .trust-bar .container {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .trust-bar .container {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }
}
