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

:root {
  /* ─── Brand: Dark Green + Rich Coffee ─── */
  --primary: #1a4a2e;
  /* Deep forest green — main CTA, links */
  --primary-dark: #0d2b1a;
  /* Darker green — hover states */
  --primary-light: #2d7a4f;
  /* Lighter green — highlights */
  --accent: #c9ab87;
  /* Rich coffee/warm sand — accent elements */
  --accent-dark: #a8895e;
  /* Darker coffee — hover on accents */
  --dark: #0d1f0f;
  /* Near-black green tint — body text */
  --dark-2: #132a16;
  /* Very dark green — dark section bg */
  --dark-3: #1e4025;
  /* Dark green mid — card bg, borders */
  --gray: #5a6e5d;
  /* Muted sage gray */
  --gray-light: #8fa08f;
  /* Light sage */
  --gray-100: #f2f0ed;
  /* Warm cream background */
  --gray-200: #e6e2db;
  /* Warm cream border */
  --white: #ffffff;
  --success: #2d7a4f;
  /* Same as primary-light */
  --danger: #c0392b;
  --shadow-sm: 0 1px 3px rgba(13, 27, 16, .08);
  --shadow-md: 0 4px 14px rgba(13, 27, 16, .12);
  --shadow-lg: 0 10px 30px rgba(13, 27, 16, .14);
  --shadow-xl: 0 20px 50px rgba(13, 27, 16, .18);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: .3s ease;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

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

.section-gray {
  background: var(--gray-100);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 800px;
  margin: 0 auto;
}

.section-dark .section-header p {
  color: var(--gray-light);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 50px;
  width: auto;
}

.logo-text {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--dark);
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: .75rem;
  font-weight: 500;
  color: var(--gray-light);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-weight: 500;
  font-size: .92rem;
  color: var(--dark-3);
}

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

.nav-active {
  color: var(--accent) !important;
  font-weight: 700 !important;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}

/* ===== BREADCRUMB BAR ===== */
.breadcrumb-bar {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  padding: 10px 0;
  position: sticky;
  top: 72px;
  z-index: 99;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

.breadcrumb a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: var(--gray-light);
}

.breadcrumb-current {
  color: var(--dark);
  font-weight: 600;
}

/* ===== NAV DROPDOWN ===== */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-caret {
  font-size: 0.7rem;
  transition: transform var(--transition);
  display: inline-block;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
  z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown:hover .nav-caret {
  transform: rotate(180deg);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  white-space: nowrap;
  transition: background 0.15s ease;
}

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

.nav-dropdown-menu a.nav-active {
  color: var(--primary) !important;
  font-weight: 700 !important;
  border-bottom: none !important;
  background: rgba(26, 74, 46, 0.06);
}

/* ===== HERO BREADCRUMB (overlaid on photo) ===== */
.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.75);
}

.hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
}

.hero-breadcrumb a:hover {
  color: var(--white);
  text-decoration: underline;
}

.hero-breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .92rem;
  transition: var(--transition);
}

.header-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.header-cta svg {
  width: 18px;
  height: 18px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  padding: 160px 0 120px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.55), rgba(30, 58, 95, 0.50)), url('img_webp/appliance-repair-technician-berryville-va-kitchen.webp') center/cover no-repeat;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* LG page hero override — uses LG-specific background photo */
.hero-lg {
  background-image: linear-gradient(135deg, rgba(10, 20, 15, 0.60), rgba(30, 58, 95, 0.50)), url('img_webp/lg-refrigerator-repair.webp');
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, .15) 0%, transparent 60%);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* LIMITED TIME OFFER badge */
.hero-offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--dark);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .04em;
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(201, 171, 135, .5);
  animation: offerPulse 2.5s ease-in-out infinite;
}

@keyframes offerPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(201, 171, 135, .5);
  }

  50% {
    box-shadow: 0 4px 32px rgba(201, 171, 135, .8), 0 0 0 6px rgba(201, 171, 135, .18);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, .15);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero h1 span {
  color: var(--accent);
}

