* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lexend", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "reddit sans", sans-serif;
}

.navbar {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 99999;
}

.nav-container {
  position: relative;
  z-index: 5;
  max-width: 1600px;
  width: 90%;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #103b65;
  backdrop-filter: blur(1px);
  height: 60px;
  margin-top: 40px;
}

/* Logo */
.logo_nav img {
  width: 50px;
  height: 50px;
  margin-top: 4px;
}

/* Menu */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 60px;
}

.nav-menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

/* Contact Button */
.nav-btn {
  margin-top: -1px;
  background: #9a0002;
  color: #fff;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 20px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 400;
}

.nav-btn:hover {
  background: #c40000;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 5px;
  transition: 0.3s;
}

.mobile-contact-btn {
  display: none;
}

/* ============= MOBILE MENU ============= */
@media (max-width: 768px) {
  .nav-btn {
    display: none;
  }

  .nav-menu li a {
    color: black;
  }

  .nav-container {
    height: 60px !important;
    padding: 10px 10px;
    position: relative;
    z-index: 10;
    margin-top: 10px;
  }

  .nav-menu {
    border-radius: 16px;
    position: absolute;
    top: 59px;
    left: 64%; /* Center align */
    transform: translateX(-50%) translateY(-100%); /* FIX */
    width: 65%;
    max-width: 90%; /* Same width as your nav-container */
    background: white;
    flex-direction: column;
    gap: 20px;
    padding: 15px;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s ease;
    z-index: 9999;
  }

  .nav-menu.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-contact-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #9a0002;
    color: #fff;
    border-radius: 50px;
    font-size: 18px;
  }

  .hamburger {
    background: red;
    height: 45px;
    width: 45px;
    padding: 13px 8px;
    margin-right: 0px;
    border-radius: 99999px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 10000;
  }
}
/* ============= HAMBURGER ANIMATION ============= */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.line {
  max-width: 600px;
  height: 1px;
  background-color: #000000;
  margin: 40px auto;
}

.wash-hero {
  background: #ffffff;
  padding: 80px 0;
}

.wash-container {
  max-width: 1600px;
  margin: auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  gap: 60px;
  padding-top: 80px;
}

/* LEFT CONTENT */
.wash-content h1 {
  font-size: 96px;
  font-weight: 800;
  line-height: 1.1;
  color: #103b65;
  margin-bottom: 30px;
}

.wash-content p {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.1;
  color: black;
  margin-bottom: 18px;
}

/* BUTTON */
.wash-btn {
  margin-top: 18px;
  background: #a40000;
  color: #fff;
  border: none;
  padding: 10px 26px;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wash-btn:hover {
  background: #7e0000;
}

/* RIGHT IMAGE */
.wash-image img {
  width: 100%;
  max-width: 520px;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .wash-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px;
    padding-top: 60px;
  }

  .wash-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .wash-image img {
    margin: 0 auto;
  }
  .line {
    max-width: 60%;
    height: 1px;
    background-color: #000000;
    margin: 40px auto;
  }
}

@media (max-width: 576px) {
  .wash-content h1 {
    font-size: 40px;
    text-align: start;
    margin-bottom: 20px;
    line-height: 1;
  }
  .wash-content p {
    font-size: 12px;
    text-align: start;
    margin-bottom: 10px;
    line-height: 1.2;
  }
  .wash-btn {
    background: #9a0002;
    float: left;
    margin-top: 5px;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 400;
  }
  .wash-hero {
    padding: 20px 0;
  }
  .wash-image img {
    margin-top: 20px;
  }
  .wash-container {
    gap: 0px;
    padding-top: 100px;
  }
}

.why-choose {
  background: #ffffff;
  padding: 90px 0;
}

.why-container {
  max-width: 1600px;
  margin: auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 60px;
}

/* LEFT */
.why-content h2 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  color: #103b65;
  margin-bottom: 18px;
}

.why-subtext {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.1;
  color: black;
  max-width: 520px;
  margin-bottom: 22px;
}

/* PILL LIST */
.why-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
}

.why-list li svg {
  margin-right: 5px;
}

