/* ========================================
   GardenView - Design Tokens & Global Styles
   ======================================== */

:root {
  /* Brand colors - generated from form inputs */
  --dark: #032900;
  --primary: #0ba500;
  --primary-600: #0a9500;
  --primary-700: #087c00;
  --accent: #16bc0a;
  --light: #daf2d9;
  --grey: #f2f2f2;

  /* Neutrals */
  --n-900: #0F1720;
  --n-800: #1E2935;
  --n-700: #334155;
  --n-600: #475569;
  --n-500: #6B778C;
  --n-400: #94A3B8;
  --n-300: #C6D0DF;
  --n-200: #E2E8F0;
  --n-100: #F1F5F9;
  --n-000: #FFFFFF;

  /* Feedback */
  --ok: #22C08A;
  --warn: #F59E0B;
  --err: #EF4444;

  /* Shadows */
  --sh-soft: 0 8px 24px rgba(17, 37, 31, .08), 0 2px 8px rgba(17, 37, 31, .06);
  --sh-card: 0 12px 28px rgba(17, 37, 31, .10), 0 2px 8px rgba(17, 37, 31, .06);
  --sh-float: 0 18px 40px rgba(17, 37, 31, .16);

  /* Radii */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 18px;
  --r-xl: 22px;
  --r-2xl: 28px;

  /* Spacing scale (8pt grid) */
  --sp-0: 0;
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-7: 28px;
  --sp-8: 32px;
  --sp-9: 36px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-14: 56px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;
  --sp-28: 112px;
  --sp-32: 128px;

  /* Typography */
  --font-headings: "Open Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  --font-sans: "Readex Pro", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  --fs-hero: 68px;
  --fs-hero-subtitle: 26px;
  --fs-xxl: 48px;
  --fs-xl: 36px;
  --fs-lg: 28px;
  --fs-md: 18px;
  --fs-sm: 16px;
  --fs-xs: 14px;
  --fs-xxs: 12px;
  --lh-tight: 1.15;
  --lh-snug: 1.25;
  --lh-normal: 1.5;

  /* Container */
  --container: 1200px;
  --gutter: 24px;
}

/* ========================================
   Reset & Base Styles
   ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  line-height: var(--lh-normal);
  color: var(--n-600);
  background: #F7FBF9;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Multi-paragraph text support */
.multiline {
  white-space: pre-line;
}

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

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all .18s ease;
}

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

/* ========================================
   Layout Utilities
   ======================================== */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

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

.section--light {
  background: var(--n-000);
}

.section--light-alt {
  background: var(--grey);
}

.section--dark {
  background: var(--dark);
  color: #F8FAFB;
}

.section--services {
  background: var(--grey);
}

.section--services .h-eyebrow {
  color: var(--primary);
}

.section--services .h2 {
  color: var(--n-900);
}

.section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-12);
  gap: var(--sp-6);
}

.section__header--center {
  justify-content: center;
  text-align: center;
}

.section__header-actions {
  display: flex;
  gap: var(--sp-3);
  align-items: center;
}

.section__header .h2 {
  margin-bottom: 0;
}

.section__footer {
  display: flex;
  justify-content: center;
  margin-top: var(--sp-12);
}

/* ========================================
   Typography
   ======================================== */

.h-eyebrow {
  font: 600 18px / 1 var(--font-headings);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--sp-4);
}

.section--dark .h-eyebrow {
  color: rgba(255, 255, 255, .7);
}

.h1 {
  font: 700 var(--fs-hero) / var(--lh-tight) var(--font-headings);
  color: var(--n-000);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-4);
  text-transform: uppercase;
}

.h2 {
  font: 700 var(--fs-xxl) / var(--lh-snug) var(--font-headings);
  color: var(--n-900);
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-4);
}

.section--dark .h2 {
  color: #F8FAFB;
}

.h3 {
  font: 600 var(--fs-lg) / var(--lh-snug) var(--font-headings);
  color: var(--n-900);
}

.lead {
  font: 500 var(--fs-md) / var(--lh-normal) var(--font-sans);
  color: var(--n-500);
}

.paragraph {
  font: 400 var(--fs-md) / var(--lh-normal) var(--font-sans);
  color: #4A5568;
}

/* ========================================
   Components - Buttons
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 24px;
  border-radius: 9999px;
  font: 600 17px / 1 var(--font-sans);
  transition: all .22s ease;
  white-space: nowrap;
  text-transform: uppercase;
}

.button-group {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.btn--sm {
  height: 48px;
  padding: 0 22px;
  font-size: 17px;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--sh-soft);
}

.btn--primary:hover {
  background: var(--primary-600);
  box-shadow: var(--sh-card);
}

.btn--primary:active {
  background: var(--primary-700);
  transform: translateY(0);
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--n-300);
  color: var(--dark);
}

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

.btn--ghost-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .4);
  color: var(--n-000);
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .7);
}

.btn--ghost-dark {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .25);
  color: #F8FAFB;
}

.btn--ghost-dark:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .5);
}

/* ========================================
   Components - Cards
   ======================================== */

