* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "archivo", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ================= HEADER ================= */
.header {
  background: #d62828;
  padding: 20px 0;
  position: relative;
  z-index: 10;
}

/* ALIGN BUTTON RIGHT */
.header-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

/* 🔥 LOGO PERFECT FIGMA POSITION */
.logo {
  position: absolute;
  left: 6%;
  bottom: -68px;
  transform: translateX(-50%);
  z-index: 20;
}

.logo img {
  height: 90px;
}

/* BUTTONS */
.header-buttons {
  display: flex;
  gap: 12px;
}

.header-btn {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s;
}

.header-btn.solid {
  background: #fff;
  color: #d62828;
}

.header-btn.outline {
  border: 1px solid #fff;
  color: #fff;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  background: url("./images/back.jpeg") no-repeat right center;
  background-size: cover;
  padding: 10px 0 60px;
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.92) 35%,
    rgba(255, 255, 255, 0.6) 55%,
    rgba(255, 255, 255, 0.2) 75%,
    rgba(255, 255, 255, 0) 100%
  );
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT */
.hero-left {
  width: 50%;
  max-width: 480px;
}

.hero-left h1 {
  font-size: 48px;
  line-height: 1.15;
  font-weight: 700;
}

.hero-left span {
  color: #d62828;
}

.hero-left p {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.6;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.hero-btn {
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
}

.hero-btn.primary {
  background: #d62828;
  color: #fff;
}

.hero-btn.outline-red {
  border: 1px solid #d62828;
  color: #d62828;
}

/* 🔥 RIGHT FORM FIX */
.hero-form {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}

/* FORM CARD STYLE */
.hero-form iframe {
  width: 100%;
  max-width: 420px; /* IMPORTANT FIX */
  /* height: 520px; */
  border: none;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-left,
  .hero-form {
    width: 100%;
  }

  .hero-form {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .logo {
    position: static;
    transform: none;
    margin-bottom: 10px;
  }

  .header-inner {
    flex-direction: column;
    gap: 10px;
  }

  .header-buttons {
    flex-direction: column;
    width: 100%;
  }

  .header-btn {
    width: 100%;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 28px;
  }

  .hero-form iframe {
    max-width: 100%;
    height: 650px;
  }
}

/* broken section  */
.services {
  background: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.services h2 {
  font-size: 48px;
  /* font-weight: 700; */
}

.services h2 span {
  color: #d62828;
  font-weight: 700;
  /* font-size: 40px; */
}

.subtitle {
  margin: 15px auto;
  max-width: 650px;
  color: #000000;
  line-height: 1.6;
  font-size: 21px;
  font-weight: 400;
}

/* BUTTON */
.center-btn {
  margin: 40px 0 100px;
}

.btn.outline-red {
  border: 1px solid #d62828;
  color: #d62828;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn.outline-red:hover {
  background: #d62828;
  color: #fff;
}

/* GRID */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 77px;
}

/* CARD */
.card {
  background: #fff;
  padding: 25px 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  transition: 0.3s;
  cursor: pointer;
}

.card img {
  height: 100px;
  margin-bottom: 12px;
  position: relative;
  top: -55px;
}

.card p {
  font-size: 16px;
  font-weight: 700;
}

/* HOVER EFFECT */
.card:hover {
  transform: translateY(-5px);
  border-color: #d62828;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .services h2 {
    font-size: 24px;
  }
}

/* about us section  */
.about {
  background: #f8eaea; /* light pink */
  padding: 80px 0;
}

/* LAYOUT */
.about-wrapper {
  display: flex;
  align-items: flex-start; /* THIS makes content top-aligned */
  justify-content: space-between;
  gap: 70px;
}

/* LEFT CONTENT */
.about-content {
  flex: 1;
  max-width: 520px;
}

.about-content h2 {
  color: #d62828;
  font-size: 48px;
  margin-bottom: 15px;
}

.about-content p {
  color: #000000;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 21px;
  font-weight: 400;
}

/* BUTTON */
.btn.outline-red {
  border: 1px solid #d62828;
  color: #d62828;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  transition: 0.3s;
}

.btn.outline-red:hover {
  background: #d62828;
  color: #fff;
}

/* RIGHT IMAGE */
.about-image {
  flex: 1;
  /* display: flex; */
  /* justify-content: flex-end; */
}

.about-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 8px;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-wrapper {
    flex-direction: column;
  }

  .about-image {
    justify-content: center;
  }

  .about-content {
    max-width: 100%;
  }
}

