/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #333;
  background: #f4f7f6;
  font-size: 16px;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ─── VARIABLES ─── */
:root {
  --blue:  #1d4ed8;
  --blue2: #1e3a8a;
  --teal:  #0891b2;
  --red:   #dc2626;
  --green: #16a34a;
  --mint:  #6ee7b7;
  --gray:  #64748b;
  --border:#e2e8f0;
  --shadow:0 4px 20px rgba(0,0,0,0.08);
}

/* ─── NAVBAR ─── */
.navbar {
  background: linear-gradient(90deg, var(--blue2) 0%, var(--teal) 100%);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.navbar-logo {
  background: white;
  border-radius: 10px;
  padding: 5px 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: box-shadow 0.2s;
}
.navbar-logo:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
.navbar-logo img { height: 48px; width: auto; }
.navbar-menu { display: flex; list-style: none; gap: 0.2rem; }
.navbar-menu a {
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.navbar-menu a:hover { background: rgba(255,255,255,0.15); color: #fff; }
.navbar-menu a.active {
  background: rgba(255,255,255,0.22);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.3);
}
.navbar-menu li:nth-last-child(2) { margin-left: 1rem; align-self: center; }
.navbar-menu li:last-child { align-self: center; }

/* ─── LANGUAGE TOGGLE ─── */
.lang-toggle {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  color: white;
  border-radius: 6px;
  padding: 0.3rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  margin-left: 0.6rem;
  line-height: 1.4;
}
.lang-toggle:hover { background: rgba(255,255,255,0.24); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
}
.hamburger span { display: block; width: 26px; height: 3px; background: white; border-radius: 3px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--red); color: white;
  padding: 0.85rem 2rem; border-radius: 8px;
  font-weight: 700; font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s;
  display: inline-block; border: none; cursor: pointer;
}
.btn-primary:hover { background: #b91c1c; transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: white;
  padding: 0.85rem 2rem; border-radius: 8px;
  font-weight: 700; font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.7);
  transition: all 0.2s; display: inline-block;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-teal {
  background: var(--teal); color: white;
  padding: 0.85rem 2rem; border-radius: 8px;
  font-weight: 700; font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s;
  display: inline-block; border: none; cursor: pointer;
}
.btn-teal:hover { background: #0e7490; transform: translateY(-2px); }

/* ─── HERO (landing) ─── */
.hero {
  background: linear-gradient(90deg, var(--blue2) 0%, var(--teal) 100%);
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://lapfixbythepros.com/wp-content/uploads/2026/01/iStock-1485019967-scaled.jpg') center/cover no-repeat;
  opacity: 0.06;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 3rem 2rem;
  display: flex; align-items: center; gap: 3rem;
  width: 100%; position: relative; z-index: 1;
}
.hero-text { flex: 1; color: white; }
.hero-text .eyebrow {
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--mint); margin-bottom: 0.8rem;
}
.hero-text h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; line-height: 1.2; margin-bottom: 1rem;
}
.hero-text h1 span { color: var(--mint); }
.hero-text p {
  font-size: 1.05rem; color: rgba(255,255,255,0.85);
  margin-bottom: 1.8rem; max-width: 480px;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-disclaimer { margin-top: 0.75rem; font-size: 0.8rem; color: rgba(255,255,255,0.65); letter-spacing: 0.01em; }
.hero-image {
  flex: 1; max-width: 520px;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.hero-image img { width: 100%; height: 340px; object-fit: cover; }

/* ─── PAGE HERO BANNER (sub-pages) ─── */
.page-hero {
  background: linear-gradient(90deg, var(--blue2) 0%, var(--teal) 100%);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://lapfixbythepros.com/wp-content/uploads/2026/01/iStock-1485019967-scaled.jpg') center/cover no-repeat;
  opacity: 0.04;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.page-hero .eyebrow {
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--mint); margin-bottom: 0.7rem;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800; line-height: 1.2; margin-bottom: 0.8rem;
}
.page-hero p {
  font-size: 1rem; color: rgba(255,255,255,0.82);
  max-width: 550px; margin: 0 auto;
}

/* ─── SUPPORT BAR ─── */
.support-bar {
  background: #0f172a; color: white;
  padding: 0.8rem 2rem;
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; font-size: 0.9rem; flex-wrap: wrap;
}
.support-bar a { color: var(--mint); font-weight: 700; }
.support-bar a:hover { color: white; }
.support-item { display: flex; align-items: center; gap: 0.5rem; }

/* ─── SECTIONS ─── */
.section { padding: 5rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  background: #f0fdf4; color: var(--teal);
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.3rem 0.9rem; border-radius: 999px;
  margin-bottom: 0.8rem; border: 1px solid #a7f3d0;
}
.section-title { font-size: clamp(1.5rem,2.5vw,2rem); font-weight: 800; color: var(--blue2); margin-bottom: 0.5rem; }
.section-sub { color: var(--gray); font-size: 1rem; margin-bottom: 3rem; max-width: 600px; }

/* ─── SERVICES ─── */
.services-bg { background: white; }
.services-header { display: flex; align-items: center; gap: 2rem; margin-bottom: 3rem; }
.services-icon { font-size: 4rem; opacity: 0.15; flex-shrink: 0; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.service-card {
  background: #f8fafc; border: 1px solid var(--border);
  border-radius: 12px; padding: 2rem 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.service-card.urgent { background: #fff7ed; border-color: #fed7aa; }
.service-card-title {
  font-size: 1rem; font-weight: 800; color: var(--blue2);
  margin-bottom: 1.2rem; padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--border);
}
.service-card.urgent .service-card-title { border-color: #fb923c; color: #c2410c; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.service-list li { font-size: 0.85rem; color: var(--gray); display: flex; align-items: center; gap: 0.5rem; }
.service-list li::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--teal); flex-shrink:0; }
.service-card.urgent .service-list li::before { background: #f97316; }
.btn-service {
  display: inline-block; padding: 0.6rem 1.4rem; border-radius: 6px;
  font-size: 0.82rem; font-weight: 700;
  background: transparent; border: 2px solid var(--teal); color: var(--teal);
  transition: all 0.2s; cursor: pointer;
}
.btn-service:hover { background: var(--teal); color: white; }
.service-card.urgent .btn-service { border-color: #f97316; color: #f97316; }
.service-card.urgent .btn-service:hover { background: #f97316; color: white; }

/* ─── PRICING ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 1.8rem;
}
.price-card {
  background: linear-gradient(145deg, #f0f9ff 0%, #f8fafc 100%);
  border: 1px solid #e0f2fe;
  border-radius: 18px;
  padding: 2rem 1.2rem 1.5rem;
  text-align: center;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}
.price-card:hover {
  box-shadow: 0 12px 40px rgba(8, 145, 178, 0.15);
  transform: translateY(-5px);
  border-color: var(--teal);
}
.price-card.diag-card {
  background: linear-gradient(135deg, var(--blue2) 0%, var(--teal) 100%);
  border: none;
  grid-column: 1 / -1;
  flex-direction: row;
  text-align: left;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2.8rem;
  gap: 2rem;
}
.price-card.diag-card:hover { transform: none; box-shadow: 0 8px 32px rgba(30,58,138,0.25); border-color: transparent; }
.price-card-icon { font-size: 2.4rem; line-height: 1; }
.price-card-icon-img { width: 48px; height: 48px; object-fit: contain; }
.price-card.diag-card .price-card-icon { font-size: 3.2rem; flex-shrink: 0; }
.price-card-service { font-size: 0.88rem; font-weight: 700; color: var(--blue2); line-height: 1.3; }
.price-card.diag-card .price-card-service { color: white; font-size: 1.15rem; }
.price-card-from { font-size: 0.68rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.5rem; }
.price-card.diag-card .price-card-from { color: rgba(255,255,255,0.65); margin-top: 0; }
.price-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--blue2), var(--teal));
  color: white;
  font-size: 1.25rem;
  font-weight: 800;
  padding: 0.35rem 1.25rem;
  border-radius: 999px;
  margin: 0.2rem 0;
  letter-spacing: -0.01em;
}
.price-card.diag-card .price-badge {
  background: white;
  color: var(--blue2);
  font-size: 2rem;
  padding: 0.5rem 2rem;
}
.price-card-note { font-size: 0.75rem; color: #64748b; line-height: 1.45; }
.price-card.diag-card .price-card-note { color: rgba(255,255,255,0.78); margin-top: 0.3rem; }
.price-disclaimer {
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: 12px;
  padding: 1.1rem 1.4rem;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.price-disclaimer-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.05rem; }
.price-disclaimer p { font-size: 0.85rem; color: #78350f; margin: 0; line-height: 1.65; }

/* ─── HOW IT WORKS ─── */
.how-bg { background: linear-gradient(90deg, var(--blue2) 0%, var(--teal) 100%); }
.how-bg .section-tag { background: rgba(255,255,255,0.15); color: white; border-color: rgba(255,255,255,0.3); }
.how-bg .section-title { color: white; }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.step-card {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px; padding: 2rem 1.2rem; text-align: center; color: white;
}
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.2); color: white;
  font-size: 1.3rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.step-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.82rem; color: rgba(255,255,255,0.75); }

/* ─── GALLERY ─── */
.gallery-bg { background: white; padding: 0; overflow: hidden; }
.gallery-strip { display: grid; grid-template-columns: repeat(3,1fr); }
.gallery-strip img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.4s; }
.gallery-strip img:hover { transform: scale(1.04); }

/* ─── REVIEWS ─── */
.reviews-bg { background: white; }
.google-rating-bar {
  display: flex; align-items: center; gap: 2.5rem;
  background: #f8fafc; border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem 2.5rem;
  margin-bottom: 2.5rem; flex-wrap: wrap;
}
.google-rating-left { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; min-width: 120px; }
.google-logo { height: 24px; width: auto; }
.rating-big { font-size: 3rem; font-weight: 800; color: var(--blue2); line-height: 1; }
.stars-row { display: flex; gap: 2px; }
.star { font-size: 1.2rem; color: #d1d5db; }
.star.filled { color: #f59e0b; }
.rating-count { font-size: 0.75rem; color: var(--gray); }
.rating-bars { flex: 1; display: flex; flex-direction: column; gap: 0.4rem; min-width: 180px; }
.bar-row { display: flex; align-items: center; gap: 0.6rem; }
.bar-label { font-size: 0.75rem; color: var(--gray); width: 28px; text-align: right; flex-shrink: 0; }
.bar-track { flex: 1; height: 8px; background: #e2e8f0; border-radius: 99px; overflow: hidden; }
.bar-fill { height: 100%; background: #f59e0b; border-radius: 99px; }
.bar-num { font-size: 0.72rem; color: var(--gray); width: 20px; flex-shrink: 0; }
.btn-google-review {
  background: white; border: 2px solid #f59e0b; color: #92400e;
  padding: 0.8rem 1.5rem; border-radius: 10px;
  font-weight: 700; font-size: 0.88rem;
  transition: all 0.2s; white-space: nowrap; display: inline-block;
}
.btn-google-review:hover { background: #f59e0b; color: white; }
.review-cta-block { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; margin-left: 1.5rem; }
.leave-review-box {
  display: flex; align-items: center; gap: 3rem;
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border: 2px solid #bae6fd; border-radius: 16px;
  padding: 2.5rem 2rem; margin-top: 3rem;
}
.leave-review-text { flex: 1; }
.leave-review-text h3 { font-size: 1.4rem; color: var(--blue2); margin-bottom: 0.6rem; }
.leave-review-text p { color: var(--gray); margin-bottom: 1.2rem; }
.leave-review-qr { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.qr-img { width: 140px; height: 140px; object-fit: contain; border-radius: 8px; }
.qr-caption { font-size: 0.78rem; color: var(--gray); text-align: center; }
@media (max-width: 640px) {
  .leave-review-box { flex-direction: column; text-align: center; }
}
.map-embed-wrap { display: flex; flex-direction: column; gap: 0.75rem; }
.map-iframe { border: 0; border-radius: 12px; width: 100%; }
.map-btn-row { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.btn-find-us { background: var(--blue2); color: white; padding: 0.6rem 1.4rem; border-radius: 8px; font-weight: 700; font-size: 0.85rem; border: none; cursor: pointer; }
.btn-find-us:hover { background: var(--teal); }
.btn-map-open { display: inline-block; background: var(--teal); color: white; padding: 0.6rem 1.4rem; border-radius: 8px; font-weight: 700; font-size: 0.85rem; text-align: center; }
.btn-map-open:hover { background: var(--blue2); }
.no-reviews-yet { text-align: center; padding: 2.5rem 1rem; color: var(--gray); font-style: italic; }
.google-review-cta-section { background: #f8fafc; padding: 3rem 1rem; text-align: center; }
.google-review-cta-inner { max-width: 600px; margin: 0 auto; }
.google-review-stars { font-size: 1.5rem; margin-bottom: 0.3rem; }
.google-review-title { color: var(--blue2); font-size: 1.4rem; margin-bottom: 0.6rem; }
.google-review-sub { color: var(--gray); margin-bottom: 1.2rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.review-card {
  background: #f8fafc; border: 1px solid var(--border);
  border-radius: 14px; padding: 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.review-header { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.7rem; }
.reviewer-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  color: white; font-size: 1.1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.reviewer-info { flex: 1; }
.reviewer-name { font-size: 0.88rem; font-weight: 700; color: var(--blue2); }
.reviewer-meta { font-size: 0.72rem; color: var(--gray); }
.review-google-logo { height: 16px; width: auto; flex-shrink: 0; }
.review-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; margin-bottom: 0.6rem; }
.review-text { font-size: 0.82rem; color: #475569; line-height: 1.6; font-style: italic; margin-bottom: 0.8rem; }
.review-date { font-size: 0.72rem; color: #94a3b8; }

/* ─── ADVANTAGES ─── */
.advantages-bg { background: #f8fafc; }
.advantages-layout { display: grid; grid-template-columns: 290px 1fr; gap: 3rem; align-items: start; }
.contact-card {
  background: white; border: 1px solid var(--border);
  border-radius: 12px; padding: 2rem; box-shadow: var(--shadow);
}
.contact-card-name { font-size: 1.8rem; font-weight: 800; color: var(--blue2); margin-bottom: 0.2rem; }
.contact-card-name span { color: var(--red); }
.contact-card-sub { font-size: 0.8rem; color: var(--gray); margin-bottom: 1.2rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.85rem; color: var(--gray); margin-bottom: 0.7rem; }
.contact-detail a { color: var(--teal); font-weight: 600; }
.advantages-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.advantage-card {
  background: white; border: 1px solid var(--border);
  border-radius: 12px; padding: 1.8rem;
  display: flex; gap: 1.2rem; align-items: flex-start;
  transition: box-shadow 0.2s;
}
.advantage-card:hover { box-shadow: var(--shadow); }
.advantage-badge {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800; color: white; flex-shrink: 0;
}
.badge-a { background: linear-gradient(135deg, var(--green), #4ade80); }
.badge-b { background: linear-gradient(135deg, var(--teal), #22d3ee); }
.badge-c { background: linear-gradient(135deg, var(--blue), #60a5fa); }
.badge-d { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.advantage-body h3 { font-size: 0.95rem; font-weight: 700; color: var(--blue2); margin-bottom: 0.4rem; }
.advantage-body p { font-size: 0.82rem; color: var(--gray); line-height: 1.5; margin-bottom: 0.7rem; }
.read-more { font-size: 0.8rem; font-weight: 700; color: var(--teal); }
.read-more:hover { color: var(--blue2); }

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(90deg, var(--blue2) 0%, var(--teal) 100%);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
}
.cta-section h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; margin-bottom: 0.8rem; }
.cta-section p {
  font-size: 1rem; color: rgba(255,255,255,0.8);
  margin-bottom: 2rem; max-width: 500px;
  margin-left: auto; margin-right: auto;
}
.cta-section .btn-white {
  background: white; color: var(--blue2);
  padding: 0.9rem 2.2rem; border-radius: 8px;
  font-weight: 700; font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s;
  display: inline-block; margin: 0 0.5rem 0.5rem;
}
.cta-section .btn-white:hover { background: #f0f4ff; transform: translateY(-2px); }
.cta-section .btn-outline-white {
  background: transparent; color: white;
  padding: 0.9rem 2.2rem; border-radius: 8px;
  font-weight: 700; font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.7);
  transition: all 0.2s; display: inline-block;
  margin: 0 0.5rem 0.5rem;
}
.cta-section .btn-outline-white:hover { background: rgba(255,255,255,0.12); }

/* ─── CONTACT PAGE ─── */
.contact-page-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-info-block {
  background: white; border: 1px solid var(--border);
  border-radius: 14px; padding: 2rem;
  box-shadow: var(--shadow);
}
.contact-info-block h3 {
  font-size: 1rem; font-weight: 800; color: var(--blue2);
  margin-bottom: 1.5rem; padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--border);
}
.contact-info-row {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.2rem;
}
.contact-info-icon {
  font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem;
}
.contact-info-label {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--gray); margin-bottom: 0.2rem;
}
.contact-info-value {
  font-size: 0.9rem; color: var(--blue2); font-weight: 600;
}
.contact-info-value a { color: var(--teal); }
.contact-info-value a:hover { color: var(--blue2); }
.map-placeholder {
  background: #e2e8f0;
  border-radius: 14px;
  height: 320px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0.8rem;
  color: var(--gray); font-size: 0.9rem;
  border: 1px solid var(--border);
}
.map-placeholder span { font-size: 2.5rem; }

/* ─── FOOTER ─── */
.footer { background: #0f172a; color: rgba(255,255,255,0.7); padding: 4rem 2rem 0; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 250px 1fr auto;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 48px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.82rem; line-height: 1.6; margin-bottom: 1rem; }
.footer-contact { font-size: 0.82rem; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact a { color: var(--mint); }
.footer-links-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: white; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { font-size: 0.82rem; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 0.4rem; transition: color 0.2s; }
.footer-col ul li a::before { content:'›'; color: var(--mint); font-weight: 700; }
.footer-col ul li a:hover { color: white; }
.footer-social { display: flex; flex-direction: column; gap: 0.8rem; }
.social-btn {
  display: flex; align-items: center; gap: 0.8rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px; padding: 0.7rem 1.2rem;
  font-size: 0.82rem; font-weight: 700; color: white;
  transition: background 0.2s; white-space: nowrap;
}
.social-btn:hover { background: rgba(255,255,255,0.15); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 1.2rem 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.4);
  flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: white; }

/* ─── WHATSAPP FLOATING BUTTON ─── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  display: flex; align-items: center; gap: 0.7rem;
  background: #25D366; color: white;
  border-radius: 50px;
  padding: 0.75rem 1.2rem 0.75rem 0.9rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  font-size: 0.88rem; font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  animation: wa-pulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
  color: white; animation: none;
}
.whatsapp-float svg { width: 28px; height: 28px; flex-shrink: 0; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 0 0 12px rgba(37,211,102,0); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .advantages-layout { grid-template-columns: 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-social { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .navbar-menu {
    display: none; position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--blue2); flex-direction: column;
    padding: 1rem; gap: 0.3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }
  .navbar-menu.open { display: flex; }
  .navbar-menu a { padding: 0.8rem 1rem; font-size: 0.95rem; }
  .hero-inner { flex-direction: column; text-align: center; gap: 2rem; }
  .hero-image { max-width: 100%; }
  .hero-cta { justify-content: center; }
  .hero-text p { margin: 0 auto 1.8rem; }
  .services-grid { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; text-align: center; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .price-card.diag-card { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  .price-card.diag-card .price-card-icon { font-size: 2.4rem; }
  .advantages-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .google-rating-bar { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .gallery-strip { grid-template-columns: 1fr; }
  .gallery-strip img { height: 200px; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .section { padding: 3rem 1rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-links-grid { grid-template-columns: 1fr; }
  .support-bar { flex-direction: column; gap: 0.6rem; text-align: center; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 1.7rem; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; }
  .whatsapp-float { bottom: 18px; right: 18px; padding: 0.75rem; border-radius: 50%; }
  .whatsapp-float .wa-label { display: none; }
}
