body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background: #f4f4f4;
  color: #333;
}

header.modern-header {
  background-color: #ffffff;
  padding: 15px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.logo a {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

.logo a span {
  color: #26b326;
}

.logo small {
  display: block;
  font-size: 0.7rem;
  color: #888;
  font-weight: 400;
  margin-top: 2px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: background 0.3s, color 0.3s;
}

nav ul li a:hover {
  background-color: #26b326;
  color: #fff;
}

.contact-number {
  font-weight: 600;
  color: #26b326;
  white-space: nowrap;
}

/* Hamburger Menu Styling */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #26b326;
  border-radius: 2px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  nav {
    display: none;
    width: 100%;
    margin-top: 10px;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    background-color: #ffffff;
    padding: 10px 0;
  }

  .container.header {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-number {
    align-self: flex-end;
    margin-top: 10px;
  }
}


.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #26b326;
}

.logo a {
  color: #26b326;
  text-decoration: none;
}


nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

nav ul li a {
  color: #26b326;
  text-decoration: none;
  font-weight: 500;
}

.contact-number {
  font-size: 1rem;
  white-space: nowrap;
  color: #26b326;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.menu-toggle div {
  width: 25px;
  height: 3px;
  background-color: #26b326;
}

@media (max-width: 600px) {
  .container.header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    display: none;
    width: 100%;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .menu-toggle {
    display: flex;
  }

  .contact-number {
    margin-top: 10px;
  }
}

.hero.custom-hero {
  background: url('img/img_home_repair.png') top/cover no-repeat;
  padding: 130px 20px;
  color: white;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 600px;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 10px;
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.hero-form input,
.hero-form textarea {
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

.hero-form textarea {
  resize: vertical;
  min-height: 80px;
}

.hero-form button {
  background-color: #26b326;
  color: black;
  border: none;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.hero-form button:hover {
  background-color: #3ac63a;
}

.form-intro {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  margin-bottom: 20px;
  color: #333;
  background: #fff;
}

.form-intro h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #26b326;
}

video {
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.video-section,
.importance,
.service-areas,
.how-it-works,
.reviews,
.faq,
.contact-info,
.contact-form,
.service-list {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  background: #fff;
  margin-bottom: 20px;
  color: #333;
}

.video-section h2,
.importance h2,
.how-it-works h2,
.faq h2,
.contact-info h1,
.contact-form h2,
.service-list h1 {
  text-align: center;
  margin-bottom: 20px;
  color: #26b326;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  text-align: center;
}

.grid div {
  background: #e9eae9;
  padding: 15px;
  border-radius: 10px;
  font-weight: 500;
  color: #616261;
}

ol li {
  margin-bottom: 10px;
}

.faq details {
  margin-bottom: 10px;
  border-bottom: 1px solid #26b326;
  padding: 10px 0;
}

footer {
  background: #ffffff;
  color: #333;
  padding: 30px 20px;
  border-top: 1px solid #ddd;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.footer-container h4,
.footer-container h3 {
  margin-bottom: 10px;
  color: #26b326;
}

.footer-container ul {
  list-style: none;
  padding: 0;
}

.footer-container ul li a {
  color: #26b326;
  text-decoration: none;
  font-size: 0.9rem;
}



.why-choose-us {
  max-width: 1200px;
  margin: 0 auto 20px;
  background: #fff;
  padding: 30px 20px;
  color: #333;
}

.why-choose-us h2 {
  text-align: center;
  color: #26b326;
  margin-bottom: 20px;
}

.why-choose-us ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.why-choose-us li {
  margin-bottom: 10px;
  font-weight: 500;
}

.flow-diagram {
  text-align: center;
  padding: 40px 20px;
  background: #fff;
}

.flow-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.flow-step {
  background: #e0e0e0;
  color: #333;
  border-radius: 10px;
  padding: 20px;
  width: 150px;
  text-align: center;
  position: relative;
  flex-shrink: 0;
}

.flow-step span {
  display: block;
  background-color: #26b326;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin: 0 auto 10px;
  line-height: 30px;
}

.arrow {
  font-size: 24px;
  color: #26b326;
}

@media (max-width: 768px) {
  .flow-container {
    flex-direction: column;
  }

  .arrow {
    transform: rotate(90deg);
  }
}

.icon-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.icon-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 1rem;
}

.icon-list img {
  width: 28px;
  height: 28px;
}

.review-slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.review-slider {
  display: flex;
  gap: 20px;
  animation: scrollReviews 30s linear infinite;
  width: max-content;
}

.review {
  min-width: 250px;
  background: #e0e0e0;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  color: #333;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

@keyframes scrollReviews {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.service-list {
  background: #fdfdfd;
  padding: 60px 20px;
  text-align: center;
}

.service-list h1 {
  color: #000000;
  font-size: 2rem;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.service-box {
  background: white;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #26b326;
  text-align: left;
}

.service-box h3 {
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-box p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}