/* Feature tagline: ⚡ Fast Response • Expert Technicians • Guaranteed Results */
.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding: 10px 20px;
  background: rgba(201, 171, 135, .1);
  border: 1px solid rgba(201, 171, 135, .25);
  border-radius: 8px;
}

.hero-tagline-icon {
  font-size: 1.1rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 24px;
  line-height: 1.7;
  /*max-width: 720px;*/
}

/* Trust mini-badges inside hero */
.hero-trust-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 600;
  color: #fff;
}

.hero-trust-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}

/* Accent-colored call button with $20 OFF tag */
.btn-hero-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--dark);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: .03em;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(201, 171, 135, .45);
  position: relative;
}

.btn-hero-call:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 171, 135, .6);
  color: var(--dark);
}

.btn-discount-tag {
  background: var(--dark);
  color: var(--accent);
  font-size: .78rem;
  font-weight: 900;
  padding: 2px 10px;
  border-radius: 20px;
  margin-left: 4px;
  letter-spacing: .02em;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--dark);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, .3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, .25);
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, .2);
}

/* Social proof cards inside hero */
.hero-social-proof {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-proof-card {
  background: rgba(255, 255, 255, .92);
  color: var(--dark);
  border-radius: var(--radius);
  padding: 18px 28px;
  text-align: center;
  min-width: 160px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}

.hero-proof-stars {
  color: #f5a623;
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.hero-proof-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-proof-number span {
  font-size: 1.4rem;
  color: var(--accent-dark);
}

.hero-proof-label {
  font-size: .88rem;
  font-weight: 700;
  color: var(--dark);
}

.hero-proof-sub {
  font-size: .75rem;
  color: var(--gray);
  margin-top: 2px;
}

/* ===== GOOGLE RATING STRIP ===== */
.google-rating-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 0;
  box-shadow: 0 2px 12px rgba(13, 27, 16, .06);
}

.grs-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.grs-rating-block {
  display: flex;
  align-items: center;
  gap: 16px;
}

.grs-score {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.grs-rating-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.grs-stars {
  color: #f5a623;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.grs-label {
  font-size: .78rem;
  color: var(--gray);
  line-height: 1.4;
}

.grs-divider {
  width: 1px;
  height: 48px;
  background: var(--gray-200);
  flex-shrink: 0;
}

.grs-google-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.grs-google-logo {
  flex-shrink: 0;
}

.grs-google-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.grs-google-text strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
}

.grs-review-link {
  font-size: .82rem;
  color: #4285F4;
  font-weight: 600;
  text-decoration: underline;
  transition: var(--transition);
}

.grs-review-link:hover {
  color: #1a73e8;
}

.grs-stats {
  display: flex;
  gap: 28px;
}

.grs-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.grs-stat-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
}

.grs-stat-label {
  font-size: .75rem;
  color: var(--gray);
  font-weight: 500;
}

.grs-stat-sub {
  font-size: .68rem;
  color: var(--gray-light);
  font-weight: 400;
}

/* ===== BRANDS ===== */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.brand-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  transition: var(--transition);
}

.brand-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.brand-card .brand-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.brand-card h4 {
  font-size: .92rem;
  font-weight: 700;
}

.brand-card p {
  font-size: .78rem;
  color: var(--gray);
  margin-top: 4px;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: var(--transition);
}

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

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(26, 86, 219, .1), rgba(59, 130, 246, .1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray);
  font-size: .93rem;
  line-height: 1.7;
}

.service-card .service-brands {
  margin-top: 14px;
  font-size: .82rem;
  color: var(--primary);
  font-weight: 600;
}

/* Split Layout Service Cards */
.service-card-split {
  background: #122218;
  /* Deep forest card background */
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 171, 135, 0.12);
  /* Subtle coffee tint border */
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card-split:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 171, 135, 0.45);
  /* Coffee accent border on hover */
  box-shadow: 0 12px 30px rgba(13, 27, 16, 0.4);
}

.service-image {
  height: 450px;
  position: relative;
}

.service-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #c9ab87;
  /* Rich coffee badge */
  color: #0d1f0f;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(13, 27, 16, 0.25);
}