/* call us section */
/* SECTION */
.brands {
  position: relative;
  background: url("images/bg-dark.png") center/cover no-repeat;
  padding: 100px 0;
  color: #fff;
  text-align: center;
}

/* DARK OVERLAY (better contrast like design) */
.brands .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

/* WRAPPER */
.brands-wrapper {
  position: relative;
  z-index: 2;
}

/* TITLE */
.brands h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* SUBTEXT */
.subtitle-brands {
  max-width: 720px;
  margin: 0 auto 50px;
  color: #d1d1d1;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.7;
}

/* GRID */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  max-width: 1000px;
  margin: auto;
}

/* CARD */
.brand-card {
  background: #fff;
  padding: 18px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* LOGO */
.brand-card img {
  max-width: 100%;
  /* max-height: 32px; */
  object-fit: contain;
  filter: grayscale(0%);
  transition: 0.3s;
}

/* HOVER EFFECT */
.brand-card:hover {
  transform: translateY(-5px) scale(1.02);
}

/* CTA CARD */
.cta-card {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
}

.cta-card a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 500px) {
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brands h2 {
    font-size: 26px;
  }
}

/* Homeowners section  */

/* SECTION */
.why {
  padding: 80px 242px;
  background: #ffffff;
  text-align: center;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.why h2 {
  font-size: 48px;
  margin-bottom: 40px;
  font-weight: 700;
}

.why h2 span {
  color: #d2232a;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARD */
.why-card {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #ddd;
  text-align: left;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* ICON IMAGE */
.icon-img {
  width: 32px;
  margin-bottom: 12px;
  transition: 0.3s;
}

/* TEXT */
.why-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #000;
  transition: 0.3s;
  font-weight: 700;
}

.why-card p {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  transition: 0.3s;
}

/* 🔥 HOVER EFFECT */
.why-card:hover {
  background: #d2232a;
  border-color: #d2232a;
  transform: translateY(-6px);
}

/* TEXT + ICON WHITE */
.why-card:hover h3,
.why-card:hover p {
  color: #fff;
}

/* ICON TURN WHITE */
.why-card:hover .icon-img {
  filter: brightness(0) invert(1);
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .why {
    padding: 80px 8px;
    background: #ffffff;
    text-align: center;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why h2 {
    font-size: 24px;
  }
}

/* process timeline section */
/* SECTION */
.process {
  background: #fff2f2;
  padding: 80px 0;
  text-align: center;
}

/* TITLE */
.process h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 60px;
}

.process h2 span {
  color: #d2232a;
}

/* WRAPPER */
.process-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* LINE */
.process-line {
  position: absolute;
  top: 35px;
  left: 15%;
  width: 70%;
  height: 3px;
  background: #d2232a;
  z-index: 0;
}

/* STEP */
.step {
  position: relative;
  width: 30%;
  z-index: 1;
}

/* CIRCLE */
.circle {
  width: 70px;
  height: 70px;
  background: #d2232a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 15px;
}

/* TEXT */
.step h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: #000000;
  font-weight: 400;
  max-width: 220px;
  margin: auto;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .process-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .process-line {
    display: none;
  }

  .step {
    width: 100%;
  }
}

/*  testimonial SECTION */
.testimonials {
  position: relative;
  background: url("images/testimonial-bg.png") center/cover no-repeat;
  padding: 100px 0;
  color: #fff;
  text-align: center;
}

/* OVERLAY */
.testimonials .overlay {
  position: absolute;
  inset: 0;
  background: #000000bf;
}

/* WRAPPER (no container conflict) */
.testimonials-wrapper {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* TITLE */
.testimonials h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 50px;
}

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

/* CARD */
.testimonial-card {
  background: #fff;
  color: #000;
  padding: 28px 22px;
  border-radius: 10px;
  text-align: left;

  /* 🔥 remove harsh border */
  border: none;

  /* subtle premium shadow */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);

  transition: all 0.3s ease;
}