.card {
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-soft);
}

.card--dark {
  background: rgba(255, 255, 255, .06);
  backdrop-filter: saturate(120%);
  border: 1px solid rgba(255, 255, 255, .08);
}

/* ========================================
   Components - Images
   ======================================== */

.img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-xl);
}

/* ========================================
   Components - Badges
   ======================================== */

.badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 9999px;
  font: 600 var(--fs-xxs) / 1.5 var(--font-sans);
  background: var(--light);
  color: var(--accent);
}

.badge--category {
  background: var(--n-100);
  color: var(--n-600);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ========================================
   Stats Section
   ======================================== */

.stats-section {
  background: var(--n-000);
  padding: var(--sp-20) 0;
  border-bottom: 1px solid var(--n-200);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-8);
}

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

.stat-item {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.stat-item__icon {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 50%;
  background: var(--light);
  display: grid;
  place-items: center;
  color: var(--primary);
}

.stat-item__icon svg {
  width: 40px;
  height: 40px;
}

.stat-item__content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.stat-item__number {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--n-900);
  line-height: 1.2;
  text-transform: uppercase;
}

.stat-item__label {
  font-family: var(--font-sans);
  font-size: 17px;
  color: var(--n-600);
  line-height: 1.4;
}

/* ========================================
   Components - Check List
   ======================================== */

.list-check {
  display: grid;
  gap: var(--sp-4);
  margin: 0;
}

.list-check li {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
}

.list-check i {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 9999px;
  background: var(--light);
  display: grid;
  place-items: center;
  color: var(--accent);
}

.list-check strong {
  display: block;
  font-weight: 600;
  font-size: var(--fs-md);
  color: var(--n-900);
}

/* ========================================
   Header
   ======================================== */

.header {
  position: relative;
  top: 0;
  background: #FFFFFF;
  z-index: 1000;
  transition: all .3s ease;
  padding-bottom: 30px;
}

.header__top {
  height: 100px;
  background: #FFFFFF;
  border-bottom: none;
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 95px;
}

.header__nav-bar {
  position: absolute;
  left: 0;
  right: 0;
  top: 105px;
  z-index: 10;
  pointer-events: none;
}

.header__nav-bar > * {
  pointer-events: auto;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  position: relative;
  z-index: 11;
}

.header__logo svg {
  width: 44px;
  height: 44px;
}

.header__logo-img {
  height: 76px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.header__wordmark {
  font-weight: 600;
  font-size: 21px;
  color: var(--n-900);
}

.header__right {
  display: flex;
  gap: var(--sp-4);
  align-items: center;
}

.header__social {
  display: flex;
  gap: var(--sp-2);
  align-items: center;
}

.header__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grey);
  color: var(--dark);
  transition: all 0.3s ease;
  text-decoration: none;
}

.header__social-link:hover {
  background: #e0e0e0;
}

.header__social-link svg {
  width: 18px;
  height: 18px;
}

.header__email-btn {
  border: none !important;
  background: transparent !important;
  color: var(--dark);
  font-size: 14.5px;
}

.header__email-btn:hover {
  background: transparent !important;
  border: none !important;
  transform: none !important;
}

.header__nav-container {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--grey);
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__nav {
  display: flex;
  gap: var(--sp-12);
  align-items: center;
}

.header__nav a {
  font-size: 16px;
  font-weight: 600;
  color: #032900;
  position: relative;
  padding: 0;
  transition: color 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.header__nav a:hover {
  color: #0ba500;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.header__hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--n-700);
  transition: all 0.3s ease;
  transform-origin: center;
  border-radius: 2px;
}

.header__hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

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

.header__hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.header__mobile-menu {
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  background: var(--n-000);
  box-shadow: var(--sh-card);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}

.header__mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.header__mobile-nav {
  display: flex;
  flex-direction: column;
  padding: var(--sp-6) var(--gutter);
  gap: var(--sp-4);
}

.header__mobile-nav a {
  font-size: 17px;
  font-weight: 500;
  color: var(--n-700);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--n-200);
  transition: color 0.2s ease;
}

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

.header__mobile-nav .btn {
  border: none;
  margin-top: var(--sp-2);
  color: #fff;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: var(--sp-28) 0;
}

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

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: #040d0b99;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  align-items: center;
}

.hero__text .h1 {
  margin-bottom: 0;
}

.hero__tagline {
  font-size: var(--fs-hero-subtitle);
  color: rgba(255, 255, 255, .9);
  line-height: var(--lh-normal);
  margin-bottom: 0;
  font-weight: 400;
}

.hero__checklist {
  margin-bottom: var(--sp-6);
}

