/*
 * Box Tree Care Theme
 *
 * Aesthetic: Organic Professional
 * A warm, natural palette that conveys trust and expertise
 * Forest greens, earth tones, with professional blue accents
 */

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

* {
  margin: 0;
}

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

body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

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

/* ================================================================
   CSS VARIABLES
   ================================================================ */
:root {
  /* Forest Green - Primary brand */
  --btc-green-50: #f0fdf4;
  --btc-green-100: #dcfce7;
  --btc-green-200: #bbf7d0;
  --btc-green-300: #86efac;
  --btc-green-400: #4ade80;
  --btc-green-500: #22c55e;
  --btc-green-600: #16a34a;
  --btc-green-700: #15803d;
  --btc-green-800: #166534;
  --btc-green-900: #14532d;
  --btc-green-950: #052e16;

  /* Trust Blue - Professional accent */
  --btc-blue-50: #eff6ff;
  --btc-blue-100: #dbeafe;
  --btc-blue-200: #bfdbfe;
  --btc-blue-300: #93c5fd;
  --btc-blue-400: #60a5fa;
  --btc-blue-500: #3b82f6;
  --btc-blue-600: #2563eb;
  --btc-blue-700: #1d4ed8;
  --btc-blue-800: #1e40af;
  --btc-blue-900: #1e3a8a;

  /* Earth/Amber - Warm CTA accent */
  --btc-amber-400: #fbbf24;
  --btc-amber-500: #f59e0b;
  --btc-amber-600: #d97706;
  --btc-amber-700: #b45309;

  /* Warm Neutrals */
  --btc-stone-50: #fafaf9;
  --btc-stone-100: #f5f5f4;
  --btc-stone-200: #e7e5e4;
  --btc-stone-300: #d6d3d1;
  --btc-stone-400: #a8a29e;
  --btc-stone-500: #78716c;
  --btc-stone-600: #57534e;
  --btc-stone-700: #44403c;
  --btc-stone-800: #292524;
  --btc-stone-900: #1c1917;

  /* Typography */
  --btc-font-display: 'DM Serif Display', Georgia, serif;
  --btc-font-body: 'Nunito', system-ui, sans-serif;

  /* Spacing */
  --btc-container-max: 80rem;
  --btc-section-padding: 5rem;

  /* Transitions */
  --btc-transition-fast: 150ms ease;
  --btc-transition-base: 250ms ease;
  --btc-transition-slow: 400ms ease;

  /* Shadows */
  --btc-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --btc-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --btc-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --btc-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --btc-shadow-glow: 0 0 40px rgba(22, 163, 74, 0.15);
}

/* ================================================================
   BASE STYLES
   ================================================================ */
.btc-body {
  font-family: var(--btc-font-body);
  background: var(--btc-stone-50);
  color: var(--btc-stone-700);
  min-height: 100vh;
}

.btc-main {
  padding-top: 5rem; /* Account for fixed header */
}

/* Container */
.btc-container {
  max-width: var(--btc-container-max);
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 640px) {
  .btc-container {
    padding-inline: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .btc-container {
    padding-inline: 2rem;
  }
}

/* ================================================================
   TYPOGRAPHY
   ================================================================ */
.btc-display {
  font-family: var(--btc-font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--btc-stone-900);
}

.btc-heading {
  font-family: var(--btc-font-body);
  font-weight: 700;
  color: var(--btc-stone-900);
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--btc-font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all var(--btc-transition-base);
  text-decoration: none;
  line-height: 1.4;
}

.btc-btn--primary {
  background: linear-gradient(135deg, var(--btc-blue-600) 0%, var(--btc-blue-700) 100%);
  color: white;
  box-shadow: var(--btc-shadow-md), 0 0 0 0 rgba(37, 99, 235, 0);
}

.btc-btn--primary:hover {
  background: linear-gradient(135deg, var(--btc-blue-500) 0%, var(--btc-blue-600) 100%);
  box-shadow: var(--btc-shadow-lg), 0 0 20px rgba(37, 99, 235, 0.3);
  transform: translateY(-2px);
}

.btc-btn--secondary {
  background: white;
  color: var(--btc-blue-600);
  border: 2px solid var(--btc-blue-600);
}

.btc-btn--secondary:hover {
  background: var(--btc-blue-600);
  color: white;
}

.btc-btn--cta {
  background: linear-gradient(135deg, var(--btc-amber-500) 0%, var(--btc-amber-600) 100%);
  color: white;
  box-shadow: var(--btc-shadow-md);
}

.btc-btn--cta:hover {
  background: linear-gradient(135deg, var(--btc-amber-400) 0%, var(--btc-amber-500) 100%);
  box-shadow: var(--btc-shadow-lg), 0 0 20px rgba(217, 119, 6, 0.3);
  transform: translateY(-2px);
}

/* ================================================================
   HEADER
   ================================================================ */
.btc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: white;
  box-shadow: var(--btc-shadow-md);
}