.service-content {
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-content h3 {
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  /* Pushes the read-more link and brands down */
}

.service-brands {
  color: #9ca3af;
  /* Lighter grey for brands */
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.service-card-actions a {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.service-card-actions .btn-book {
  background: var(--accent);
  color: var(--dark);
}

.service-card-actions .btn-book:hover {
  background: var(--accent-dark);
}

.service-card-actions .btn-call {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-card-actions .btn-call:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

/* Base backgrounds for top image block */
.bg-refrigerator {
  background: url('img_webp/refrigerator-repair.webp') center/cover no-repeat;
}

.bg-gas-range {
  background: url('img_webp/gas-range-oven-repair-1.webp') center/cover no-repeat;
}

.bg-dryer {
  background: url('img_webp/dryer-repair.webp') center/cover no-repeat;
}

.bg-dishwasher {
  background: url('img_webp/dishwasher-repair.webp') center/cover no-repeat;
}

.bg-washer {
  background: url('img_webp/washing-machine-repair.webp') center/cover no-repeat;
}

.bg-microwave {
  background: url('img_webp/microwave-range-hood-repair.webp') center/cover no-repeat;
}

.bg-ge-profile {
  background: url('img_webp/ge-profile-combo-repair.webp') center calc(50% - 130px)/cover no-repeat;
}

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255, 255, 255, .08);
  transform: translateY(-4px);
}

.why-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.why-card h3 .icon {
  font-size: 1.5rem;
}

.why-card .icon {
  margin-right: 12px;
  font-size: 1.2rem;
}

.why-card p {
  color: var(--gray-light);
  font-size: .93rem;
}

.trust-cta {
  margin-top: 60px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  text-align: center;
}

.trust-cta h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--white);
}

.trust-cta p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.trust-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-cta-buttons .btn-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.trust-cta-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.service-areas-cta {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  margin-top: 48px;
  border: 1px solid var(--gray-200);
}

.service-areas-cta h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--dark);
}

.service-areas-cta p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.service-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-cta-buttons .btn-secondary {
  color: var(--primary-dark) !important;
  border: 2px solid var(--primary-dark) !important;
  background: transparent !important;
}

.service-cta-buttons .btn-secondary:hover {
  background: rgba(0, 0, 0, 0.05) !important;
  border-color: var(--primary) !important;
}

/* ===== REPAIR VS REPLACE ===== */
.repair-replace {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.rr-col {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--gray-200);
}

.rr-col h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.rr-col.repair h3 {
  color: var(--success);
}

.rr-col.replace h3 {
  color: var(--danger);
}

.rr-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.rr-item .icon {
  flex-shrink: 0;
  margin-top: 3px;
}

.rr-item .icon.green {
  color: var(--success);
}

.rr-item .icon.red {
  color: var(--danger);
}

.rr-item strong {
  font-weight: 600;
}

.rr-note {
  margin-top: 30px;
  padding: 24px;
  background: var(--gray-100);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
}