.why-list li {
  width: fit-content;
  display: flex;
  align-items: center;
  background: #103b65;
  color: #fff;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

/* spacing like screenshot */
.why-list li:not(:last-child) {
  margin-right: 6px;
}

/* FOOTER TEXT */
.why-footer {
  font-weight: 400;
  font-size: 20px;
  color: black;
  max-width: 520px;
}

/* IMAGE */
.why-image img {
  width: 100%;
  max-width: 500px;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .why-subtext,
  .why-footer {
    margin-left: auto;
    margin-right: auto;
  }

  .why-image img {
    margin: 0 auto;
  }

  .why-list li {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .why-content h2 {
    font-size: 32px;
    text-align: start;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  .gb {
    display: none;
  }
  .why-container {
    padding: 0 20px;
    gap: 30px;
  }
  .why-subtext,
  .why-footer {
    font-size: 12px;
    text-align: start;
    line-height: 1.2;
  }
  .why-list li {
    font-size: 10px;
    text-align: start;
    width: 100%;
    justify-content: start;
  }
  .why-list li svg {
    height: 18px;
    width: 18px;
  }
  .why-choose {
    padding: 40px 0;
  }
}

.car-services {
  background: #ffffff;
  padding: 90px 0;
}

.car-services-container {
  max-width: 1600px;
  margin: auto;
  padding: 0 40px;
}

/* TOP ROW */
.car-services-top {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.car-services-image img {
  max-width: 537px;
  width: 100%;
  display: block;
}

.car-services-text h2 {
  font-size: 64px;
  font-weight: 800;
  color: #103b65;
  margin-bottom: 10px;
  line-height: 1.1;
}

.car-services-text p {
  font-size: 20px;
  color: black;
  max-width: 420px;
  line-height: 1.2;
  font-weight: 400;
}

/* CARDS */
.car-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: #103b65;
  color: #ffffff;
  padding: 20px 16px;
  border-radius: 16px;
}
.ee {
  padding: 20px;
}

.service-card h3 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 10px;
}

.service-card p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.1;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .car-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .car-services-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0;
    margin-bottom: 20px;
    flex-direction: column-reverse;
  }

  .car-services-text p {
    margin: 0 auto;
  }

  .car-services-grid {
    grid-template-columns: 1fr;
  }

  .car-services-image img {
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .car-services-text h2 {
    text-align: start;
    font-size: 32px;
  }
  .car-services-text p {
    text-align: start;
    font-size: 12px;
  }
  .car-services-image img {
    width: 80%;
  }
  .car-services-container {
    padding: 0 20px;
  }

  .service-card h3 {
    font-size: 20px;
  }
  .service-card p {
    font-size: 11px;
    line-height: 1.3;
  }
  .ee {
    padding: 0 15px;
  }
  .ee li {
    font-size: 11px;
    line-height: 1.3;
  }
  .car-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.bike-services {
  background: #ffffff;
  padding: 90px 0;
}

.bike-services-container {
  max-width: 1600px;
  margin: auto;
  padding: 0 40px;
}

/* TOP */
.bike-services-top {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  justify-content: center;
}

.bike-services-text h2 {
  text-align: end;
  font-size: 64px;
  font-weight: 800;
  color: #0b3b6f;
  margin-bottom: 10px;
}

.bike-services-text p {
  font-size: 20px;
  color: #222;
  max-width: 680px;
  line-height: 1.6;
  font-weight: 500;
  text-align: end;
}

.bike-services-image img {
  max-width: 220px;
  width: 100%;
  display: block;
}

/* CARDS */
.bike-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.bike-card {
  background: #103b65;
  color: #ffffff;
  padding: 26px 22px;
  border-radius: 16px;
}

.bike-card h3 {
  line-height: 1.1;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 20px;
}

.bike-card p {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .bike-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .bike-services-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0;
    margin-bottom: 20px;
  }

  .bike-services-text p {
    margin: 0 auto;
  }

  .bike-services-image img {
    margin: 0 auto;
  }

  .bike-services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .bike-services {
    padding: 40px 0;
  }
  .bike-services-text h2 {
    text-align: end;
    font-size: 32px;
  }
  .bike-services-text p {
    text-align: end;
    font-size: 12px;
  }
  .bike-services-image img {
    width: 80%;
  }
  .bike-services-container {
    padding: 0 20px;
  }
  .bike-services-top {
    /*justify-content: flex-start;*/
  }
  .bike-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .bike-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .bike-card p {
    font-size: 10px;
    line-height: 1.3;
    font-weight: 400;
  }
  .service-card,
  .bike-card {
    padding: 15px;
  }
}

.container-bt {
  max-width: 1600px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* How It Works Section */
.section-header {
  text-align: start;
  margin-bottom: 50px;
  line-height: 1;
}

.section-header h1 {
  font-family: "reddit sans", sans-serif;
  color: #0d3b66;
  font-size: 64px;
  margin-bottom: 10px;
  font-weight: 800;
}

.section-header h2 {
  font-family: "reddit sans", sans-serif;
  color: #0d3b66;
  font-size: 64px;
  margin-bottom: 15px;
  font-weight: 800;
}

.section-header p {
  color: #000000;
  font-size: 20px;
  font-weight: 500;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

.step-card {
  background-color: #0d3b66;
  color: white;
  padding: 30px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.step-icon {
  font-size: 1.5em;
  margin-top: 5px;
}

.step-content h3 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 800;
}

.step-content p {
  font-size: 20px;
  font-weight: 400;
}

/* Divider */
.divider {
  width: 280px;
  height: 2px;
  background-color: black;
  margin: 60px auto;
}

/* Service Areas Section */
.service-areas {
  text-align: center;
  margin: 80px 0;
}

.service-areas h2 {
  color: #0d3b66;
  font-size: 64px;
  margin-bottom: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.service-areas p {
  color: #000000;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  max-width: 800px;
  margin: 0 auto;
}

/* Book Now Section */
.book-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.book-content h2 {
  color: #0d3b66;
  font-size: 64px;
  margin-bottom: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.book-content .subtitle {
  color: #000000;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.contact-btn {
  background-color: #0d3b66;
  color: white;
  padding: 10px 25px;
  border-radius: 40px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1em;
  transition: background-color 0.3s;
  width: fit-content;
}

.contact-btn:hover {
  background-color: #0a2d4d;
}

.book-content .tagline {
  color: #050505;
  font-size: 16px;
  font-weight: 400;
}

.car-image {
  text-align: center;
}

.car-image img {
  max-width: 100%;
  height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .book-section {
    grid-template-columns: 1fr;
  }

  .section-header h1,
  .section-header h2 {
    font-size: 1.8em;
  }

  .book-content h2 {
    font-size: 1.8em;
  }
}

@media (max-width: 560px) {
  .section-header h1,
  .section-header h2 {
    font-size: 32px;
  }
  .section-header p {
    font-size: 14px;
    line-height: 1.3;
  }
  .section-header {
    margin-bottom: 35px;
  }
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .step-card {
    display: flex;
    flex-direction: column;
    padding: 15px;
    gap: 0;
  }
  .step-content h3 {
    font-size: 20px;
  }
  .step-content p {
    font-size: 11px;
  }
  .service-areas {
    text-align: center;
    margin: 50px 0;
  }

  .service-areas h2 {
    font-size: 24px;
  }
  .service-areas p {
    font-size: 12px;
  }
  .service-areas svg {
    width: 35px;
    height: 40px;
  }
  .contact-btn {
    font-size: 12px;
    gap: 5px;
    padding: 5px 8px;
  }
  .contact-buttons {
    margin-bottom: 20px;
  }
  .contact-btn svg {
    height: 20px;
  }
  .book-content h2 {
    font-size: 32px;
  }
  .book-content .subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .book-section {
    gap: 20px;
  }
  .car-image img {
    max-width: 90%;
    height: auto;
  }
}

.container-faq {
  max-width: 1600px;
  margin: 0 auto;
  padding: 60px 20px;
}

.faq-header {
  text-align: center;
  color: #103b65;
  margin-bottom: 30px;
}

.faq-header h1 {
  font-size: 64px;
  margin-bottom: 5px;
  font-weight: 800;
}

.faq-header p {
  font-size: 64px;
  font-weight: 800;
  font-family: "reddit sans", sans-serif;
}

.faq-item {
  background: white;
  border-bottom: 1px solid #e5e5e5;
  margin: 0 auto;
  max-width: 1200px;
}

.faq-question {
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 32px;
  color: #000000;
  font-weight: 400;
}

.faq-question:hover {
  background: #fafafa;
}

.plus-icon {
  color: #103b65;
  font-size: 1.5em;
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.plus-icon.open {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: white;
}

.faq-answer.open {
  max-height: 500px;
  padding: 0 0 20px 0;
}

.faq-answer p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95em;
}

.cta-section {
  background: white;
  padding: 50px 0;
  text-align: left;
  margin-top: 40px;
}

.cta-section h2 {
  color: #103b65;
  font-size: 64px;
  margin-bottom: 15px;
  font-weight: 800;
  line-height: 1.3;
}

.cta-section p {
  color: #000000;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 5px;
}

.cta-section .subtitle {
  color: #000000;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 20px;
}

.book-btn {
  background: #9a0002;
  color: white;
  padding: 10px 30px;
  border: none;
  border-radius: 35px;
  font-size: 20px;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.3s ease;
}

.book-btn:hover {
  background: #a01829;
}

@media (max-width: 768px) {
  .faq-header h1 {
    font-size: 1.5em;
  }

  .faq-question {
    font-size: 0.95em;
    padding: 18px 0;
  }

  .cta-section h2 {
    font-size: 1.5em;
  }
}

@media (max-width: 560px) {
  .container-faq {
    padding: 20px 20px;
  }
  .faq-header p {
    font-size: 1.5em;
  }
  .faq-header {
    margin-bottom: 20px;
  }
  .faq-question {
    padding: 10px 0;
    font-size: 12px;
  }
  .faq-answer p {
    font-size: 12px;
  }
  .cta-section h2 {
    font-size: 32px;
  }
  .cta-section {
    margin-top: 0;
  }
  .cta-section p {
    font-size: 20px;
  }
  .cta-section .subtitle {
    font-size: 14px;
  }
  .book-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

.city-pills-container {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 20px auto;
  max-width: 1200px;
  justify-content: center;
}

.city-pill {
  display: inline-block;
  background-color: #103b65;
  color: white;
  padding: 12px 32px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.city-pill:hover {
  background-color: #2d5180;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

.city-pill:active {
  transform: translateY(0);
}
/* Mobile devices (480px and below) */
@media (max-width: 480px) {
  .city-pill {
    padding: 8px 20px;
    font-size: 12px;
    border-radius: 25px;
  }
}

/* Small mobile devices (360px and below) */
@media (max-width: 360px) {
  .city-pill {
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 20px;
  }
}
