/* ==========================================================================
   Vacaville Computer Repair — Design System
   vacavillecomputerrepair.com
   Light, warm, approachable theme
   ========================================================================== */

/* --------------------------------------------------------------------------
   Custom Properties
   -------------------------------------------------------------------------- */
:root {
  --bg-base: #FAFAF8;
  --bg-white: #FFFFFF;
  --bg-warm: #F5F0EB;
  --bg-accent: #FFF8F0;
  --bg-dark: #2C2825;
  --bg-dark-raised: #3A3532;
  --primary: #B45309;
  --primary-hover: #D97706;
  --primary-light: #FEF3C7;
  --primary-subtle: rgba(180, 83, 9, 0.08);
  --secondary: #15803D;
  --secondary-hover: #16A34A;
  --secondary-light: #DCFCE7;
  --accent: #1E40AF;
  --text-primary: #1C1917;
  --text-secondary: #57534E;
  /* Adjusted from #A8A29E to #78716C for WCAG AA compliance (4.5:1 on white) */
  --text-muted: #78716C;
  --text-on-dark: #F5F5F4;
  --text-link: #1E40AF;
  --border: #E7E5E4;
  --border-strong: #D6D3D1;
  --max-width: 1140px;
  --nav-height: 72px;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(28, 25, 23, 0.06);
  --shadow: 0 4px 12px rgba(28, 25, 23, 0.08);
  --shadow-md: 0 8px 24px rgba(28, 25, 23, 0.10);
  --shadow-card: 0 2px 8px rgba(28, 25, 23, 0.06), 0 0 0 1px rgba(28, 25, 23, 0.03);
  --transition: 0.2s ease;
  --success: #15803D;
  --warning: #CA8A04;
  --error: #DC2626;
  --info: #2563EB;
  --focus-ring: 0 0 0 3px rgba(180, 83, 9, 0.3);
}

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

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

body {
  font-family: 'Source Sans 3', 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 2px;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
}

/* --------------------------------------------------------------------------
   Typography — Proper visual hierarchy
   -------------------------------------------------------------------------- */
h1, h2 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: var(--text-primary);
}

h3, h4 {
  font-family: 'Source Sans 3', 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-primary);
}

h1 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
}

h3 {
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 10px;
}

h4 {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 8px;
}

p {
  margin-bottom: 16px;
}

p:last-child {
  margin-bottom: 0;
}

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

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__title {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}

/* --------------------------------------------------------------------------
   Section Titles (used in index.html)
   -------------------------------------------------------------------------- */
.section__title {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 48px;
}

.section__cta {
  text-align: center;
  margin-top: 40px;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  padding: 80px 0;
}

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

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

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

.content-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* --------------------------------------------------------------------------
   Top Utility Bar
   -------------------------------------------------------------------------- */
.top-bar {
  background-color: var(--bg-dark);
  color: var(--text-on-dark);
  text-align: center;
  padding: 8px 20px;
  font-size: 0.875rem;
}

.top-bar a {
  color: var(--secondary-light);
  font-weight: 600;
}

.top-bar a:hover {
  color: #FFFFFF;
}

/* top-bar variants used in index.html */
.top-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.top-bar__location {
  color: var(--text-on-dark);
}

.top-bar__phone {
  color: var(--secondary-light);
  font-weight: 600;
  text-decoration: none;
}

.top-bar__phone:hover {
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   Header / Navigation
   -------------------------------------------------------------------------- */
.header {
  background-color: var(--bg-white);
  box-shadow: 0 1px 4px rgba(28, 25, 23, 0.08), 0 1px 0 rgba(28, 25, 23, 0.04);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-height);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  line-height: 1;
}

.header__logo:hover {
  text-decoration: none;
}

.header__logo-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.header__logo-icon svg {
  width: 100%;
  height: 100%;
}

