/* ============================================================
   GREEN OPERATIONS LLC — Design System
   Brand: #37B649 (green) + #2D2D2D (dark gray)
   Vibe: bold-energy — full-width, minimal radius, high contrast
   Font: Montserrat (400, 500, 600, 700, 800)
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --color-primary: #37B649;
  --color-primary-dark: #2E9A3D;
  --color-primary-light: #4BC75B;
  --color-secondary: #2D2D2D;
  --color-secondary-light: #808080;
  --color-accent: #37B649;
  --color-bg: #ffffff;
  --color-bg-alt: #f5f5f5;
  --color-bg-dark: #1a1a1a;
  --color-text: #2D2D2D;
  --color-text-light: #ffffff;
  --color-muted: #6B7280;
  --color-border: #E5E7EB;
  --color-success: #37B649;
  --color-error: #DC2626;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --radius: 4px;
  --shadow: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
  --transition: 0.3s ease;
  --spacing-section: 5rem;
  --max-width: 1200px;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.5rem;
  --fs-4xl: 3rem;
  --fs-hero: clamp(2.25rem, 5vw, 3.5rem);
  --fs-h1: clamp(1.875rem, 4vw, 2.75rem);
  --fs-h2: clamp(1.5rem, 3vw, 2rem);
  --fs-h3: clamp(1.125rem, 2.5vw, 1.5rem);
  --lh-heading: 1.2;
  --lh-body: 1.7;
  --header-height: 80px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-primary-dark);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

a, button, input, select, textarea, [role="button"] {
  touch-action: manipulation;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--color-primary);
  color: var(--color-text-light);
  padding: 0.75rem 1.5rem;
  z-index: 9999;
  font-weight: 700;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 0;
  color: var(--color-text-light);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--lh-heading);
  color: var(--color-secondary);
}

h1 { font-size: var(--fs-h1); margin-bottom: 1rem; }
h2 { font-size: var(--fs-h2); margin-bottom: 0.75rem; }
h3 { font-size: var(--fs-h3); margin-bottom: 0.5rem; }
h4 { font-size: var(--fs-xl); margin-bottom: 0.5rem; }
h5 { font-size: var(--fs-lg); margin-bottom: 0.375rem; }
h6 { font-size: var(--fs-md); margin-bottom: 0.375rem; }

p {
  margin-bottom: 1rem;
  color: var(--color-muted);
}

strong {
  font-weight: 700;
  color: var(--color-text);
}

.lead {
  font-size: var(--fs-md);
  color: var(--color-muted);
  line-height: 1.8;
}

.muted {
  color: var(--color-muted);
  font-size: var(--fs-sm);
}

.section-label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.color-primary {
  color: var(--color-primary);
}

.section-title {
  font-size: var(--fs-h2);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--color-muted);
  font-size: var(--fs-md);
  max-width: 640px;
  margin: 0 auto 3rem;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: var(--spacing-section) 0;
}

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

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

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--color-text-light);
}

.section-dark p {
  color: rgba(255,255,255,0.85);
}

.section-dark .section-label {
  color: var(--color-primary-light);
}

.section-dark .color-muted {
  color: #ccc;
}

/* Grid System */
.grid {
  display: grid;
  gap: 2rem;
}

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

.grid-3,
.grid--3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.split-reverse {
  direction: rtl;
}

.split-reverse > * {
  direction: ltr;
}

.split-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
}

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

@media (min-width: 640px) {
  .grid-2, .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .grid-3, .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  text-decoration: none;
  cursor: pointer;
  min-height: 48px;
  line-height: 1;
}

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

.btn--primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn--secondary {
  background: var(--color-secondary);
  color: var(--color-text-light);
  border-color: var(--color-secondary);
}