/* Top bar */
.btc-header__topbar {
  background: linear-gradient(135deg, var(--btc-blue-600) 0%, var(--btc-blue-700) 100%);
  color: white;
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.btc-header__topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.btc-header__contact-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.btc-header__contact-link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: white;
  transition: color var(--btc-transition-fast);
}

.btc-header__contact-link:hover {
  color: var(--btc-blue-200);
}

.btc-header__contact-link svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.btc-header__hours {
  display: none;
  color: var(--btc-blue-100);
}

@media (min-width: 640px) {
  .btc-header__hours {
    display: block;
  }
}

/* Main nav */
.btc-header__main {
  padding: 1rem 0;
}

.btc-header__main-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btc-header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btc-header__logo-img {
  height: 3rem;
  width: auto;
}

.btc-header__logo-text {
  display: flex;
  flex-direction: column;
}

.btc-header__brand-name {
  font-family: var(--btc-font-display);
  font-size: 1.25rem;
  color: var(--btc-stone-900);
  line-height: 1.2;
}

.btc-header__brand-tagline {
  font-size: 0.8125rem;
  color: var(--btc-stone-500);
}

/* Desktop nav */
.btc-header__nav {
  display: none;
  gap: 2rem;
}

@media (min-width: 768px) {
  .btc-header__nav {
    display: flex;
  }
}

.btc-header__nav-link {
  font-weight: 500;
  color: var(--btc-stone-700);
  transition: color var(--btc-transition-fast);
  position: relative;
}

.btc-header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--btc-green-600);
  transition: width var(--btc-transition-base);
}

.btc-header__nav-link:hover {
  color: var(--btc-green-700);
}

.btc-header__nav-link:hover::after {
  width: 100%;
}

/* Dropdown menus */
.btc-header__dropdown {
  position: relative;
}

.btc-header__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: inherit;
}

.btc-header__dropdown-trigger svg {
  width: 1rem;
  height: 1rem;
  transition: transform var(--btc-transition-fast);
}

.btc-header__dropdown:hover .btc-header__dropdown-trigger svg {
  transform: rotate(180deg);
}

.btc-header__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0.5rem);
  min-width: 14rem;
  background: white;
  border-radius: 0.5rem;
  box-shadow: var(--btc-shadow-xl);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--btc-transition-base);
  z-index: 50;
}

.btc-header__dropdown:hover .btc-header__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0.25rem);
}

.btc-header__dropdown-link {
  display: block;
  padding: 0.625rem 1.25rem;
  color: var(--btc-stone-700);
  font-size: 0.9375rem;
  transition: all var(--btc-transition-fast);
}

.btc-header__dropdown-link:hover {
  background: var(--btc-green-50);
  color: var(--btc-green-700);
}

/* Mobile menu button */
.btc-header__mobile-toggle {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--btc-stone-700);
  cursor: pointer;
}

@media (min-width: 768px) {
  .btc-header__mobile-toggle {
    display: none;
  }
}

.btc-header__mobile-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.btc-hero {
  position: relative;
  padding: 4rem 0 5rem;
  background: linear-gradient(135deg, var(--btc-green-50) 0%, var(--btc-blue-50) 50%, var(--btc-stone-50) 100%);
  overflow: hidden;
}

/* Decorative background pattern */
.btc-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background:
    radial-gradient(circle at 70% 30%, rgba(22, 163, 74, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(37, 99, 235, 0.06) 0%, transparent 40%);
  pointer-events: none;
}

.btc-hero__inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .btc-hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* Hero content */
.btc-hero__content {
  position: relative;
  z-index: 1;
}