.rr-note p {
  font-size: .93rem;
  color: var(--dark-3);
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

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

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

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

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item .overlay span {
  color: var(--white);
  font-size: .88rem;
  font-weight: 600;
}

/* ===== LG REFRIGERATOR REPAIR — PREMIUM ===== */
.lg-repair-section {
  padding: 0 0 80px;
}

.lg-hero {
  background: linear-gradient(135deg, #071409 0%, #0d2b1a 50%, #1a4a2e 100%);
  padding: 80px 0 60px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.lg-hero::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -20%;
  width: 140%;
  height: 220%;
  background: radial-gradient(circle at 30% 40%, rgba(201, 171, 135, .12) 0%, transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(45, 122, 79, .15) 0%, transparent 50%);
  pointer-events: none;
}

.lg-hero-inner {
  position: relative;
  z-index: 1;
}

.lg-hero-title-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.lg-hero-inner .lg-hero-title-wrapper .lg-brand-badge {
  margin-bottom: 0;
}

.lg-hero-inner .lg-hero-title-wrapper h2 {
  margin-bottom: 0;
}

.lg-brand-badge {
  display: inline-block;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 12px rgba(165, 0, 52, .3));
}

.lg-hero-inner h2 {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.lg-hero-inner p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Intro block with side accent */
.lg-intro-block {
  display: flex;
  gap: 20px;
  margin: 48px 0 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.lg-intro-accent {
  width: 5px;
  flex-shrink: 0;
  border-radius: 4px;
  background: linear-gradient(180deg, #c9ab87, var(--primary));
}

.lg-intro-text p {
  color: var(--gray);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.lg-intro-text p:last-child {
  margin-bottom: 0;
}

/* Gallery — premium */
.lg-gallery-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.lg-gp-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.lg-gp-item img,
.lg-gp-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.lg-gp-item:hover img,
.lg-gp-item:hover video {
  transform: scale(1.06);
}

.lg-gp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, .1) 40%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity .3s ease;
}

.lg-gp-item:hover .lg-gp-overlay {
  opacity: 1;
}

.lg-gp-overlay span {
  color: var(--white);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .3px;
}

.lg-gp-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(26, 74, 46, .85);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 6px;
  pointer-events: none;
  backdrop-filter: blur(4px);
}

/* Problems grid */
.lg-problems {
  margin-bottom: 48px;
}

.lg-problems h3 {
  font-size: 1.4rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 28px;
}

.lg-problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.lg-problem-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.lg-problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c9ab87, var(--primary));
  opacity: 0;
  transition: var(--transition);
}

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

.lg-problem-card:hover::before {
  opacity: 1;
}

.lg-problem-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(201, 171, 135, .15), rgba(26, 74, 46, .1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.lg-problem-icon span {
  font-size: 1.6rem;
}

.lg-problem-card h4 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.lg-problem-card p {
  color: var(--gray);
  font-size: .88rem;
  line-height: 1.65;
}

/* Warranty callout */
.lg-warranty {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: linear-gradient(135deg, #e8f4ed, #d4ead9);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 48px;
  border: 1px solid rgba(26, 74, 46, .3);
}

.lg-warranty-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.lg-warranty-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.lg-warranty-text p {
  font-size: .92rem;
  color: var(--dark-3);
  line-height: 1.7;
}

/* CTA premium */
.lg-cta-premium {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}

.lg-cta-premium h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.lg-cta-premium>p {
  font-size: 1.02rem;
  color: var(--dark-3);
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.lg-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.lg-page-link {
  display: inline-block;
  font-size: .92rem;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}

.lg-page-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.lg-read-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding: 16px 28px;
  background: var(--dark-3);
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .02em;
  transition: var(--transition);
  text-align: center;
}

.lg-read-more-btn:hover {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 171, 135, .35);
}

.lg-read-more-btn svg {
  flex-shrink: 0;
  transition: transform var(--transition);
}

.lg-read-more-btn:hover svg {
  transform: translateX(4px);
}

/* ===== GE PROFILE COMBO REPAIR ===== */
.ge-repair-section {
  padding: 0 0 80px;
}

.ge-hero {
  background: linear-gradient(135deg, #071409 0%, #0d2b1a 50%, #1a4a2e 100%);
  padding: 80px 0 60px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.ge-hero::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -20%;
  width: 140%;
  height: 220%;
  background: radial-gradient(circle at 25% 35%, rgba(201, 171, 135, .14) 0%, transparent 50%),
    radial-gradient(circle at 75% 65%, rgba(45, 122, 79, .18) 0%, transparent 50%);
  pointer-events: none;
}

.ge-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 48px;
  text-align: left;
}

.ge-hero-text {
  flex: 1;
}

.ge-brand-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(201, 171, 135, .5);
  border-radius: 50px;
  padding: 8px 24px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #c9ab87;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.ge-hero-image {
  flex: 1;
  width: 100%;
  max-width: 500px;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

.ge-hero-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center 85%;
  display: block;
}

.ge-hero-inner h2 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.ge-hero-inner p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .88);
  margin: 0;
  line-height: 1.8;
}

@media (max-width: 991px) {
  .ge-hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .ge-hero-image img {
    height: 400px;
  }
}