.hero__checklist li {
  color: rgba(255, 255, 255, .95);
  font-size: var(--fs-sm);
}

.hero__checklist i {
  background: rgba(255, 255, 255, .2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .3);
  color: rgba(255, 255, 255, .95);
}

.hero__buttons {
  display: flex;
  gap: var(--sp-3);
  justify-content: center;
}

/* ========================================
   Pre-Footer Quote Form
   ======================================== */

.section--prefooter {
  background: var(--grey);
  padding: var(--sp-28) 0;
}

.section__description {
  font-size: var(--fs-md);
  color: var(--n-600);
  line-height: var(--lh-normal);
  margin-top: var(--sp-3);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.quote-form {
  max-width: 860px;
  margin: var(--sp-10) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.hero__form {
  padding: var(--sp-12);
}

.hero__form-title {
  font: 700 var(--fs-xxl) / var(--lh-snug) var(--font-headings);
  color: var(--n-900);
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-6);
  text-align: center;
}

.hero__form-subtext {
  font-size: var(--fs-sm);
  color: var(--n-600);
  line-height: var(--lh-normal);
  margin-bottom: var(--sp-5);
  text-align: center;
}

.hero__form-inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

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

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .header__email-btn {
    display: none;
  }
}

.form-input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid #dce7e0;
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  color: var(--n-900);
  background: var(--n-000);
  transition: all .18s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--light);
  background: var(--n-000);
}

.form-input::placeholder {
  color: var(--n-500);
}

.form-textarea {
  height: 96px;
  padding: 14px 16px;
  resize: vertical;
  min-height: 72px;
  max-height: 120px;
}

.btn--full {
  width: 100%;
  margin-top: var(--sp-2);
}

/* ========================================
   Form - Input Pill
   ======================================== */

.input-pill {
  position: relative;
  width: 100%;
}

.input-pill__field {
  width: 100%;
  height: 44px;
  padding: 0 56px 0 16px;
  border: 1px solid #dce7e0;
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  color: var(--n-900);
  background: var(--n-100);
  transition: all .18s ease;
}

.input-pill__field:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--light);
}

.input-pill__field::placeholder {
  color: var(--n-500);
}

.input-pill__btn {
  position: absolute;
  right: 4px;
  top: 4px;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  transition: all .22s ease;
}

.input-pill__btn:hover {
  background: var(--primary-600);
  transform: scale(1.05);
}

/* ========================================
   Split Layout
   ======================================== */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.split--reverse {
  direction: rtl;
}

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

.split__media {
  position: relative;
  min-height: 500px;
  height: 500px;
}

.split__media--tall {
  min-height: 600px;
  height: 600px;
  position: relative;
  padding: var(--sp-2);
}

.split__media--tall::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--light);
  border-radius: var(--r-xl);
  z-index: 0;
  transform: translate(-22px, 22px);
}

.split__media--tall img {
  position: relative;
  z-index: 1;
  transform: translate(24px, -24px);
  border: 13px solid white;
  border-radius: var(--r-xl);
}

.split--reverse .split__media--tall::before {
  transform: translate(22px, 22px);
}

.split--reverse .split__media--tall img {
  transform: translate(-24px, -24px);
}

.split__media--map {
  min-height: 650px;
}

.split__media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
}

.image-overlay-card {
  position: absolute;
  bottom: calc(var(--sp-6) - 16px);
  left: calc(var(--sp-6) + 16px);
  padding: var(--sp-4) var(--sp-5);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  z-index: 2;
}

.image-overlay-card__text {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--n-900);
  margin: 0;
}

.split__content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.split__content .h-eyebrow {
  margin-bottom: calc(var(--sp-4) - var(--sp-6));
}

.split__content .button-group {
  margin-top: var(--sp-2);
}

.split__content .h2 {
  margin-bottom: 0;
}

.split__content .lead,
.split__content .paragraph {
  margin: 0;
}

