/* ============================================
   Cole's Garage Door — Main Stylesheet
   ============================================ */

:root {
  --black:     #0a0a0a;
  --dark:      #181818;
  --steel:     #232323;
  --orange:    #4a90d9;
  --orange-dk: #3478c0;
  --light:     #f4f4f4;
  --white:     #ffffff;
  --gray:      #888888;
  --gray-lt:   #eeeeee;
  --text:      #2a2a2a;
  --radius:    6px;
  --shadow:    0 4px 20px rgba(0,0,0,0.10);
  --transition: 0.25s ease;
  --font-main: 'Inter', 'Segoe UI', Arial, sans-serif;
  --font-head: 'Montserrat', 'Segoe UI', Arial, sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); color: var(--text); background: var(--white); line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p  { margin-bottom: 1rem; }

/* Utility */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.text-center { text-align: center; }
.text-white  { color: var(--white); }
.bg-dark     { background: var(--dark); }
.bg-light    { background: var(--light); }
.bg-steel    { background: #111111; }
.highlight   { color: var(--orange); }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dk);
  border-color: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74,144,217,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}
.btn-lg { padding: 1.05rem 2.4rem; font-size: 1.1rem; }

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
  background: var(--black);
  color: #ccc;
  font-size: 0.85rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.topbar a { color: var(--orange); font-weight: 600; }
.topbar a:hover { color: var(--orange-dk); }
.topbar-links { display: flex; gap: 1.5rem; }

/* ============================================
   HEADER / NAV
   ============================================ */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1140px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg { width: 28px; height: 28px; fill: white; }
