/* ==========================================================================
   Abloom Health, LLC - Official Olive Green Brand Theme & Design System
   ========================================================================== */

:root {
  /* Official Abloom Health Olive Green Palette (Extracted from Logo) */
  --olive-primary: #566E58;
  --olive-dark: #3E5240;
  --olive-darker: #2D3D2F;
  --olive-deep-bg: #263528;
  --olive-light: #6E8870;
  --olive-soft: #8BA48D;
  --olive-subtle-bg: #F2F6F3;
  --olive-accent-bg: #E7EFE8;
  --olive-glow: rgba(86, 110, 88, 0.28);
  
  /* Text & Surfaces */
  --primary-navy: #2D3D2F; /* Deep Olive Charcoal for Headings */
  --bg-canvas: #F7F9F7;
  --bg-surface: #FFFFFF;
  --bg-card: rgba(255, 255, 255, 0.96);
  --text-main: #1F2921;
  --text-muted: #576559;
  --text-light: #849486;
  
  /* Borders & Shadows */
  --border-light: #E0E7E1;
  --border-focus: #566E58;
  --shadow-sm: 0 2px 4px rgba(45, 61, 47, 0.04);
  --shadow-md: 0 4px 14px rgba(45, 61, 47, 0.08);
  --shadow-lg: 0 12px 32px rgba(45, 61, 47, 0.14);
  --shadow-glow: 0 0 25px rgba(86, 110, 88, 0.3);
  
  /* Dimensions & Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --max-width: 1240px;
  --header-height: 85px;
  --topbar-height: 40px;
  
  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-canvas);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.25;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Utility Containers */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-teal { color: var(--olive-primary) !important; }
.bg-teal-subtle { background-color: var(--olive-subtle-bg); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.badge-teal {
  background-color: var(--olive-accent-bg);
  color: var(--olive-dark);
  border: 1px solid rgba(86, 110, 88, 0.35);
}
.badge-navy {
  background-color: rgba(45, 61, 47, 0.08);
  color: var(--primary-navy);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  outline: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--olive-primary) 0%, var(--olive-dark) 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(86, 110, 88, 0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--olive-light) 0%, var(--olive-primary) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-navy {
  background: linear-gradient(135deg, var(--olive-dark) 0%, var(--olive-darker) 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(45, 61, 47, 0.3);
}
.btn-navy:hover {
  background: linear-gradient(135deg, var(--olive-primary) 0%, var(--olive-dark) 100%);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--olive-dark);
  border: 2px solid var(--olive-primary);
}
.btn-outline:hover {
  background: var(--olive-primary);
  color: #FFFFFF;
}

.btn-white {
  background: #FFFFFF;
  color: var(--olive-dark);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  background: var(--olive-subtle-bg);
  transform: translateY(-2px);
}

/* Top Announcement Bar */
.top-bar {
  background-color: var(--olive-deep-bg);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.85rem;
  padding: 0.55rem 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: 0.75rem;
}
.top-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.top-info a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-fast);
}
.top-info a:hover {
  color: var(--olive-soft);
}

/* Main Navigation Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: var(--transition-fast);
}
.main-header.scrolled {
  box-shadow: var(--shadow-md);
  height: 75px;
}
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
}
.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}
.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background-color: var(--olive-primary);
  transition: var(--transition-fast);
  border-radius: var(--radius-full);
}
.nav-link:hover, .nav-link.active {
  color: var(--olive-primary);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--olive-dark);
  padding: 0.5rem;
}

/* Hero Section - Rich Olive Gradient */
.hero-section {
  position: relative;
  padding: 4.5rem 0 5rem;
  background: linear-gradient(135deg, var(--olive-primary) 0%, var(--olive-dark) 50%, var(--olive-darker) 100%);
  color: #FFFFFF;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(142, 172, 144, 0.3) 0%, rgba(142, 172, 144, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}
.hero-content h1 {
  font-size: 3rem;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 620px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  border: 4px solid rgba(255, 255, 255, 0.2);
}
.hero-image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.hero-floating-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(45, 61, 47, 0.92);
  backdrop-filter: blur(10px);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.floating-icon {
  width: 44px;
  height: 44px;
  background: var(--olive-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* Key Stats Ribbon */
.stats-ribbon {
  background: var(--bg-surface);
  margin-top: -2.5rem;
  position: relative;
  z-index: 10;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2rem 2.5rem;
  border: 1px solid var(--border-light);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  divide-x: 1px solid var(--border-light);
}
.stat-card {
  text-align: center;
  padding: 0 1rem;
}
.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--olive-primary);
}
.stat-label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--olive-darker);
}
.stat-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* About Us & Founder Section */
.section-padding {
  padding: 5.5rem 0;
}
.section-header {
  margin-bottom: 3rem;
  max-width: 720px;
}
.section-header h2 {
  font-size: 2.25rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  color: var(--olive-darker);
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
.feature-card {
  background: var(--bg-surface);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--olive-primary);
}
.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--olive-subtle-bg);
  color: var(--olive-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.feature-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--olive-darker);
  margin-bottom: 0.25rem;
}