/* ========================================
   Services Section
   ======================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-8);
}

.services-nav {
  display: flex;
  gap: var(--sp-2);
}

.services-nav-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--n-000);
  border: 1px solid var(--n-300);
  display: grid;
  place-items: center;
  color: var(--n-700);
  transition: all .22s ease;
  cursor: pointer;
}

.services-nav-btn svg {
  width: 24px;
  height: 24px;
}

.services-nav-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: scale(1.05);
}

.services-carousel {
  margin-top: var(--sp-8);
  overflow: hidden;
  position: relative;
  cursor: grab;
  padding-bottom: 12px;
  margin-bottom: -12px;
}

.services-carousel:active {
  cursor: grabbing;
}

.services-carousel-track {
  display: flex;
  gap: var(--sp-6);
  transition: transform 0.5s ease;
  padding-bottom: 8px;
}

.service-card {
  flex: 0 0 calc(33.333% - var(--sp-6) * 2 / 3);
  background: #FFFFFF;
  border-radius: var(--r-xl);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  user-select: none;
}

.service-card img {
  pointer-events: none;
  user-select: none;
}

.services-carousel-track .service-card[data-carousel-clone] {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: none !important;
}

.service-card__image {
  position: relative;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  overflow: hidden;
  margin-bottom: 0;
  aspect-ratio: 4 / 3;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.service-card__image .badge {
  position: absolute;
  bottom: var(--sp-4);
  left: var(--sp-4);
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--n-900);
  box-shadow: var(--sh-soft);
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.service-card__content {
  padding: var(--sp-6);
  background: #FFFFFF;
  border-radius: 0 0 var(--r-xl) var(--r-xl);
}

.service-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--n-900);
  margin-bottom: var(--sp-3);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.service-card__desc {
  font-size: 18px;
  color: var(--n-600);
  line-height: 1.6;
}

/* ========================================
   Portfolio Carousel (Static)
   ======================================== */

.section--portfolio {
  background: var(--grey);
}

.h2--narrow {
  max-width: 500px;
}

.portfolio-nav {
  display: flex;
  gap: var(--sp-2);
}

.portfolio-nav-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--n-000);
  border: 1px solid var(--n-300);
  display: grid;
  place-items: center;
  color: var(--n-700);
  transition: all .22s ease;
  cursor: pointer;
}

.portfolio-nav-btn svg {
  width: 24px;
  height: 24px;
}

.portfolio-nav-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: scale(1.05);
}

.portfolio-carousel-wrapper {
  padding-left: var(--gutter);
  overflow: visible;
}

.portfolio-carousel {
  margin-top: var(--sp-8);
  overflow: visible;
  position: relative;
}

.portfolio-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  padding-left: calc((100vw - var(--container)) / 2);
}

.portfolio-carousel-slide {
  flex: 0 0 calc(28% - var(--sp-6) * 2 / 3);
  margin-right: var(--sp-6);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
}

.portfolio-carousel-track .portfolio-carousel-slide[data-carousel-clone] {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-carousel-slide:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-float);
}

.portfolio-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 5 / 5;
}

/* ========================================
   Lightbox
   ======================================== */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: var(--sp-6);
}

.lightbox.active {
  display: flex;
}

.lightbox__close {
  position: absolute;
  top: var(--sp-6);
  right: var(--sp-6);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.lightbox__image {
  max-width: 90%;
  max-height: 90%;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-float);
}

/* ========================================
   Before/After Slider
   ======================================== */

.before-after-slider {
  margin-top: var(--sp-8);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.before-after-container {
  position: relative;
  width: 100%;
  aspect-ratio: 17 / 9;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-card);
  cursor: ew-resize;
  user-select: none;
}

.before-after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after-image--before {
  clip-path: inset(0 50% 0 0);
  z-index: 2;
}

.before-after-image--after {
  z-index: 1;
}

.before-after-slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: #fff;
  transform: translateX(-50%);
  cursor: ew-resize;
  z-index: 10;
}

.slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--sh-card);
  color: var(--primary);
}

.slider-button svg {
  display: block;
}

.before-after-labels {
  position: absolute;
  top: var(--sp-4);
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 var(--sp-6);
  pointer-events: none;
  z-index: 5;
}

.label-before,
.label-after {
  padding: 6px 14px;
  background: rgba(0, 0, 0, .75);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: 600;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ========================================
   Process Section
   ======================================== */

.process-card {
  padding: var(--sp-6);
  margin: var(--sp-6) 0;
}

.process-step {
  padding: var(--sp-4) 0;
}

.process-step__number {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-2);
}

.process-step__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.process-step__label {
  font-size: var(--fs-xxs);
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.process-step__title {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--n-900);
  margin-bottom: var(--sp-2);
}

.process-step__desc {
  font-size: var(--fs-xs);
  color: var(--n-600);
  line-height: 1.6;
}

.process-divider {
  height: 1px;
  background: #dce7e0;
  margin: var(--sp-3) 0;
}

/* ========================================
   Testimonials Section
   ======================================== */

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-8);
}

.testimonials + .testimonials {
  margin-top: var(--sp-6);
}

.testimonial-card {
  padding: var(--sp-6);
  transition: border-color .3s ease;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
}

.testimonial-card img {
  pointer-events: none;
  user-select: none;
}

/* Hide the static reviews section */
#reviews {
  display: none;
}

.testimonial-card:hover {
  border-color: var(--primary);
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-google-icon {
  display: block;
}

.testimonial-card__name {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--n-900);
  margin-bottom: var(--sp-1);
}

.testimonial-card__rating {
  display: flex;
  gap: 2px;
  color: #F59E0B;
}

.testimonial-card__rating svg {
  width: 22px;
  height: 22px;
}