.header__logo-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.header__logo-name {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-primary);
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.header__logo-tagline {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Nav used in contact.html and service pages */
.nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav__link {
  color: var(--text-secondary);
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background-color var(--transition);
  text-decoration: none;
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
}

.nav__link:hover {
  color: var(--text-primary);
  background-color: var(--primary-subtle);
}

.nav__link.active {
  color: var(--primary);
  font-weight: 600;
  background-color: var(--primary-subtle);
  border-bottom: 2px solid var(--primary);
}

.nav__phone {
  color: var(--secondary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.nav__phone:hover {
  color: var(--secondary-hover);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  background-color: var(--primary);
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  text-decoration: none;
  transition: background-color var(--transition), transform var(--transition);
  border: none;
  cursor: pointer;
}

.nav__cta:hover {
  background-color: var(--primary-hover);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(180, 83, 9, 0.3);
}

.nav__cta:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Header nav used in index.html (ul/li based) */
.header__nav {
  display: flex;
  align-items: center;
}

.header__nav-list {
  display: flex;
  gap: 4px;
  align-items: center;
  list-style: none;
}

.header__nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background-color var(--transition);
  text-decoration: none;
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
}

.header__nav-link:hover {
  color: var(--text-primary);
  background-color: var(--primary-subtle);
}

.header__nav-link.active {
  color: var(--primary);
  font-weight: 600;
  background-color: var(--primary-subtle);
  border-bottom: 2px solid var(--primary);
}

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

.header__phone {
  color: var(--secondary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  white-space: nowrap;
}

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

/* Hamburger — used in index.html */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

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

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

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

.header__hamburger:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Hamburger — used in contact/service pages */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  background: linear-gradient(175deg, var(--bg-accent) 0%, #FFF5E6 50%, var(--bg-base) 100%);
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero__inner {
  max-width: 760px;
  margin: 0 auto;
}

/* When hero image is added, switch to 2-column grid:
.hero__inner--split {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: center;
  max-width: none;
  text-align: left;
} */

.hero__subtitle {
  color: var(--text-secondary);
  font-size: 1.15rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  line-height: 1.7;
}

/* hero__actions — alternate class name */
.hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

/* hero__buttons — used in index.html */
.hero__buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__badges {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  background-color: rgba(255, 255, 255, 0.8);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  backdrop-filter: blur(4px);
}

.hero__badge svg {
  width: 16px;
  height: 16px;
  color: var(--secondary);
  flex-shrink: 0;
}

.hero__image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* --------------------------------------------------------------------------
   Buttons — consistent padding, font-size, hover, and focus states
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  min-height: 48px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  transition: background-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
  line-height: 1.2;
  text-align: center;
  justify-content: center;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.btn--primary {
  background-color: var(--primary);
  color: #FFFFFF;
}

.btn--primary:hover {
  background-color: var(--primary-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(180, 83, 9, 0.35);
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(180, 83, 9, 0.25);
}

.btn--primary:focus-visible {
  box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.4);
}

.btn--secondary {
  background-color: var(--secondary);
  color: #FFFFFF;
}

.btn--secondary:hover {
  background-color: var(--secondary-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(21, 128, 61, 0.3);
}

.btn--secondary:active {
  transform: translateY(0);
}

.btn--outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 12px 26px;
}

.btn--outline:hover {
  background-color: var(--primary);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(180, 83, 9, 0.25);
}

.btn--outline:active {
  transform: translateY(0);
}

.btn--outline-white {
  background-color: transparent;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  padding: 12px 26px;
}

.btn--outline-white:hover {
  background-color: #FFFFFF;
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn--outline-white:active {
  transform: translateY(0);
}

.btn--white {
  background-color: #FFFFFF;
  color: var(--primary);
}

.btn--white:hover {
  background-color: var(--primary-light);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn--white:active {
  transform: translateY(0);
}

.btn--phone {
  background-color: var(--secondary);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(21, 128, 61, 0.25);
}

.btn--phone:hover {
  background-color: var(--secondary-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(21, 128, 61, 0.35);
}

.btn--phone:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(21, 128, 61, 0.2);
}

.btn--lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

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

/* --------------------------------------------------------------------------
   Cards — consistent radius, shadows, padding
   -------------------------------------------------------------------------- */
.card {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  border-top: 4px solid var(--primary);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
  box-shadow: 0 12px 32px rgba(28, 25, 23, 0.12), 0 0 0 1px rgba(28, 25, 23, 0.04);
  transform: translateY(-4px);
}

.card__icon {
  width: 56px;
  height: 56px;
  background-color: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}

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

.card__title {
  margin-bottom: 8px;
}

.card__text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  margin-top: 16px;
  transition: gap var(--transition), color var(--transition);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.card__link:hover {
  color: var(--primary-hover);
  gap: 10px;
  border-bottom-color: var(--primary-hover);
}

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

.card-grid--3col {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

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

/* --------------------------------------------------------------------------
   Service Cards
   -------------------------------------------------------------------------- */
.service-card {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  border-top: 4px solid var(--primary);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 12px 32px rgba(28, 25, 23, 0.12), 0 0 0 1px rgba(28, 25, 23, 0.04);
  transform: translateY(-4px);
}

.service-card__list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.service-card__list li::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2315803D' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  flex-shrink: 0;
  margin-top: 2px;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  background-color: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.service-card__title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-card__desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-card__checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.service-card__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.service-card__checklist li::before {
  content: "\2713";
  color: var(--secondary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  margin-top: 16px;
  transition: gap var(--transition), color var(--transition);
}

.service-card__link:hover {
  color: var(--primary-hover);
  gap: 10px;
}

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

/* --------------------------------------------------------------------------
   Contact Cards
   -------------------------------------------------------------------------- */
.contact-card {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-card .btn {
  margin-top: auto;
  width: 100%;
  max-width: 220px;
}

.contact-card:hover {
  box-shadow: 0 12px 32px rgba(28, 25, 23, 0.12), 0 0 0 1px rgba(28, 25, 23, 0.04);
  transform: translateY(-4px);
}

.contact-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* --------------------------------------------------------------------------
   Steps / How It Works
   -------------------------------------------------------------------------- */
.steps {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.step__number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(180, 83, 9, 0.25);
}

.step__title {
  margin-bottom: 8px;
}

.step__text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.steps__connector {
  flex-grow: 1;
  height: 2px;
  border-top: 2px dashed var(--border);
  align-self: center;
  margin-top: -16px;
  min-width: 40px;
}

/* --------------------------------------------------------------------------
   Trust Signals Bar — both class naming conventions
   -------------------------------------------------------------------------- */
.trust-bar {
  display: flex;
  justify-content: space-around;
  padding: 48px 40px;
  background-color: var(--bg-white);
  box-shadow: 0 4px 20px rgba(28, 25, 23, 0.08), 0 0 0 1px rgba(28, 25, 23, 0.04);
  border-radius: var(--radius-lg);
  gap: 24px;
  flex-wrap: wrap;
  border-top: 3px solid var(--primary);
}

/* trust-bar__item used in index.html */
.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.trust-bar__icon {
  width: 32px;
  height: 32px;
  color: var(--primary);
  margin-bottom: 8px;
}

.trust-bar__value {
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.trust-bar__label {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.trust-bar__stars {
  color: var(--warning);
  font-size: 1rem;
  letter-spacing: 1px;
}

/* trust-item variants (alternate naming) */
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trust-item__icon {
  width: 40px;
  height: 40px;
  color: var(--primary);
  margin-bottom: 8px;
}

.trust-item__icon svg {
  width: 100%;
  height: 100%;
}

.trust-item__value {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-primary);
}

.trust-item__label {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonial {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.testimonial:hover {
  box-shadow: 0 12px 32px rgba(28, 25, 23, 0.10);
  transform: translateY(-2px);
}

.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 4rem;
  line-height: 1;
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--primary);
  opacity: 0.12;
  pointer-events: none;
}

.testimonial__stars {
  display: flex;
  gap: 2px;
  color: var(--warning);
  font-size: 1.1rem;
}

.testimonial__stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial__text {
  color: var(--text-primary);
  font-style: italic;
  margin: 16px 0;
  line-height: 1.7;
  font-size: 0.975rem;
}

.testimonial__author {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}

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

/* --------------------------------------------------------------------------
   FAQ / Accordion
   -------------------------------------------------------------------------- */
.faq {
  max-width: 760px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq__item summary {
  padding: 22px 0;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--text-primary);
  transition: color var(--transition), padding-left var(--transition);
}

.faq__item summary:hover {
  color: var(--primary);
  padding-left: 4px;
}

.faq__item[open] summary {
  color: var(--primary);
  padding-bottom: 12px;
}

.faq__item summary:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 2px;
}

.faq__item summary::marker,
.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2357534E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  flex-shrink: 0;
  transition: transform var(--transition);
  display: inline-block;
  line-height: 0;
}

.faq__item[open] summary::after {
  transform: rotate(180deg);
}

.faq__answer {
  padding: 0 0 20px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Contact Form — form__* (contact.html) and form-group/contact-form (index.html)
   -------------------------------------------------------------------------- */

/* form__* classes used in contact.html */
.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  color: var(--text-primary);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-subtle);
  outline: none;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--text-muted);
}

.form__input.error,
.form__select.error,
.form__textarea.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form__input:disabled,
.form__select:disabled,
.form__textarea:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: var(--bg-warm);
}

.form__textarea {
  min-height: 120px;
  resize: vertical;
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2357534E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form__radio-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form__radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Style radio inputs */
.form__radio-group input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-strong);
  border-radius: 50%;
  background-color: var(--bg-white);
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
  flex-shrink: 0;
  position: relative;
}

.form__radio-group input[type="radio"]:checked {
  border-color: var(--primary);
}

.form__radio-group input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary);
}

.form__radio-group input[type="radio"]:focus-visible {
  box-shadow: var(--focus-ring);
  outline: none;
}

/* Style checkboxes globally */
input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-strong);
  border-radius: 4px;
  background-color: var(--bg-white);
  cursor: pointer;
  transition: border-color var(--transition), background-color var(--transition), box-shadow var(--transition);
  flex-shrink: 0;
  position: relative;
}