/* HOVER */
.testimonial-card:hover {
  transform: translateY(-6px);
}

/* STARS */
.stars {
  color: #f5b301;
  font-size: 18px;
  margin-bottom: 12px;
}

/* TEXT */
.testimonial-card p {
  font-size: 16px;
  color: #000000;
  font-weight: 400;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

/* NAME */
.testimonial-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .testimonials h2 {
    font-size: 26px;
  }
}

/* trust/credibility section  */
.trust {
  background: #ffffff;
  padding: 80px 0;
  text-align: center;
}

/* TITLE */
.trust h2 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
}

.trust h2 span {
  color: #d2232a;
}

/* TEXT */
.trust-text {
  max-width: 700px;
  margin: 0 auto 25px;
  font-size: 21px;
  font-weight: 400;
  color: #000000;
  line-height: 1.6;
}

/* BUTTON */
.btn.outline-red {
  border: 1px solid #d2232a;
  color: #d2232a;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.btn.outline-red:hover {
  background: #d2232a;
  color: #fff;
}

/* LOGOS */
.trust-logos {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* LOGO BOX */
.logo-box {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.logo-box img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
}

/* HOVER */
.logo-box:hover {
  transform: translateY(-5px);
  border-color: #d2232a;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .trust-logos {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 500px) {
  .trust-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust h2 {
    font-size: 24px;
  }
}

/* location/service area section  */

/* SECTION */
.service-area {
  background: #ffffff;
  padding: 80px 0;
  text-align: center;
}

/* WRAPPER */
.service-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.service-area h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-area h2 span {
  color: #d2232a;
}

/* DESCRIPTION */
.service-desc {
  max-width: 700px;
  margin: 20px auto 30px;
  color: #000000;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.6;
  font-size: 15px;
}

/* MAP */
.map-wrapper {
  margin: 40px auto;
  max-width: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #e5e5e5;
}

.map-wrapper iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

/* GRID */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 20px;
}

/* LOCATION ITEM */
.location-item {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: 0.3s;
}

.location-item img {
  width: 16px;
  height: 16px;
}

/* HOVER */
.location-item:hover {
  border-color: #d2232a;
  transform: translateY(-3px);
}

/* CTA BUTTON */
.service-cta {
  grid-column: span 2;
  background: #d2232a;
  color: #fff;
  padding: 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.service-cta:hover {
  background: #b91c1c;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-cta {
    grid-column: span 2;
  }
}

@media (max-width: 500px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }

  .service-cta {
    grid-column: span 1;
  }

  .service-area h2 {
    font-size: 24px;
  }
}

/* conversion section  */

/* SECTION */
.offer-section-custom {
  background: #ffffff;
  padding: 100px 0;
}

/* WRAPPER */
.offer-wrapper-custom {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  gap: 80px;
}

/* LEFT */
.offer-left-custom {
  flex: 0 0 520px;
}

/* 🔥 HEADING */
.offer-left-custom h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  margin-bottom: 20px;
}

/* RED TEXT */
.offer-left-custom h2 span {
  color: #d2232a;
}

/* 🔥 PARAGRAPH */
.offer-left-custom p {
  font-size: 21px;
  font-weight: 400;
  color: #000;
  margin-bottom: 25px;
}