.btn--secondary:hover {
  background: #404040;
  border-color: #404040;
  color: var(--color-text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

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

.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn--white {
  background: var(--color-text-light);
  color: var(--color-secondary);
  border-color: var(--color-text-light);
}

.btn--white:hover {
  background: transparent;
  color: var(--color-text-light);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: var(--fs-xs);
  min-height: 40px;
}

.btn--full {
  width: 100%;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}

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

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: var(--header-height);
}

.header__logo img {
  height: 52px;
  width: auto;
}

.nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  padding: 0.5rem 0.875rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-text);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}

.nav__link:hover,
.nav__link.active {
  background: rgba(55, 182, 73, 0.08);
  color: var(--color-primary);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header__phone {
  display: none;
  font-weight: 700;
  color: var(--color-secondary);
  font-size: var(--fs-sm);
  white-space: nowrap;
  min-height: 48px;
  align-items: center;
}

.header__phone:hover {
  color: var(--color-primary);
}

.header__cta {
  display: none;
}

/* Hamburger Toggle */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 10001;
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-secondary);
  position: relative;
  transition: background var(--transition);
}

.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--color-secondary);
  transition: transform var(--transition), top var(--transition);
}

.nav-toggle__bar::before { top: -7px; }
.nav-toggle__bar::after { top: 7px; }

/* Hamburger to X animation */
.nav-open .nav-toggle__bar {
  background: transparent;
}

.nav-open .nav-toggle__bar::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-open .nav-toggle__bar::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Mobile Nav Overlay */
.nav-open .nav {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-bg);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 100px;
  gap: 0.5rem;
  z-index: 10000;
  overflow-y: auto;
}

.nav-open .nav__link {
  font-size: var(--fs-lg);
  padding: 1rem 2rem;
  width: 80%;
  justify-content: center;
  text-align: center;
}

/* Desktop nav */
@media (min-width: 1024px) {
  .nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .header__phone {
    display: inline-flex;
  }

  .header__cta {
    display: inline-flex;
  }

  .nav-open .nav {
    position: static;
    width: auto;
    height: auto;
    flex-direction: row;
    padding-top: 0;
    background: transparent;
  }
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > button {
  padding: 0.5rem 0.875rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-text);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  min-height: 48px;
}

.nav-dropdown > button:hover {
  background: rgba(55, 182, 73, 0.08);
  color: var(--color-primary);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  z-index: 100;
  padding: 0.5rem 0;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.625rem 1.25rem;
  font-size: var(--fs-sm);
  color: var(--color-text);
  transition: background var(--transition), color var(--transition);
  min-height: 44px;
  line-height: 44px;
  padding-top: 0;
  padding-bottom: 0;
}

.nav-dropdown-menu a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 5rem;
  background: var(--color-bg-dark);
  min-height: 520px;
  display: flex;
  align-items: center;
}

/* Dark overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

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

.hero h1 {
  color: var(--color-text-light);
  font-size: var(--fs-hero);
  font-weight: 800;
  margin-bottom: 1.25rem;
  max-width: 720px;
}

.hero p {
  color: rgba(255,255,255,0.9);
  font-size: var(--fs-lg);
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero .btn-group {
  margin-bottom: 0;
}

.hero .section-label {
  color: var(--color-primary-light);
}

/* Hero badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--color-text-light);
  font-size: var(--fs-sm);
  font-weight: 600;
}

.hero-badge svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Inner Page Hero (shorter, left-aligned) */
.hero--inner {
  min-height: 280px;
  padding: 4rem 0 3rem;
  text-align: left;
}

.hero--inner h1 {
  font-size: var(--fs-h1);
  max-width: 640px;
}