input[type="checkbox"]:checked {
  border-color: var(--primary);
  background-color: var(--primary);
}

input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: solid #FFFFFF;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

input[type="checkbox"]:focus-visible {
  box-shadow: var(--focus-ring);
  outline: none;
}

.form__status {
  margin-top: 12px;
  font-size: 0.9rem;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  display: none;
}

.form__status.show {
  display: block;
}

.form__status--error {
  color: var(--error);
  background-color: #FEF2F2;
  border: 1px solid rgba(220, 38, 38, 0.2);
  display: block;
}

.form__status--success {
  color: var(--success);
  background-color: #F0FDF4;
  border: 1px solid rgba(21, 128, 61, 0.2);
  display: block;
}

.form__disclaimer {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 16px;
  line-height: 1.5;
}

/* Make full-width submit buttons in forms more prominent */
form .btn--primary.w-full,
form .btn--primary.btn--full,
.contact-form .btn--primary {
  margin-top: 8px;
  font-size: 1.05rem;
  padding: 16px 28px;
}

.form__disclaimer a {
  color: var(--text-secondary);
  text-decoration: underline;
}

.form__field-error {
  color: var(--error);
  font-size: 0.82rem;
  margin-top: 6px;
}

/* form-group / contact-form / form-status / form-disclaimer — used in index.html */
.contact-form {
  background-color: var(--bg-white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

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

.form-group label {
  display: block;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  color: var(--text-primary);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-subtle);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

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

.form-status {
  margin-top: 12px;
  font-size: 0.9rem;
}

.form-disclaimer {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 12px;
  line-height: 1.5;
}

/* Contact map used in index.html */
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.contact-map iframe {
  display: block;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.contact-map__note {
  padding: 16px 20px;
  background-color: var(--bg-white);
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #92400E 100%);
  padding: 72px 0;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top right, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section__inner {
  max-width: 640px;
  margin: 0 auto;
}

.cta-section h2 {
  color: #FFFFFF;
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
}

.cta-section__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}

.cta-section .btn--white {
  margin-top: 24px;
}

/* --------------------------------------------------------------------------
   Page Header
   -------------------------------------------------------------------------- */
.page-header {
  background-color: var(--bg-warm);
  padding: 56px 0 48px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  margin-top: 12px;
  margin-bottom: 12px;
}

.page-header p {
  margin-left: auto;
  margin-right: auto;
  max-width: 640px;
}

.page-header .breadcrumb {
  justify-content: center;
}

/* --------------------------------------------------------------------------
   Breadcrumb
   -------------------------------------------------------------------------- */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition);
}

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

.breadcrumb__sep {
  margin: 0 8px;
  user-select: none;
}

/* --------------------------------------------------------------------------
   Checklist (Service List)
   -------------------------------------------------------------------------- */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist li,
.checklist__item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}