.ge-intro-block {
  display: flex;
  gap: 20px;
  margin: 48px 0 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.ge-intro-accent {
  width: 5px;
  flex-shrink: 0;
  border-radius: 4px;
  background: linear-gradient(180deg, #c9ab87, var(--primary));
}

.ge-intro-text p {
  color: var(--gray);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.ge-intro-text p:last-child {
  margin-bottom: 0;
}

.ge-problems {
  margin-bottom: 48px;
}

.ge-problems h3 {
  font-size: 1.4rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 28px;
}

.ge-problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ge-problem-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.ge-problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c9ab87, var(--primary));
  opacity: 0;
  transition: var(--transition);
}

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

.ge-problem-card:hover::before {
  opacity: 1;
}

.ge-problem-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(201, 171, 135, .15), rgba(26, 74, 46, .1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.ge-problem-icon span {
  font-size: 1.6rem;
}

.ge-problem-card h4 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.ge-problem-card p {
  color: var(--gray);
  font-size: .88rem;
  line-height: 1.65;
}

.ge-note {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: linear-gradient(135deg, #e8f4ed, #d4ead9);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 48px;
  border: 1px solid rgba(26, 74, 46, .3);
}

.ge-note-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.ge-note-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.ge-note-text p {
  font-size: .92rem;
  color: var(--dark-3);
  line-height: 1.7;
}

.ge-cta-premium {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}

.ge-cta-premium h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.ge-cta-premium>p {
  font-size: 1.02rem;
  color: var(--dark-3);
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.ge-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BOOKING FORM ===== */

.booking-section {
  background: linear-gradient(135deg, rgba(7, 20, 9, 0.75), rgba(13, 43, 26, 0.8)), url('img_webp/professional-appliance-repair-tools-berryville.webp') center/cover no-repeat;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.booking-section::before {
  content: '';
  position: absolute;
  inset: 0;

}

.booking-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.booking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-xl);
}

.booking-card h2 {
  font-size: 1.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
  color: var(--dark);
}

.booking-card .booking-sub {
  text-align: center;
  color: var(--gray);
  margin-bottom: 32px;
  font-size: .95rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: .88rem;
  margin-bottom: 6px;
  color: var(--dark-2);
}

.form-group label .req {
  color: var(--danger);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--gray-100);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, .1);
}

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

.consent-group {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 24px;
}

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

.consent-group label {
  font-size: .8rem;
  color: var(--gray);
  line-height: 1.5;
  font-weight: 400;
}

.consent-group label a {
  color: var(--primary);
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--danger);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1.05rem;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.btn-submit:hover {
  background: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(239, 68, 68, .3);
}

.booking-footer {
  text-align: center;
  margin-top: 28px;
}

.booking-footer p {
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
}

.booking-footer a {
  display: inline-block;
  margin-top: 8px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  transition: var(--transition);
}

.booking-footer a:hover {
  color: var(--white);
}

/* ===== SERVICE AREAS ===== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.area-county {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--gray-200);
}

.area-county h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.area-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
  width: 100%;
}

.area-table tbody,
.area-table tr {
  display: contents;
}

.area-table td {
  font-size: .88rem;
  color: var(--dark-3);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.area-table td::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  font-size: .75rem;
}

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}

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

.review-stars {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-card blockquote {
  font-size: .92rem;
  color: var(--dark-3);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: .85rem;
}

.review-info h4 {
  font-size: .88rem;
  font-weight: 700;
}

.review-info p {
  font-size: .78rem;
  color: var(--gray);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
}

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

.faq-question .arrow {
  transition: var(--transition);
  font-size: 1.2rem;
  color: var(--gray);
}

.faq-item.active .faq-question .arrow {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-answer-inner {
  padding: 0 0 20px;
  color: var(--dark-3);
  font-size: .93rem;
  line-height: 1.8;
}

/* ===== MAP & CONTACT ===== */
.map-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

.map-side {
  min-height: 450px;
}

.map-side iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-side {
  padding: 40px 36px;
  background: var(--dark);
  color: var(--white);
}

.contact-side h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-item .ci-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item .ci-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.contact-item h4 {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-light);
  margin-bottom: 2px;
}

