/* ===========================
   Citywide Towing Services
   Brand: Red #E31E24 / Black #131313 / White
=========================== */

:root {
  --red: #e31e24;
  --red-dark: #b3151a;
  --black: #131313;
  --gray-dark: #2b2b2b;
  --gray: #6b6b6b;
  --gray-light: #f4f4f5;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

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

h1, h2, h3, h4 {
  line-height: 1.2;
  margin: 0 0 16px;
}

section {
  padding: 70px 0;
}

.section-tag {
  color: var(--red);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
}

.section-lead {
  color: var(--gray);
  max-width: 680px;
  margin-bottom: 40px;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--black);
  color: var(--white);
  font-size: 0.85rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}

.topbar a {
  color: var(--white);
}

.topbar .topbar-phone {
  font-weight: 700;
  color: var(--red);
}

/* ---------- Header ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.3rem;
}

.brand img {
  height: 88px;
  width: auto;
  border-radius: 8px;
}

nav.main-nav ul {
  display: flex;
  gap: 28px;
  align-items: center;
}

nav.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--black);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--red);
  border-color: var(--red);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s, color .2s, border-color .2s;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-outline {
  background: transparent;
  border-color: var(--black);
  color: var(--black);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn-white {
  background: var(--white);
  color: var(--red);
}

.call-now-header {
  font-weight: 800;
  color: var(--black);
}
.call-now-header .call-number {
  color: var(--red);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(120deg, rgba(19,19,19,.88), rgba(19,19,19,.82)), url('../images/stock/tow-truck-loading.jpeg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 100px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
}

.hero p.lead {
  color: #dcdcdc;
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-trust div {
  display: flex;
  flex-direction: column;
}

.hero-trust strong {
  font-size: 1.6rem;
  color: var(--red);
}

.hero-trust span {
  color: #cfcfcf;
  font-size: 0.85rem;
}

.hero-card {
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-card h3 {
  font-size: 1.2rem;
}

.hero-card ul li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.hero-card ul li::before {
  content: "✓";
  color: var(--red);
  font-weight: 800;
}

/* ---------- Strip / marquee ---------- */
.strip {
  background: var(--red);
  color: var(--white);
  padding: 14px 0;
  font-weight: 700;
  text-align: center;
  font-size: 0.95rem;
}

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: transform .2s ease, box-shadow .2s ease;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(227,30,36,0.25);
}

.icon-inline {
  vertical-align: -3px;
  margin-right: 5px;
  flex-shrink: 0;
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 1.1rem;
}

.service-card p {
  color: var(--gray);
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.service-card a.learn-more {
  font-weight: 700;
  color: var(--red);
  font-size: 0.88rem;
}

/* ---------- How it works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-item {
  text-align: center;
  position: relative;
}

.step-item .service-icon {
  margin: 0 auto 18px;
  background: var(--gray-dark);
  position: relative;
  transition: background .4s ease, transform .4s ease, box-shadow .4s ease;
}

.step-item h3 {
  font-size: 1.1rem;
  transition: color .3s ease;
}

.step-item p {
  color: var(--gray);
  font-size: 0.92rem;
}

.step-item.step-active .service-icon {
  background: var(--red);
  transform: scale(1.25);
  box-shadow: 0 0 0 8px rgba(227,30,36,0.2);
}

.step-item.step-active h3 {
  color: var(--red);
}

.step-connector {
  position: absolute;
  top: 27px;
  left: calc(50% + 46px);
  width: calc(100% - 92px);
  height: 0;
  border-top: 2px dashed #d8d8d8;
}

.step-dot {
  position: absolute;
  top: -4px;
  left: 0%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 6px 2px rgba(227,30,36,0.6);
  opacity: 0;
}

.step-dot-1 {
  animation: step-travel-1 6.6s linear infinite;
}

.step-dot-2 {
  animation: step-travel-2 6.6s linear infinite;
}

@keyframes step-travel-1 {
  0%   { left: 0%;   opacity: 1; }
  33%  { left: 100%; opacity: 1; }
  33.1%, 100% { left: 100%; opacity: 0; }
}

@keyframes step-travel-2 {
  0%, 33% { left: 0%; opacity: 0; }
  33.1%   { opacity: 1; }
  66%     { left: 100%; opacity: 1; }
  66.1%, 100% { left: 100%; opacity: 0; }
}

@media (max-width: 767px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .step-connector {
    display: none;
  }
}

/* ---------- Why us / steps ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

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

.why-item .num {
  width: 46px;
  height: 46px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.bg-dark {
  background: var(--black);
  color: var(--white);
}

.bg-dark .section-lead {
  color: #bdbdbd;
}

.bg-light {
  background: var(--gray-light);
}

/* ---------- Areas ---------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.area-pill {
  background: var(--white);
  border: 1px solid #e6e6e6;
  border-radius: var(--radius);
  padding: 16px 18px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color .2s, color .2s;
}

.area-pill:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ---------- Houston coverage map ---------- */
.areas-with-radar {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: center;
}

.map-radar-wrap {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.houston-map {
  width: 100%;
  height: 100%;
  z-index: 1;
}

.map-center-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  margin: -5.5px 0 0 -5.5px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(227,30,36,0.25);
  z-index: 660;
}

.map-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 640;
  pointer-events: none;
}