.checklist li::before,
.checklist__item::before {
  content: "\2713";
  color: var(--secondary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* --------------------------------------------------------------------------
   Community Section (index.html)
   -------------------------------------------------------------------------- */
.community {
  max-width: 800px;
}

.community p {
  line-height: 1.75;
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Default paragraph styling in sections for readability */
.section > .container > p {
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 800px;
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   Values Grid
   -------------------------------------------------------------------------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.value {
  text-align: center;
}

.value__icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(180, 83, 9, 0.1);
}

.value__icon svg {
  width: 28px;
  height: 28px;
}

.value__title {
  margin-bottom: 8px;
}

.value__text {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   Stats Bar
   -------------------------------------------------------------------------- */
.stats-bar {
  display: flex;
  justify-content: space-around;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 4px 20px rgba(28, 25, 23, 0.06);
  border: 1px solid var(--border);
}

.stat {
  text-align: center;
}

.stat__number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.stat__label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   Area Cities
   -------------------------------------------------------------------------- */
.area-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.area-city {
  padding: 10px 20px;
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: border-color var(--transition), color var(--transition);
  text-decoration: none;
}

.area-city:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background-color: var(--bg-dark);
  padding-top: 64px;
  color: var(--text-on-dark);
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* footer__grid used in index.html and service pages */
.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* footer__top used in contact.html */
.footer__top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__heading {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  display: block;
}

/* footer__col used in index.html */
.footer__col {
  display: flex;
  flex-direction: column;
}

/* footer__list used in index.html */
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__list a:hover {
  color: #FFFFFF;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__list li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* Shared footer link styles for both footer__grid and footer__top */
.footer__grid a,
.footer__top a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__grid a:hover,
.footer__top a:hover {
  color: #FFFFFF;
}

.footer__grid li,
.footer__top li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer__brand {
  text-align: center;
  padding: 48px 0 32px;
}

.footer__brand-name {
  font-weight: 700;
  font-size: 1.15rem;
  color: #FFFFFF;
}

.footer__brand-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-top: 8px;
}

.footer__nap {
  margin-top: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.footer__nap strong {
  color: #FFFFFF;
}

.footer__nap a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__nap a:hover {
  color: #FFFFFF;
}

.footer__social {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 16px;
}

.footer__social a {
  color: rgba(255, 255, 255, 0.5);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition), background-color var(--transition);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
}

.footer__social a:hover {
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.1);
}

.footer__social a svg {
  width: 20px;
  height: 20px;
}

.footer__bottom {
  padding: 28px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 16px;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.5);
}

.footer__family {
  margin-top: 8px;
}

.footer__family span {
  color: rgba(255, 255, 255, 0.5);
}

.footer__family a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer__family a:hover {
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   Mobile Sticky Call Bar
   -------------------------------------------------------------------------- */
.mobile-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background-color: var(--secondary);
  display: none;
  z-index: 999;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
}

.mobile-call-bar__phone {
  flex: 3;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.mobile-call-bar__phone:hover {
  color: #FFFFFF;
}

.mobile-call-bar__schedule {
  flex: 2;
  background-color: var(--primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color var(--transition);
}

.mobile-call-bar__schedule:hover {
  color: #FFFFFF;
  background-color: var(--primary-hover);
}

/* --------------------------------------------------------------------------
   Map
   -------------------------------------------------------------------------- */
.map-embed {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(28, 25, 23, 0.08);
  border: 1px solid var(--border);
}

.map-embed iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.mt-sm { margin-top: 8px; }
.mt-md { margin-top: 16px; }
.mt-lg { margin-top: 24px; }
.mt-xl { margin-top: 32px; }

.mb-sm { margin-bottom: 8px; }
.mb-md { margin-bottom: 16px; }
.mb-lg { margin-bottom: 24px; }
.mb-xl { margin-bottom: 40px; }

.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-lg { max-width: 640px; }

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

.w-full { width: 100%; }
.text-accent { color: var(--primary); }
.text-secondary { color: var(--text-secondary); }
.font-bold { font-weight: 700; }
.opacity-70 { opacity: 0.7; }
.hidden { display: none; }

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

.skip-to-content {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 24px;
  background-color: var(--primary);
  color: #FFFFFF;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-to-content:focus {
  top: 8px;
}

/* --------------------------------------------------------------------------
   Scroll Reveal Animation
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* --------------------------------------------------------------------------
   Loading Screen
   -------------------------------------------------------------------------- */
.loader {
  position: fixed;
  inset: 0;
  background-color: var(--bg-white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader__logo {
  max-width: 200px;
  animation: pulse 1.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.96); }
}

/* --------------------------------------------------------------------------
   Booking Options (book.html)
   -------------------------------------------------------------------------- */
.booking-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.booking-option {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow var(--transition), transform var(--transition);
}

.booking-option:hover {
  box-shadow: 0 12px 32px rgba(28, 25, 23, 0.12);
  transform: translateY(-4px);
}

.booking-option--primary {
  border-top: 4px solid var(--primary);
  background: linear-gradient(180deg, var(--bg-accent) 0%, var(--bg-white) 40%);
}

.booking-option__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.booking-option h2 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.booking-option p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

/* --------------------------------------------------------------------------
   Booking Modal
   -------------------------------------------------------------------------- */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.booking-modal--open {
  visibility: visible;
  opacity: 1;
}

.booking-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(28, 25, 23, 0.5);
  backdrop-filter: blur(4px);
}

.booking-modal__content {
  position: relative;
  z-index: 1;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 520px;
  width: 92%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  animation: bm-slide-up 0.3s ease;
}

@keyframes bm-slide-up {
  from { transform: translateY(24px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.booking-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  background-color: transparent;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition), color var(--transition);
  line-height: 1;
}

.booking-modal__close:hover {
  background-color: var(--bg-warm);
  color: var(--text-primary);
}

.booking-modal__close:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Booking Widget — Progress Bar
   -------------------------------------------------------------------------- */
.bw-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 28px;
  padding: 0 8px;
}

.bw-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.bw-progress__dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  border: 2px solid var(--border);
  color: var(--text-muted);
  background-color: var(--bg-white);
  transition: all var(--transition);
}

.bw-progress__step--active .bw-progress__dot {
  border-color: var(--primary);
  background-color: var(--primary);
  color: #FFFFFF;
}

.bw-progress__step--done .bw-progress__dot {
  border-color: var(--secondary);
  background-color: var(--secondary);
  color: #FFFFFF;
}

.bw-progress__label {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bw-progress__step--active .bw-progress__label {
  color: var(--primary);
  font-weight: 600;
}

.bw-progress__step--done .bw-progress__label {
  color: var(--secondary);
}

.bw-progress__line {
  width: 40px;
  height: 2px;
  background-color: var(--border);
  margin: 0 4px;
  margin-bottom: 20px;
  transition: background-color var(--transition);
}

.bw-progress__line--done {
  background-color: var(--secondary);
}

/* --------------------------------------------------------------------------
   Booking Widget — Body, Titles, Loading
   -------------------------------------------------------------------------- */
.bw-body {
  min-height: 200px;
}

.bw-title {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.bw-subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.bw-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  gap: 12px;
  color: var(--text-secondary);
}

.bw-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: bw-spin 0.8s linear infinite;
}

@keyframes bw-spin {
  to { transform: rotate(360deg); }
}

.bw-empty {
  color: var(--text-secondary);
  text-align: center;
  padding: 20px 0;
  font-size: 0.95rem;
}

.bw-empty a {
  color: var(--primary);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Booking Widget — Step Header (back + title)
   -------------------------------------------------------------------------- */
.bw-step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.bw-step-header .bw-title {
  margin-bottom: 0;
}

.bw-back {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background-color var(--transition);
  flex-shrink: 0;
}

.bw-back:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: var(--primary-subtle);
}

.bw-back:focus-visible {
  box-shadow: var(--focus-ring);
  outline: none;
}

/* --------------------------------------------------------------------------
   Booking Widget — Service Cards
   -------------------------------------------------------------------------- */
.bw-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.bw-service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 12px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--bg-white);
  cursor: pointer;
  transition: border-color var(--transition), background-color var(--transition), box-shadow var(--transition);
  text-align: center;
}