.contact-item p {
  font-size: .95rem;
}

.contact-item a {
  color: var(--accent);
}

.contact-item a:hover {
  color: var(--white);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: var(--gray-light);
  padding: 60px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

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

.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer h4 {
  color: var(--white);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  font-size: .88rem;
  color: var(--gray-light);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
  text-align: center;
  font-size: .82rem;
}

/* ===== FLOATING CALL BUTTON ===== */
.floating-call-wrap {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.floating-call {
  display: flex;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--danger);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(239, 68, 68, .4);
  align-items: center;
  justify-content: center;
  animation: pulse-ring 2s infinite;
  flex-shrink: 0;
}

.floating-call svg {
  width: 28px;
  height: 28px;
}

/* Tooltip popup */
.call-tooltip {
  background: var(--danger);
  color: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .25);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px) scale(.92);
  transition: opacity .35s ease, transform .35s cubic-bezier(.34, 1.56, .64, 1);
}

.call-tooltip.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.call-tooltip span {
  font-size: .88rem;
  font-weight: 600;
}

.call-tooltip-btn {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: var(--danger);
  font-weight: 800;
  font-size: .88rem;
  padding: 6px 14px;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}

.call-tooltip-btn:hover {
  background: #ffe5e5;
}

.call-tooltip-close {
  background: rgba(255, 255, 255, .25);
  border: none;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
}

.call-tooltip-close:hover {
  background: rgba(255, 255, 255, .4);
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .5;
  }
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, .5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(239, 68, 68, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

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

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 998;
  padding: 80px 30px 30px;
  flex-direction: column;
  gap: 0;
}

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

.mobile-nav a {
  display: block;
  padding: 16px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid var(--gray-200);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-img {
    display: none;
  }

  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .map-side {
    min-height: 300px;
  }

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

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
    max-width: 600px;
    margin: 0 auto;
  }

  .trust-item {
    justify-content: flex-start;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 1.7rem;
  }

  .nav {
    display: none;
  }

  .header-cta.desktop {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .floating-call-wrap {
    display: flex;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

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

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

  .repair-replace {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .booking-card {
    padding: 32px 24px;
  }

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

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
    gap: 20px;
  }

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

  .booking-card {
    padding: 24px 18px;
  }

  .booking-card h2 {
    font-size: 1.4rem;
  }

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

  .lg-gallery-premium {
    grid-template-columns: 1fr;
  }

  .ge-problems-grid,
  .lg-problems-grid {
    grid-template-columns: 1fr;
  }

  .lg-hero-inner h2 {
    font-size: 1.6rem;
  }

  .lg-warranty {
    flex-direction: column;
    text-align: center;
  }

  .lg-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* New hero elements — mobile */
  .hero-offer-badge {
    font-size: .8rem;
    padding: 8px 18px;
  }

  .hero-tagline {
    font-size: .92rem;
    padding: 8px 14px;
  }

  .hero-trust-badges {
    gap: 8px;
  }

  .hero-trust-item {
    font-size: .8rem;
    padding: 6px 12px;
  }

  .btn-hero-call {
    font-size: .95rem;
    padding: 14px 24px;
  }

  .hero-proof-card {
    min-width: 130px;
    padding: 14px 18px;
  }

  .hero-proof-number {
    font-size: 1.8rem;
  }

  /* Google Rating Strip — mobile */
  .grs-inner {
    gap: 20px;
  }

  .grs-divider {
    display: none;
  }

  .grs-score {
    font-size: 2.4rem;
  }

  .grs-stats {
    gap: 16px;
  }
}

/* ===== BOOKING MODAL ===== */
.bm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 14, 0.72);
  backdrop-filter: blur(6px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.bm-overlay.open {
  opacity: 1;
  visibility: visible;
}

.bm-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px 36px;
  width: 100%;
  max-width: 560px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 80px rgba(10, 20, 14, .35);
  transform: translateY(28px) scale(.97);
  transition: transform .38s cubic-bezier(.34, 1.56, .64, 1), opacity .3s ease;
  opacity: 0;
}