.map-flow-line {
  animation: map-line-flow 0.6s linear infinite;
}

@keyframes map-line-flow {
  to { stroke-dashoffset: -8; }
}

.map-sweep {
  position: absolute;
  bottom: 50%;
  left: 50%;
  width: 3px;
  height: 55%;
  margin-left: -1.5px;
  z-index: 650;
  pointer-events: none;
  background: linear-gradient(to top, rgba(227,30,36,0.05), rgba(227,30,36,0.95));
  border-radius: 2px;
  transform-origin: bottom center;
  animation: map-sweep-spin 6s linear infinite;
}

.map-sweep::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 9px;
  height: 9px;
  margin-left: -4.5px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 8px 2px rgba(227,30,36,0.7);
}

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

.radar-caption {
  text-align: center;
  color: var(--gray);
  font-size: 0.82rem;
  margin-top: 16px;
}

.leaflet-tooltip.area-label-tooltip {
  background: rgba(19, 19, 19, 0.92);
  color: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 6px;
  border: 1px solid rgba(227, 30, 36, 0.6);
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(0,0,0,0.25);
}

.leaflet-tooltip.area-label-tooltip::before {
  border-top-color: rgba(19, 19, 19, 0.92);
}

@media (max-width: 991px) {
  .areas-with-radar {
    grid-template-columns: 1fr;
  }
  .houston-map {
    margin-top: 20px;
    height: 320px;
  }
}

/* ---------- Slideshow ---------- */
.slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 8;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--black);
}

.slideshow .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
}

.slideshow .slide.active {
  opacity: 1;
}

.slideshow .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(19,19,19,0.55);
  color: var(--white);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  transition: background .2s;
}

.slide-nav:hover {
  background: var(--red);
}

.slide-nav.prev { left: 14px; }
.slide-nav.next { right: 14px; }

.slide-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.slide-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  padding: 0;
}

.slide-dots .dot.active {
  background: var(--red);
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  background: var(--gray-light);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* ---------- Testimonial slider ---------- */
.testimonial-slideshow {
  position: relative;
  aspect-ratio: unset;
  background: transparent;
  box-shadow: none;
  min-height: 300px;
  max-width: 720px;
  margin: 0 auto;
}

.testimonial-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 44px;
  opacity: 0;
  transition: opacity .5s ease;
  display: flex;
  align-items: stretch;
  pointer-events: none;
}

.testimonial-slideshow .slide.active {
  opacity: 1;
  pointer-events: auto;
}

.testimonial-slideshow .testimonial-card {
  width: 100%;
  box-shadow: var(--shadow);
}

.testimonial-slideshow .slide-nav {
  background: var(--white);
  color: var(--red);
  box-shadow: var(--shadow);
  top: 45%;
}

.testimonial-slideshow .slide-nav.prev { left: -60px; }
.testimonial-slideshow .slide-nav.next { right: -60px; }

.testimonial-slideshow .slide-nav:hover {
  background: var(--red);
  color: var(--white);
}

.testimonial-slideshow .slide-dots {
  bottom: 0;
}

.testimonial-slideshow .slide-dots .dot {
  background: #d8d8d8;
}

.testimonial-slideshow .slide-dots .dot.active {
  background: var(--red);
}

@media (max-width: 900px) {
  .testimonial-slideshow {
    min-height: 340px;
  }
  .testimonial-slideshow .slide-nav.prev { left: 0; }
  .testimonial-slideshow .slide-nav.next { right: 0; }
}

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