.bw-service-card:hover {
  border-color: var(--primary);
  background-color: var(--bg-accent);
}

.bw-service-card--selected {
  border-color: var(--primary);
  background-color: var(--primary-light);
  box-shadow: 0 0 0 3px var(--primary-subtle);
}

.bw-service-card--full {
  grid-column: 1 / -1;
}

.bw-service-card:focus-visible {
  box-shadow: var(--focus-ring);
  outline: none;
}

.bw-service-card__icon {
  color: var(--primary);
}

.bw-service-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.bw-service-card__duration {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Booking Widget — Calendar
   -------------------------------------------------------------------------- */
.bw-calendar {
  margin-bottom: 16px;
}

.bw-calendar__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.bw-calendar__arrow {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background-color var(--transition);
}

.bw-calendar__arrow:hover:not([disabled]) {
  border-color: var(--primary);
  color: var(--primary);
  background-color: var(--primary-subtle);
}

.bw-calendar__arrow[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
}

.bw-calendar__arrow:focus-visible {
  box-shadow: var(--focus-ring);
  outline: none;
}

.bw-calendar__month {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-primary);
}

.bw-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.bw-calendar__header {
  margin-bottom: 4px;
}

.bw-calendar__day-name {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 0;
}

.bw-calendar__cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
  color: var(--text-primary);
  cursor: default;
  transition: background-color var(--transition), color var(--transition), box-shadow var(--transition);
  font-family: inherit;
  padding: 0;
}

