/* =======================================================================
   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;
}

.electrical-hero-media,
.electrical-card-image {
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, 0.25);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

.electrical-hero-media {
  border-radius: 20px;
}

.electrical-hero-media img,
.electrical-card-image {
  display: block;
  width: 100%;
  object-fit: cover;
}

.electrical-hero-media img {
  aspect-ratio: 4 / 3;
}

.electrical-card-image {
  aspect-ratio: 3 / 2;
  border-radius: 14px;
  margin-bottom: 18px;
}

@media (max-width: 767px) {
  .quick-action-bar ~ #gm-mob-bar,
  #gm-mob-bar {
    display: none !important;
  }

  #gm-chatbot-toggle {
    bottom: 94px !important;
  }

  .call-float {
    bottom: 100px !important;
  }

  .whatsapp-float {
    bottom: 162px !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;
}

.review-source-note {
  max-width: 760px;
  margin: 14px auto 0;
  color: #94a3b8;
  font-size: 0.92rem;
  line-height: 1.6;
}

.review-detail-list {
  list-style: none;
  margin: 12px 0 14px;
  padding: 10px 12px;
  display: grid;
  gap: 5px;
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 10px;
  background: rgba(30, 64, 175, 0.08);
  color: #cbd5e1;
  font-size: 0.8rem;
  line-height: 1.45;
}

.review-detail-list strong {
  color: #93c5fd;
}

/* ─── 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: fixed set in style.css — ::after works on fixed elements too */
}

.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;
}

/* ─── 39. SERVICE & ALL-PAGE TEXT VISIBILITY FIX ────────────────────────── */

/* --- Bootstrap accordion dark-theme override --- */
.accordion-item {
  background: rgba(13, 31, 60, 0.6) !important;
  border: 1px solid rgba(59, 130, 246, 0.15) !important;
  border-radius: 12px !important;
  margin-bottom: 10px;
  overflow: hidden;
}
.accordion-button {
  background: rgba(13, 31, 60, 0.8) !important;
  color: #e2e8f0 !important;
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  border: none !important;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
  background: rgba(37, 99, 235, 0.15) !important;
  color: #93c5fd !important;
  border-bottom: 1px solid rgba(59, 130, 246, 0.2) !important;
}
.accordion-button::after {
  filter: invert(1) brightness(1.5);
}
.accordion-button:focus {
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.35) !important;
}
.accordion-body {
  background: rgba(10, 22, 40, 0.5) !important;
  color: #cbd5e1 !important;
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 18px 20px;
}

/* --- Bootstrap .bg-light override for dark theme --- */
.bg-light {
  background-color: rgba(30, 50, 80, 0.5) !important;
}
.bg-light p, .bg-light blockquote, .bg-light .fst-italic {
  color: #cbd5e1 !important;
}

