/* =======================================================================
   GM CAR AC SERVICE — Design Enhancements v2.0
   Font: Lexend (headings) + Source Sans 3 (body)
   Goal: Readability · Lead Generation · Responsive · SEO-friendly
   ======================================================================= */

/* ─── 1. FONT SYSTEM ─────────────────────────────────────────────────── */

body {
  font-family: 'Source Sans 3', 'Inter', 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lexend', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

/* Override Syncopate (too condensed for readability) on headings */
.section-title h2,
.section-header-2026 h2,
.page-nav h2,
.cta-section h2,
.hero-2026 h1,
.hero-about h1,
.contact-card h2,
.footer-2026 h5 {
  font-family: 'Lexend', 'Inter', sans-serif;
  letter-spacing: -0.01em;
}

/* Stats numbers stay Space Mono (technical precision feel) */
.stat-number,
.big-rating {
  font-family: 'Space Mono', 'Courier New', monospace;
}

/* Body text clarity */
p, li, td, label, .form-control {
  font-family: 'Source Sans 3', 'Inter', sans-serif;
  line-height: 1.72;
}

/* Navbar brand name */
.navbar-brand, .nav-link {
  font-family: 'Lexend', sans-serif;
}

/* ─── 2. TOUCH & INTERACTION ─────────────────────────────────────────── */

a, button, [role="button"],
.nav-link, .btn, .gm-chip,
.slider-cta-btn, .slider-cta-btn-outline,
.cta-btn, .visual-service-card, .vehicle-card,
.contact-info-card, .gallery-card-new, .review-card,
.bento-card, .glass-card-2026, .trust-badge,
.quick-action-bar a, .whatsapp-float, .call-float {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* ─── 3. ANNOUNCEMENT / URGENCY BAR ─────────────────────────────────── */

.gm-announce-bar {
  background: linear-gradient(90deg, #991B1B, #DC2626, #991B1B);
  color: #fff;
  text-align: center;
  padding: 9px 48px 9px 16px;
  font-size: 0.83rem;
  font-weight: 600;
  position: relative;
  z-index: 1041;
  letter-spacing: 0.01em;
}

.gm-announce-bar a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
  margin-left: 6px;
}

.gm-announce-bar .pulse-dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: #fbbf24;
  border-radius: 50%;
  margin-right: 8px;
  animation: gm-dot-pulse 1.8s ease infinite;
  vertical-align: middle;
}

@keyframes gm-dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.75); }
}