.testimonial-card {
  background: var(--white);
  border: 1px solid #ececec;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.stars {
  color: #f5a623;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-card p.quote {
  font-size: 0.95rem;
  color: var(--gray-dark);
  margin-bottom: 18px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.author-name {
  font-weight: 700;
  font-size: 0.9rem;
}

.author-meta {
  font-size: 0.8rem;
  color: var(--gray);
}

.placeholder-note {
  margin-top: 30px;
  padding: 16px 20px;
  background: #fff7e6;
  border: 1px dashed #e3b341;
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: #7a5b00;
}

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

.faq-item {
  background: var(--white);
  border: 1px solid #ececec;
  border-radius: var(--radius);
  padding: 6px 22px;
  margin-bottom: 14px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary .chev {
  flex-shrink: 0;
  transition: transform .2s ease;
  color: var(--red);
}

.faq-item[open] summary .chev {
  transform: rotate(180deg);
}

.faq-item p {
  color: var(--gray);
  margin: 0 0 18px;
  font-size: 0.95rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--red);
  color: var(--white);
  padding: 50px 0;
  border-radius: var(--radius);
  text-align: center;
}

.cta-band h2 {
  font-size: 2rem;
}

.cta-band p {
  color: #ffe1e2;
  margin-bottom: 26px;
}

/* ---------- Split (text + image) ---------- */
.split-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}

.split-section img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (max-width: 767px) {
  .split-section {
    grid-template-columns: 1fr;
  }
}

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.blog-card {
  background: var(--white);
  border: 1px solid #ececec;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.blog-thumb {
  height: 170px;
  background: linear-gradient(135deg, var(--black), var(--gray-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 2rem;
}

.blog-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-date {
  font-size: 0.78rem;
  color: var(--gray);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}

.blog-card h3 {
  font-size: 1.05rem;
}

.blog-card p {
  color: var(--gray);
  font-size: 0.9rem;
  flex: 1;
}

.read-more {
  font-weight: 700;
  color: var(--red);
  font-size: 0.88rem;
  margin-top: 12px;
}

article.post {
  max-width: 780px;
  margin: 0 auto;
}

article.post h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
}

article.post .blog-date {
  margin-bottom: 20px;
}

article.post p, article.post li {
  color: var(--gray-dark);
  font-size: 1rem;
}

article.post h2 {
  font-size: 1.4rem;
  margin-top: 32px;
}

article.post ul {
  margin-bottom: 20px;
}

article.post ul li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
}

article.post ul li::before {
  content: "✓";
  color: var(--red);
  font-weight: 800;
  position: absolute;
  left: 0;
}

.area-map {
  width: 100%;
  height: 150px;
  border: none;
  border-radius: 8px;
  margin-top: 14px;
}

/* ---------- Map / contact ---------- */
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: none;
  width: 100%;
  height: 420px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.info-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.info-list .ic {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--gray-light);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.info-list strong {
  display: block;
  margin-bottom: 2px;
}

.form-card {
  background: var(--white);
  border: 1px solid #ececec;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
}

form.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

form.contact-form input,
form.contact-form select,
form.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--black);
  transition: border-color .2s, box-shadow .2s;
}

form.contact-form input:focus,
form.contact-form select:focus,
form.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(227,30,36,0.12);
}

form.contact-form label {
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 6px;
  display: block;
}

form.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}

.form-privacy {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 0.82rem;
  margin-top: -6px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ---------- Breadcrumb / page header ---------- */
.page-header {
  background: var(--black);
  color: var(--white);
  padding: 60px 0 50px;
}

.page-header .section-tag {
  color: var(--red);
}

.page-header h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
}

.breadcrumb {
  color: #bdbdbd;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.breadcrumb a {
  color: #bdbdbd;
}

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

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--black);
  color: #d6d6d6;
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 34px;
  padding-bottom: 40px;
  border-bottom: 1px solid #2b2b2b;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
}

.footer-brand img {
  height: 40px;
}

footer.site-footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 18px;
}

footer.site-footer ul li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

footer.site-footer ul li a:hover {
  color: var(--red);
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a:hover {
  color: var(--red);
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-row a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #232323;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  transition: background .2s;
}

.social-row a:hover {
  background: var(--red);
}

/* ---------- Sticky mobile call bar ---------- */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  background: var(--red);
  color: var(--white);
}

.mobile-call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  font-weight: 800;
  color: var(--white);
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .services-grid,
  .why-grid,
  .areas-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .header-cta {
    gap: 10px;
  }

  .header-cta .btn-primary {
    padding: 10px 16px;
    font-size: 0.88rem;
  }
}

@media (max-width: 767px) {
  nav.main-nav,
  .header-cta .btn-outline,
  .call-now-header {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  body.nav-open nav.main-nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow);
  }

  body.nav-open nav.main-nav ul {
    flex-direction: column;
    width: 100%;
    gap: 14px;
  }

  .services-grid,
  .why-grid,
  .areas-grid,
  .gallery-grid,
  .testimonial-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 50px 0;
  }

  .mobile-call-bar {
    display: block;
  }

  body {
    padding-bottom: 60px;
  }
}
