* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}
.mobile-menu li a {
    color: #000 !important;
    text-decoration: none;
    font-size: 18px;
}
.mobile-menu a.btn.schedule-btn {
    color: #fff !important;
}
.mobile-menu-icon {
    float: right;
}
.call-btn {
    background: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 28px;
    border: solid 1px #000;
	display:none;
}
.call-btn:hover {
    border: solid 1.5px #eee;
    color: #343131;
    background: #f7eeee;
}
@media only screen and (max-width: 767px) {
  nav.nav-container.desktop-only {
    display: none;
}
.call-btn { display:block;}
.mb-hide {display:none !important;}
.mobile-menu-icon {
    display: block !important;
}
.mobile-nav {
    width: 100%;
}
}
/* HEADER */
.top-header {
  background: #f4e841;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 30px;
  gap: 5px;
  height: 185px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 100px;
  width: auto;
}
/* Dropdown Menu Styles */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 1px solid #ddd;
  padding: 10px 0;
  list-style: none;
  z-index: 1000;
  min-width: 150px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: black;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: #f4e841;
}

/* Show on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}
/* This controls mobile dropdown visibility */
.dropdown-menu.show {
  display: block !important;
}

/* FAQ SECTION */
.faq-section .faq-item {
  border: 1px solid #ddd;
  margin-bottom: 15px;
  border-radius: 5px;
  background-color: #f9f9f9;
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-section .faq-question {
  padding: 15px 20px;
  font-weight: bold;
  cursor: pointer;
  background-color: #f4f4f4;
  display: flex;
  align-items: center;
  font-size: 1.05rem;
}

.faq-section .faq-question:hover {
  background-color: #e8e8e8;
}

.faq-section .faq-answer {
  padding: 15px 20px;
  display: none;
  font-size: 0.98rem;
  line-height: 1.5;
  background-color: #ffffff;
  border-top: 1px solid #ddd;
}

.faq-section .checkmark {
  color: green;
  margin-right: 10px;
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 575px;
  background: url("images/van-image.png") center center/cover no-repeat;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: white;
  text-align: center;
  padding: 20px;
  max-width: 800px;
}

.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.hero-text p {
  margin: 5px 0;
  font-size: 1.2rem;
}

.hero-phone {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 15px;
}

/* NAVIGATION */
.nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  margin: 0;
}

.nav-menu a {
  text-decoration: none;
  color: black;
  font-weight: bold;
}

.schedule-btn {
  background: black;
  color: white !important;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  white-space: nowrap;
  display: inline-block;
}

/* MOBILE NAV */
.mobile-menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
  padding: 0px 13px;
  background: black;
  color: white;
  border-radius: 4px;
}

.mobile-nav {
  position: relative;
  z-index: 100;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  width: 100%;
  background: #f4e841;
  padding: 10px 0;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
}

.sub-menu {
  display: none;
  background: #fff;
  padding-left: 0;
}

.sub-menu li {
  padding: 8px 20px;
  text-align: left;
}

.sub-menu a {
  color: black;
  text-decoration: none;
  font-weight: normal;
}

.sub-menu a:hover {
  background: #f4e841;
}

.sub-menu.show {
  display: block;
}


.mobile-menu.show {
  display: flex;
}

.mobile-menu li {
  text-align: center;
  padding: 10px 0;
}

/* CALL BANNER */
.call-banner {
  background: black;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* SERVICES SECTION */
.services {
  padding: 40px 20px;
  text-align: center;
  background: #f5f5f5;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: white;
  padding: 20px;
  border: 4px solid black;
  flex: 0 1 30%;
  max-width: 300px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card img {
  width: 100%;
  height: auto;
}

.card h3 {
  margin-top: 15px;
}

.card p {
  margin: 10px 0;
  flex-grow: 1;
}

.learn-more-btn {
  display: inline-block;
  background: #f4e841;
  color: black;
  font-weight: bold;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 15px;
  text-align: center;
  transition: background 0.3s ease;
}

.learn-more-btn:hover {
  background: #e5d637;
}

/* WHY CHOOSE US */
.why-choose-us {
  padding: 60px 20px;
  background-color: #ffffff;
}

.why-choose-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  align-items: center;
}

.why-image {
  flex: 1 1 400px;
  text-align: center;
}

.why-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

.why-content {
  flex: 1 1 500px;
}

.why-content h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #1d1d1d;
}

.why-box {
  display: flex;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  margin-bottom: 20px;
  overflow: hidden;
}

.why-icon-bar {
  background-color: #f4e841;
  width: 8px;
  min-height: 100%;
}

.why-text {
  padding: 20px;
}

.why-text h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #1d1d1d;
}

.why-text p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA */
.cta {
  background: #f4e841;
  padding: 40px 20px;
  text-align: center;
}

.cta-form {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  padding: 0 20px;
}

.cta-form input[type="text"],
.cta-form input[type="email"],
.cta-form input[type="tel"],
.cta-form button {
  height: 60px;
  font-size: 1rem;
  padding: 0 20px;
  min-width: 250px;
  max-width: 100%;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

.cta-form button {
  background-color: black;
  color: white;
  font-weight: bold;
  cursor: pointer;
  border: none;
  transition: background 0.3s ease;
}

.cta-form button:hover {
  background-color: #333;
}


.form-input {
  height: 60px;
  font-size: 1rem;
  padding: 0 20px;
  min-width: 250px;
  max-width: 100%;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}



/* TESTIMONIALS */
.testimonials {
  background: #fff;
  padding: 60px 20px 80px;
  text-align: center;
}

.testimonials span {
  color: #f3cb19;
}

.testimonial-slider {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.testimonial-slide {
  flex: 0 0 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 10px;
}

.testimonial {
  background: #fafafa;
  padding: 30px;
  margin: 10px auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  max-width: 600px;
}

.testimonial p {
  margin-bottom: 10px;
}

.testimonial strong {
  display: block;
  margin-top: 10px;
}

/* FOOTER */
.site-footer {
  background-color: #1d1d1d;
  color: white;
  padding: 50px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-logo-social {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 30px;
}

.footer-logo {
  max-width: 200px;
  margin: 0 0 20px 0;
}

.footer-links {
  display: flex;
  flex: 3 1 700px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 20px;
}

.footer-column {
  flex: 1 1 200px;
  margin: 10px;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  border-bottom: 2px solid #f4e841;
  padding-bottom: 5px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-column p,
.footer-column a {
  color: white;
  font-size: 0.95rem;
  line-height: 1.5;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  color: white;
  font-size: 36px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #f4e841;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 1.5rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-phone {
    font-size: 1.2rem;
  }

  .card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .cta-form {
    flex-direction: column;
  }

  .cta-form input,
  .cta-form button {
    max-width: 300px;
    width: 100%;
  }

  .why-choose-container {
    flex-direction: column;
    align-items: center;
  }

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

  .why-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo-social {
    align-items: center;
    text-align: center;
  }

  .footer-column .social-icons {
    justify-content: center;
  }
}
