/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background: #000;
  color: #fff;
}

/* ===== NAVBAR ===== */
nav {
  background: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: relative;
}

/* Logo */
.logo {
  font-size: 1.5rem;
  font-weight: bold;
}
.logo .ali {
  color: #fff;
}
.logo .recovery {
  color: #e50914;
}

/* Nav links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}
.nav-links li {
  position: relative;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.95rem;
}
.nav-links a:hover {
  color: #e50914;
}

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #222;
  padding: 0.5rem 0;
  list-style: none;
  min-width: 200px;
}
.dropdown li a {
  display: block;
  padding: 0.5rem 1rem;
}
.nav-links li:hover .dropdown {
  display: block;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
}

/* ===== MOBILE STYLES ===== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li {
    text-align: center;
    padding: 0.5rem 0;
  }
  .dropdown {
    position: static;
    background: #222;
    width: 100%;
    display: none;
  }
  .dropdown.active {
    display: block;
  }
  .logo-img {
    height: 120px;
    top: -35px;
    left: 0;
  }
}




/* ===== MARQUEE WRAPPER ===== */
.marquee-wrapper {
  text-align: center;
  margin: 0.5rem 0;
}

/* ===== PILL MARQUEE STRIP ===== */
.marquee-container {
  background: linear-gradient(90deg, #e50914, #b1060f);
  color: #fff;
  overflow: hidden;
  display: inline-block;
  padding: 0.4rem 1.5rem;
  border-radius: 30px;   /* pill shape */
  position: relative;
  white-space: nowrap;
}

/* ===== FLOWING MARQUEE TEXT ===== */
.marquee-text {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-left: 100%; /* start off-screen */
  animation: marqueeFlow 12s linear infinite;
}

@keyframes marqueeFlow {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.hero {
  position: relative;
  height: 100vh;
  background: url("../assets/images/hero-bg.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden; /* ensures overlay stays inside */
}

/* Overlay sits between bg and text */
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    to bottom,
    rgb(0, 0, 0) 0%,      /* top transparent */
    rgba(0, 0, 0, 0.736) 50%,   /* middle faint */
    rgba(0, 0, 0, 0.548) 100%   /* bottom darker */
  );
  z-index: 1; /* below text */
}

/* Content sits above overlay */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}


.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.brand-white {
  color: #fff;
}

.brand-red {
  color: #e50914;
}