.testimonial-card__text {
  font-size: var(--fs-sm);
  color: var(--n-600);
  line-height: 1.6;
  margin-bottom: var(--sp-2);
  padding-bottom: 0;
  border-bottom: none;
}

.testimonial-card__text--truncated {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-read-more {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: var(--fs-sm);
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  margin-top: var(--sp-2);
  transition: color 0.2s ease;
  text-align: left;
}

.testimonial-read-more:hover {
  color: var(--primary-700);
  text-decoration: underline;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

/* Testimonial Carousel */
.testimonial-nav {
  display: flex;
  gap: var(--sp-2);
}

.testimonial-nav-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--n-000);
  border: 1px solid var(--n-300);
  display: grid;
  place-items: center;
  color: var(--n-700);
  transition: all .22s ease;
  cursor: pointer;
}

.testimonial-nav-btn svg {
  width: 24px;
  height: 24px;
}

.testimonial-nav-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: scale(1.05);
}

.testimonial-carousel-wrapper {
  width: 100%;
  padding-bottom: var(--sp-12);
  overflow: hidden;
  padding-left: max(
    var(--gutter),
    calc((100% - var(--container)) / 2 + var(--gutter))
  );
}

.testimonial-carousel {
  margin-top: var(--sp-8);
  overflow: visible;
  position: relative;
  cursor: grab;
}

.testimonial-carousel:active {
  cursor: grabbing;
}

.testimonial-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  padding-left: 0;
}

.testimonial-carousel-slide {
  flex: 0 0 calc(33.333% - var(--sp-6) * 2 / 3);
  margin-right: var(--sp-6);
  transition: transform 0.3s ease, opacity 0.6s ease;
}

.testimonial-carousel-track .testimonial-carousel-slide[data-carousel-clone] {
  opacity: 1;
  transform: translateY(0);
  transition: none;
}

.testimonial-carousel-track .testimonial-carousel-slide[data-carousel-clone] .testimonial-card {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: none !important;
}

.testimonial-carousel-slide .testimonial-card {
  height: 100%;
  cursor: pointer;
}

/* ========================================
   CTA Banner
   ======================================== */

.cta {
  text-align: left;
}

.cta-pattern {
  background: var(--dark);
  display: none;
}

.cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0;
  grid-template-areas: "image content";
  min-height: 500px;
}

.cta__image-col {
  position: relative;
  overflow: hidden;
  min-height: 0;
  grid-area: image;
  border-radius: 0 48px 48px 0;
}

.cta__content-wrapper {
  background: var(--dark);
  color: #fff;
  --cta-gap: clamp(24px, 4vw, 72px);
  padding-block: clamp(48px, 8vw, 88px);
  padding-inline-start: var(--cta-gap);
  padding-inline-end: calc(max((100vw - var(--container)) / 2, 0) + var(--gutter));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  grid-area: content;
  overflow: hidden;
}

.cta__content-wrapper > * {
  position: relative;
  z-index: 1;
}

.cta__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0 48px 48px 0;
}

.cta__content-col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  max-width: min(560px, calc(((100vw + var(--container)) / 2 - var(--gutter)) - (100vw / 2) - var(--cta-gap)));
  width: 100%;
}

.cta__title {
  font-family: var(--font-headings);
  font-size: var(--fs-xxl);
  font-weight: 700;
  color: #F8FAFB;
  margin-bottom: var(--sp-4);
  max-width: 600px;
}

.cta__description {
  font-size: var(--fs-md);
  color: #E2E8F0;
  margin-bottom: var(--sp-8);
  max-width: 600px;
  line-height: var(--lh-normal);
}

/* CTA Centered Version */
.cta--centered {
  background: var(--dark);
  padding: var(--sp-24) 0;
  text-align: center;
}

.cta__content-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  max-width: 800px;
  margin: 0 auto;
}

.cta--centered .cta__title {
  margin-bottom: 0;
  max-width: 100%;
}

.cta--centered .cta__description {
  margin-bottom: 0;
  max-width: 100%;
}

.cta--centered .button-group {
  justify-content: center;
  margin-top: var(--sp-4);
}

/* ========================================
   Location Map Section
   ======================================== */

.coverage-areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  margin: var(--sp-6) 0;
}

.coverage-column {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.coverage-item {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
}

.coverage-item i {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 9999px;
  background: var(--light);
  display: grid;
  place-items: center;
  color: var(--accent);
}

.coverage-item strong {
  display: block;
  font-weight: 600;
  font-size: var(--fs-md);
  color: var(--n-900);
}

.map-container {
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
}

.section--location {
  border-bottom: 1px solid var(--n-200);
}

/* ========================================
   FAQ Section
   ======================================== */

.faq-container {
  max-width: 860px;
  margin: var(--sp-8) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.faq-item {
  background: #F8FAFB;
  border-radius: var(--r-lg);
  transition: all .3s ease;
  overflow: hidden;
}

.faq-item.active {
  background: #F1F5F7;
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  cursor: pointer;
  gap: var(--sp-4);
}

.faq-item__title {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--n-900);
  margin: 0;
}

.faq-item__icon {
  min-width: 20px;
  color: var(--primary);
  transition: transform .3s ease;
}

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

.faq-item:hover .faq-item__icon {
  color: var(--accent);
}

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows .3s ease, padding .3s ease;
  transform: none;
  opacity: 1;
  padding: 0 var(--sp-6) 0;
}