.bm-overlay.open .bm-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Close button */
.bm-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: #f3f4f6;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: #6b7280;
  transition: background .2s, color .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bm-close:hover {
  background: #e5e7eb;
  color: #111;
}

/* Simple header */
.bm-header-simple {
  text-align: center;
  margin-bottom: 28px;
  padding-right: 20px;
}

.bm-header-simple h2 {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.2;
}

.bm-header-simple p {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.5;
}

/* Form fields */
.bm-field {
  margin-bottom: 16px;
}

.bm-field label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 7px;
}

.bm-req {
  color: #e74c3c;
}

.bm-opt {
  color: #9ca3af;
  font-weight: 400;
}

.bm-field input,
.bm-field select,
.bm-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  font-size: .95rem;
  font-family: inherit;
  color: var(--dark);
  background: #f9fafb;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.bm-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.bm-field input:focus,
.bm-field select:focus,
.bm-field textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26, 74, 46, .1);
}

.bm-field textarea {
  resize: vertical;
  min-height: 80px;
}

/* Consent */
.bm-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: .74rem;
  color: #6b7280;
  line-height: 1.55;
}

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

.bm-consent a {
  color: var(--primary);
  text-decoration: underline;
}

/* Full-width submit */
.bm-submit-full {
  width: 100%;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .05em;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(26, 74, 46, .3);
}

.bm-submit-full:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(26, 74, 46, .4);
}

.bm-submit-full:disabled {
  background: #d1d5db;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* Success state */
.bm-success-page {
  text-align: center;
  padding: 24px 0 8px;
}

.bm-success-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  color: #fff;
  margin: 0 auto 18px;
}

.bm-success-page h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.bm-success-page p {
  color: #6b7280;
  font-size: .9rem;
  margin-bottom: 8px;
}

.bm-success-phone a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.bm-success-page .bm-submit-full {
  margin-top: 20px;
  background: var(--accent);
  color: var(--dark);
  box-shadow: none;
}

/* Mobile */
@media (max-width: 480px) {
  .bm-card {
    padding: 32px 20px 28px;
    border-radius: 16px;
  }

  .bm-header-simple h2 {
    font-size: 1.3rem;
  }
}

/* ===== LG PAGE - TRUST BAR ===== */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 32px 0;
  box-shadow: 0 2px 12px rgba(13, 27, 16, .06);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-icon {
  width: 52px;
  height: 52px;
  background: rgba(26, 74, 46, .08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

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

.trust-text h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.trust-text p {
  font-size: .82rem;
  color: var(--gray);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

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

/* ===== LG PAGE - CTA CONTACT BANNER ===== */
.lg-cta-banner {
  display: flex;
  align-items: stretch;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: var(--shadow-lg);
  min-height: 180px;
}

.lg-cta-banner-left {
  flex: 1 1 55%;
  background: var(--primary);
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.lg-cta-banner-text {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  margin: 0;
}

.lg-cta-banner-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.lg-cta-btn-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--dark);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: .97rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.lg-cta-btn-book:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 171, 135, .45);
}

.lg-cta-btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid rgba(255, 255, 255, .45);
  transition: var(--transition);
  white-space: nowrap;
}

.lg-cta-btn-call:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .75);
}

.lg-cta-banner-right {
  flex: 0 0 45%;
  overflow: hidden;
  max-height: 365px;
}

.lg-cta-banner-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*object-position: center top;*/
  display: block;
}

@media (max-width: 768px) {
  .lg-cta-banner {
    flex-direction: column;
  }

  .lg-cta-banner-left {
    padding: 28px 24px;
  }

  .lg-cta-banner-text {
    font-size: 1.35rem;
  }

  .lg-cta-banner-right {
    flex: 0 0 auto;
    height: 320px;
    max-height: none;
    order: -1;
  }

  .lg-cta-banner-right img {
    height: 320px;
    object-position: center 20%;
  }
}

@media (max-width: 480px) {
  .lg-cta-banner-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .lg-cta-btn-book,
  .lg-cta-btn-call {
    width: 100%;
    justify-content: center;
  }
}