.btc-hero__headline {
  font-family: var(--btc-font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1;
  color: var(--btc-stone-900);
  margin-bottom: 1.5rem;
}

.btc-hero__headline-accent {
  color: var(--btc-blue-600);
}

.btc-hero__subhead {
  font-size: 1.125rem;
  color: var(--btc-stone-600);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 36rem;
}

/* Hero CTAs */
.btc-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.btc-hero__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--btc-blue-600) 0%, var(--btc-blue-700) 100%);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.5rem;
  box-shadow: var(--btc-shadow-lg), 0 0 0 0 rgba(37, 99, 235, 0);
  transition: all var(--btc-transition-base);
}

.btc-hero__cta-primary:hover {
  background: linear-gradient(135deg, var(--btc-blue-500) 0%, var(--btc-blue-600) 100%);
  box-shadow: var(--btc-shadow-xl), 0 0 30px rgba(37, 99, 235, 0.35);
  transform: translateY(-3px);
}

.btc-hero__cta-primary svg {
  width: 1.25rem;
  height: 1.25rem;
}

.btc-hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: white;
  color: var(--btc-blue-600);
  font-weight: 600;
  border: 2px solid var(--btc-blue-600);
  border-radius: 0.5rem;
  transition: all var(--btc-transition-base);
}

.btc-hero__cta-secondary:hover {
  background: var(--btc-blue-600);
  color: white;
}

/* Trust badges */
.btc-hero__badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

.btc-hero__badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--btc-stone-600);
}

.btc-hero__badge svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.btc-hero__badge--licensed svg,
.btc-hero__badge--insured svg {
  color: var(--btc-green-600);
}

.btc-hero__badge--emergency svg {
  color: #dc2626;
}

.btc-hero__badge--bbb svg {
  color: var(--btc-blue-600);
}

/* Hero visual */
.btc-hero__visual {
  position: relative;
}

.btc-hero__image {
  width: 100%;
  height: 24rem;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: var(--btc-shadow-xl);
}

@media (min-width: 1024px) {
  .btc-hero__image {
    height: 28rem;
  }
}

.btc-hero__stats-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: var(--btc-shadow-xl);
  text-align: center;
}

.btc-hero__stats-number {
  font-family: var(--btc-font-display);
  font-size: 2rem;
  color: var(--btc-blue-600);
  line-height: 1;
}

.btc-hero__stats-label {
  font-size: 0.875rem;
  color: var(--btc-stone-500);
  margin-top: 0.25rem;
}

/* ================================================================
   SERVICES SECTION
   ================================================================ */
.btc-services {
  padding: var(--btc-section-padding) 0;
  background: white;
}

.btc-services__header {
  text-align: center;
  margin-bottom: 4rem;
}

.btc-services__title {
  font-family: var(--btc-font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--btc-stone-900);
  margin-bottom: 1rem;
}

.btc-services__subtitle {
  font-size: 1.125rem;
  color: var(--btc-stone-600);
  max-width: 48rem;
  margin-inline: auto;
}

/* Services grid */
.btc-services__grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

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

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

/* Service card */
.btc-service-card {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--btc-shadow-lg);
  cursor: pointer;
  transition: all var(--btc-transition-base);
}

.btc-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--btc-shadow-xl), var(--btc-shadow-glow);
}

.btc-service-card__image {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  transition: transform var(--btc-transition-slow);
}

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

.btc-service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
}

.btc-service-card__hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(37, 99, 235, 0.2);
  opacity: 0;
  transition: opacity var(--btc-transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btc-service-card:hover .btc-service-card__hover-overlay {
  opacity: 1;
}

.btc-service-card__hover-text {
  color: white;
  font-weight: 600;
  font-size: 1.125rem;
}

.btc-service-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: white;
}

.btc-service-card__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.btc-service-card__icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.btc-service-card__title {
  font-weight: 600;
  font-size: 1.125rem;
}

.btc-service-card__description {
  font-size: 0.875rem;
  opacity: 0.9;
  line-height: 1.5;
}

.btc-service-card__link-hint {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.75;
}

/* Additional services box */
.btc-services__additional {
  background: var(--btc-stone-100);
  border-radius: 0.75rem;
  padding: 2rem;
}