.bw-calendar__cell--empty {
  visibility: hidden;
}

.bw-calendar__cell--disabled {
  color: var(--text-muted);
  opacity: 0.4;
}

.bw-calendar__cell--available {
  cursor: pointer;
  background-color: rgba(180, 83, 9, 0.06);
  font-weight: 500;
}

.bw-calendar__cell--available:hover {
  background-color: var(--primary-light);
  color: var(--primary);
}

.bw-calendar__cell--selected {
  background-color: var(--primary) !important;
  color: #FFFFFF !important;
  font-weight: 700;
}

.bw-calendar__cell--today {
  box-shadow: inset 0 0 0 2px var(--primary);
}

.bw-calendar__cell--available:focus-visible {
  box-shadow: var(--focus-ring);
  outline: none;
}

/* --------------------------------------------------------------------------
   Booking Widget — Time Slots
   -------------------------------------------------------------------------- */
.bw-times {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.bw-time-pill {
  padding: 10px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-full);
  background-color: var(--bg-white);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color var(--transition), background-color var(--transition), color var(--transition);
  font-family: inherit;
}

.bw-time-pill:hover {
  border-color: var(--primary);
  background-color: var(--bg-accent);
}

.bw-time-pill--selected {
  border-color: var(--primary);
  background-color: var(--primary);
  color: #FFFFFF;
}

.bw-time-pill:focus-visible {
  box-shadow: var(--focus-ring);
  outline: none;
}

/* --------------------------------------------------------------------------
   Booking Widget — Summary Bar (Step 4)
   -------------------------------------------------------------------------- */