/* BUTTON */
.offer-btn-custom {
  border: 1px solid #d2232a;
  color: #d2232a;
  padding: 14px 26px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  font-size: 15px;
  transition: 0.3s;
}

.offer-btn-custom:hover {
  background: #d2232a;
  color: #fff;
}

/* 🔥 FORM */
.offer-form-custom {
  flex: 0 0 600px;
  max-width: 600px;
  border-radius: 10px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* IFRAME */
.offer-form-custom iframe {
  width: 100%;
  height: 520px;
  border: none;
  border-radius: 6px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .offer-wrapper-custom {
    flex-direction: column;
    text-align: center;
  }

  .offer-left-custom {
    flex: unset;
    max-width: 100%;
  }

  .offer-form-custom {
    width: 100%;
    max-width: 100%;
  }

  .offer-form-custom iframe {
    height: 600px;
  }

  .offer-left-custom h2 {
    font-size: 32px;
  }

  .offer-left-custom p {
    font-size: 18px;
  }
}
/* faq section  */

/* SECTION */
.faq-section {
  background: #fff;
  padding: 80px 0;
}

/* WRAPPER */
.faq-wrapper {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.faq-header h2 {
  font-size: 48px;
  font-weight: 700;
}

.faq-header h2 span {
  color: #d2232a;
}

.faq-desc {
  color: #000000;
  font-size: 21px;
  font-weight: 400;
  margin-top: 10px;
  max-width: 500px;
}

/* BUTTON */
.faq-btn {
  border: 1px solid #d2232a;
  color: #d2232a;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.faq-btn:hover {
  background: #d2232a;
  color: #fff;
}

/* BOX */
.faq-box {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
}

/* ITEM */
.faq-item {
  border-bottom: 1px solid #ddd;
  transition: 0.3s;
}

.faq-item:last-child {
  border-bottom: none;
}

/* ACTIVE */
.faq-item.active {
  background: #f5eaea;
}

/* QUESTION */
.faq-question {
  padding: 18px;
  cursor: pointer;
}

/* LEFT */
.faq-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

/* ICON */
.faq-icon {
  width: 26px;
  height: 26px;
}

.faq-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 55px;
}

.faq-answer p {
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  padding-bottom: 18px;
}

/* ACTIVE OPEN */
.faq-item.active .faq-answer {
  max-height: 200px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .faq-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

/* footer section  */

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* ================= CTA SECTION ================= */
.repair-cta {
  background: #0e4671;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.repair-cta h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.repair-cta p {
  font-size: 21px;
  font-weight: 400;
  color: #ffffff;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

/* BUTTON WRAPPER */
.repair-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* BASE BUTTON */
.repair-btn {
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

/* SOLID BUTTON */
.repair-btn-solid {
  background: #fff;
  color: #0e4671;
  border: 1px solid #fff;
}

.repair-btn-solid:hover {
  background: transparent;
  color: #fff;
}

/* OUTLINE BUTTON */
.repair-btn-outline {
  border: 1px solid #fff;
  color: #fff;
}

.repair-btn-outline:hover {
  background: #fff;
  color: #0e4671;
}

/* ================= FOOTER ================= */
.footer {
  background: #000;
  color: #fff;
  padding: 60px 20px 30px;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

/* HEADINGS */
.footer h4 {
  margin-bottom: 10px;
  font-size: 18px;
  border-bottom: 1px solid #444;
  display: inline-block;
  padding-bottom: 5px;
}

/* TEXT */
.footer p {
  color: #ccc;
  font-size: 14px;
  margin-top: 8px;
  line-height: 1.5;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 20px;
  font-size: 12px;
  color: #aaa;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .repair-cta h2 {
    font-size: 28px;
  }

  .repair-cta p {
    font-size: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .header {
    padding: 12px 0px !important;
  }
  .header .container {
    width: 100% !important;
  }
  .header-buttons {
    flex-wrap: wrap !important;
    justify-content: end !important;
  }
  .logo img {
    position: unset !important;
  }
}