.hero--inner p {
  max-width: 540px;
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  font-size: var(--fs-sm);
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.breadcrumbs a {
  color: var(--color-muted);
  transition: color var(--transition);
}

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

.breadcrumbs .separator {
  margin: 0 0.4rem;
  color: var(--color-muted);
}

.breadcrumbs .current {
  color: var(--color-secondary);
  font-weight: 600;
}

/* Breadcrumbs inside hero (white text) */
.hero .breadcrumbs {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}

.hero .breadcrumbs a {
  color: rgba(255,255,255,0.7);
}

.hero .breadcrumbs a:hover {
  color: var(--color-text-light);
}

.hero .breadcrumbs .separator {
  color: rgba(255,255,255,0.5);
}

.hero .breadcrumbs .current {
  color: var(--color-text-light);
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--color-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__content,
.card__body,
.card-body {
  padding: 1.5rem;
}

.card__title {
  font-size: var(--fs-lg);
  margin-bottom: 0.5rem;
  color: var(--color-secondary);
}

.card__text {
  font-size: var(--fs-sm);
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(55, 182, 73, 0.1);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.card__icon svg {
  width: 24px;
  height: 24px;
}

.card-link {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap var(--transition), color var(--transition);
}

.card-link:hover {
  gap: 0.5rem;
  color: var(--color-primary-dark);
}

.card-link::after {
  content: '\2192';
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card,
.feature-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover,
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.service-card__icon,
.feature-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(55, 182, 73, 0.1);
  border-radius: var(--radius);
  margin: 0 auto 1.25rem;
  color: var(--color-primary);
}

.service-card__icon svg,
.feature-card__icon svg {
  width: 32px;
  height: 32px;
}

.service-card__title {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.75rem;
}

.service-card__text {
  font-size: var(--fs-sm);
  color: var(--color-muted);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.service-card__link {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap var(--transition), color var(--transition);
}

.service-card__link:hover {
  gap: 0.5rem;
  color: var(--color-primary-dark);
}

.service-card__link::after {
  content: '\2192';
}

/* ============================================================
   STATS / TRUST BAR
   ============================================================ */
.stats-bar {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 1.5rem 0;
}

.stats-bar .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.stats-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
  min-width: 120px;
}
.stats-bar__item > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stats-bar__number,
.stats-bar__value {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.stats-bar__label {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Trust Items (with icons) */
.trust-bar {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.trust-bar .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1.25rem 1.25rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--fs-sm);
  color: var(--color-muted);
  white-space: nowrap;
}

.trust-item strong {
  color: var(--color-primary);
  font-size: var(--fs-lg);
}

.trust-item svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial,
.testimonial-card {
  background: var(--color-bg);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--color-border);
  position: relative;
}

.testimonial::before,
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  font-size: 4rem;
  color: var(--color-primary);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial__stars,
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.testimonial__stars svg,
.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: #FBBF24;
  fill: #FBBF24;
}

.testimonial__text,
.testimonial-text {
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--color-muted);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial__author,
.testimonial-author {
  font-weight: 700;
  color: var(--color-secondary);
  font-size: var(--fs-sm);
}

.testimonial__service {
  color: var(--color-muted);
  font-size: var(--fs-xs);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--color-bg);
  transition: border-color var(--transition);
}

.faq-item.active {
  border-color: var(--color-primary);
}

.faq-item__question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--color-secondary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 48px;
  background: var(--color-bg);
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
  border: none;
  gap: 1rem;
}

.faq-item__question:hover {
  background: var(--color-bg-alt);
}

.faq-item.active .faq-item__question {
  color: var(--color-primary);
}

.faq-item__icon {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-primary);
  transition: transform var(--transition);
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-muted);
  line-height: 1.7;
  display: none;
}

.faq-item__answer p {
  margin-bottom: 0.75rem;
}

.faq-item__answer p:last-child {
  margin-bottom: 0;
}

.faq-item.active .faq-item__answer {
  display: block;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 0.375rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group input[type="number"],
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: var(--fs-base);
  color: var(--color-text);
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 48px;
  line-height: 1.5;
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%236B7280'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(55, 182, 73, 0.15);
}

/* Validation states */
.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
  border-color: var(--color-error);
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
  border-color: var(--color-success);
}

.form-error {
  display: none;
  font-size: var(--fs-xs);
  color: var(--color-error);
  margin-top: 0.25rem;
}