.logo-text { line-height: 1.15; }
.logo-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.logo-text span {
  font-size: 0.72rem;
  color: var(--gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
nav { display: flex; align-items: center; gap: 0.25rem; }
nav a {
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  border-radius: var(--radius);
  transition: var(--transition);
}
nav a:hover, nav a.active {
  color: var(--orange);
  background: rgba(230,126,34,0.08);
}
nav .btn-primary { color: white; margin-left: 0.5rem; }
nav .btn-primary:hover { color: white; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  width: 25px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--gray-lt);
}
.mobile-nav a {
  padding: 0.75rem 0;
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 1px solid var(--gray-lt);
  color: var(--dark);
  display: block;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav .btn { margin-top: 1rem; width: 100%; justify-content: center; }

/* ============================================
   HERO
   ============================================ */
.hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #181818 60%, #232323 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(74,144,217,0.15);
  border: 1px solid rgba(74,144,217,0.3);
  color: var(--orange);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.hero h1 { margin-bottom: 1.2rem; }
.hero h1 span { color: var(--orange); }
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat strong {
  display: block;
  font-size: 1.8rem;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--orange);
}
.hero-stat span { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.hero-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.9rem;
  gap: 1rem;
}
.hero-img-placeholder svg { width: 80px; height: 80px; opacity: 0.3; }
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-ribbon {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--orange);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(74,144,217,0.4);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: #181818;
  color: white;
  border-bottom: 3px solid var(--orange);
  padding: 20px 0;
}
.trust-items {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.92rem;
}
.trust-item svg { width: 20px; height: 20px; fill: var(--orange); opacity: 0.9; }

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.service-card {
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: rgba(230,126,34,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.service-icon svg { width: 28px; height: 28px; fill: var(--orange); }
.service-card h3 { margin-bottom: 0.6rem; font-size: 1.15rem; }
.service-card p { font-size: 0.92rem; color: var(--gray); margin: 0; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--orange);
}
.service-link:hover { gap: 0.6rem; }

/* ============================================
   WHY US
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.why-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--gray-lt), #ddd);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
}
.why-img-placeholder svg { width: 80px; height: 80px; opacity: 0.4; }
.why-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.why-features { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 1.5rem; }
.why-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-feature-icon {
  width: 44px; height: 44px;
  background: rgba(230,126,34,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-feature-icon svg { width: 22px; height: 22px; fill: var(--orange); }
.why-feature h4 { margin-bottom: 0.2rem; }
.why-feature p { font-size: 0.9rem; color: var(--gray); margin: 0; }

/* ============================================
   REVIEWS
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.review-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.8rem;
  box-shadow: var(--shadow);
  border: 1px solid #eee;
}
.stars { color: #f4b400; font-size: 1.1rem; margin-bottom: 0.8rem; letter-spacing: 2px; }
.review-text { font-size: 0.95rem; color: var(--text); margin-bottom: 1rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 0.7rem; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 0.9rem; }
.review-date { font-size: 0.8rem; color: var(--gray); }
.reviews-cta {
  margin-top: 2.5rem;
  text-align: center;
}
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: white;
  border: 1px solid #ddd;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  margin-top: 1rem;
}

/* ============================================
   SERVICE AREAS
   ============================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.area-pill {
  background: var(--white);
  border: 2px solid #e5e5e5;
  border-radius: 50px;
  padding: 0.6rem 1.2rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.area-pill:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(230,126,34,0.05);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, #181818 0%, #232323 100%);
  border-top: 4px solid var(--orange);
  color: white;
  text-align: center;
  padding: 80px 0;
}
.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 2rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p { font-size: 0.9rem; margin: 1rem 0; line-height: 1.7; }
.footer-socials { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-social {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-social:hover { background: var(--orange); }
.footer-social svg { width: 16px; height: 16px; fill: white; }
.footer-col h4 { color: white; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.9rem; transition: var(--transition); }
.footer-col a:hover { color: var(--orange); }
.footer-contact-item { display: flex; gap: 0.6rem; font-size: 0.9rem; margin-bottom: 0.7rem; align-items: flex-start; }
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--orange); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
}
.footer-bottom a { color: var(--orange); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, #0a0a0a, #202020);
  color: white;
  padding: 80px 0 60px;
  text-align: center;
}
.page-hero .section-label { display: block; margin-bottom: 0.5rem; }
.page-hero h1 { margin-bottom: 0.8rem; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: var(--orange); }
.breadcrumb span { opacity: 0.5; }

/* ============================================
   SERVICES PAGE
   ============================================ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--gray-lt);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.service-detail-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--gray-lt);
  display: flex; align-items: center; justify-content: center;
  color: #bbb;
}
.service-detail-img-placeholder svg { width: 64px; height: 64px; opacity: 0.4; }
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.service-detail ul { margin: 1rem 0; display: flex; flex-direction: column; gap: 0.5rem; }
.service-detail li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.95rem;
}
.service-detail li::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
.about-img-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: var(--gray-lt);
  display: flex; align-items: center; justify-content: center;
  color: #bbb;
}
.about-img-placeholder svg { width: 80px; height: 80px; opacity: 0.35; }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.value-card .icon {
  width: 60px; height: 60px;
  background: rgba(230,126,34,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.value-card .icon svg { width: 28px; height: 28px; fill: var(--orange); }
.value-card h4 { margin-bottom: 0.4rem; }
.value-card p { font-size: 0.88rem; color: var(--gray); margin: 0; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-card-icon {
  width: 48px; height: 48px;
  background: rgba(230,126,34,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon svg { width: 24px; height: 24px; fill: var(--orange); }
.contact-card h4 { margin-bottom: 0.3rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray); }
.contact-card a, .contact-card p { font-weight: 600; font-size: 1rem; margin: 0; }
.contact-card a:hover { color: var(--orange); }
.contact-form-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid #e5e5e5;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-main);
  transition: var(--transition);
  background: var(--light);
  color: var(--text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: white;
  box-shadow: 0 0 0 3px rgba(230,126,34,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; }
.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  margin-top: 3rem;
  box-shadow: var(--shadow);
  height: 350px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hero-grid,
  .why-grid,
  .about-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .hero-img-wrap { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav.open { display: flex; }
  .topbar .container { flex-direction: column; text-align: center; }
  .hero { padding: 60px 0; }
  .hero-stats { flex-wrap: wrap; gap: 1.2rem; }
  .section { padding: 60px 0; }
  .trust-items { gap: 1.2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .hero-btns { flex-direction: column; }
  /* push page content up so sticky bar doesn't overlap footer */
  body { padding-bottom: 68px; }
}

/* ============================================
   STICKY MOBILE CALL BAR
   ============================================ */
.sticky-mobile-bar {
  display: none;
}
@media (max-width: 640px) {
  .sticky-mobile-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.18);
  }
  .sticky-mobile-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    font-weight: 800;
    font-size: 1rem;
    font-family: var(--font-head);
    text-decoration: none;
    color: white;
    transition: var(--transition);
  }
  .sticky-mobile-bar .smb-call {
    background: var(--orange);
  }
  .sticky-mobile-bar .smb-call:active { background: var(--orange-dk); }
  .sticky-mobile-bar .smb-text {
    background: #1a7a40;
  }
  .sticky-mobile-bar .smb-text:active { background: #155f32; }
  .sticky-mobile-bar svg {
    width: 20px;
    height: 20px;
    fill: white;
    flex-shrink: 0;
  }
}