.bw-summary {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 12px 16px;
  background-color: var(--bg-warm);
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

.bw-summary__sep {
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Booking Widget — Actions
   -------------------------------------------------------------------------- */
.bw-actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.bw-btn-next[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* --------------------------------------------------------------------------
   Booking Widget — Confirmation (Step 5)
   -------------------------------------------------------------------------- */
.bw-confirmation {
  text-align: center;
  padding: 16px 0;
}

.confirmation-icon {
  color: var(--secondary);
  margin-bottom: 16px;
}

.confirmation-icon svg {
  width: 64px;
  height: 64px;
}

.bw-confirm-msg {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.bw-confirm-details {
  background-color: var(--bg-warm);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 20px;
  text-align: left;
}

.bw-confirm-row {
  padding: 6px 0;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.bw-confirm-row + .bw-confirm-row {
  border-top: 1px solid var(--border);
}

.bw-confirm-contact {
  margin-bottom: 20px;
}

.bw-confirm-contact p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.bw-confirm-phone {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary);
  text-decoration: none;
}

.bw-confirm-phone:hover {
  color: var(--secondary-hover);
}

/* --------------------------------------------------------------------------
   Booking Widget — Form Input Error State
   -------------------------------------------------------------------------- */
.form__input--error {
  border-color: var(--error) !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
}

/* --------------------------------------------------------------------------
   Booking Widget — Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .booking-options {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 520px) {
  .booking-modal__content {
    padding: 24px 16px;
    max-height: 95vh;
    width: 96%;
    border-radius: var(--radius);
  }

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

  .bw-progress {
    margin-bottom: 20px;
  }

  .bw-progress__label {
    font-size: 0.65rem;
  }

  .bw-progress__dot {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }

  .bw-progress__line {
    width: 24px;
  }

  .bw-time-pill {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
}

/* ==========================================================================
   Responsive — Tablet (max-width: 1024px)
   ========================================================================== */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
    margin-bottom: 28px;
  }

  .hero__title {
    font-size: 2.75rem;
  }

  .section__title {
    font-size: 1.75rem;
    margin-bottom: 36px;
  }

  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .content-2col {
    gap: 32px;
  }

  .section {
    padding: 60px 0;
  }

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

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

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

/* ==========================================================================
   Responsive — Mobile (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {
  body {
    padding-bottom: 60px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }

  .hero__title {
    font-size: 2.25rem;
  }

  .section__title {
    font-size: 1.5rem;
    margin-bottom: 28px;
  }

  .section {
    padding: 48px 0;
  }

  .top-bar {
    display: none;
  }

  /* Mobile Navigation — nav-toggle variant */
  .nav-toggle {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 16px 20px 24px;
    box-shadow: var(--shadow-md);
    gap: 4px;
    border-top: 1px solid var(--border);
    z-index: 999;
  }

  .nav.open {
    display: flex;
  }

  .nav__link {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
  }

  .nav__link.active {
    border-bottom: none;
    background-color: var(--primary-subtle);
  }

  .nav__phone {
    width: 100%;
    padding: 12px 16px;
    justify-content: center;
  }

  .nav__cta {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }

  /* Mobile Navigation — hamburger variant (index.html) */
  .header__hamburger {
    display: flex;
  }

  .header__nav {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 16px 20px 24px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border);
    z-index: 999;
  }

  .header__nav.open {
    display: flex;
  }

  .header__nav-list {
    flex-direction: column;
    gap: 4px;
  }

  .header__nav-link {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    display: block;
  }

  .header__nav-link.active {
    border-bottom: none;
    background-color: var(--primary-subtle);
  }

  .header__actions {
    display: none;
  }

  /* Hero */
  .hero {
    padding: 48px 0 40px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero__image {
    order: -1;
  }

  .hero__actions,
  .hero__buttons {
    flex-direction: column;
  }

  .hero__actions .btn,
  .hero__buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* Grids to single column */
  .content-2col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .card-grid,
  .card-grid--2x2,
  .card-grid--3col {
    grid-template-columns: 1fr;
  }

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

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

  /* Steps */
  .steps {
    flex-direction: column;
    gap: 24px;
  }

  .steps__connector {
    display: none;
  }

  /* Trust Bar */
  .trust-bar {
    flex-direction: column;
    align-items: center;
    padding: 32px 24px;
    gap: 20px;
  }

  /* Stats */
  .stats-bar {
    flex-direction: column;
    align-items: center;
    padding: 32px 24px;
  }

  .stat__number {
    font-size: 2rem;
  }

  /* Mobile Call Bar */
  .mobile-call-bar {
    display: flex;
  }

  /* Map */
  .map-embed iframe {
    height: 300px;
  }

  /* Footer */
  .footer__grid,
  .footer__top {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .footer {
    padding-top: 48px;
  }

  /* CTA */
  .cta-section {
    padding: 48px 0;
  }

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

  .cta-section__buttons .btn {
    width: 100%;
    max-width: 320px;
  }

  /* Page header */
  .page-header {
    padding: 32px 0;
  }
}

/* ==========================================================================
   Responsive — Small Mobile (max-width: 480px)
   ========================================================================== */
@media (max-width: 480px) {
  .header__logo-name {
    font-size: 1.15rem;
  }

  .header__logo-icon {
    width: 26px;
    height: 26px;
  }

  .header__logo-tagline {
    font-size: 0.6rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.35rem;
    margin-bottom: 20px;
  }

  .hero__title {
    font-size: 1.85rem;
  }

  .section__title {
    font-size: 1.35rem;
    margin-bottom: 24px;
  }

  .section {
    padding: 40px 0;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .card {
    padding: 24px;
  }

  .service-card {
    padding: 28px;
  }

  .contact-card {
    padding: 24px;
  }

  .contact-form {
    padding: 24px;
  }

  .footer__grid,
  .footer__top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero__badges {
    flex-direction: column;
    gap: 8px;
  }

  .hero__actions .btn,
  .hero__buttons .btn {
    font-size: 0.95rem;
    padding: 12px 24px;
  }

  .trust-bar {
    padding: 24px 16px;
  }

  .btn--lg {
    padding: 14px 24px;
    font-size: 1rem;
  }

  .stats-bar {
    padding: 24px 16px;
  }

  .area-cities {
    gap: 8px;
  }

  .area-city {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
}

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

  body {
    font-size: 12pt;
    line-height: 1.5;
    padding-bottom: 0 !important;
  }

  a,
  a:visited {
    color: #000 !important;
    text-decoration: underline;
  }

  a[href^="tel:"]::after {
    content: " (" attr(href) ")";
    font-size: 0.9em;
  }

  /* Hide non-essential elements */
  .top-bar,
  .header,
  .nav-toggle,
  .header__hamburger,
  .mobile-call-bar,
  .booking-modal,
  .footer__social,
  .cta-section,
  .hero__buttons,
  .hero__actions,
  .btn,
  .loader,
  .map-embed,
  .contact-map iframe,
  iframe {
    display: none !important;
  }

  /* Show footer but slim */
  .footer {
    padding: 24px 0 !important;
    border-top: 1px solid #ccc;
  }

  .footer__grid,
  .footer__top {
    display: none !important;
  }

  .footer__brand,
  .footer__nap,
  .footer__bottom {
    display: block !important;
    text-align: left;
    padding: 4px 0;
  }

  /* Content layout */
  .hero {
    padding: 24px 0 !important;
  }

  .section {
    padding: 24px 0 !important;
  }

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

  .content-2col,
  .card-grid,
  .testimonials-grid,
  .steps {
    display: block !important;
  }

  .card,
  .service-card,
  .contact-card,
  .testimonial,
  .step {
    border: 1px solid #ccc;
    padding: 12px;
    margin-bottom: 12px;
    page-break-inside: avoid;
  }

  h1, h2, h3, h4 {
    page-break-after: avoid;
  }

  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }
}

/* --------------------------------------------------------------------------
   Fieldset Reset (for form radio groups)
   -------------------------------------------------------------------------- */
fieldset.form__group {
  border: none;
  margin: 0;
  padding: 0;
}

fieldset.form__group legend.form__label {
  padding: 0;
  float: none;
  width: 100%;
}

/* --------------------------------------------------------------------------
   Skip to Content Link (Accessibility)
   -------------------------------------------------------------------------- */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 6px 6px;
  font-weight: 600;
  z-index: 10000;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-to-content:focus {
  top: 0;
  outline: 3px solid var(--primary-hover);
  outline-offset: 2px;
}

/* ==========================================================================
   CRO / Conversion Optimization Additions
   ========================================================================== */

/* Hero urgency badge */
.hero__urgency {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 20px;
  background-color: var(--secondary-light);
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(21, 128, 61, 0.2);
}

/* Phone button pulse animation for high-intent CTAs */
.btn--phone.btn--lg {
  box-shadow: 0 4px 14px rgba(21, 128, 61, 0.3);
  position: relative;
}

.btn--phone.btn--lg:hover {
  box-shadow: 0 6px 20px rgba(21, 128, 61, 0.4);
}

/* Subtle pulse on phone buttons to draw attention */
@keyframes phone-pulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(21, 128, 61, 0.3); }
  50% { box-shadow: 0 4px 20px rgba(21, 128, 61, 0.5); }
}

.hero__buttons .btn--phone {
  animation: phone-pulse 3s ease-in-out infinite;
}

.hero__buttons .btn--phone:hover {
  animation: none;
  box-shadow: 0 6px 20px rgba(21, 128, 61, 0.4);
}

/* min-height is set in the main .btn rule (48px) */

/* Mobile call bar sizing and body padding are in the main 768px breakpoint */
@media (max-width: 768px) {
  .mobile-call-bar__schedule {
    font-size: 0.95rem;
    font-weight: 700;
  }

  .hero__urgency {
    font-size: 0.85rem;
    padding: 6px 16px;
  }
}

/* Ensure card links have proper touch targets on mobile */
@media (max-width: 768px) {
  .card__link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .faq__item summary {
    min-height: 48px;
    padding: 16px 0;
  }
}

/* Section CTA: visual hierarchy for mid-page phone CTAs */
.section__cta .btn--phone {
  box-shadow: 0 4px 14px rgba(21, 128, 61, 0.25);
}

.section__cta .btn--phone:hover {
  box-shadow: 0 6px 20px rgba(21, 128, 61, 0.35);
}

/* Form loading state button styling */
button[aria-busy="true"] {
  opacity: 0.8;
  cursor: wait;
  position: relative;
}

/* Reveal sections on service pages */
.section.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.reveal.visible {
  opacity: 1;
  transform: none;
}