.form-submit {
  margin-top: 1.5rem;
}

/* ============================================================
   SMS CONSENT
   ============================================================ */
.sms-consent {
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.sms-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--color-primary);
}

.sms-consent__label {
  font-size: var(--fs-xs);
  color: var(--color-muted);
  line-height: 1.5;
}

.sms-consent__label a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 0;
}

.footer h3,
.footer h4 {
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.footer p {
  color: rgba(255,255,255,0.7);
  font-size: var(--fs-sm);
}

.footer a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.footer a:hover {
  color: var(--color-primary-light);
}

.footer__brand {
  margin-bottom: 1.5rem;
}

.footer__brand img {
  height: 44px;
  width: auto;
  margin-bottom: 1rem;
}

.footer__brand p {
  max-width: 280px;
  line-height: 1.7;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer__links ul,
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__links a,
.footer__col a {
  font-size: var(--fs-sm);
  display: inline-flex;
  align-items: center;
  min-height: 36px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: var(--fs-sm);
}

.footer__contact-item strong {
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.1);
  transition: background var(--transition), transform var(--transition);
}

.footer__social a:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

.footer__social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.5);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.5);
}

.footer__legal a:hover {
  color: var(--color-text-light);
}

.footer__credit {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.4);
}

.footer__credit a {
  color: rgba(255,255,255,0.4);
}

.footer__credit a:hover {
  color: var(--color-primary-light);
}

@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.gallery-item,
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img,
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.gallery-item:hover img,
.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.gallery-item:hover .gallery-item__overlay {
  background: rgba(0, 0, 0, 0.3);
}

.gallery-item__overlay svg {
  width: 32px;
  height: 32px;
  color: var(--color-text-light);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--transition), transform var(--transition);
}

.gallery-item:hover .gallery-item__overlay svg {
  opacity: 1;
  transform: scale(1);
}

/* Gallery filter tabs */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.gallery-filter-btn {
  padding: 0.5rem 1.25rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-muted);
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: all var(--transition);
  min-height: 40px;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--color-primary);
  color: var(--color-text-light);
  border-color: var(--color-primary);
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Lightbox placeholder — enhanced via JS */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--color-text-light);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ============================================================
   IMAGE PLACEHOLDER SYSTEM
   ============================================================ */
.img-wrap {
  position: relative;
  overflow: hidden;
}

.img-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #9ca3af;
  border-radius: var(--radius);
}

.img-placeholder span {
  color: var(--color-muted);
  font-size: var(--fs-xs);
  text-align: center;
  padding: 1rem;
}