.gm-announce-close {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  font-size: 1rem;
  padding: 4px 6px;
  line-height: 1;
  border-radius: 4px;
  transition: color 0.2s;
}
.gm-announce-close:hover { color: #fff; }

@media (max-width: 575px) {
  .gm-announce-bar { font-size: 0.76rem; padding: 8px 38px 8px 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .gm-announce-bar { animation: none; }
}

/* ─── 4. TRUST STRIP ─────────────────────────────────────────────────── */

.gm-trust-strip {
  background: rgba(6, 14, 26, 0.75);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  padding: 11px 0;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.gm-trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 0 16px;
  max-width: 1170px;
  margin: 0 auto;
}

.gm-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #93c5fd;
  white-space: nowrap;
  font-family: 'Lexend', sans-serif;
}

.gm-trust-item svg {
  width: 15px; height: 15px;
  color: #DC2626;
  flex-shrink: 0;
}

@media (max-width: 575px) {
  .gm-trust-strip-inner { gap: 14px; }
  .gm-trust-item { font-size: 0.75rem; }
}

/* ─── 5. STICKY PHONE BAR (appears after 400px scroll) ──────────────── */

.gm-sticky-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1050;
  background: rgba(6, 14, 26, 0.97);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom: 2px solid rgba(220, 38, 38, 0.4);
  padding: 9px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.gm-sticky-bar.visible {
  transform: translateY(0);
  pointer-events: auto;
}

.gm-sticky-bar-text {
  font-family: 'Lexend', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #94a3b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gm-sticky-bar-text strong { color: #e2e8f0; }

.gm-sticky-bar-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.gm-sb-call {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 16px;
  background: linear-gradient(135deg, #B91C1C, #DC2626);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 50px;
  text-decoration: none !important;
  transition: all 0.2s ease;
  box-shadow: 0 3px 12px rgba(220, 38, 38, 0.35);
  font-family: 'Lexend', sans-serif;
}

.gm-sb-call:hover {
  box-shadow: 0 5px 18px rgba(220, 38, 38, 0.5);
  transform: translateY(-1px);
}

.gm-sb-wa {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 16px;
  background: rgba(37, 211, 102, 0.13);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #4ade80 !important;
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 50px;
  text-decoration: none !important;
  transition: all 0.2s ease;
  font-family: 'Lexend', sans-serif;
}

.gm-sb-wa:hover {
  background: rgba(37, 211, 102, 0.22);
  border-color: rgba(37, 211, 102, 0.5);
  transform: translateY(-1px);
}

.gm-sticky-bar svg { width: 13px; height: 13px; }

@media (max-width: 575px) {
  .gm-sticky-bar { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .gm-sticky-bar { transition: none; }
}

/* ─── 6. HERO CTA IMPROVEMENTS ──────────────────────────────────────── */

.slider-cta-btn {
  font-family: 'Lexend', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  padding: 13px 30px !important;
  letter-spacing: 0.01em;
}

.slider-cta-btn-outline {
  font-family: 'Lexend', sans-serif !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  padding: 12px 28px !important;
}

/* CTA section urgency tag */
.gm-cta-urgency {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.3);
  color: #fbbf24;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
  font-family: 'Lexend', sans-serif;
}

.gm-cta-urgency .gm-live-dot {
  width: 6px; height: 6px;
  background: #fbbf24;
  border-radius: 50%;
  animation: gm-dot-pulse 1.8s ease infinite;
}

/* ─── 7. PHONE RING BUTTON ───────────────────────────────────────────── */

.btn-phone-ring {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #B91C1C 0%, #DC2626 100%);
  color: #fff !important;
  font-family: 'Lexend', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(220, 38, 38, 0.4);
  letter-spacing: 0.01em;
}

.btn-phone-ring:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(220, 38, 38, 0.55);
  color: #fff !important;
}

.btn-phone-ring .ring-icon {
  animation: gm-phone-ring 2.5s ease infinite;
}

@keyframes gm-phone-ring {
  0%, 60%, 100% { transform: rotate(0deg); }
  10%  { transform: rotate(15deg); }
  20%  { transform: rotate(-12deg); }
  30%  { transform: rotate(10deg); }
  40%  { transform: rotate(-8deg); }
  50%  { transform: rotate(0deg); }
}

.btn-phone-ring svg {
  width: 20px; height: 20px;
}

@media (prefers-reduced-motion: reduce) {
  .btn-phone-ring .ring-icon { animation: none; }
  .gm-cta-urgency .gm-live-dot { animation: none; }
}

/* ─── 8. RESPONSIVE FONT SIZES ───────────────────────────────────────── */

@media (max-width: 767px) {
  body { font-size: 1rem; }

  .fs-11 { font-size: 1.85rem !important; }

  .section-title h2,
  .section-header-2026 h2 {
    font-size: clamp(1.4rem, 5vw, 2rem) !important;
    letter-spacing: -0.01em;
  }

  .hero-2026 h1 { font-size: clamp(1.8rem, 6vw, 2.4rem) !important; }
  .hero-about h1 { font-size: clamp(1.6rem, 5vw, 2rem) !important; }
  .cta-section h2 { font-size: 1.5rem !important; }

  p { font-size: 0.96rem; }
}

@media (max-width: 575px) {
  .fs-11 { font-size: 1.6rem !important; }

  h5 { font-size: 1rem; }

  .contact-info-card { padding: 18px 14px; }
  .visual-service-card { padding: 22px 14px; }

  /* Grid gap on mobile */
  .row.g-4 { --bs-gutter-x: 12px; --bs-gutter-y: 12px; }
  .row.g-3 { --bs-gutter-x: 8px; --bs-gutter-y: 8px; }
}

/* ─── 9. IMPROVED IMAGE LOADING ──────────────────────────────────────── */

img[data-src], img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.4s ease;
}

img.loaded, img:not([data-src]) {
  opacity: 1;
}

/* ─── 10. BODY TEXT CONTRAST IMPROVEMENT ────────────────────────────── */

.contact-info-card p,
.visual-service-card p,
.review-card .review-text,
.footer-2026 .footer-brand p,
.bento-card p,
.section-header-2026 p,
.timeline-item .timeline-content p {
  color: #a8c0d6;
  line-height: 1.72;
  font-size: 0.93rem;
}

/* Heading hierarchy */
.contact-info-card h5,
.visual-service-card h5,
.bento-card h3 {
  font-family: 'Lexend', sans-serif;
  color: #e2e8f0;
}

/* ─── 11. NAVBAR READABILITY ─────────────────────────────────────────── */

.nav-link span {
  font-family: 'Lexend', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Active nav item accent */
.nav-link.active span {
  color: #DC2626 !important;
}

.nav-link.active i {
  color: #DC2626 !important;
}

/* ─── 12. LEAD GEN — "FREE QUOTE" CTA BAND ──────────────────────────── */

.gm-quote-band {
  background: linear-gradient(135deg, rgba(185, 28, 28, 0.08) 0%, rgba(13, 31, 60, 0.9) 100%);
  border: 1px solid rgba(220, 38, 38, 0.15);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  margin: 40px 0;
}

.gm-quote-band h3 {
  font-family: 'Lexend', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 8px;
}

.gm-quote-band p {
  color: #94a3b8;
  font-size: 0.92rem;
  margin-bottom: 20px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── 13. SOCIAL PROOF BADGES ────────────────────────────────────────── */

.gm-social-proof-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 24px 0;
}

.gm-sp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(13, 31, 60, 0.8);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #93c5fd;
  font-family: 'Lexend', sans-serif;
}

.gm-sp-badge.green  { color: #4ade80; border-color: rgba(74, 222, 128, 0.2); }
.gm-sp-badge.gold   { color: #fbbf24; border-color: rgba(251, 191, 36, 0.2); }
.gm-sp-badge.red    { color: #fca5a5; border-color: rgba(220, 38, 38, 0.25); }

.gm-sp-badge svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ─── 14. FORM CONVERSION IMPROVEMENTS ──────────────────────────────── */

/* Labels */
.form-label {
  font-family: 'Lexend', sans-serif;
  font-size: 0.87rem;
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 6px;
}

/* Submit button */
.contact-card .btn-submit {
  font-family: 'Lexend', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  letter-spacing: 0.02em;
  width: 100%;
  background: linear-gradient(135deg, #B91C1C 0%, #DC2626 100%) !important;
  box-shadow: 0 4px 18px rgba(220, 38, 38, 0.35) !important;
  transition: all 0.3s ease !important;
}

.contact-card .btn-submit:hover {
  box-shadow: 0 6px 24px rgba(220, 38, 38, 0.5) !important;
  transform: translateY(-2px);
}

.contact-card .btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

/* ─── 15. STATS COUNTER READABILITY ─────────────────────────────────── */

.stat-item .stat-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-item .stat-number {
  font-size: clamp(2rem, 5vw, 2.8rem);
}

/* ─── 16. CARD HOVER — NO LAYOUT SHIFT ──────────────────────────────── */

/* Replace scale transforms that cause layout shift with safer alternatives */
.contact-info-card:hover,
.team-card:hover {
  transform: translateY(-4px) !important;
  /* No scale() to prevent layout shift */
}

.visual-service-card:hover {
  transform: translateY(-6px) !important;
}

/* ─── 17. FOOTER ENHANCEMENTS ────────────────────────────────────────── */

.footer-2026 .footer-links li a {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
}

.footer-2026 .footer-bottom {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.83rem;
  color: #475569;
}

/* ─── 18. QUICK ACTION BAR (MOBILE) — IMPROVED ───────────────────────── */

@media (max-width: 767px) {
  .quick-action-bar a {
    font-family: 'Lexend', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    min-height: 56px;
    min-width: 44px;
  }

  .quick-action-bar a i {
    font-size: 1.25rem;
  }
}

/* ─── 19. BREADCRUMB / PAGE-NAV ──────────────────────────────────────── */

.page-nav ul li {
  font-family: 'Source Sans 3', sans-serif;
}

.page-nav ul li a {
  font-family: 'Source Sans 3', sans-serif;
}

/* ─── 20. CHATBOT — MATCH LEXEND ─────────────────────────────────────── */

#gm-chatbot-window,
.gm-chat-input {
  font-family: 'Source Sans 3', 'Inter', sans-serif !important;
}

.gm-chat-title {
  font-family: 'Lexend', 'Inter', sans-serif !important;
}

/* ─── 21. ACCESSIBILITY FOCUS RING (site-wide) ───────────────────────── */

*:focus-visible {
  outline: 3px solid rgba(220, 38, 38, 0.6);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── 22. HORIZONTAL SCROLL GUARD ───────────────────────────────────── */

body { overflow-x: hidden; }

.container-xl, .container {
  max-width: 1170px;
  padding-left: clamp(12px, 4vw, 24px);
  padding-right: clamp(12px, 4vw, 24px);
}

/* ─── 23. TABLE RESPONSIVE WRAPPER ─────────────────────────────────── */

table {
  width: 100%;
  overflow-x: auto;
  display: block;
}

/* ─── 24. CAROUSEL HERO CAPTIONS — MOBILE VISIBILITY ────────────────── */

@media (max-width: 767px) {
  .carousel-item { height: 60vh; min-height: 320px; }

  /* Show captions on mobile (Bootstrap hides d-md-block on sm) */
  .carousel-caption.d-none.d-md-block {
    display: block !important;
    bottom: 10px;
    padding: 0 16px;
  }

  .carousel-caption h1 {
    font-size: 1.35rem !important;
    margin-bottom: 8px !important;
  }

  .carousel-caption p {
    font-size: 0.82rem !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .btn-cover {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }

  .slider-cta-btn,
  .slider-cta-btn-outline {
    font-size: 0.85rem !important;
    padding: 10px 20px !important;
    flex: 1;
    min-width: 130px;
    max-width: 170px;
    text-align: center;
  }
}

/* ─── 25. SECTION PADDING RESPONSIVE ────────────────────────────────── */

@media (max-width: 767px) {
  .big-padding {
    padding: 32px 0 !important;
  }

  .stats-section { padding: 40px 0 !important; }
  .cta-section   { padding: 48px 16px !important; }
  .warm-section, .cool-section { padding: 40px 0 !important; }
}

/* ─── 26. REVIEW / TESTIMONIAL CARDS — READABILITY ──────────────────── */

.review-card .review-text {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #94a3b8;
}

.review-name, .review-name-sm {
  font-family: 'Lexend', sans-serif;
}

/* ─── 27. SERVICE PAGE IMPROVEMENTS ─────────────────────────────────── */

.bento-card h3,
.bento-card h4 {
  font-family: 'Lexend', sans-serif;
  color: #e2e8f0;
}

/* ─── 28. CONTACT INFO CARD ICON COLOR ──────────────────────────────── */

/* Alternate icon circles with red tint for urgency CTA cards */
.contact-info-card.cta-card .icon-circle {
  background: rgba(220, 38, 38, 0.12);
}

.contact-info-card.cta-card .icon-circle i {
  color: #fca5a5;
}

/* ─── 29. VEHICLE CARD — BETTER READABILITY ─────────────────────────── */

.vehicle-name {
  font-family: 'Lexend', sans-serif !important;
  font-size: 0.95rem;
  color: #e2e8f0;
}

.vehicle-tag {
  font-family: 'Source Sans 3', sans-serif !important;
  font-size: 0.78rem;
  color: #64748b;
}

/* ─── 30. OVERLINE / PILL TAG READABILITY ───────────────────────────── */

.overline, .pill-tag, .section-header-2026 .overline {
  font-family: 'Lexend', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

/* ─── 31. CTA WA BUTTON PADDING ─────────────────────────────────────── */
.cta-btn-wa {
  padding: 15px 32px !important;
}

/* ─── 32. WHATSAPP FLOAT — PULSE ANIMATION ──────────────────────────────── */
/* Uses ::after ripple with transform+opacity (compositor-only, no Paint) */

.whatsapp-float {
  position: relative; /* needed for ::after positioning */
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.45);
  animation: gm-wa-ripple 2.5s ease-out infinite;
  pointer-events: none;
  z-index: -1;
  /* Promote to own GPU layer — animation stays entirely in Composite thread */
  will-change: transform, opacity;
}

.whatsapp-float:hover::after {
  animation: none;
}

@keyframes gm-wa-ripple {
  0%   { transform: scale(1);   opacity: 0.55; }
  100% { transform: scale(1.9); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float::after { animation: none; }
}

/* ─── 33. URGENCY BANNER — AMBER / SUMMER ───────────────────────────────── */

/* Override previous red gradient with amber/orange */
.gm-announce-bar {
  background: linear-gradient(90deg, #92400E, #D97706, #B45309) !important;
}

.gm-announce-bar .pulse-dot {
  background: #fff !important;
}

/* ─── 34. HERO QUICK-CAPTURE FORM ───────────────────────────────────────── */

.gm-hero-capture {
  position: relative;
  z-index: 10;
  background: rgba(6, 14, 26, 0.88);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-top: 2px solid rgba(217, 119, 6, 0.35);
  padding: 18px 0;
}

.gm-hero-capture-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}

.gm-hcf-label {
  font-family: 'Lexend', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #e2e8f0;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gm-hcf-label span { color: #fb923c; }

.gm-hcf-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.gm-hcf-input {
  flex: 1;
  min-width: 130px;
  padding: 11px 15px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  color: #e2e8f0;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.93rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.gm-hcf-input:focus {
  border-color: rgba(217, 119, 6, 0.7);
  background: rgba(255,255,255,0.1);
}

.gm-hcf-input::placeholder { color: rgba(255,255,255,0.38); }
.gm-hcf-input.gm-field-error { border-color: #ef4444; }

.gm-hcf-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  background: linear-gradient(135deg, #B45309, #D97706);
  color: #fff;
  font-family: 'Lexend', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(217,119,6,0.4);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.gm-hcf-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(217,119,6,0.55);
}

.gm-hcf-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}

.gm-hcf-success {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: 10px;
  color: #4ade80;
  font-family: 'Lexend', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  flex: 1;
}

.gm-hcf-success.show { display: flex; }

.gm-hcf-error {
  display: none;
  color: #fca5a5;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem;
  margin-top: 2px;
  width: 100%;
  order: 10;
}

.gm-hcf-error.show { display: block; }

@media (max-width: 575px) {
  .gm-hcf-label { font-size: 0.84rem; flex-basis: 100%; }
  .gm-hcf-input { min-width: 100px; padding: 10px 12px; font-size: 0.88rem; }
  .gm-hcf-btn  { padding: 10px 18px; font-size: 0.83rem; }
}

/* ─── 35. GOOGLE REVIEWS BADGE ───────────────────────────────────────────── */

.gm-reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 10px;
  background: #fff;
  border-radius: 50px;
  text-decoration: none !important;
  box-shadow: 0 2px 14px rgba(0,0,0,0.22);
  transition: all 0.2s ease;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.gm-reviews-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0,0,0,0.28);
}

.gm-reviews-badge .g-logo {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.gm-reviews-badge-text {
  font-family: 'Lexend', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #111827;
  white-space: nowrap;
}

.gm-reviews-badge-text .stars { color: #FBBC04; }

/* Hero badges row — wraps badge + optional trust pill */
.gm-hero-badges-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

/* ─── 36. MISSED CALL CTA STRIP ─────────────────────────────────────────── */

.gm-missed-call-strip {
  background: rgba(8, 20, 40, 0.97);
  border-top: 1px solid rgba(59,130,246,0.1);
  border-bottom: 1px solid rgba(59,130,246,0.1);
  padding: 16px 0;
  text-align: center;
}

.gm-missed-call-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 20px;
  max-width: 820px;
  margin: 0 auto;
}

.gm-missed-call-text {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.97rem;
  color: #94a3b8;
  line-height: 1.5;
}

.gm-missed-call-text strong { color: #e2e8f0; }

.gm-missed-call-number {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 24px;
  background: rgba(37,99,235,0.1);
  border: 1.5px solid rgba(59,130,246,0.25);
  border-radius: 50px;
  color: #60a5fa !important;
  font-family: 'Lexend', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.2s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

.gm-missed-call-number:hover {
  background: rgba(37,99,235,0.18);
  border-color: rgba(59,130,246,0.5);
  transform: translateY(-1px);
  color: #93c5fd !important;
}

.gm-missed-call-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  color: #4ade80;
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.18);
  padding: 4px 12px;
  border-radius: 50px;
}

@media (max-width: 575px) {
  .gm-missed-call-inner { gap: 10px; }
  .gm-missed-call-text  { font-size: 0.9rem; text-align: center; }
  .gm-missed-call-number { font-size: 0.95rem; padding: 9px 20px; }
}

/* ─── 37. LOCAL AREA PAGES ───────────────────────────────────────────────── */

.gm-area-hero {
  background: linear-gradient(135deg, rgba(13,31,60,0.97) 0%, rgba(6,14,26,1) 100%);
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 1px solid rgba(220,38,38,0.15);
}

.gm-area-hero h1 {
  font-family: 'Lexend', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 14px;
  line-height: 1.2;
}

.gm-area-hero h1 span { color: #DC2626; }

.gm-area-hero p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.05rem;
  color: #94a3b8;
  max-width: 620px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.gm-area-breadcrumb {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.83rem;
  color: #64748b;
  margin-bottom: 20px;
}

.gm-area-breadcrumb a { color: #60a5fa; text-decoration: none; }
.gm-area-breadcrumb a:hover { text-decoration: underline; }
.gm-area-breadcrumb span { margin: 0 6px; }

.gm-area-services {
  padding: 60px 0;
  background: rgba(6, 14, 26, 0.9);
}

.gm-area-services h2 {
  font-family: 'Lexend', sans-serif;
  font-size: 1.6rem;
  color: #e2e8f0;
  margin-bottom: 28px;
  text-align: center;
}

.gm-area-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.gm-area-service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(13,31,60,0.7);
  border: 1px solid rgba(59,130,246,0.12);
  border-radius: 12px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.93rem;
  color: #a8c0d6;
  line-height: 1.5;
}

.gm-area-service-list li strong {
  color: #e2e8f0;
  font-family: 'Lexend', sans-serif;
  font-size: 0.92rem;
}

.gm-area-service-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #DC2626;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

/* ─── 38. DISCLAIMER BAR ─────────────────────────────────────────────────── */

.gm-disclaimer {
  background: rgba(0, 0, 0, 0.4);
  text-align: center;
  padding: 8px 16px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem;
  color: #475569;
  letter-spacing: 0.01em;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-bottom .gm-disclaimer-text {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem;
  color: #475569;
  margin-top: 6px;
  margin-bottom: 0;
}

/* ─── END ─────────────────────────────────────────────────────────────── */