.faq-item__answer > * {
  min-height: 0;
}

.faq-item.active .faq-item__answer {
  grid-template-rows: 1fr;
  padding: 0 var(--sp-6) var(--sp-5);
  transform: none !important;
  animation: none !important;
}

.faq-item__answer p {
  font-size: var(--fs-md);
  color: var(--n-600);
  line-height: 1.6;
  margin: 0;
  transform: none !important;
  transition: none !important;
  animation: none !important;
}

/* ========================================
   Footer
   ======================================== */

.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .8);
  padding: var(--sp-20) 0 var(--sp-8);
}

.footer__content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-10);
}

.footer__col--logo {
  max-width: 400px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

.footer__logo svg {
  width: 40px;
  height: 40px;
}

.footer__logo-img {
  height: 60px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer__wordmark {
  font-weight: 700;
  font-size: 20px;
  color: #F8FAFB;
}

.footer__tagline {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, .75);
  line-height: 1.6;
}

.footer__heading {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: #F8FAFB;
  margin-bottom: var(--sp-4);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__links--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2) var(--sp-6);
}

.footer__links a {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, .75);
  transition: color .2s ease;
}

.footer__links a:hover {
  color: var(--accent);
}

.footer__links li {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, .7);
  line-height: 1.6;
}

.footer__links li strong {
  color: rgba(255, 255, 255, .85);
  font-weight: 600;
}

.footer__social {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .7);
  transition: all .2s ease;
}

.footer__social-link:hover {
  background: var(--accent);
  color: var(--dark);
}

.footer__bottom {
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255, 255, 255, .1);
  text-align: center;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, .6);
}

.footer__bottom a {
  color: rgba(255, 255, 255, .7);
  text-decoration: underline;
  transition: color .2s ease;
}

.footer__bottom a:hover {
  color: var(--accent);
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1199px) {
  :root {
    --fs-xxl: clamp(36px, 4.5vw, 48px);
    --fs-xl: 32px;
    --fs-lg: 24px;
  }

  .section {
    padding: calc(var(--sp-28) * 0.8) 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-slide {
    flex: 0 0 220px;
  }

  .footer__content {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .header__social {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr minmax(350px, 400px);
    gap: var(--sp-8);
  }

  .stats-grid--three {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-4);
  }

  .stat-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--sp-3);
  }

  .stat-item__icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }

  .stat-item__icon svg {
    width: 34px;
    height: 34px;
  }

  .stat-item__number {
    font-size: 18px;
  }

  .stat-item__label {
    font-size: 14px;
  }

  .testimonials {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: var(--sp-4);
  }

  .testimonial-carousel-slide {
    flex: 0 0 calc(50% - var(--sp-6) * 2 / 3);
  }

  .portfolio-carousel-slide {
    flex: 0 0 calc(45% - var(--sp-6) * 2 / 3);
  }
}