.btc-services__additional-title {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--btc-stone-900);
  text-align: center;
  margin-bottom: 1.5rem;
}

.btc-services__additional-grid {
  display: grid;
  gap: 1rem;
}

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

.btc-services__additional-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: white;
  border-radius: 0.5rem;
  box-shadow: var(--btc-shadow-sm);
  font-weight: 500;
  color: var(--btc-stone-800);
}

.btc-services__additional-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--btc-green-600);
}

/* ================================================================
   ABOUT SECTION
   ================================================================ */
.btc-about {
  padding: var(--btc-section-padding) 0;
  background: var(--btc-stone-100);
}

.btc-about__inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .btc-about__inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.btc-about__content {
  order: 2;
}

@media (min-width: 1024px) {
  .btc-about__content {
    order: 1;
  }
}

.btc-about__title {
  font-family: var(--btc-font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--btc-stone-900);
  margin-bottom: 1.5rem;
}

.btc-about__description {
  font-size: 1.0625rem;
  color: var(--btc-stone-600);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* About info grid */
.btc-about__info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.btc-about__info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.btc-about__info-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--btc-blue-600);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.btc-about__info-label {
  font-weight: 600;
  color: var(--btc-stone-900);
  font-size: 0.9375rem;
}

.btc-about__info-value {
  color: var(--btc-stone-600);
  font-size: 0.9375rem;
}

/* About visual */
.btc-about__visual {
  order: 1;
}

@media (min-width: 1024px) {
  .btc-about__visual {
    order: 2;
  }
}

.btc-about__cards {
  display: grid;
  gap: 1.5rem;
}

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

.btc-about__owner-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--btc-shadow-xl);
  text-align: center;
}

.btc-about__owner-photo {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  box-shadow: var(--btc-shadow-lg);
}

.btc-about__owner-name {
  font-family: var(--btc-font-display);
  font-size: 1.5rem;
  color: var(--btc-stone-900);
  margin-bottom: 0.25rem;
}

.btc-about__owner-title {
  color: var(--btc-blue-600);
  font-weight: 600;
}

.btc-about__badge-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--btc-shadow-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btc-about__badge-image {
  width: 100%;
  height: auto;
  max-height: 12rem;
  object-fit: contain;
  border-radius: 0.25rem;
}

.btc-about__bio-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--btc-shadow-xl);
}

@media (min-width: 640px) {
  .btc-about__bio-card {
    grid-column: span 2;
  }
}

.btc-about__bio {
  color: var(--btc-stone-600);
  line-height: 1.8;
}

/* ================================================================
   AREAS SECTION
   ================================================================ */
.btc-areas {
  padding: var(--btc-section-padding) 0;
  background: white;
}

.btc-areas__header {
  text-align: center;
  margin-bottom: 4rem;
}

.btc-areas__title {
  font-family: var(--btc-font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--btc-stone-900);
  margin-bottom: 1rem;
}

.btc-areas__subtitle {
  font-size: 1.125rem;
  color: var(--btc-stone-600);
  max-width: 48rem;
  margin-inline: auto;
}

/* Areas grid */
.btc-areas__grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

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

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

/* Area card */
.btc-area-card {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--btc-shadow-lg);
  cursor: pointer;
  transition: all var(--btc-transition-base);
}

.btc-area-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--btc-shadow-xl);
}

.btc-area-card__image {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  transition: transform var(--btc-transition-slow);
}

.btc-area-card:hover .btc-area-card__image {
  transform: scale(1.05);
}

.btc-area-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 60%);
}

.btc-area-card__hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(37, 99, 235, 0.2);
  opacity: 0;
  transition: opacity var(--btc-transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btc-area-card:hover .btc-area-card__hover-overlay {
  opacity: 1;
}

.btc-area-card__hover-text {
  color: white;
  font-weight: 600;
  font-size: 1.125rem;
}

.btc-area-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  color: white;
}

.btc-area-card__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btc-area-card__icon {
  width: 1.25rem;
  height: 1.25rem;
}

.btc-area-card__name {
  font-weight: 600;
  font-size: 1.125rem;
}

.btc-area-card__tagline {
  font-size: 0.875rem;
  opacity: 0.9;
  margin-top: 0.25rem;
}

.btc-area-card__link-hint {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  opacity: 0.75;
}