.hero-subtext {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.hero-phone {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.hero-phone a {
  color: #e50914;
  font-weight: bold;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  display: inline-block;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center; /* This centers the text horizontally within the button */
  text-align: center; /* This ensures text alignment is centered */
}

.btn-primary {
  background: linear-gradient(90deg, #ff6600, #cc5500); /* dark orange */
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  text-align: center;
  display: inline-block;
  width: auto;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #ff8533, #ff6600);
  transform: scale(1.05);
}

.btn-secondary {
  background: linear-gradient(90deg, #e50914, #b1060f);
  color: #fff;
  padding: 1.25rem 2.5rem;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: linear-gradient(90deg, #ff1e28, #e50914);
  transform: scale(1.05);
}

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero-subtext {
    font-size: 1rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-content {
    padding: 0 1rem;
  }
  .hero-buttons {
    padding: 0 1rem;
  }
  .hero-buttons a {
    max-width: 300px;
    width: 100%;
  }
}


.hero-phone {
  font-size: 1.3rem;
  margin: 1rem 0;
}

.hero-phone a {
  color: #e50914;
  font-weight: bold;
  text-decoration: none;
}

.hero-phone a:hover {
  text-decoration: underline;
}

.hero-trust {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #ddd;
}

.hero-sales {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}
/* ===== NAVBAR ===== */
nav {
  background: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: fixed;       /* make navbar fixed */
  top: 0;                /* stick to the top */
  left: 0;
  width: 100%;           /* full width */
  z-index: 1000;         /* make sure it stays above sections */
}


/* Add spacing below fixed navbar */
body {
  padding-top: 70px; /* adjust based on navbar height */
}






/* ===== SERVICES SECTION ===== */
.services {
  padding: 4rem 2rem;
  background: #f8f9fa;
  color: #111;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: #555;
}

/* Grid layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Service cards */
.service-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.service-card h3 {
  font-size: 1.5rem;
  color: #e50914;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  color: #333;
}

.service-link {
  display: inline-block;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(90deg, #e50914, #b1060f);
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.service-link:hover {
  background: #ff1e28;
}


/* ===== SERVICES SECTION ===== */
.services {
  padding: 4rem 2rem;
  background: #111;
  color: #fff;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #e50914;
}

.section-subtitle {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  color: #ccc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #1a1a1a;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  font-size: 1.5rem;
  margin: 1rem;
}

.service-card a {
  color: #e50914;
  text-decoration: none;
  transition: color 0.3s;
}

.service-card a:hover {
  color: #ff3333;
}

.service-card p {
  margin: 0 1rem 1.5rem 1rem;
  font-size: 1rem;
  color: #ddd;
  line-height: 1.6;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(229, 9, 20, 0.5);
}
/* Animation */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}



/* Container override to remove any inherited card styling */
.service-info {
  grid-column: span 2;           /* span two columns in the grid */
  background: #f9f9f9;           /* soft neutral background */
  border-radius: 12px;           /* rounded corners */
  padding: 2rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease;
}

/* Remove hover effects from other card styles */
.service-info:hover {
  transform: translateY(0);      /* optional: subtle hover effect */
}

/* Header + 24/7 badge */
.service-info-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.service-info-header h3 {
  margin: 0;
  color: #e50914;
  font-size: 1.3rem;
}
.badge-24-7 {
  background: #e50914;
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
}

/* Description */
.service-info-desc {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #333;
  font-size: 0.95rem;
}

/* Phone buttons - pill style with hover */
.service-info-phones {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.service-info-phones a {
  padding: 0.6rem 1.5rem;
  border: 2px solid #e50914;
  color: #e50914;
  border-radius: 50px; /* pill shape */
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.service-info-phones a:hover {
  background: #e50914;
  color: #fff;
  border-color: #e50914;
}

/* Status text */
.service-info-status {
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .service-info {
    grid-column: span 1;  /* single column on mobile */
  }
  .service-info-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .service-info-phones {
    justify-content: flex-start;
  }
}



.about-section {
  background: #f9f9f9;
  padding: 4rem 2rem;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #111;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #333;
}

.about-text ul {
  margin: 1rem 0;
  padding-left: 1.2rem;
}

.about-text ul li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #222;
}

.cta-btn {
  display: inline-block;
  margin-top: 1.5rem;
  background: linear-gradient(90deg, #e50914, #b1060f);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 40px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #ff1e28;
}

/* ===== IMAGE COLLAGE ===== */
.about-image {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.about-image img {
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

.main-img {
  width: 100%;
}

.small-img {
  position: absolute;
  width: 40%;
  border: 4px solid #fff;
}

.small-img-1 {
  top: 0%;
  right: -10%;
}

.small-img-2 {
  bottom: -10%;
  left: -10%;
}




.areas-section {
  background: #f4f4f4;
  padding: 4rem 2rem;
  text-align: center;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

.area-group h3 {
  font-size: 1.25rem;
  color: #111;
  margin-bottom: 0.5rem;
}

.area-group ul {
  list-style: none;
  padding-left: 0;
}

.area-group ul li {
  margin-bottom: 0.4rem;
  font-size: 1rem;
  color: #555;
}

.area-group ul li a {
  text-decoration: none;
  color: #555;
  transition: color 0.3s;
}

.area-group ul li a:hover {
  color: #e50914;
}

.areas-map {
  margin: 2rem 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.areas-section .cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #e50914, #b1060f);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 40px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.areas-section .cta-btn:hover {
  background: #ff1e28;
}


.areas-section {
  background: #f4f4f4;
  padding: 4rem 2rem;
  text-align: center;
}

.areas-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  color: #e50914;
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 3rem;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  justify-items: center; /* centers each group */
}

.area-group {
  text-align: left;
  width: 100%;
}

.area-group h3 {
  font-size: 1.25rem;
  color: #111;
  margin-bottom: 0.5rem;
}

.area-group ul {
  list-style: none;
  padding-left: 0;
}

.area-group ul li {
  margin-bottom: 0.4rem;
  font-size: 1rem;
  color: #555;
}

.area-group ul li a {
  text-decoration: none;
  color: #555;
  transition: color 0.3s;
}

.area-group ul li a:hover {
  color: #e50914;
}

.areas-map {
  margin: 2rem auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  max-width: 1000px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.areas-map.expanded {
  width: 100%;
  height: 600px;
}

.areas-section .cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #e50914, #b1060f);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 40px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  margin-top: 1.5rem;
}

.areas-section .cta-btn:hover {
  background: #ff1e28;
}




.appointment-section .cta-btn {
  color: #fff !important;  /* force white text */
  background: linear-gradient(90deg, #e50914, #b1060f);
}

.appointment-section .cta-btn:hover {
  background: #ff1e28;
  color: #fff;  /* ensure text stays white on hover */
}




.appointment-section {
  display: flex;
  align-items: stretch; /* both sides full height */
  background: linear-gradient(135deg, #111 0%, #222 100%);
  color: #b6a8a8;
  padding: 0; 
  height: 600px; /* adjust as needed */
}

.appointment-container {
  display: flex;
  width: 100%;
  flex-wrap: nowrap;
  height: 100%;
}

.appointment-info {
  flex: 1;
  padding: 2rem 3rem; /* tighter padding for cleaner layout */
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertically center */
  max-width: 600px; /* keeps text from stretching too wide */
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.appointment-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.appointment-info h3 {
  font-size: 1.1rem;
  margin: 0.5rem 0;
  font-weight: 600;
  color: #ff5555;
}

.appointment-info p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: #ddd;
}

.appointment-info a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.appointment-info a:hover {
  color: #ff3333;
}

.cta-btn {
  display: inline-block;
  margin-top: 1rem;
  background: linear-gradient(90deg, #e50914, #b1060f);
  color: #fff;
  padding: 0.7rem 1.5rem; /* slightly smaller */
  border-radius: 40px;
  font-size: 1rem; /* smaller font */
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  align-self: flex-start; /* align button to the left */
}

.cta-btn:hover {
  background: #ff1e28;
}

.appointment-image {
  flex: 1;
  height: 100%;
  overflow: hidden;
}

.appointment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills entire right side */
}





/* Responsive adjustments */
@media (max-width: 992px) {
  .appointment-section {
    height: auto; /* let it expand naturally */
    padding: 2rem 1rem;
  }

  .appointment-container {
    flex-direction: column; /* stack text above image */
    flex-wrap: wrap;
    height: auto;
  }

  .appointment-info {
    max-width: 100%;
    padding: 1.5rem;
    text-align: center;
    background: none; /* remove gradient overlay on mobile */
  }

  .appointment-info h2 {
    font-size: 1.8rem;
  }

  .appointment-info h3 {
    font-size: 1rem;
  }

  .appointment-info p {
    font-size: 0.95rem;
  }

  .cta-btn {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    align-self: center; /* center button */
  }

  .appointment-image {
    width: 100%;
    height: 250px; /* reasonable height for mobile */
    margin-top: 1rem;
  }

  .appointment-image img {
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }
}










/* ===== FOOTER ===== */
.footer {
  background: #111;
  color: #fff;
  padding: 4rem 2rem 2rem;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
}

.footer h2, .footer h4 {
  color: #e50914;
}

.footer h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 0.8rem;
}

.footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer a:hover {
  color: #e50914;
}

.footer-about {
  flex: 1 1 300px;
  min-width: 250px;
}

.footer-links,
.footer-services,
.footer-contact {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-links ul,
.footer-services ul {
  list-style: none;
  padding-left: 0;
}

.footer-links li,
.footer-services li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #aaa;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-links,
  .footer-services,
  .footer-contact {
    min-width: 100%;
  }
}








    /* ===== Back Button ===== */
    .back-btn {
      display: inline-block;
      margin: 20px;
      font-size: 1.2rem;
      text-decoration: none;
      color: #e50914;
      font-weight: bold;
    }
    .back-btn:hover {
      color: #b1060f;
    }

/* ===== HERO SECTION TWEAK ===== */
.hero {
  display: flex;
  align-items: flex-start; /* push content to top instead of middle */
  justify-content: center;
  padding-top: 20px;  /* reduced to minimize space between nav and hero content */
  padding-bottom: 80px;
}

.hero-content {
  max-width: 900px;
  text-align: center;
}


    /* ===== SERVICE DETAILS SECTION ===== */
    .service-details-container {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      max-width: 1200px;
      margin: 50px auto;
      padding: 0 20px;
    }
    .service-details-text {
      flex: 1;
      min-width: 300px;
      margin-right: 20px;
    }
    .service-details-text h2 {
      font-size: 2rem;
      color: #e50914;
      margin-bottom: 15px;
    }
    .service-details-text p {
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 20px;
    }
    .service-details-text .cta-btn {
      background: #e50914;
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      font-weight: bold;
      text-decoration: none;
      display: inline-block;
    }
    .service-details-text .cta-btn:hover {
      background: #b1060f;
    }
    .service-details-image {
      flex: 1;
      min-width: 300px;
    }
    .service-details-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px;
    }

    /* Enhanced Info Sections */
    .info-section {
      background: #111;
      border: 1px solid #333;
      border-radius: 10px;
      padding: 20px;
      margin-bottom: 20px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    }
    .info-section h3 {
      color: #e50914;
      font-size: 1.5rem;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
    }
    .info-section h3::before {
      content: '';
      width: 20px;
      height: 20px;
      margin-right: 10px;
      background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEyIDJDMTMuMSAyIDE0IDIuOSAxNCA0VjIwQzE0IDIxLjEgMTMuMSAyMiAxMiAyMkMxMC45IDIyIDEwIDIxLjEgMTAgMjBWNFMxMC45IDIgMTIgMlpNMTMgOEgzVjEwSDEzVjhaIiBmaWxsPSIjZTUwOTE0Ii8+Cjwvc3ZnPgo=') no-repeat center;
      background-size: contain;
    }
    .info-section p {
      margin-bottom: 15px;
      line-height: 1.6;
    }
    .info-section ul {
      list-style: none;
      padding-left: 0;
    }
    .info-section li {
      background: #222;
      margin-bottom: 10px;
      padding: 10px;
      border-radius: 5px;
      border-left: 4px solid #e50914;
    }
    .info-section li strong {
      color: #fff;
    }

    /* FAQ Section */
    .faq-section {
      background: #111;
      border: 1px solid #333;
      border-radius: 10px;
      padding: 20px;
      margin-bottom: 20px;
    }
    .faq-section h3 {
      color: #e50914;
      font-size: 1.5rem;
      margin-bottom: 15px;
      text-align: center;
    }
    .faq-item {
      margin-bottom: 15px;
    }
    .faq-item h4 {
      color: #fff;
      font-size: 1.2rem;
      margin-bottom: 5px;
    }
    .faq-item p {
      color: #ccc;
      line-height: 1.5;
    }

    /* ===== RELATED SERVICES ===== */
    .related-services {
      text-align: center;
      margin: 50px 0;
    }
    .related-services h3 {
      color: #e50914;
      margin-bottom: 20px;
    }
    .related-services ul {
      list-style: none;
      padding: 0;
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
    }
    .related-services ul li a {
      padding: 10px 20px;
      border-radius: 50px;
      background: #111;
      color: #fff;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    .related-services ul li a:hover {
      background: #e50914;
    }

    /* ===== FOOTER ===== */
    .service-footer {
      background-color: #111;
      color: #fff;
      padding: 40px 20px;
    }
    .service-footer h2,
    .service-footer h4 {
      color: #e50914;
      margin-bottom: 15px;
    }
    .service-footer p,
    .service-footer a {
      color: #fff;
      text-decoration: none;
    }
    .service-footer a:hover {
      text-decoration: underline;
    }
    .service-footer .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.2);
      padding-top: 15px;
      margin-top: 15px;
      text-align: center;
    }

    /* ===== RESPONSIVE ===== */
    @media screen and (max-width: 768px) {
      .service-details-container {
        flex-direction: column;
      }
      .service-details-text {
        margin-right: 0;
        margin-bottom: 20px;
      }
    }


    

/* Service Details Section */
.service-details {
  padding: 0; /* remove section padding so it goes edge to edge */
}

.service-details-container {
  display: flex;
  flex-wrap: wrap;
  min-height: 80vh; /* keeps it tall enough */
}

/* Left: Text Column */
.service-details-text {
  flex: 1 1 50%;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #000; /* match site background */
  color: #fff;
}

/* Right: Full-height Image */
.service-details-image {
  flex: 1 1 50%;
}

.service-details-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills area without stretching */
  display: block;
}

@media (max-width: 768px) {
  .service-details-container {
    flex-direction: column;
  }

  .service-details-text {
    padding: 30px;
  }

  .service-details-image img {
    height: 300px; /* nice fixed height for mobile */
  }
}
/* ===== SERVICE HERO ===== */
.service-hero {
  position: relative;
  background: url("assets/images/breakdown-recovery-hero.jpeg") no-repeat center center/cover;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.service-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6); /* dark overlay for readability */
}

.service-hero-content {
  position: relative;
  max-width: 900px;
  z-index: 2;
}

.service-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.service-hero p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.service-hero .hero-phone a {
  color: #fff;
  font-weight: bold;
  text-decoration: underline;
}

.service-hero .hero-buttons {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.service-hero .btn-primary,
.service-hero .btn-secondary {
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}

.service-hero .btn-primary {
  background: #e50914;
  color: #fff;
}

.service-hero .btn-primary:hover {
  background: #b1060f;
}

.service-hero .btn-secondary {
  background: #fff;
  color: #111;
}

.service-hero .btn-secondary:hover {
  background: #ddd;
}

/* Responsive */
@media (max-width: 768px) {
  .service-hero h1 {
    font-size: 1.8rem;
  }
  .service-hero p {
    font-size: 1rem;
  }
}




/* ===== HERO BACKGROUNDS FOR ALL SERVICES ===== */

/* Breakdown Recovery */
body.breakdown-page .service-hero {
  background: url("../assets/images/breakdown-recovery-hero.jpeg") no-repeat center/cover;
}

/* Accident Recovery */
body.accident-page .service-hero {
  background: url("../assets/images/accident-recovery-hero.jpeg") no-repeat center/cover;
}

/* Mobile Tyre Fitting */
body.tyre-page .service-hero {
  background: url("../assets/images/mobile-tyre-fitting-hero.jpeg") no-repeat center/cover;
}

/* Jumpstart Services */
body.jumpstart-page .service-hero {
  background: url("../assets/images/jumpstart-hero.jpeg") no-repeat center/cover;
}

/* Emergency Fuel Delivery */
body.fuel-page .service-hero {
  background: url("../assets/images/fuel-delivery-hero.jpeg") no-repeat center/cover;
}

/* Flat Tyre Repair */
body.flattyre-page .service-hero {
  background: url("../assets/images/flat-tyre-hero.png") no-repeat center/cover;
}

/* Vehicle Transport */
body.transport-page .service-hero {
  background: url("../assets/images/vehicle-transport-hero.jpeg") no-repeat center/cover;
}

/* Ditch Pull-Out */
body.ditch-page .service-hero {
  background: url("../assets/images/ditch-pullout-hero.jpeg") no-repeat center/cover;
}

/* Wrong Fuel Drain */
body.wrongfuel-page .service-hero {
  background: url("../assets/images/wrong-fuel-hero.jpeg") no-repeat center/cover;
}

/* Auction Collection */
body.auction-page .service-hero {
  background: url("../assets/images/auction-collection-hero.jpeg") no-repeat center/cover;
}

/* Car Sales */
body.car-sales-page .service-hero {
  background: url("../assets/images/stoke car-hero.png") no-repeat center/cover;
}

/* ===== BREADCRUMB NAVIGATION ===== */
.breadcrumb-nav {
  background: #f8f9fa;
  padding: 0.75rem 2rem;
  border-bottom: 1px solid #dee2e6;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 0.875rem;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  padding: 0 0.5rem;
  color: #6c757d;
}

.breadcrumb-item a {
  color: #e50914;
  text-decoration: none;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #6c757d;
}

/* ===== FLOATING WHATSAPP ICON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ===== LOGO IMAGE ===== */
.logo-img {
  height: 80px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease; /* Smooth appearance */
  position: absolute;
  top: -3px; /* Adjust to position logo above navbar */
  left: 2rem;
}

/* Adjust navbar height to accommodate logo */
nav {
  min-height: 70px; /* Keep navbar height fixed */
  display: flex;
  align-items: center;
  position: relative;
}

/* Adjust body padding for fixed navbar */
body {
  padding-top: 0px; /* Increased to account for large logo above navbar */
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-section {
  background: #f9f9f9;
  padding: 4rem 2rem;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h2,
.contact-form h2 {
  color: #e50914;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.contact-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.contact-item h3 {
  color: #111;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #333;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.contact-item a {
  color: #e50914;
  text-decoration: none;
  font-weight: bold;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Contact Form Styles */
.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: #111;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e50914;
}

.submit-btn {
  background: linear-gradient(90deg, #e50914, #b1060f);
  color: #fff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
}

.submit-btn:hover {
  background: #ff1e28;
  transform: translateY(-2px);
}

.map-section {
  background: #111;
  padding: 4rem 2rem;
  text-align: center;
}

.map-section .section-title {
  color: #e50914;
  margin-bottom: 2rem;
}

.map-container {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Responsive Contact Page */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
}