@media (max-width: 767px) {
  :root {
    --gutter: 16px;
    --gutter-tablet: 20px;
    --fs-hero: clamp(40px, 9vw, 56px);
    --fs-hero-subtitle: clamp(20px, 5vw, 24px);
    --fs-xxl: clamp(32px, 8vw, 40px);
    --fs-xl: 28px;
    --fs-lg: 20px;
  }

  .section {
    padding: calc(var(--sp-28) * 0.65) 0;
  }

  .header {
    padding-bottom: 0;
  }

  .header__nav-bar {
    display: none;
  }

  .header__call-btn {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  .hero {
    min-height: 500px;
    padding: var(--sp-20) 0;
  }

  .hero__content {
    gap: var(--sp-8);
  }

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

  .hero__buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero__buttons .btn {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }

  .stat-item {
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  .stat-item__icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
  }

  .stat-item__icon svg {
    width: 32px;
    height: 32px;
  }

  .split {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .split--reverse {
    direction: ltr;
  }

  .split__media {
    min-height: 400px;
  }

  .split__media--tall {
    min-height: 450px;
  }

  .image-overlay-card {
    position: absolute;
    bottom: var(--sp-4);
    left: var(--sp-4);
    right: var(--sp-4);
    padding: var(--sp-3) var(--sp-4);
    max-width: calc(100% - var(--sp-8));
  }

  .image-overlay-card__text {
    font-size: 13px;
  }

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

  .service-card {
    flex: 0 0 calc(85% - var(--sp-6) * 2 / 3);
  }

  .portfolio-carousel-slide {
    flex: 0 0 calc(80% - var(--sp-6) * 2 / 3);
  }

  .coverage-areas {
    grid-template-columns: 1fr;
  }

  .cta__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "image";
    min-height: auto;
  }

  .cta__image-col {
    min-height: 300px;
  }

  .cta__content-wrapper {
    padding: var(--sp-4xl) var(--gutter-tablet);
  }

  .cta__content-col {
    width: 100%;
    margin: 0;
  }

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

  .map-container {
    height: 400px;
  }

  .split__media--map {
    min-height: 400px;
  }

  .section__header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

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

  .section__header-actions {
    flex-direction: column;
    width: 100%;
  }

  .section__header-actions .btn {
    width: 100%;
  }

  .services-nav,
  .portfolio-nav,
  .testimonial-nav {
    width: 100%;
    justify-content: center;
  }

  .testimonial-carousel-slide {
    flex: 0 0 calc(85% - var(--sp-6) * 2 / 3);
  }

  .services-nav-btn,
  .portfolio-nav-btn,
  .testimonial-nav-btn {
    width: 48px;
    height: 48px;
  }

  .before-after-container {
    aspect-ratio: 4 / 3;
  }

  .button-group {
    flex-direction: column;
    width: 100%;
  }

  .button-group .btn {
    width: 100%;
  }

  .cta {
    padding: var(--sp-16) 0;
  }

  .cta__title {
    font-size: var(--fs-lg);
  }

  .stats-section {
    padding: var(--sp-12) 0;
  }

  .hero__form {
    padding: var(--sp-6);
  }

  .hero__form-title {
    font-size: 24px;
    text-align: center;
  }

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

  .footer__content {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .footer__links--split {
    grid-template-columns: 1fr;
  }

  .list-check li {
    flex-direction: row;
    align-items: flex-start;
  }

  .faq-item__question {
    padding: var(--sp-4) var(--sp-5);
  }

  .faq-item.active .faq-item__answer {
    padding: 0 var(--sp-5) var(--sp-4);
  }
}

/* ========================================
   DARK MODE STYLES
   ======================================== */

/* Dark Mode Toggle Button */
.dark-mode-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-sm);
  transition: all 0.2s ease;
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-xs);
  vertical-align: middle;
}

.dark-mode-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.dark-mode-toggle__icon {
  width: 16px;
  height: 16px;
  transition: all 0.3s ease;
}

.dark-mode-toggle__icon--sun {
  display: block;
}

.dark-mode-toggle__icon--moon {
  display: none;
}

body.dark-mode .dark-mode-toggle__icon--sun {
  display: none;
}

body.dark-mode .dark-mode-toggle__icon--moon {
  display: block;
}

/* Dark Mode Color Variables */
html.dark-mode,
body.dark-mode {
  --n-900: #F1F5F9;
  --n-800: #E2E8F0;
  --n-700: #C6D0DF;
  --n-600: #94A3B8;
  --n-500: #6B778C;
  --n-400: #475569;
  --n-300: #2D2D2D;
  --n-200: #1F1F1F;
  --n-100: #121212;
  --n-000: #0A0A0A;

  background: var(--n-000);
  color: var(--n-600);
}

/* Dark Mode - Headers */
body.dark-mode .header {
  background: #121212;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .header__top {
  background: #121212;
}

body.dark-mode .header__wordmark {
  color: #FFFFFF;
}

body.dark-mode .header__social-link {
  background: rgba(255, 255, 255, 0.08);
  color: #E6EDF3;
}

body.dark-mode .header__social-link:hover {
  background: rgba(255, 255, 255, 0.15);
}

body.dark-mode .header__nav-container {
  background: #1A1A1A;
}

body.dark-mode .header__nav a {
  color: #E6EDF3;
}

body.dark-mode .header__nav a:hover {
  color: var(--accent);
}

body.dark-mode .header__hamburger span {
  background: #E6EDF3;
}