/* --- Quick answer boxes (AEO blocks) --- */
.quick-answer {
  background: rgba(37, 99, 235, 0.08);
  border-left: 4px solid #3b82f6;
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 24px;
}
.quick-answer p, .quick-answer li {
  color: #cbd5e1 !important;
  line-height: 1.75;
  margin: 0;
}
.quick-answer strong { color: #e2e8f0; }
.quick-answer a { color: #60a5fa !important; }

/* --- Service hero & content text (individual service pages) --- */
.service-hero-desc,
.service-page-content p,
.service-intro p {
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.72;
}

/* --- FAQ answer text --- */
.faq-answer, .faq-answer p {
  color: #cbd5e1 !important;
  line-height: 1.72;
}

/* --- Story / review text (success-stories page) --- */
.story-text {
  color: #cbd5e1;
  font-size: 0.97rem;
  line-height: 1.72;
}
.review-highlight {
  background: rgba(30, 50, 80, 0.6) !important;
  border-radius: 8px;
  padding: 16px !important;
}
.review-highlight p {
  color: #e2e8f0 !important;
}
.review-highlight .bi-quote {
  opacity: 0.7;
}

/* --- Contact info cards --- */
.contact-info-card {
  background: rgba(13, 31, 60, 0.6);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 16px;
  padding: 24px;
}
.contact-info-card .fs-2 { color: #60a5fa; }
.contact-info-card .small { color: #94a3b8 !important; }

/* --- Contact / service page specific text classes --- */
.contact-card-title { color: #e2e8f0 !important; font-family: 'Lexend', sans-serif; font-weight: 700; margin: 14px 0 8px; }
.contact-card-text  { color: #94a3b8 !important; font-size: 0.95rem; line-height: 1.6; }
.contact-card-sub   { color: #64748b !important; font-size: 0.85rem; }
.contact-card-link  { color: #60a5fa !important; text-decoration: none; font-weight: 600; }
.contact-card-link:hover { color: #93c5fd !important; text-decoration: underline; }
.contact-form-label { color: #94a3b8 !important; font-size: 0.87rem; }
.contact-hero-sub   { color: #93c5fd; font-size: 1.1rem; }
.working-hours-title { color: #e2e8f0 !important; font-family: 'Lexend', sans-serif; font-weight: 700; margin-bottom: 16px; }
.working-hours-day  { color: #94a3b8; }
.working-hours-time { color: #60a5fa; font-weight: 700; }
.working-hours-closed { color: #f87171; font-weight: 700; }
.working-hours-row  { border-bottom: 1px solid rgba(59,130,246,0.08); }
.contact-card-icon  { font-size: 2.5rem; color: #3b82f6; margin-bottom: 10px; }

/* --- About page text classes --- */
.about-stat, .about-stat-number { color: #60a5fa !important; font-family: 'Space Mono', monospace; }
.about-stat-label { color: #94a3b8; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; }
.about-text { color: #cbd5e1; line-height: 1.72; }
.timeline-content h4, .timeline-title { color: #e2e8f0 !important; font-family: 'Lexend', sans-serif; }
.timeline-content p, .timeline-text { color: #94a3b8 !important; }

/* --- Review page --- */
.review-quote, .review-body { color: #cbd5e1 !important; font-size: 0.95rem; line-height: 1.7; }
.reviewer-name { color: #e2e8f0 !important; font-weight: 700; font-family: 'Lexend', sans-serif; }
.reviewer-sub  { color: #64748b !important; font-size: 0.82rem; }

/* --- Breadcrumb visibility --- */
.breadcrumb-item a { color: #60a5fa !important; }
.breadcrumb-item.active { color: #94a3b8 !important; }
.breadcrumb-item + .breadcrumb-item::before { color: #475569 !important; }

/* --- Section subtitles (all pages) --- */
.section-header-2026 p { color: #94a3b8 !important; }
.lead { color: #93c5fd; }

/* --- Badge overrides on dark bg --- */
.badge.bg-primary.bg-opacity-10 { background-color: rgba(59,130,246,0.15) !important; color: #93c5fd !important; }
.badge.bg-success.bg-opacity-10 { background-color: rgba(34,197,94,0.12) !important; color: #4ade80 !important; }
.badge.bg-warning.bg-opacity-10 { background-color: rgba(251,191,36,0.12) !important; color: #fbbf24 !important; }
.badge.bg-info.bg-opacity-10    { background-color: rgba(14,165,233,0.12) !important; color: #38bdf8 !important; }
.badge.bg-dark.bg-opacity-10    { background-color: rgba(255,255,255,0.08) !important; color: #cbd5e1 !important; }

/* --- Form inputs dark theme --- */
.form-control, .form-select {
  background-color: rgba(13, 31, 60, 0.6) !important;
  border-color: rgba(59, 130, 246, 0.2) !important;
  color: #e2e8f0 !important;
}
.form-control::placeholder { color: #475569 !important; }
.form-control:focus, .form-select:focus {
  background-color: rgba(13, 31, 60, 0.8) !important;
  border-color: rgba(59, 130, 246, 0.5) !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12) !important;
  color: #e2e8f0 !important;
}
.form-select option { background: #0d1f3c; color: #e2e8f0; }

/* --- Glass cards (services form, contact form) --- */
.glass-card-2026 h3 { color: #ffffff; }
.glass-card-2026 p  { color: #94a3b8; }

/* --- CTA section text --- */
.cta-section h2, .cta-section p { color: #ffffff !important; }

/* --- h4/h5 in service cards, generic sections --- */
h4, h5 { color: #e2e8f0; }
h3 { color: #f1f5f9; }
p  { color: #94a3b8; }

/* Specific override so .bento-card text (already set) wins */
.bento-card p { color: #a8c0d6 !important; }
.bento-card h3, .bento-card h4 { color: #e2e8f0 !important; }

/* --- Services "why" section cards --- */
.why-emoji { font-size: 2.8rem; margin-bottom: 10px; display: block; }
.why-title  { font-size: 1.1rem; font-weight: 700; color: #ffffff !important; margin-bottom: 8px; }
.why-text   { color: #cbd5e1 !important; font-size: 0.9rem; line-height: 1.55; margin: 0; }

/* --- Services form text --- */
.services-form-heading { color: #ffffff !important; }
.services-form-sub     { color: #94a3b8 !important; }
.services-hero-sub     { color: #93c5fd !important; }
.services-section-sub  { color: #94a3b8 !important; }

/* ─── ALIGNMENT FIXES ───────────────────────────────────────────────────── */

/* Pin learn-more / CTA links to bottom of bento cards */
.card-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
  color: #93c5fd;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}
.card-learn-more:hover { color: #60a5fa; transform: translateX(3px); }
.card-learn-more i { font-size: 1rem; }

/* Equal-height Bootstrap card rows */
.row.g-4.align-items-stretch > [class*="col"],
.row.g-3.align-items-stretch > [class*="col"] {
  display: flex;
}
.row.g-4.align-items-stretch > [class*="col"] > *,
.row.g-3.align-items-stretch > [class*="col"] > * {
  flex: 1;
}

/* contact-info-card equal height + flex column */
.contact-info-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* glass-card-2026 in form sections — full height flex */
.glass-card-2026 {
  display: flex;
  flex-direction: column;
}

/* Ensure visual-service-card p gets flex-grow so action-chip sinks */
.visual-service-card p {
  flex: 1;
}

/* Navbar: centre-align toggle button on mobile */
@media (max-width: 991px) {
  .navbar-toggler { margin-left: auto; }
  .navbar-brand { flex: 1; }
}

/* Service-list ul inside bento cards — consistent spacing */
.bento-card ul.service-text-sm {
  flex: 1;
}
/* ─────────────────────────────────────────────────────────────────────────── */

/* --- Service-specific page card/table elements --- */
.service-specs-table td, .service-specs-table th { color: #cbd5e1 !important; border-color: rgba(59,130,246,0.1) !important; }
.service-specs-table th { color: #e2e8f0 !important; background: rgba(37,99,235,0.1) !important; }

/* ─── 40. UI/UX ENHANCEMENT v3.0 ───────────────────────────────────────── */

/* Content text links — consistent blue with underline hint */
.accordion-body a,
.faq-answer a,
.bento-card a,
.service-page-content a,
.about-text a,
.story-text a,
.quick-answer a {
  color: #60a5fa !important;
  text-decoration: none;
  border-bottom: 1px solid rgba(96,165,250,0.3);
  transition: color 0.18s, border-color 0.18s;
}
.accordion-body a:hover,
.faq-answer a:hover,
.bento-card a:hover,
.service-page-content a:hover,
.about-text a:hover,
.story-text a:hover,
.quick-answer a:hover {
  color: #93c5fd !important;
  border-bottom-color: rgba(147,197,253,0.6);
}

/* Footer links — animated underline on hover */
.footer-links li a {
  position: relative;
  padding-bottom: 2px;
  text-decoration: none !important;
  transition: color 0.2s;
}
.footer-links li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: #DC2626;
  transition: width 0.25s ease;
}
.footer-links li a:hover::after { width: 100%; }
.footer-links li a:hover { color: #e2e8f0 !important; }

/* Service cards — red glow border on hover */
.visual-service-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
  border: 1px solid rgba(59,130,246,0.08);
}
.visual-service-card:hover {
  box-shadow: 0 14px 36px rgba(220,38,38,0.18), 0 0 0 1px rgba(220,38,38,0.28) !important;
  border-color: rgba(220,38,38,0.28) !important;
}

/* Contact info cards — blue glow on hover */
.contact-info-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.contact-info-card:hover {
  box-shadow: 0 10px 30px rgba(59,130,246,0.14) !important;
  border-color: rgba(59,130,246,0.32) !important;
}

/* Review cards — lift on hover */
.review-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.32);
}

/* Chatbot chips — colour-coded by category (diagnose/brand/slot) */
.gm-chip:nth-child(1) { border-color: rgba(251,191,36,0.3); color: #fbbf24; }
.gm-chip:nth-child(1):hover { background: rgba(251,191,36,0.12) !important; border-color: rgba(251,191,36,0.55) !important; color: #fde68a !important; transform: translateY(-2px); }
.gm-chip:nth-child(2) { border-color: rgba(96,165,250,0.3); color: #60a5fa; }
.gm-chip:nth-child(2):hover { background: rgba(96,165,250,0.12) !important; border-color: rgba(96,165,250,0.55) !important; color: #93c5fd !important; transform: translateY(-2px); }
.gm-chip:nth-child(3) { border-color: rgba(74,222,128,0.3); color: #4ade80; }
.gm-chip:nth-child(3):hover { background: rgba(74,222,128,0.12) !important; border-color: rgba(74,222,128,0.55) !important; color: #86efac !important; transform: translateY(-2px); }
/* Flow option chips (4+) keep default red */

/* CTA section button pairs — flex aligned, icon+text vertically centred */
.cta-section .cta-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}
.cta-section .cta-btn i { margin-right: 0; }

/* Chatbot link buttons — bigger tap target, bolder */
.gm-link-btn {
  display: inline-flex !important;
  align-items: center;
  margin: 5px 0 !important;
  padding: 8px 18px !important;
  border-radius: 22px !important;
  font-size: 0.83rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em;
  transition: all 0.2s ease !important;
}

/* Chatbot placeholder — more visible */
.gm-chat-input::placeholder { color: #64748b !important; }

/* Chatbot window — taller on desktop */
@media (min-width: 481px) {
  #gm-chatbot-window { height: 610px !important; max-height: calc(100vh - 180px) !important; }
}

/* Chatbot chips — horizontal scroll on mobile (no wrap) */
@media (max-width: 480px) {
  .gm-chips-area {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 14px 10px !important;
  }
  .gm-chips-area::-webkit-scrollbar { display: none; }
  .gm-chip { flex-shrink: 0 !important; }
}

/* Nav active indicator — red underline bar */
.nav-link { position: relative; padding-bottom: 4px !important; }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 20px; height: 2px;
  background: #DC2626;
  border-radius: 2px;
}

/* CTA buttons — physical press state */
.btn-phone-ring:active,
.slider-cta-btn:active,
.gm-sb-call:active,
.gm-hcf-btn:active {
  transform: translateY(1px) scale(0.98) !important;
  box-shadow: 0 2px 8px rgba(220,38,38,0.25) !important;
}

/* ─── AOS FALLBACK: show content if AOS library hasn't initialised yet ─ */
/* AOS adds .aos-initialized to <body> on init. Without it, elements stay opacity:0 */
body:not(.aos-initialized) [data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ─── MOBILE RESPONSIVENESS & RENDER FIXES ──────────────────────────── */

/* Prevent horizontal scroll on all devices */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* All images contained */
img {
  max-width: 100%;
  height: auto;
}

/* Hero text wrapping on small screens */
@media (max-width: 575px) {
  .hero-title, h1, .slider-heading {
    font-size: clamp(1.4rem, 6vw, 2rem) !important;
    word-break: break-word;
  }
  .hero-description, .slider-sub {
    font-size: clamp(0.85rem, 3.5vw, 1rem) !important;
  }
  /* Stack grid columns properly */
  .gm-hcf-form {
    flex-direction: column;
  }
  .gm-hcf-input, .gm-hcf-btn {
    width: 100% !important;
  }
  /* CTA section buttons stack on mobile — flex handles it */
  .cta-section .d-flex { flex-direction: column; align-items: center; }
  .cta-section .cta-btn { width: 90%; max-width: 320px; text-align: center; justify-content: center; }
  /* Bento cards full width */
  .bento-card.span-2 {
    grid-column: span 1 !important;
  }
  /* Stat section 2-col on tiny screens */
  .stat-item {
    padding: 12px 8px;
  }
}

@media (max-width: 767px) {
  /* Section padding reduction */
  .big-padding { padding-top: 40px !important; padding-bottom: 40px !important; }
  .aurora-bg, .about-section { padding: 40px 0 !important; }
  /* Ticker strip text size */
  .ticker-text { font-size: .82rem; }
  /* Form fields full width on mobile */
  .form-control, .form-select {
    font-size: 16px !important; /* prevents iOS zoom on focus */
  }
}

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

/* ─── iOS SAFE-AREA (notch / home bar) — mobile only ───────────────────── */
#gm-mob-bar {
  padding-bottom: max(10px, env(safe-area-inset-bottom));
}
@media (max-width: 767px) {
  /* Push floats above mobile sticky bar + iOS home bar */
  .call-float      { bottom: max(95px,  calc(env(safe-area-inset-bottom) + 70px)) !important; }
  .whatsapp-float  { bottom: max(160px, calc(env(safe-area-inset-bottom) + 135px)) !important; }
}
/* Desktop floats untouched — no bottom override outside media query */

/* ─── NAVBAR TOGGLER — white icon on dark navbar ────────────────────────── */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2c255%2c255%2c0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ─── 41. MODERN FORM SYSTEM 2026 ─────────────────────────────────────────── */
/* Floating-label inputs, icon prefix, live validation, toggle group           */

/* Field wrapper */
.gm-fld {
  position: relative;
  margin-bottom: 22px;
}

/* Floating label */
.gm-fld-lbl {
  position: absolute;
  left: 44px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Lexend', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #64748b;
  pointer-events: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  background: transparent;
  padding: 0 4px;
  white-space: nowrap;
}

.gm-fld:not(.has-icon) .gm-fld-lbl { left: 16px; }

.gm-fld.is-textarea .gm-fld-lbl {
  top: 16px;
  transform: none;
}

/* Floated state — triggered by JS classes */
.gm-fld.is-focused .gm-fld-lbl,
.gm-fld.is-filled  .gm-fld-lbl {
  top: -9px;
  transform: none;
  font-size: 0.71rem;
  font-weight: 700;
  color: #60a5fa;
  background: #060e1a;
  padding: 0 6px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.gm-fld.is-textarea.is-focused .gm-fld-lbl,
.gm-fld.is-textarea.is-filled  .gm-fld-lbl { top: -9px; }

.gm-fld.is-error .gm-fld-lbl { color: #f87171 !important; }
.gm-fld.is-valid .gm-fld-lbl { color: #4ade80 !important; }

/* Base input / select / textarea */
.gm-fld-input {
  width: 100%;
  padding: 15px 42px 15px 44px;
  background: rgba(13, 31, 60, 0.5);
  border: 1.5px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  color: #e2e8f0;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  line-height: 1.4;
  outline: none;
  transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
  -webkit-appearance: none;
  appearance: none;
  display: block;
}

.gm-fld:not(.has-icon) .gm-fld-input { padding-left: 16px; }

/* Hide native placeholder — label acts as placeholder */
.gm-fld-input::placeholder { color: transparent !important; }

.gm-fld-input:focus {
  border-color: rgba(96, 165, 250, 0.55);
  background: rgba(13, 31, 60, 0.75);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1), 0 4px 18px rgba(0,0,0,0.18);
}

.gm-fld.is-valid .gm-fld-input {
  border-color: rgba(74, 222, 128, 0.45);
  background: rgba(13, 31, 60, 0.55);
}

.gm-fld.is-error .gm-fld-input {
  border-color: rgba(239, 68, 68, 0.55);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.07);
}

/* Textarea */
.gm-fld-input.is-textarea {
  resize: vertical;
  min-height: 108px;
  padding-top: 22px;
  padding-bottom: 14px;
}

/* Select */
.gm-fld-input.is-select {
  cursor: pointer;
  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='%2364748b' stroke-width='2' stroke-linecap='round'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 15px;
  padding-right: 40px;
  color: #64748b; /* dim until real value selected */
}

/* When a real value is selected, text turns full white */
.gm-fld.is-filled .gm-fld-input.is-select {
  color: #e2e8f0;
}

.gm-fld-input.is-select option {
  background: #0d1f3c;
  color: #e2e8f0;
}

/* Selects always show text — label must always float above the field */
.gm-fld.is-select-type .gm-fld-lbl {
  top: -9px !important;
  transform: none !important;
  font-size: 0.71rem !important;
  font-weight: 700 !important;
  color: #60a5fa !important;
  background: #060e1a !important;
  padding: 0 6px !important;
  border-radius: 4px !important;
  letter-spacing: 0.04em !important;
}

.gm-fld.is-select-type.is-filled .gm-fld-lbl { color: #4ade80 !important; }
.gm-fld.is-select-type.is-error  .gm-fld-lbl { color: #f87171 !important; }

/* iOS font-size fix — prevents zoom on select focus */
@media (max-width: 767px) {
  .gm-fld-input { font-size: 16px !important; }
}

/* Prefix icon */
.gm-fld-ico {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #475569;
  font-size: 0.95rem;
  pointer-events: none;
  transition: color 0.2s ease;
  z-index: 3;
  line-height: 1;
}

.gm-fld.is-textarea .gm-fld-ico  { top: 18px; transform: none; }
.gm-fld.is-focused  .gm-fld-ico  { color: #60a5fa; }
.gm-fld.is-error    .gm-fld-ico  { color: #f87171; }
.gm-fld.is-valid    .gm-fld-ico  { color: #4ade80; }

/* Status icon — right side */
.gm-fld-status {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.82rem;
  opacity: 0;
  transition: opacity 0.18s ease;
  z-index: 3;
  pointer-events: none;
}

.gm-fld.is-textarea .gm-fld-status { top: 18px; transform: none; }

.gm-status-err { display: none; }

.gm-fld.is-valid .gm-status-ok  { opacity: 1; color: #4ade80; }
.gm-fld.is-valid .gm-status-err { display: none; }

.gm-fld.is-error .gm-status-ok  { opacity: 0; display: none; }
.gm-fld.is-error .gm-status-err { display: flex; opacity: 1; color: #f87171; }

/* Error message */
.gm-fld-err {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.74rem;
  color: #f87171;
  margin-top: 5px;
  padding-left: 4px;
  display: none;
  animation: gm-fld-err-in 0.16s ease;
}

.gm-fld.is-error .gm-fld-err { display: block; }

@keyframes gm-fld-err-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Required asterisk */
.gm-fld-req { color: #f87171; font-size: 0.72rem; }

/* ── Toggle group (Yes / No binary) ─────────────────── */
.gm-toggle-grp {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid rgba(59, 130, 246, 0.15);
  background: rgba(13, 31, 60, 0.5);
}

.gm-toggle-grp input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.gm-toggle-lbl {
  flex: 1;
  text-align: center;
  padding: 13px 10px;
  font-family: 'Lexend', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.gm-toggle-lbl:not(:last-child) {
  border-right: 1px solid rgba(59,130,246,0.12);
}

.gm-toggle-grp input[type="radio"]:checked + .gm-toggle-lbl {
  background: rgba(59, 130, 246, 0.15);
  color: #93c5fd;
}

.gm-toggle-grp input[type="radio"]:checked + .gm-toggle-lbl.lbl-yes {
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
}

.gm-toggle-lbl-wrap {
  margin-bottom: 0;
}

.gm-toggle-label-text {
  font-family: 'Lexend', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 7px;
  display: block;
}

/* ── Form progress bar ───────────────────────────────── */
.gm-form-progress {
  height: 3px;
  background: rgba(59,130,246,0.08);
  border-radius: 2px;
  margin-bottom: 22px;
  overflow: hidden;
}

.gm-form-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #3b82f6, #DC2626);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── 2-col row for paired fields ─────────────────────── */
.gm-fld-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 480px) {
  .gm-fld-row { grid-template-columns: 1fr; gap: 0; }
  .gm-toggle-lbl { padding: 11px 8px; font-size: 0.8rem; }
}

/* ── Submit button ───────────────────────────────────── */
.gm-submit-btn {
  width: 100%;
  padding: 15px 24px;
  background: linear-gradient(135deg, #B91C1C 0%, #DC2626 100%);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-family: 'Lexend', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 6px 24px rgba(220, 38, 38, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  margin-top: 6px;
}

.gm-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(220, 38, 38, 0.48);
}

.gm-submit-btn:active:not(:disabled) {
  transform: translateY(1px) scale(0.99);
  box-shadow: 0 3px 12px rgba(220, 38, 38, 0.28);
}

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

/* ── Trust note below submit ─────────────────────────── */
.gm-form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.74rem;
  color: #475569;
  text-align: center;
}

.gm-form-trust i { color: #4ade80; }

/* ── Dark card padding for form wrapper ──────────────── */
.gm-form-card {
  background: rgba(10, 22, 40, 0.7);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 18px;
  padding: 28px 24px;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

@media (max-width: 575px) {
  .gm-form-card { padding: 20px 16px; border-radius: 14px; }
}
/* ─────────────────────────────────────────────────────────────────────────── */

/* ==========================================================================
   ALIGNMENT & DESIGN POLISH — v2026
   Fixes: floating-label position, input icon vertical centering,
          CTA section layout, placeholder colors, select arrow,
          button gap/padding parity, mobile stacking, autofill state.
   ========================================================================== */

/* ── 1. FLOATING LABEL — precise vertical centering on regular inputs ─── */
.gm-fld:not(.is-textarea) .gm-fld-lbl {
  top: 27px;
  transform: translateY(-50%);
  line-height: 1;
}

/* Floated / filled state */
.gm-fld.is-focused .gm-fld-lbl,
.gm-fld.is-filled  .gm-fld-lbl {
  top: -10px;
  transform: none;
}

/* Textarea label */
.gm-fld.is-textarea .gm-fld-lbl {
  top: 16px;
  transform: none;
}
.gm-fld.is-textarea.is-focused .gm-fld-lbl,
.gm-fld.is-textarea.is-filled  .gm-fld-lbl {
  top: -10px;
}

.gm-fld.is-error:not(.is-textarea):not(.is-filled) .gm-fld-lbl {
  top: 27px;
  transform: translateY(-50%);
}

/* ── 2. PREFIX ICON — always vertically centred ─────────────────────── */
.gm-fld-ico {
  top: 27px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}
.gm-fld.is-textarea .gm-fld-ico {
  top: 20px;
  transform: none;
}

/* ── 3. STATUS ICON — aligned with prefix icon ───────────────────────── */
.gm-fld-status {
  top: 27px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}
.gm-fld.is-textarea .gm-fld-status {
  top: 20px;
  transform: none;
}

/* ── 4. INPUT — fixed height keeps icon centred ──────────────────────── */
.gm-fld-input:not(.is-textarea):not(.is-select) {
  height: 54px;
  padding-top: 0;
  padding-bottom: 0;
}
.gm-fld-input.is-select {
  height: 54px;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 54px;
}
.gm-fld-input.is-textarea {
  height: auto;
  padding-top: 22px;
  padding-bottom: 14px;
}

/* ── 5. AUTOFILL — keep label floated when browser pre-fills ─────────── */
.gm-fld-input:-webkit-autofill ~ .gm-fld-lbl,
.gm-fld-input:not(:placeholder-shown) ~ .gm-fld-lbl {
  top: -10px !important;
  transform: none !important;
  font-size: 0.71rem !important;
  font-weight: 700 !important;
  color: #60a5fa !important;
  background: #060e1a !important;
  padding: 0 6px !important;
  border-radius: 4px !important;
  letter-spacing: 0.04em !important;
}

/* ── 6. FORM CARD — consistent padding across breakpoints ────────────── */
.gm-form-card {
  padding: 32px 28px;
}
@media (max-width: 575px) {
  .gm-form-card { padding: 22px 16px; border-radius: 14px; }
}
@media (min-width: 992px) {
  .gm-form-card { padding: 36px 32px; }
}

/* ── 7. FORM PROGRESS BAR — more breathing room ──────────────────────── */
.gm-form-progress {
  margin-bottom: 28px;
}

/* ── 8. TOGGLE GROUP — label and toggle vertically aligned ───────────── */
.gm-toggle-label-text {
  display: block;
  margin-bottom: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.01em;
}
.gm-toggle-grp {
  width: 100%;
}

/* ── 9. CTA SECTION — centred column layout ──────────────────────────── */
.cta-section {
  text-align: center;
  padding: 72px 24px;
}
.cta-section .container-xl,
.cta-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cta-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem) !important;
  line-height: 1.25 !important;
  margin-bottom: 8px !important;
  max-width: 720px;
}
.cta-section p {
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
  color: rgba(255,255,255,0.82) !important;
}
.cta-section .d-flex {
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px !important;
  margin-top: 8px;
}

/* ── 10. CTA BUTTONS — size & icon parity ────────────────────────────── */
.cta-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 13px 28px !important;
  font-family: 'Lexend', sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
  letter-spacing: 0.01em;
  white-space: nowrap;
  min-width: 180px;
  transition: transform 0.22s ease, box-shadow 0.22s ease !important;
  text-decoration: none !important;
}
.cta-btn:hover { transform: translateY(-3px) !important; }
.cta-btn i { font-size: 1.05rem; flex-shrink: 0; }

@media (max-width: 575px) {
  .cta-section .d-flex { flex-direction: column; align-items: stretch !important; }
  .cta-btn {
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    min-width: unset !important;
  }
}

/* ── 11. BTN-GLOW — hero & contact page hero buttons ────────────────── */
.btn-glow {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 13px 28px !important;
  font-family: 'Lexend', sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-decoration: none !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease !important;
}
.btn-glow.contact-card-cta {
  padding: 10px 20px !important;
  font-size: 0.88rem !important;
}

/* ── 12. CONTACT CARD ICON — consistent size & alignment ────────────── */
.contact-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.2);
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: #60a5fa;
  flex-shrink: 0;
}
.contact-card-title {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: #e2e8f0 !important;
  margin-bottom: 10px !important;
}
.contact-card-text {
  color: #94a3b8 !important;
  font-size: 0.92rem !important;
  line-height: 1.6;
  margin-bottom: 6px !important;
}
.contact-card-sub {
  font-size: 0.8rem !important;
  color: #64748b !important;
  margin-bottom: 12px !important;
}
.contact-card-link {
  color: #60a5fa !important;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.18s;
  border-bottom: 1px solid rgba(96,165,250,0.3);
}
.contact-card-link:hover { color: #93c5fd !important; }

/* ── 13. BENTO CARD — contact page flex column centre ───────────────── */
.contact-section-padded .bento-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── 14. LEGACY FORM-CONTROL — placeholder styling ───────────────────── */
.form-control::placeholder,
.form-select::placeholder {
  color: #475569 !important;
  opacity: 1 !important;
  font-style: italic;
  font-size: 0.88rem;
}

/* ── 15. SELECT ARROW — always right-aligned ─────────────────────────── */
.form-select,
.gm-fld-input.is-select {
  background-position: right 14px center !important;
  padding-right: 42px !important;
}

/* ── 16. WORKING HOURS — divider rows ────────────────────────────────── */
.working-hours-row {
  border-bottom: 1px solid rgba(59,130,246,0.08);
}
.working-hours-row:last-of-type { border-bottom: none; }
.working-hours-day {
  font-family: 'Lexend', sans-serif;
  font-weight: 500;
  color: #cbd5e1;
  font-size: 0.92rem;
}
.working-hours-time {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  color: #60a5fa;
  font-weight: 700;
}
.working-hours-closed {
  font-family: 'Lexend', sans-serif;
  font-size: 0.88rem;
  color: #f87171;
  font-weight: 600;
}

/* ── 17. SUBMIT BUTTON — icon vertical align ─────────────────────────── */
.gm-submit-btn {
  gap: 10px;
  padding: 16px 28px;
  font-size: 1rem;
}
.gm-submit-btn i {
  font-size: 1rem;
  flex-shrink: 0;
  top: 0;
  position: relative;
}

/* ── 18. FORM TRUST NOTE ─────────────────────────────────────────────── */
.gm-form-trust {
  gap: 7px;
  margin-top: 12px;
  font-size: 0.76rem;
  line-height: 1.5;
}
.gm-form-trust i { font-size: 0.9rem; flex-shrink: 0; position: relative; top: 1px; }

/* ── 19. MOBILE — map + form split section ───────────────────────────── */
@media (max-width: 991px) {
  .contact-map-section .col-lg-7,
  .contact-map-section .col-lg-5 {
    padding-bottom: 24px;
  }
}

/* ── 20. QUICK ANSWER BOX ────────────────────────────────────────────── */
.quick-answer {
  border-left-width: 4px !important;
  border-left-style: solid !important;
  padding: 18px 20px !important;
  margin-bottom: 28px !important;
}
/* ─────────────────────────────────────────────────────────────────────────── */

/* ==========================================================================
   HERO & NAVBAR ALIGNMENT FIX — v2026
   Root causes:
   1. Contact/service page hero uses .d-flex wrapper (not .hero-btn-group)
      → btn-glow doesn't get padding/display from hero-btn-group rules
   2. Nav links in .nav-2026 use .nav-link.nav-icon but have no
      flex-column alignment rule in nav-2026 context
   3. Icon inside btn-glow has no explicit vertical-align
   ========================================================================== */

/* ── A. BTN-GLOW — universal base (applies everywhere) ──────────────────── */
/* The hero-btn-group scoped rule only fires on index hero.
   These rules make ALL .btn-glow buttons consistent site-wide. */

.btn-glow.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
  color: #fff !important;
  font-family: 'Lexend', sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  border-radius: 100px;
  border: none;
  text-decoration: none !important;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn-glow.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.6);
  color: #fff !important;
}

.btn-glow.outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: #fff !important;
  font-family: 'Lexend', sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  border-radius: 100px;
  border: 2px solid rgba(219, 234, 254, 0.45);
  text-decoration: none !important;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn-glow.outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #60a5fa;
  transform: translateY(-3px);
  color: #fff !important;
}

.btn-glow i {
  font-size: 1rem;
  flex-shrink: 0;
  /* Prevent icon from adding unexpected baseline shift */
  position: relative;
  top: 0;
  line-height: 1;
}

/* Smaller variant for contact cards */
.btn-glow.contact-card-cta {
  padding: 10px 22px !important;
  font-size: 0.88rem !important;
  gap: 6px !important;
}

/* ── B. HERO SECTION — contact/service pages (no .hero-btn-group wrapper) */
/* The hero on contact.html/services.html/etc wraps CTAs in a plain d-flex */
.hero-2026 > .container-xl > div.d-flex,
.hero-2026 .d-flex.justify-content-center {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

/* Contact hero sub-paragraph — needs same styling as .hero-sub */
.hero-2026 .contact-hero-sub,
.hero-2026 p.lead {
  font-size: 1.1rem;
  color: #93c5fd;
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.68;
  position: relative;
}

/* ── C. NAVBAR — nav-link icon+text vertical alignment ───────────────────  */
/* .nav-2026 uses .nav-link.nav-icon with an <i> + <span> structure         */
.nav-2026 .nav-link.nav-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 10px;
  line-height: 1;
}

.nav-2026 .nav-link.nav-icon i {
  font-size: 1.05rem;
  display: block;
  line-height: 1;
}

.nav-2026 .nav-link.nav-icon span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  display: block;
}

/* Active state indicator */
.nav-2026 .nav-link.nav-icon.active {
  color: #60a5fa !important;
  position: relative;
}
.nav-2026 .nav-link.nav-icon.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: #60a5fa;
  border-radius: 1px;
}

/* Prevent label from being hidden on large screens */
@media (min-width: 992px) {
  .nav-2026 .nav-link.nav-icon span {
    display: block !important;
  }
}

/* On mobile collapse, stack items as row not column */
@media (max-width: 991px) {
  .nav-2026 .nav-link.nav-icon {
    flex-direction: row;
    gap: 8px;
    padding: 10px 12px;
  }
  .nav-2026 .nav-link.nav-icon span {
    font-size: 0.88rem;
  }
}

/* ── D. NAV BRAND LOGO — height and vertical centering ──────────────────── */
.nav-2026 .navbar-brand {
  display: flex;
  align-items: center;
}
.nav-2026 .nav-brand-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ── E. BENTO CARD ICON — consistent size & vertical centre ─────────────── */
.bento-card .contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 14px;
  flex-shrink: 0;
}

/* ── F. HERO MOBILE — buttons full-width stacked ─────────────────────────── */
@media (max-width: 575px) {
  .hero-2026 > .container-xl > div.d-flex,
  .hero-2026 .d-flex.justify-content-center {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
  }
  .hero-2026 .btn-glow {
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    justify-content: center !important;
  }
}

/* ── G. NAV CALL-NOW BUTTON — vertically centred with icon ──────────────── */
.nav-2026 .btn.btn-primary {
  display: inline-flex !important;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.nav-2026 .btn.btn-primary i {
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ── H. NAV SOCIAL ICON BUTTONS — equal size ────────────────────────────── */
.nav-2026 .nav-btn-wa,
.nav-2026 .nav-btn-insta {
  width: 34px;
  height: 34px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
}

/* ── I. SECTION-HEADER-2026 — consistent alignment across pages ─────────── */
.section-header-2026 {
  text-align: center;
  margin-bottom: 40px;
}
.section-header-2026 .overline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 10px;
}
.section-header-2026 h2 {
  margin-bottom: 12px;
}
.section-header-2026 p {
  max-width: 600px;
  margin: 0 auto;
  color: #94a3b8;
}

/* ── J. CONTACT MAP CARD — iframe flush in glass card ───────────────────── */
.contact-map-card {
  overflow: hidden;
  padding: 0 !important;
  border-radius: 18px;
}
.contact-map-card iframe {
  display: block;
  border-radius: 18px;
  border: none;
}

/* ── K. PILL TAG — hero pill tag vertical centring ──────────────────────── */
.hero-2026 .pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
}
.hero-2026 .pill-tag i {
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════════════════
   FORM VISIBILITY BOOST — all pages
   ══════════════════════════════════════════════════════════════════════════ */

/* ── 1. GM-FLD FORM WRAPPER GLOW ─────────────────────────────────────── */
.gm-form-card,
#gm-contact-form,
#gm-idx-form,
#gm-svc-form,
#gm-trn-form {
  background: linear-gradient(145deg, rgba(6,14,26,0.97) 0%, rgba(10,22,44,0.97) 100%);
  border: 1.5px solid rgba(96,165,250,0.35);
  border-radius: 22px;
  box-shadow:
    0 0 0 1px rgba(96,165,250,0.08),
    0 8px 40px rgba(0,0,0,0.55),
    0 0 60px rgba(59,130,246,0.08);
}

/* Gradient top-border shimmer */
.gm-form-card::before,
#gm-contact-form::before,
#gm-idx-form::before,
#gm-svc-form::before,
#gm-trn-form::before {
  content: '';
  position: absolute;
  top: -1.5px; left: 0; right: 0;
  height: 3px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 50%, #06b6d4 100%);
  opacity: 0.8;
  pointer-events: none;
}

/* ── 2. GM-FLD INPUT FOCUS GLOW ──────────────────────────────────────── */
.gm-fld-input:focus {
  box-shadow: 0 0 0 3px rgba(59,130,246,0.22), 0 0 18px rgba(59,130,246,0.12) !important;
  border-color: #60a5fa !important;
}

/* ── 3. SUBMIT BUTTON — pulse + gradient ──────────────────────────────── */
@keyframes gm-btn-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(59,130,246,0.55), 0 4px 24px rgba(59,130,246,0.3); }
  50%      { box-shadow: 0 0 0 10px rgba(59,130,246,0), 0 4px 24px rgba(59,130,246,0.15); }
}

.gm-form-card button[type="submit"],
#gm-contact-form button[type="submit"],
#gm-idx-form button[type="submit"],
#gm-svc-form button[type="submit"],
#gm-trn-form button[type="submit"] {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #0ea5e9 100%) !important;
  border: none !important;
  border-radius: 14px !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  padding: 14px 28px !important;
  color: #fff !important;
  animation: gm-btn-pulse 2.4s ease-in-out infinite;
  transition: transform 0.18s, filter 0.18s;
}
.gm-form-card button[type="submit"]:hover,
#gm-contact-form button[type="submit"]:hover,
#gm-idx-form button[type="submit"]:hover,
#gm-svc-form button[type="submit"]:hover,
#gm-trn-form button[type="submit"]:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  animation: none;
  box-shadow: 0 8px 28px rgba(37,99,235,0.5);
}
.gm-form-card button[type="submit"]:disabled,
#gm-contact-form button[type="submit"]:disabled,
#gm-idx-form button[type="submit"]:disabled,
#gm-svc-form button[type="submit"]:disabled,
#gm-trn-form button[type="submit"]:disabled {
  animation: none;
  opacity: 0.7;
}

/* ── 4. BOOTSTRAP FORMS (SEO landing pages, about, gallery, review) ── */
form[action*="formsubmit.co"]:not([id]) {
  background: linear-gradient(145deg, rgba(6,14,26,0.97) 0%, rgba(10,22,44,0.97) 100%);
  border: 1.5px solid rgba(96,165,250,0.3);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 50px rgba(59,130,246,0.07);
  padding: 2rem !important;
}
form[action*="formsubmit.co"]:not([id]) .form-control,
form[action*="formsubmit.co"]:not([id]) .form-select {
  background: rgba(255,255,255,0.05) !important;
  border: 1.5px solid rgba(96,165,250,0.25) !important;
  border-radius: 10px !important;
  color: #e2e8f0 !important;
  font-size: 0.95rem;
  padding: 0.65rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
form[action*="formsubmit.co"]:not([id]) .form-control::placeholder {
  color: #64748b !important;
}
form[action*="formsubmit.co"]:not([id]) .form-control:focus,
form[action*="formsubmit.co"]:not([id]) .form-select:focus {
  border-color: #60a5fa !important;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.2) !important;
  outline: none;
  background: rgba(255,255,255,0.07) !important;
}
form[action*="formsubmit.co"]:not([id]) label {
  color: #93c5fd;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}
form[action*="formsubmit.co"]:not([id]) button[type="submit"],
form[action*="formsubmit.co"]:not([id]) input[type="submit"] {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #0ea5e9 100%) !important;
  border: none !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  padding: 12px 28px !important;
  color: #fff !important;
  width: 100%;
  animation: gm-btn-pulse 2.4s ease-in-out infinite;
  transition: transform 0.18s, filter 0.18s;
  cursor: pointer;
}
form[action*="formsubmit.co"]:not([id]) button[type="submit"]:hover,
form[action*="formsubmit.co"]:not([id]) input[type="submit"]:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  animation: none;
  box-shadow: 0 8px 28px rgba(37,99,235,0.5);
}

/* ── 5. FORM PROGRESS BAR — bolder ───────────────────────────────────── */
.gm-form-progress-fill {
  background: linear-gradient(90deg, #3b82f6, #8b5cf6) !important;
  height: 4px !important;
  border-radius: 4px !important;
  transition: width 0.4s ease !important;
}
.gm-form-progress {
  height: 4px !important;
  background: rgba(255,255,255,0.08) !important;
  border-radius: 4px !important;
  overflow: hidden;
}

/* ── 6. MOBILE ────────────────────────────────────────────────────────── */
@media (max-width: 576px) {
  .gm-form-card,
  #gm-contact-form,
  #gm-idx-form,
  #gm-svc-form,
  #gm-trn-form {
    border-radius: 16px;
  }
  form[action*="formsubmit.co"]:not([id]) {
    padding: 1.25rem !important;
    border-radius: 16px;
  }
}
/* ─────────────────────────────────────────────────────────────────────────── */