/* Areas CTA */
.btc-areas__cta-box {
  background: var(--btc-blue-50);
  border-radius: 0.75rem;
  padding: 2.5rem;
  text-align: center;
}

.btc-areas__cta-title {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--btc-stone-900);
  margin-bottom: 1rem;
}

.btc-areas__cta-text {
  color: var(--btc-stone-600);
  margin-bottom: 1.5rem;
}

/* ================================================================
   CONTACT SECTION
   ================================================================ */
.btc-contact {
  padding: var(--btc-section-padding) 0;
  background: var(--btc-stone-100);
}

.btc-contact__header {
  text-align: center;
  margin-bottom: 4rem;
}

.btc-contact__title {
  font-family: var(--btc-font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--btc-stone-900);
  margin-bottom: 1rem;
}

.btc-contact__subtitle {
  font-size: 1.125rem;
  color: var(--btc-stone-600);
  max-width: 48rem;
  margin-inline: auto;
}

.btc-contact__inner {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .btc-contact__inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* Contact info */
.btc-contact__info-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--btc-shadow-lg);
}

.btc-contact__info-title {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--btc-stone-900);
  margin-bottom: 1.5rem;
}

.btc-contact__info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.btc-contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.btc-contact__info-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--btc-blue-600);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.btc-contact__info-label {
  font-weight: 600;
  color: var(--btc-stone-900);
  margin-bottom: 0.125rem;
}

.btc-contact__info-value {
  color: var(--btc-stone-600);
}

.btc-contact__info-link {
  color: var(--btc-blue-600);
  transition: color var(--btc-transition-fast);
}

.btc-contact__info-link:hover {
  color: var(--btc-blue-700);
}

/* Social links */
.btc-contact__social {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--btc-stone-200);
}

.btc-contact__social-title {
  font-weight: 600;
  color: var(--btc-stone-900);
  margin-bottom: 1rem;
}

.btc-contact__social-links {
  display: flex;
  gap: 1rem;
}

.btc-contact__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--btc-stone-100);
  color: var(--btc-stone-500);
  transition: all var(--btc-transition-base);
}

.btc-contact__social-link:hover {
  background: var(--btc-blue-600);
  color: white;
  transform: translateY(-3px);
}

.btc-contact__social-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Nextdoor banner */
.btc-contact__nextdoor {
  margin-top: 1.5rem;
  display: block;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--btc-shadow-md);
  transition: all var(--btc-transition-base);
}

.btc-contact__nextdoor:hover {
  box-shadow: var(--btc-shadow-xl);
  transform: translateY(-3px);
}

.btc-contact__nextdoor-img {
  width: 100%;
  height: auto;
}

/* Contact form */
.btc-contact__form-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--btc-shadow-lg);
}

.btc-contact__form-title {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--btc-stone-900);
  margin-bottom: 1.5rem;
}

.btc-contact__form-embed {
  width: 100%;
  min-height: 800px;
  border: none;
}

/* ================================================================
   FOOTER
   ================================================================ */
.btc-footer {
  background: var(--btc-stone-900);
  color: white;
  padding: 3rem 0 0;
}

.btc-footer__inner {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  .btc-footer__inner {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
  }
}

/* Footer brand */
.btc-footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.btc-footer__logo {
  height: 2.5rem;
  width: auto;
}

.btc-footer__brand-name {
  font-family: var(--btc-font-display);
  font-size: 1.25rem;
  line-height: 1.3;
}

.btc-footer__brand-tagline {
  font-size: 0.875rem;
  color: var(--btc-stone-400);
}

.btc-footer__description {
  color: var(--btc-stone-400);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 24rem;
}

.btc-footer__social {
  display: flex;
  gap: 0.75rem;
}

.btc-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--btc-stone-800);
  color: var(--btc-stone-400);
  transition: all var(--btc-transition-base);
}

.btc-footer__social-link:hover {
  background: var(--btc-blue-600);
  color: white;
}

.btc-footer__social-link svg {
  width: 1.125rem;
  height: 1.125rem;
}

/* Footer columns */
.btc-footer__column-title {
  font-weight: 600;
  font-size: 1.0625rem;
  margin-bottom: 1rem;
}