body.dark-mode .header__mobile-menu {
  background: #121212;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .header__mobile-nav a {
  color: #E6EDF3;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Dark Mode - Hero Section */
body.dark-mode .h1 {
  color: #fff;
}

body.dark-mode .hero__tagline {
  color: rgba(255, 255, 255, 0.9);
}

/* Dark Mode - Cards */
body.dark-mode .card {
  background: #1C1C1E;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

body.dark-mode .hero__form {
  background: rgba(18, 22, 28, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

body.dark-mode .hero__form-title {
  color: #FFFFFF;
}

body.dark-mode .hero__form-subtext {
  color: #B0BAC5;
}

/* Dark Mode - Forms */
body.dark-mode .form-input {
  background: #0D1117;
  border-color: rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
}

body.dark-mode .form-input:focus {
  background: #161B22;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(34, 192, 138, 0.25);
}

body.dark-mode .form-input::placeholder {
  color: #7D8590;
}

/* Dark Mode - Sections */
body.dark-mode .section--light {
  background: #0A0A0A;
}

body.dark-mode .section--light-alt {
  background: #121212;
}

body.dark-mode .section--services {
  background: #121212;
}

body.dark-mode .section--services .h-eyebrow {
  color: var(--accent);
}

body.dark-mode .section--services .h2 {
  color: var(--n-900);
}

body.dark-mode .section--portfolio {
  background: #121212;
}

body.dark-mode .stats-section {
  background: #0A0A0A;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Dark Mode - Typography */
body.dark-mode .h2,
body.dark-mode .h3,
body.dark-mode .stat-item__number,
body.dark-mode .service-card__title,
body.dark-mode .testimonial-card__name,
body.dark-mode .faq-item__title,
body.dark-mode .coverage-item strong,
body.dark-mode .list-check strong {
  color: var(--n-900);
}

body.dark-mode .h-eyebrow {
  color: var(--n-500);
}

body.dark-mode .paragraph,
body.dark-mode .lead {
  color: var(--n-600);
}

/* Dark Mode - Stats/Benefits */
body.dark-mode .stat-item__icon {
  background: rgba(34, 192, 138, 0.15);
}

body.dark-mode .stat-item__label {
  color: var(--n-600);
}

/* Dark Mode - Images */
body.dark-mode .image-overlay-card {
  background: rgba(26, 26, 26, 0.95);
}

body.dark-mode .image-overlay-card__text {
  color: var(--n-900);
}

body.dark-mode .split__media--tall img {
  border-color: #1C1C1E;
}

/* Dark Mode - Service Cards */
body.dark-mode .service-card__desc {
  color: rgba(255, 255, 255, 0.7);
}

/* Dark Mode - Portfolio */
body.dark-mode .portfolio-carousel-slide {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

/* Dark Mode - Testimonials */
body.dark-mode .testimonial-card {
  border-color: transparent;
}

body.dark-mode .testimonial-card:hover {
  border-color: var(--accent);
  background: #1A1A1A;
}

body.dark-mode .testimonial-card__text {
  color: var(--n-600);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

/* Dark Mode - FAQ */
body.dark-mode .faq-item {
  background: #1A1A1A;
}

body.dark-mode .faq-item.active {
  background: #121212;
}

body.dark-mode .faq-item__answer p {
  color: var(--n-600);
}

/* Dark Mode - Footer */
body.dark-mode .footer {
  background: #121212;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body.dark-mode .footer__bottom {
  border-top-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .footer__bottom a:hover {
  color: var(--accent);
}

/* Dark Mode - Buttons */
body.dark-mode .btn--ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

body.dark-mode .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

body.dark-mode .btn--ghost-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

body.dark-mode .btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.8);
}

body.dark-mode .portfolio-nav-btn {
  background: #1A1A1A;
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--n-600);
}

body.dark-mode .portfolio-nav-btn:hover {
  background: var(--primary);
  color: #fff;
}

/* Dark Mode - Location/Coverage */
body.dark-mode .section--location {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .coverage-item i {
  background: rgba(34, 192, 138, 0.15);
}

body.dark-mode .list-check i {
  background: rgba(34, 192, 138, 0.2);
}

/* Dark Mode - CTA Section */
body.dark-mode .cta-pattern {
  background: #0A0A0A;
}

body.dark-mode .cta__title {
  color: #FFFFFF;
}

body.dark-mode .cta__description {
  color: var(--n-600);
}

/* Dark Mode - Quote Form Section */
body.dark-mode .section--prefooter {
  background: #121212;
}

body.dark-mode .section__description {
  color: var(--n-600);
}

/* Dark Mode - Header Email Button */
body.dark-mode .header__email-btn {
  color: #E6EDF3;
}

body.dark-mode .header__logo-img {
  filter: brightness(0) invert(1);
}

/* Dark Mode - Service Cards */
body.dark-mode .service-card {
  background: #1C1C1E;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

body.dark-mode .service-card__content {
  background: #1C1C1E;
}

body.dark-mode .service-card__title {
  color: var(--n-900);
}

body.dark-mode .service-card__desc {
  color: rgba(255, 255, 255, 0.7);
}

/* Dark Mode Transitions - Disabled to prevent flash */
body.dark-mode-loaded {
  transition: background-color 0.3s ease, color 0.3s ease;
}

body.dark-mode-loaded .card,
body.dark-mode-loaded .header,
body.dark-mode-loaded .section,
body.dark-mode-loaded .form-input,
body.dark-mode-loaded .faq-item,
body.dark-mode-loaded .testimonial-card,
body.dark-mode-loaded .btn {
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
