/* =========================
   HERO SECTION
========================= */

.hero {
  position: relative;
  height: 720px;
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
}

/* Background Image */
.hero-bg img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}

/* Left dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.55) 35%,
    rgba(0,0,0,0.2) 60%,
    rgba(0,0,0,0) 80%
  );
}

/* Content wrapper */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

/* =========================
   LEFT WHITE CARD
========================= */

.hero-card {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  max-width: 520px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.hero-subtitle {
  color: #0b2d52;
  font-size: 18px;
  margin-bottom: 10px;
}

.hero-card h1 {
 
  color: #810000;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-card p {
  color: #333;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 25px;
}

.hero-stats strong {
  
  display: block;
  color: #111;
}

.hero-stats span {
 
  color: #555;
}

/* Button */
.hero-btn {
  display: inline-block;
  background: #d84315;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #b33610;
}

/* =========================
   TESTIMONIAL CARD
========================= */

.hero-testimonial {
  background: rgba(255,255,255,0.95);
  padding: 35px;
  border-radius: 12px;
  max-width: 480px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.quote-icon {
  font-size: 40px;
  color: #ff6a00;
  margin-bottom: 15px;
}

.hero-testimonial p {
  color: #0b2d52;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.review-footer {
  
  color: #666;
  margin-top: 10px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

  .hero {
    height: auto;
    padding: 60px 0;
  }

  .hero-content {
    flex-direction: column;
    gap: 40px;
  }

  .hero-card,
  .hero-testimonial {
    max-width: 100%;
  }

  .hero-overlay {
    background: rgba(0,0,0,0.7);
  }

}
/* ==============================
   ANNIVERSARY SECTION
============================== */

.anniversary-section {
  background: #eef0f4; /* light gray */
  padding: 35px 20px;
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
}

.anniversary-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

/* Badge */
.anniversary-badge img {
  width: 120px;
  height: auto;
}

/* Heading */
.anniversary-text h2 {
 
  font-weight: 700;
  color: #0b2d52; /* dark navy */
  margin: 0;
  line-height: 1.3;
}

.anniversary-text strong {
  font-weight: 800;
}

/* Button */
.reviews-btn {
  background: #0b2d52; /* navy */
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  display: inline-block;
}

.reviews-btn:hover {
  background: #092341;
  color:white;
}

/* Bottom Blue Bar */
.anniversary-bottom-bar {
  height: 20px;
  background: #0b2d52;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 992px) {

  .anniversary-container {
    flex-direction: column;
    text-align: center;
  }

  .anniversary-text h2 {
    
  }

  .anniversary-badge img {
    width: 100px;
  }

  .anniversary-bottom-bar {
    height: 12px;
  }
}
/* =========================
   HELP SECTION
========================= */

.help-section {
  background: #0f2d5c; /* navy */
  padding: 70px 20px;
  font-family: Arial, Helvetica, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Title */
.help-title {
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
  font-weight: 700;
}

/* Grid */
.help-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card */
.help-card {
  background: #e9e9e9;
  padding: 35px 20px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  color: #000;
  transition: 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.help-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  opacity: 0.8;
}

.help-card span {
  display: block;
  font-weight: 500;
}

/* Hover */
.help-card:hover {
  background: #ffffff;
  transform: translateY(-6px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .help-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .help-grid {
    grid-template-columns: 1fr;
  }

  .help-title {
  }
}

/* ==============================
   MODERN PROCESS STYLE
============================== */

.modern-process {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-top: 60px;
  text-align: center;
}

/* Curved dotted line background */
.modern-process::before {
  content: "";
  position: absolute;
  top: 70px;
  left: 5%;
  width: 90%;
  height: 2px;
  border-top: 2px dashed #d6d6d6;
  z-index: 0;
}

.modern-step {
  position: relative;
  z-index: 2;
  width: 18%;
}

/* Outer Circle */
.step-circle {
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.3s ease;
}

/* Inner Icon */
.step-circle i {
  font-size: 32px;
  color: #2c3e50;
}

/* Step Number Badge */
.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #990000;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Active Step */
.modern-step.active .step-circle {
  border: 4px solid #990000;
  background: #fff;
}

.modern-step.active .step-number.dark {
  background: #2c3e50;
}

/* Titles */
.modern-step h5 {
  font-weight: 600;
  color: #2c3e50;
}

/* Hover Effect */
.modern-step:hover .step-circle {
  transform: translateY(-8px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 992px) {

  .modern-process {
    flex-wrap: wrap;
    gap: 40px;
  }

  .modern-process::before {
    display: none;
  }

  .modern-step {
    width: 45%;
  }
}

@media (max-width: 600px) {

  .modern-step {
    width: 100%;
  }
}
.reviews-section {
  background: #f3f3f3;
  padding: 80px 0;
  text-align: center;
}

.section-title {
  color: #810000;
  /*font-weight: 700;*/
  margin-bottom: 25px;
}

.top-btn {
  margin-bottom: 50px;
}

.outline-btn {
  padding: 12px 28px;
  border: 2px solid #810000;
  color: #810000;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.outline-btn:hover {
  background: #810000;
  color: #fff;
}

.marquee {
  overflow: hidden;
  margin-bottom: 40px;
}

.marquee-track {
  display: flex;
  gap: 25px;
  width: max-content;
}

.review-card {
  flex: 0 0 auto;
  width: 420px;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  text-align: left;
}

.review-card h4 {
  margin: 0;
}

.stars {
  color: #f4b400;
  margin: 6px 0;
}

.review-card hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 10px 0;
}

.review-card p {
  color: #444;
}

/* Animations */
.marquee-left .marquee-track {
  animation: scrollLeft 30s linear infinite;
}

.marquee-right .marquee-track {
  animation: scrollRight 30s linear infinite;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Pause Button */
.control-wrapper {
  margin-top: 30px;
}

.control-btn {
  background: #810000;
  color: #fff;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  padding: 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}
/* CTA SECTION */
.cta-section {
  background: #121d29; /* orange/red background */
  padding: 28px 40px;
}

.cta-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Left Text */
.cta-left {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-left h2 {
  color: #ffffff;
  font-weight: 800;
  margin: 0;
}

.cta-left p {
  color: #ffffff;
  margin: 0;
}

/* Button */
.cta-button {
  background: #0b2d5c; /* dark blue */
  color: #ffffff;
  padding: 14px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
}

.cta-button:hover {
  background: #081f40;
}

/* Responsive */
@media (max-width: 992px) {
  .cta-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .cta-left {
    justify-content: center;
  }

  .cta-left h2 {
  }

  .cta-left p {
  }
}
/* SECTION */
.why-choose {
  padding: 80px 20px;
  background: #f4f5f7;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* HEADING */
.why-left h2 {
  color: #810000;
  margin-bottom: 40px;
  font-weight: 700;
}

/* CARDS */
.why-card {
  background: #fff;
  padding: 25px 25px 25px 30px;
  border-left: 5px solid #810000;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  margin-bottom: 25px;
}

.why-card h4 {
  margin-bottom: 10px;
  font-weight: 700;
}

.why-card p {
  line-height: 1.6;
  color: #444;
}


/* RESPONSIVE */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-left h2 {
    text-align: center;
  }

  .why-right {
    margin-top: 30px;
  }
}
/* SECTION */
.local-section {
  width: 100%;
  font-family: Arial, sans-serif;
}

/* GRID LAYOUT */
.local-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  min-height: 300px;
}

/* LEFT SIDE */
.local-left {
  background: #eaeff2; /* light gray background */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.local-left img {
  max-width: 100%;
  height: auto;
}

/* RIGHT SIDE */
.local-right {
  background: #810000; /* orange/red */
  display: flex;
  align-items: center;
  padding: 60px;
}

.local-content {
  max-width: 600px;
}

.local-content h2 {
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
}

.local-content p {
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* BUTTON */
.local-btn {
  background: #0b2d5c; /* dark blue */
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  display: inline-block;
}

.local-btn:hover {
  background: #081f40;
  color:white;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .local-grid {
    grid-template-columns: 1fr;
  }

  .local-left,
  .local-right {
    text-align: center;
    padding: 40px 20px;
  }

  .local-content h2 {
  }
}
/* SECTION */
.offers-section {
  padding: 80px 20px;
  background:#ffffff;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.offers-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.offers-header h2 {
  color: #810000;
  margin-bottom: 10px;
}

.offers-header p {
  max-width: 600px;
  color: #333;
}

.view-offers-btn {
  border: 2px solid #810000;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  color: #810000;
  font-weight: 600;
  transition: 0.3s;
}

.view-offers-btn:hover {
  background: #810000;
  color: #fff;
}

/* GRID */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.offer-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.offer-content {
  background: #0b2d5c;
  color: #fff;
  padding: 25px;
  border-radius: 10px 10px 0 0;
  min-height: 260px;
}

.offer-content h3 {
  margin-bottom: 15px;
}

.offer-content h4 {
  margin-bottom: 15px;
  font-weight: normal;
}

.small-text {
  font-size: 12px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.expires {
  font-size: 12px;
  margin-bottom: 10px;
}

.print-link {
  color: #fff;
  text-decoration: underline;
}

/* CLAIM BUTTON */
.claim-btn {
  background: #810000;
  color: #fff;
  text-align: center;
  padding: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 10px 10px;
  transition: 0.3s;
}

.claim-btn:hover {
  background: #b83207;
  color:white;
}

/* BOOKING BUTTON */
.booking-wrapper {
  text-align: center;
  margin-top: 50px;
}

.booking-btn {
  background: #810000;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s;
}

.booking-btn:hover {
/*  background: #b83207;*/
  background: #364352;
  color:white;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .offers-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .offers-grid {
    grid-template-columns: 1fr;
  }

  .offers-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.service-area-section {
  padding: 80px 20px;
  background: #f4f4f4;
  font-family: Arial, sans-serif;
}

.service-card {
  max-width: 1200px;
  margin: auto;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  position: relative;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  padding: 50px;
}

/* LEFT SIDE */
.service-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.location-icon {
  background: #810000;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-header h2 {
  color: #810000;
  margin: 0;
}

.service-description {
  margin-bottom: 25px;
  color: #333;
}

.service-left h4 {
  margin-bottom: 15px;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.areas-grid ul {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
}

.areas-grid li {
  margin-bottom: 6px;
  color: #444;
}

/* RIGHT MAP */
.service-right iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: none;
  border-radius: 8px;
}

/* BOTTOM ACCENT */
.bottom-accent {
  height: 12px;
  background: #810000;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .service-grid {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }
}
.custom-services-section {
  background: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.custom-services-section .custom-services-container {
  max-width: 800px;
  margin: auto;
}

.custom-services-section .custom-services-title {
/*  color: #d32f2f;*/
color: #810000;
  margin-bottom: 30px;
}

/* Toggle */
.custom-services-section .custom-service-toggle {
  display: inline-flex;
  margin-bottom: 30px;
  background: #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.custom-services-section .custom-toggle-btn {
  padding: 10px 25px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.custom-services-section .custom-toggle-btn.active {
  background: #0b2c52;
  color: #fff;
}

/* Services */
.custom-services-section .custom-services-group {
  display: none;
}

.custom-services-section .custom-services-group.active {
  display: block;
}

.custom-services-section .custom-service-box {
  background: #fff;
  padding: 18px;
  margin-bottom: 15px;
  border-radius: 6px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  font-weight: 600;
}

.commercial-repairs {
  background: #f4f4f4;
  padding: 80px 20px;
  text-align: center;
}

.commercial-repairs .container {
  max-width: 1100px;
  margin: 0 auto;
}

.commercial-repairs h2 {
/*  color: #d32f2f;*/
  color: #810000;
  margin-bottom: 20px;
  font-weight: 700;
}

.commercial-repairs .description {
  max-width: 900px;
  margin: 0 auto 15px;
  color: #333;
  line-height: 1.6;
}

.commercial-repairs .highlight {
/*  color: #d32f2f;*/
  color: #810000; 
  font-weight: 600;
  margin-bottom: 15px;
}

.commercial-repairs .note {
  color: #555;
  max-width: 900px;
  margin: 0 auto 50px;
}

.service-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.service-item {
  text-align: center;
  width: 280px;
}

.service-item .icon {
  background: #0b2c52;
  color: #fff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.service-item .card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.service-item .card a {
  text-decoration: none;
  color:#810000;
/*  color: #d32f2f;*/
  font-weight: 600;
  text-decoration: underline;
}

.cta {
  margin-top: 40px;
}

.btn-book {
  display: inline-block;
/*  background: #d32f2f;*/
 background: #810000;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-book:hover {
/*  background: #b71c1c;*/
   background: #364352;
  color:white;
}

.speedy-service-strip {
/*  background-color: #d32f2f;*/
background-color: #810000;
  border-top: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  padding: 20px 0;
}

.speedy-service-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.speedy-service-icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
}

.speedy-service-text {
  margin: 0;
  color: #ffffff;
  font-weight: 700;
}
.local-content {
    max-width: 1200px !important;
}

.local-left {
    padding: 0 !important;
    margin: 0 !important;
}






.map-box {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

.map-image {
  width: 100%;
  display: block;  /* removes bottom spacing */
}

.map-text {
    line-height: 1.2;
  position: absolute;
  /*top: 50%;
  left: 50%;*/
      top: 50%;
    left: 75%;
  transform: translate(-50%, -50%);
/*  color: #000;            */
color: #810000;
  font-size: 30px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 1px;
}
/*@media screen and (max-width: 500px) {
  .map-text {
   display: none;
  }
}*/

/* MOBILE VIEW */
@media screen and (max-width: 500px) {
  .map-text {
    position: static;        /* remove overlay for mobile */
    transform: none;         /* reset translation */
    margin-bottom: 10px;     /* spacing above image */
    font-size: 22px;         /* adjust for small screens */
    display: block;
    text-align: center;
    width: 100%;
  }

  .map-box {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}