.img-real {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.img-real.loaded {
  opacity: 1;
}

/* ============================================================
   CTA SECTIONS
   ============================================================ */
.cta-section,
.section--cta {
  background: var(--color-primary);
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2,
.section--cta h2 {
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.cta-section p,
.section--cta p {
  color: rgba(255,255,255,0.9);
  font-size: var(--fs-md);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-section .section-label,
.section--cta .section-label {
  color: rgba(255,255,255,0.7);
}

/* Outline button inside CTA / hero (white on dark/green bg) */
.cta-section .btn--outline,
.hero .btn--outline {
  color: var(--color-text-light);
  border-color: var(--color-text-light);
}

.cta-section .btn--outline:hover,
.hero .btn--outline:hover {
  background: var(--color-text-light);
  color: var(--color-primary);
}

/* Dark CTA variant */
.cta-section--dark {
  background: var(--color-bg-dark);
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps,
.process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  counter-reset: step;
}

.process-step,
.process__step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  counter-increment: step;
}

.process-step__number,
.process__number {
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-text-light);
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 800;
  border-radius: var(--radius);
  line-height: 1;
}

.process-step__content,
.process__content {
  flex: 1;
}

.process-step__title {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.process-step__text {
  font-size: var(--fs-sm);
  color: var(--color-muted);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .process-steps,
  .process {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-steps--horizontal {
    grid-template-columns: repeat(4, 1fr);
  }

  .process-steps--horizontal .process-step {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* ============================================================
   TABLES
   ============================================================ */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1.5rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
}

thead {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
}

th {
  padding: 0.875rem 1rem;
  text-align: left;
  font-weight: 700;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-muted);
}

tbody tr:hover {
  background: var(--color-bg-alt);
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-card {
  background: var(--color-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.blog-card .card-img {
  aspect-ratio: 16/9;
}

.blog-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: var(--fs-xs);
  color: var(--color-muted);
  margin-bottom: 0.75rem;
}

.blog-meta__date {
  font-weight: 600;
}

.blog-meta__category {
  background: rgba(55, 182, 73, 0.1);
  color: var(--color-primary);
  padding: 0.125rem 0.625rem;
  border-radius: var(--radius);
  font-weight: 600;
}

.blog-card__title {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.blog-card__title a {
  color: var(--color-secondary);
}

.blog-card__title a:hover {
  color: var(--color-primary);
}

.blog-card__excerpt {
  font-size: var(--fs-sm);
  color: var(--color-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* Article / Prose Content */
.article-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: var(--fs-base);
  line-height: 1.8;
  color: var(--color-text);
}

.article-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: var(--fs-2xl);
}

.article-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: var(--fs-xl);
}

.article-content p {
  margin-bottom: 1.25rem;
  color: var(--color-text);
}

.article-content ul,
.article-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.article-content ul {
  list-style: disc;
}

.article-content ol {
  list-style: decimal;
}

.article-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.article-content blockquote {
  border-left: 4px solid var(--color-primary);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--color-bg-alt);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--color-muted);
}

.article-content img {
  border-radius: var(--radius);
  margin: 1.5rem 0;
}

.article-content a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-content a:hover {
  color: var(--color-primary-dark);
}

.article-content table {
  margin: 1.5rem 0;
}

/* ============================================================
   TOP BAR (optional — social + contact info)
   ============================================================ */
.top-bar {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.8);
  font-size: var(--fs-xs);
  padding: 0.5rem 0;
}

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

.top-bar a {
  color: rgba(255,255,255,0.8);
}

.top-bar a:hover {
  color: var(--color-primary-light);
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-links {
  display: flex;
  gap: 0.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mt-4 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 3rem; }
.text-center { text-align: center; }
.text-left { text-align: left; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

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

/* ============================================================
   CLASS ALIASES & MISSING CLASS DEFINITIONS
   Maps BEM double-dash and alternate naming conventions to
   existing styles. Added for HTML/CSS class parity.
   ============================================================ */

/* --- Global: .header__logo-text --- */
.header__logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

/* --- Global: .btn--lg --- */
.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* --- Global: .btn--outline-dark --- */
.btn--outline-dark {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-text);
}

.btn--outline-dark:hover {
  background: var(--color-text);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* --- Global: .btn--link --- */
.btn--link {
  background: none;
  padding: 0;
  color: var(--color-primary);
  font-weight: 600;
  border: none;
}

.btn--link:hover {
  color: var(--color-primary-dark);
}

/* --- Global: .content-wrap --- */
.content-wrap {
  max-width: 800px;
}

/* --- Global: .split-content --- */
.split-content {
  flex: 1;
}

/* --- Global: .split-img (extend existing with img rule) --- */
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

/* --- Global: .thanks-msg --- */
.thanks-msg {
  text-align: center;
  padding: 2rem 0;
}

.thanks-msg h2 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

/* --- Service page: .card--link --- */
.card--link {
  text-decoration: none;
  display: block;
  transition: transform 0.25s ease;
}

.card--link:hover {
  transform: translateY(-2px);
}

/* --- Service page: .grid--align-center --- */
.grid--align-center {
  align-items: center;
}

/* --- Service page: .grid--reverse --- */
.grid--reverse {
  direction: rtl;
}

.grid--reverse > * {
  direction: ltr;
}

/* --- Service page: .rounded --- */
.rounded {
  border-radius: var(--radius);
}

/* --- Service page: .btn-group--center --- */
.btn-group--center {
  justify-content: center;
}

/* --- Service page: .faq (wrapper container) --- */
.faq {
  /* Container for faq-item elements — no special styling needed */
}

/* --- Service page: .price-range --- */
.price-range {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.price-range:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow);
}

.price-range strong {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.price-range span {
  font-size: var(--fs-sm);
  color: var(--color-muted);
}

/* --- Homepage: .features-grid --- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(4, 1fr); }
}

/* --- Homepage: .testimonial-meta --- */
.testimonial-meta {
  font-size: 0.875rem;
  color: var(--color-muted);
}

/* --- Homepage: .intro-content --- */
.intro-content {
  max-width: 800px;
}

/* --- Homepage: .stats-bar__grid --- */
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .stats-bar__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

/* Small (640px) */
@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

/* Medium (768px) */
@media (min-width: 768px) {
  .hero {
    padding: 7rem 0 6rem;
  }

  .hero--inner {
    padding: 5rem 0 3.5rem;
  }
}

/* Large (1024px) */
@media (min-width: 1024px) {
  .hero {
    min-height: 580px;
    padding: 8rem 0 7rem;
  }

  .hero--inner {
    min-height: 300px;
  }

  .container {
    padding: 0 2rem;
  }
}

/* ============================================================
   CLS PREVENTION
   ============================================================ */

/* Reserve space for header logo to prevent shift on load */
.header__logo img {
  aspect-ratio: 400/213;
}

/* Reserve space for hero background to prevent CLS */
.hero {
  contain: layout style;
}

/* Reserve space for stats-bar items */
.stats-bar__item {
  min-height: 72px;
}

/* Reserve space for card images */
.card-img {
  background: var(--color-bg-alt);
}

/* Reserve space for gallery items */
.gallery-item,
.gallery__item {
  background: var(--color-bg-alt);
}

/* Prevent CTA section reflow */
.cta-section {
  contain: layout style;
}

/* Ensure font swap doesn't cause layout shift */
body {
  font-synthesis: none;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .header,
  .footer,
  .nav-toggle,
  .cta-section,
  .btn-group,
  .stats-bar,
  .trust-bar,
  .top-bar,
  .hero .btn-group,
  .lightbox {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 1rem 0;
    background: none !important;
  }

  .hero::before {
    display: none;
  }

  .hero h1 {
    color: #000 !important;
    font-size: 24pt;
  }

  .hero-bg {
    display: none;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  .section {
    padding: 1.5rem 0;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 10pt;
    color: #555;
  }

  nav a[href]::after,
  .footer a[href]::after,
  .btn::after {
    content: none;
  }

  .card,
  .service-card,
  .testimonial,
  .faq-item,
  .blog-card {
    break-inside: avoid;
    border: 1px solid #ccc !important;
  }

  img {
    max-width: 100% !important;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .faq-item__answer {
    display: block !important;
  }
}

/* ============================================================
   ACCESSIBILITY — FOCUS STYLES
   ============================================================ */
:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

/* Remove focus outline for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}

/* --- Address Autocomplete Dropdown --- */
.address-dropdown{position:absolute;top:100%;left:0;right:0;z-index:1000;background:#fff;border:1px solid #ddd;border-top:none;border-radius:0 0 8px 8px;box-shadow:0 4px 12px rgba(0,0,0,.1);list-style:none;margin:0;padding:0;max-height:240px;overflow-y:auto}
.address-dropdown__item{padding:10px 14px;cursor:pointer;font-size:14px;line-height:1.4;border-bottom:1px solid #f0f0f0;transition:background .15s}
.address-dropdown__item:last-child{border-bottom:none}
.address-dropdown__secondary{color:#888;font-size:13px}
.address-dropdown__item--active,.address-dropdown__item:hover{background:var(--color-primary-light,#f0f7ff)}