.btc-footer__nav {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.btc-footer__nav-link {
  color: var(--btc-stone-400);
  font-size: 0.9375rem;
  transition: color var(--btc-transition-fast);
}

.btc-footer__nav-link:hover {
  color: white;
}

/* Footer contact info */
.btc-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--btc-stone-400);
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
}

.btc-footer__contact-item svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.btc-footer__contact-link {
  color: var(--btc-stone-400);
  transition: color var(--btc-transition-fast);
}

.btc-footer__contact-link:hover {
  color: white;
}

/* Footer bottom */
.btc-footer__bottom {
  border-top: 1px solid var(--btc-stone-800);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .btc-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.btc-footer__copyright {
  color: var(--btc-stone-400);
  font-size: 0.875rem;
}

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

.btc-footer__legal-link {
  color: var(--btc-stone-400);
  font-size: 0.875rem;
  transition: color var(--btc-transition-fast);
}

.btc-footer__legal-link:hover {
  color: white;
}

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

/* ================================================================
   BREADCRUMB
   ================================================================ */
.btc-breadcrumb {
  padding: 1rem 0;
  background: var(--btc-stone-50);
  border-bottom: 1px solid var(--btc-stone-200);
}

.btc-breadcrumb__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--btc-stone-600);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color var(--btc-transition-fast);
}

.btc-breadcrumb__link:hover {
  color: var(--btc-green-600);
}

.btc-breadcrumb__link svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ================================================================
   SERVICE HERO SECTION
   ================================================================ */
.btc-service-hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--btc-blue-600) 0%, var(--btc-blue-700) 100%);
  color: white;
}

.btc-service-hero__inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .btc-service-hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.btc-service-hero__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.btc-service-hero__icon {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 0.5rem;
}

.btc-service-hero__title {
  font-family: var(--btc-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin: 0;
}

.btc-service-hero__description {
  font-size: 1.125rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 2rem;
}

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

.btc-service-hero__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: white;
  color: var(--btc-blue-700);
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all var(--btc-transition-base);
}

.btc-service-hero__cta-primary:hover {
  background: var(--btc-stone-100);
  transform: translateY(-2px);
}

.btc-service-hero__cta-primary svg {
  width: 1.25rem;
  height: 1.25rem;
}

.btc-service-hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 1.5rem;
  background: transparent;
  color: white;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 0.5rem;
  transition: all var(--btc-transition-base);
}

.btc-service-hero__cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.btc-service-hero__visual {
  position: relative;
}

.btc-service-hero__image {
  width: 100%;
  border-radius: 1rem;
  box-shadow: var(--btc-shadow-xl);
}

/* ================================================================
   LOCATION HERO SECTION
   ================================================================ */
.btc-location-hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--btc-green-600) 0%, var(--btc-blue-600) 100%);
  color: white;
}

.btc-location-hero__inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .btc-location-hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.btc-location-hero__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.btc-location-hero__icon {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 0.5rem;
}

.btc-location-hero__title {
  font-family: var(--btc-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin: 0;
}

.btc-location-hero__description {
  font-size: 1.125rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 2rem;
}

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

.btc-location-hero__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: white;
  color: var(--btc-green-700);
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all var(--btc-transition-base);
}

.btc-location-hero__cta-primary:hover {
  background: var(--btc-stone-100);
  transform: translateY(-2px);
}

.btc-location-hero__cta-primary svg {
  width: 1.25rem;
  height: 1.25rem;
}

.btc-location-hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 1.5rem;
  background: transparent;
  color: white;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 0.5rem;
  transition: all var(--btc-transition-base);
}

.btc-location-hero__cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.btc-location-hero__visual {
  position: relative;
}

.btc-location-hero__image {
  width: 100%;
  border-radius: 1rem;
  box-shadow: var(--btc-shadow-xl);
}

.btc-location-hero__stats {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  text-align: center;
  box-shadow: var(--btc-shadow-lg);
}

.btc-location-hero__stats-number {
  font-family: var(--btc-font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--btc-green-600);
  line-height: 1;
}

.btc-location-hero__stats-label {
  font-size: 0.875rem;
  color: var(--btc-stone-600);
  margin-top: 0.25rem;
}

/* ================================================================
   BENEFITS SECTION
   ================================================================ */
.btc-benefits {
  padding: 4rem 0;
  background: white;
}