/* Founder Spotlight Card */
.founder-card {
  background: linear-gradient(135deg, var(--olive-dark) 0%, var(--olive-darker) 100%);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.founder-card::after {
  content: '"';
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 14rem;
  font-family: serif;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}
.founder-badge {
  background: var(--olive-light);
  color: #FFFFFF;
  padding: 0.3rem 0.88rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--bg-surface);
  position: relative;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: var(--bg-canvas);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--olive-primary);
  background: #FFFFFF;
}
.testimonial-card.featured {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--olive-subtle-bg) 100%);
  border: 2px solid var(--olive-primary);
  box-shadow: var(--shadow-md);
}
.testimonial-stars {
  color: #F59E0B;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.testimonial-highlight {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--olive-darker);
  margin-bottom: 0.75rem;
}
.testimonial-quote {
  color: var(--text-main);
  font-size: 0.98rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.testimonial-client {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}
.client-avatar {
  width: 44px;
  height: 44px;
  background: var(--olive-primary);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

/* Services Section & Tabs */
.services-section {
  background-color: var(--bg-canvas);
  position: relative;
}
.tabs-header {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}
.tab-btn.active, .tab-btn:hover {
  background: var(--olive-darker);
  color: #FFFFFF;
  border-color: var(--olive-darker);
  box-shadow: var(--shadow-md);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.75rem;
}
.service-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--olive-primary);
}
.service-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--olive-dark) 0%, var(--olive-primary) 100%);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  color: var(--olive-darker);
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Specialty Care Feature Section */
.specialty-section {
  background: linear-gradient(135deg, var(--olive-dark) 0%, var(--olive-darker) 100%);
  color: #FFFFFF;
  position: relative;
}
.specialty-section h2, .specialty-section p {
  color: #FFFFFF;
}
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.specialty-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: var(--transition-fast);
}
.specialty-card:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--olive-soft);
}
.specialty-card h3 {
  color: #FFFFFF;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.specialty-card ul {
  list-style: none;
  margin-top: 1rem;
}
.specialty-card li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.specialty-card li::before {
  content: '✓';
  color: var(--olive-soft);
  font-weight: 700;
}

/* Areas Served Section */
.areas-section {
  background-color: var(--bg-surface);
}
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.city-card {
  background: var(--bg-canvas);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  transition: var(--transition-fast);
}
.city-card:hover {
  background: #FFFFFF;
  border-color: var(--olive-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.city-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--olive-darker);
}
.city-county {
  font-size: 0.85rem;
  color: var(--olive-primary);
  font-weight: 600;
  margin-top: 0.25rem;
}

.search-box-wrapper {
  max-width: 500px;
  margin: 0 auto 2.5rem;
  position: relative;
}
.search-input {
  width: 100%;
  padding: 0.9rem 1.25rem 0.9rem 3rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--border-light);
  outline: none;
  font-size: 1rem;
  transition: var(--transition-fast);
}
.search-input:focus {
  border-color: var(--olive-primary);
  box-shadow: var(--shadow-glow);
}
.search-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.blog-image {
  height: 200px;
  width: 100%;
  object-fit: cover;
}
.blog-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.blog-title {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
  color: var(--olive-darker);
}
.blog-excerpt {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

/* Contact Section */
.contact-section {
  background-color: var(--bg-canvas);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}
.contact-info-card {
  background: var(--olive-darker);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.contact-info-card h3 {
  color: #FFFFFF;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.contact-list {
  list-style: none;
  margin: 2rem 0;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--olive-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-form-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--olive-darker);
}
.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  outline: none;
  transition: var(--transition-fast);
}
.form-control:focus {
  border-color: var(--olive-primary);
  box-shadow: 0 0 0 3px rgba(86, 110, 88, 0.15);
}

/* Modals */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(38, 53, 40, 0.72);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}
.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  max-width: 650px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: var(--transition-smooth);
}
.modal-backdrop.open .modal-card {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--bg-canvas);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

/* Toast Notifications */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--olive-darker);
  color: #FFFFFF;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--olive-soft);
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-smooth);
}
.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* Sticky Mobile Bar */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--olive-darker);
  padding: 0.75rem 1rem;
  z-index: 999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

/* Footer */
.main-footer {
  background: var(--olive-deep-bg);
  color: rgba(255, 255, 255, 0.82);
  padding: 4.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.6rem;
}
.footer-links a:hover {
  color: var(--olive-soft);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    divide-x: none;
    gap: 1.5rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-content h1 {
    font-size: 2.35rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--bg-surface);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-150%);
    transition: var(--transition-smooth);
    z-index: 999;
  }
  .nav-menu.open {
    transform: translateY(0);
  }
  .mobile-toggle {
    display: block;
  }
  .top-info {
    font-size: 0.78rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .sticky-mobile-bar {
    display: flex;
    gap: 0.75rem;
  }
  .sticky-mobile-bar .btn {
    flex: 1;
    padding: 0.65rem;
    font-size: 0.9rem;
  }
  body {
    padding-bottom: 60px;
  }
}