.btc-benefits__header {
  text-align: center;
  margin-bottom: 3rem;
}

.btc-benefits__title {
  font-family: var(--btc-font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--btc-stone-900);
  margin-bottom: 0.5rem;
}

.btc-benefits__subtitle {
  color: var(--btc-stone-600);
  font-size: 1.0625rem;
}

.btc-benefits__grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.btc-benefits__item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--btc-stone-50);
  border-radius: 0.75rem;
  transition: all var(--btc-transition-base);
}

.btc-benefits__item:hover {
  background: var(--btc-green-50);
  transform: translateY(-2px);
}

.btc-benefits__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  background: var(--btc-green-100);
  color: var(--btc-green-600);
  border-radius: 0.5rem;
}

.btc-benefits__text h3 {
  font-weight: 600;
  color: var(--btc-stone-900);
  margin-bottom: 0.25rem;
}

.btc-benefits__text p {
  font-size: 0.9375rem;
  color: var(--btc-stone-600);
  line-height: 1.5;
}

/* ================================================================
   PROCESS SECTION
   ================================================================ */
.btc-process {
  padding: 4rem 0;
  background: var(--btc-stone-50);
}

.btc-process__header {
  text-align: center;
  margin-bottom: 3rem;
}

.btc-process__title {
  font-family: var(--btc-font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--btc-stone-900);
  margin-bottom: 0.5rem;
}

.btc-process__subtitle {
  color: var(--btc-stone-600);
  font-size: 1.0625rem;
}

.btc-process__grid {
  display: grid;
  gap: 2rem;
}

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

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

.btc-process__step {
  position: relative;
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: 1rem;
  box-shadow: var(--btc-shadow-sm);
}

.btc-process__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--btc-blue-600);
  color: white;
  font-family: var(--btc-font-display);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.btc-process__icon {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 1rem;
  color: var(--btc-blue-600);
}

.btc-process__label {
  font-weight: 600;
  color: var(--btc-stone-900);
}

/* ================================================================
   WHY CHOOSE SECTION
   ================================================================ */
.btc-why-choose {
  padding: 4rem 0;
  background: white;
}

.btc-why-choose__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.btc-why-choose__title {
  font-family: var(--btc-font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--btc-stone-900);
}

.btc-why-choose__grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.btc-why-choose__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  background: var(--btc-green-50);
  border-radius: 0.75rem;
}

.btc-why-choose__icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--btc-green-600);
}

.btc-why-choose__item p {
  font-weight: 500;
  color: var(--btc-stone-800);
}

/* ================================================================
   SERVICE AREAS SECTION
   ================================================================ */
.btc-service-areas {
  padding: 4rem 0;
  background: var(--btc-stone-50);
}

.btc-service-areas__header {
  text-align: center;
  margin-bottom: 3rem;
}

.btc-service-areas__title {
  font-family: var(--btc-font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--btc-stone-900);
  margin-bottom: 0.5rem;
}

.btc-service-areas__subtitle {
  color: var(--btc-stone-600);
  font-size: 1.0625rem;
}

.btc-service-areas__grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.btc-service-areas__cta {
  margin-top: 3rem;
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  text-align: center;
  box-shadow: var(--btc-shadow-sm);
}

.btc-service-areas__cta-title {
  font-family: var(--btc-font-display);
  font-size: 1.25rem;
  color: var(--btc-stone-900);
  margin-bottom: 0.5rem;
}

.btc-service-areas__cta-text {
  color: var(--btc-stone-600);
  margin-bottom: 1.5rem;
}

/* ================================================================
   AREA CARDS
   ================================================================ */
.btc-area-card {
  position: relative;
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.btc-area-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--btc-transition-base);
}

.btc-area-card:hover .btc-area-card__image {
  transform: scale(1.05);
}

.btc-area-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
}

.btc-area-card__hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 163, 74, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--btc-transition-base);
}

.btc-area-card:hover .btc-area-card__hover-overlay {
  opacity: 1;
}

.btc-area-card__hover-text {
  color: white;
  font-weight: 600;
  font-size: 1.125rem;
}

.btc-area-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  color: white;
}

.btc-area-card__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.btc-area-card__icon {
  width: 1.25rem;
  height: 1.25rem;
  opacity: 0.9;
}

.btc-area-card__name {
  font-family: var(--btc-font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.btc-area-card__tagline {
  font-size: 0.875rem;
  opacity: 0.85;
  margin: 0;
}

/* ================================================================
   LOCATION SERVICES SECTION
   ================================================================ */
.btc-location-services {
  padding: 4rem 0;
  background: white;
}

.btc-location-services__header {
  text-align: center;
  margin-bottom: 3rem;
}

.btc-location-services__title {
  font-family: var(--btc-font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--btc-stone-900);
  margin-bottom: 0.5rem;
}

.btc-location-services__subtitle {
  color: var(--btc-stone-600);
  font-size: 1.0625rem;
}

.btc-location-services__grid {
  display: grid;
  gap: 1rem;
}

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

.btc-location-services__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--btc-stone-50);
  border-radius: 0.75rem;
  transition: all var(--btc-transition-base);
}

.btc-location-services__item--link:hover {
  background: var(--btc-green-50);
  transform: translateX(4px);
}

.btc-location-services__icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--btc-green-600);
  margin-top: 0.125rem;
}

.btc-location-services__text {
  flex: 1;
}

.btc-location-services__name {
  font-weight: 500;
  color: var(--btc-stone-900);
  margin: 0;
}

.btc-location-services__hint {
  font-size: 0.8125rem;
  color: var(--btc-green-600);
  margin-top: 0.125rem;
  display: block;
}

/* ================================================================
   LOCAL EXPERTS SECTION
   ================================================================ */
.btc-local-experts {
  padding: 4rem 0;
  background: var(--btc-stone-50);
}

.btc-local-experts__inner {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .btc-local-experts__inner {
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
  }
}

.btc-local-experts__title {
  font-family: var(--btc-font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--btc-stone-900);
  margin-bottom: 1rem;
}

.btc-local-experts__description {
  color: var(--btc-stone-600);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Property types */
.btc-local-experts__types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.btc-local-experts__type {
  text-align: center;
  padding: 1.5rem 1rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: var(--btc-shadow-sm);
}

.btc-local-experts__type-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.75rem;
  color: var(--btc-green-600);
}

.btc-local-experts__type-name {
  font-weight: 600;
  color: var(--btc-stone-900);
  font-size: 1rem;
}

.btc-local-experts__type-label {
  font-size: 0.8125rem;
  color: var(--btc-stone-500);
  margin-top: 0.125rem;
}

/* Why choose card */
.btc-local-experts__why-card {
  padding: 1.5rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: var(--btc-shadow-sm);
}

.btc-local-experts__why-title {
  font-family: var(--btc-font-display);
  font-size: 1.25rem;
  color: var(--btc-stone-900);
  margin-bottom: 1rem;
}

.btc-local-experts__why-grid {
  display: grid;
  gap: 0.75rem;
}

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

.btc-local-experts__why-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btc-local-experts__why-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--btc-green-600);
}

.btc-local-experts__why-item span {
  font-size: 0.9375rem;
  color: var(--btc-stone-700);
}

/* Sidebar */
.btc-local-experts__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.btc-local-experts__info-card {
  padding: 1.5rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: var(--btc-shadow-sm);
}

.btc-local-experts__info-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.btc-local-experts__info-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--btc-green-600);
}

.btc-local-experts__info-title {
  font-weight: 600;
  color: var(--btc-stone-900);
  font-size: 1rem;
  margin: 0;
}

.btc-local-experts__info-text {
  color: var(--btc-stone-700);
  margin-bottom: 0.5rem;
}

.btc-local-experts__info-note {
  font-size: 0.8125rem;
  color: var(--btc-green-600);
  font-weight: 500;
}

.btc-local-experts__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.btc-local-experts__tag {
  padding: 0.375rem 0.75rem;
  background: var(--btc-stone-100);
  color: var(--btc-stone-700);
  font-size: 0.8125rem;
  border-radius: 9999px;
}

.btc-local-experts__tag--active {
  background: var(--btc-green-100);
  color: var(--btc-green-700);
}

.btc-local-experts__tag--more {
  background: var(--btc-blue-100);
  color: var(--btc-blue-700);
}

.btc-local-experts__list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--btc-stone-700);
}

.btc-local-experts__list li {
  font-size: 0.9375rem;
  line-height: 1.6;
}
