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

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

.logo img {
  height: 120px;
  width: auto;
  object-fit: contain;
}
body {
  font-family: "Inter", sans-serif;
  background: #0f1115;
  color: white;
  overflow-x: hidden;
}

.light-mode {
  background: #f7f8fb;
  color: #111111;
}

.light-mode nav {
  background: rgba(255, 255, 255, 0.92);
}

.light-mode .nav-links a {
  color: #111111;
}

.light-mode .nav-links a:hover,
.light-mode .quote-btn:hover,
.light-mode .btn:hover {
  color: #d32f2f;
}

.light-mode .hero {
  background:
    linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.65)),
    url("images/Car.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.light-mode .hero p,
.light-mode .section-title p,
.light-mode .card p,
.light-mode .footer-col p,
.light-mode .footer-bottom {
  color: #4b4b4b;
}

.light-mode .card {
  background: #ffffff;
}

.light-mode .services-grid .card {
  background: rgba(248, 249, 250, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.light-mode .quote-btn,
.light-mode .btn,
.light-mode .badge.popular {
  background: #d32f2f;
  color: white;
}

.light-mode .services-grid .card {
  background: linear-gradient(
    135deg,
    rgba(248, 250, 255, 0.9),
    rgba(240, 245, 255, 0.85)
  );
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-left: 4px solid #d32f2f;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.light-mode .services-grid .card:hover {
  box-shadow: 0 16px 48px rgba(211, 47, 47, 0.2);
  border-left-color: #ff6b6b;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 1),
    rgba(248, 252, 255, 0.95)
  );
}

.light-mode .services-grid .card h4 {
  color: #1a1a1a;
}

.light-mode .services-grid .card p {
  color: #5a5a5a;
}

.light-mode .pricing-grid .card {
  background: linear-gradient(
    135deg,
    rgba(248, 250, 255, 0.9),
    rgba(240, 245, 255, 0.85)
  );
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-left: 4px solid #d32f2f;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.light-mode .pricing-grid .card:hover {
  box-shadow: 0 16px 48px rgba(211, 47, 47, 0.2);
  border-left-color: #ff6b6b;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 1),
    rgba(248, 252, 255, 0.95)
  );
}

.light-mode .pricing-grid .card h4 {
  color: #1a1a1a;
}

.light-mode .pricing-grid .card p {
  color: #5a5a5a;
}

.light-mode .reviews-grid .card {
  background: linear-gradient(
    135deg,
    rgba(248, 250, 255, 0.9),
    rgba(240, 245, 255, 0.85)
  );
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-left: 4px solid #d32f2f;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.light-mode .reviews-grid .card:hover {
  box-shadow: 0 16px 48px rgba(211, 47, 47, 0.2);
  border-left-color: #ff6b6b;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 1),
    rgba(248, 252, 255, 0.95)
  );
}

.light-mode .reviews-grid .card p,
.light-mode .review {
  color: #5a5a5a;
}

.light-mode .review span {
  color: #d32f2f;
}

.light-mode .price {
  color: #d32f2f;
}

.light-mode .quote-btn-card.secondary-btn {
  background: #d32f2f;
  color: white;
}

.light-mode .quote-btn-card.secondary-btn:hover {
  background: #b71c1c;
}

.light-mode .quote-btn-card.popular-btn {
  background: #d32f2f;
  color: white;
}

.light-mode .quote-btn-card.popular-btn:hover {
  background: #b71c1c;
}

.light-mode .theme-toggle {
  background: rgba(255, 255, 255, 0.14);
  color: #111111;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.light-mode .footer {
  background: #ffffff;
}

nav {
  position: flex;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  padding: 18px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav h1 {
  font-size: 1.7rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: white;
  transition: 0.3s;
  font-weight: 500;
}

.nav-links a:hover {
  color: red;
}

.theme-toggle {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 14px 24px;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  min-width: 64px;
  line-height: 1;
  transition: 0.3s;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.18);
}

.quote-btn {
  background: red;
  color: white;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.quote-btn:hover {
  background: red;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

.hero {
  height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65)),
    url("images/Car.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.hero-content {
  max-width: 700px;
}

.hero h2 {
  font-size: 4rem;
  margin-bottom: 20px;
}

.hero p {
  color: #d1d1d1;
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  background: red;
  border-radius: 10px;
  color: white;
  text-decoration: none;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

section {
  padding: 100px 8%;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h3 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.section-title p {
  color: #bdbdbd;
}

.showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.showcase img {
  width: 100%;
  border-radius: 20px;
}

.services-grid,
.pricing-grid,
.reviews-grid {
  display: grid;
  gap: 25px;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  justify-items: center;
}

.pricing-grid,
.reviews-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: #171b22;
  padding: 30px;
  border-radius: 18px;
  transition: 0.3s;
  width: 100%;
  max-width: 520px;
}

.services-grid .card {
  background: linear-gradient(
    135deg,
    rgba(30, 35, 45, 0.5),
    rgba(23, 27, 34, 0.4)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid red;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.services-grid .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(255, 0, 0, 0.15);
  border-left-color: #ff4444;
  background: linear-gradient(
    135deg,
    rgba(40, 45, 55, 0.6),
    rgba(30, 35, 44, 0.5)
  );
}

.services-grid .card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.services-grid .card p {
  color: #d1d1d1;
  font-size: 0.95rem;
  line-height: 1.7;
}

.pricing-grid .card {
  background: linear-gradient(
    135deg,
    rgba(30, 35, 45, 0.5),
    rgba(23, 27, 34, 0.4)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid red;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.pricing-grid .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(255, 0, 0, 0.15);
  border-left-color: #ff4444;
  background: linear-gradient(
    135deg,
    rgba(40, 45, 55, 0.6),
    rgba(30, 35, 44, 0.5)
  );
}

.pricing-grid .card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.reviews-grid .card {
  background: linear-gradient(
    135deg,
    rgba(30, 35, 45, 0.5),
    rgba(23, 27, 34, 0.4)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid red;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.reviews-grid .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(255, 0, 0, 0.15);
  border-left-color: #ff4444;
  background: linear-gradient(
    135deg,
    rgba(40, 45, 55, 0.6),
    rgba(30, 35, 44, 0.5)
  );
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }
}

@media (max-width: 760px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.card:hover {
  transform: translateY(-5px);
}

.card h4 {
  margin-bottom: 15px;
}

.card p {
  color: #c7c7c7;
  line-height: 1.6;
}

.badge {
  background: rgb(20, 188, 20);
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 15px;
  font-size: 0.8rem;
}

.badge.popular {
  background: red;
  color: white;
}

.quote-btn-card {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 0;
  width: 100%;
  text-align: center;
  border-radius: 10px;
  text-decoration: none;
}

.quote-btn-card.secondary-btn {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.quote-btn-card.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.14);
}

.quote-btn-card.popular-btn {
  background: red;
  color: white;
}

.quote-btn-card.popular-btn:hover {
  background: darkred;
}

.price {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 700;
}

.review {
  font-style: italic;
}

.review span {
  display: block;
  margin-top: 15px;
  color: red;
  font-weight: 600;
}

form {
  max-width: 900px;
  margin: auto;
  background: rgba(23, 27, 34, 0.98);
  padding: 45px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
}

.quote-form .form-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quote-form .form-grid.form-grid-2 {
  grid-template-columns: repeat(2, minmax(260px, 1fr));
}

.input-label {
  display: block;
  margin-bottom: 8px;
  color: #b9b9b9;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.form-group {
  margin-bottom: 20px;
}

input,
select {
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 17, 21, 0.92);
  color: white;
}

input[readonly] {
  cursor: pointer;
}

input:focus,
select:focus {
  outline: none;
  border-color: red;
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.12);
}

.time-picker,
.calendar-picker {
  margin-top: 14px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(10, 12, 16, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.time-picker.hidden,
.calendar-picker.hidden {
  display: none;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  color: #ffffff;
}

.calendar-header button {
  border: none;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  cursor: pointer;
}

.calendar-header button:hover {
  background: rgba(255, 255, 255, 0.12);
}

.calendar-days,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.time-slot {
  padding: 12px 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.time-slot:hover {
  background: rgba(255, 255, 255, 0.12);
}

.calendar-day,
.calendar-date {
  text-align: center;
  font-size: 0.8rem;
  color: #bdbdbd;
}

.calendar-day {
  font-weight: 700;
}

.calendar-date {
  padding: 10px 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.calendar-date.disabled {
  opacity: 0.3;
  pointer-events: none;
}

.calendar-date.selected {
  background: red;
  color: white;
}

.booking-submit {
  margin-top: 10px;
  width: 100%;
  padding: 18px 0;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .quote-form .form-grid,
  .quote-form .form-grid.form-grid-2 {
    grid-template-columns: 1fr;
  }
}

footer {
  background: #0b0d10;
  padding: 40px 30px 30px;
  color: #d6d6d6;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.footer-logo {
  width: 120px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.footer-tagline {
  max-width: 560px;
  font-size: 0.95rem;
  color: #bcbcbc;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 32px;
  text-align: left;
}

.footer-col h4 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 1rem;
}

.footer-col a,
.footer-col p {
  display: block;
  color: #bdbdbd;
  margin-bottom: 10px;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
  font-size: 0.9rem;
  color: #8f8f8f;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h2 {
    font-size: 2.8rem;
  }

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

  .hero {
    padding: 0 5%;
  }

  section {
    padding: 60px 5%;
  }

  .section-title h3 {
    font-size: 2rem;
  }

  .menu-toggle {
    display: block;
  }

  .quote-btn,
  .theme-toggle {
    display: none;
  }

  nav {
    padding: 15px 5%;
  }

  .logo img {
    height: 80px;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    right: 5%;
    flex-direction: column;
    background: #171b22;
    width: 220px;
    padding: 25px;
    border-radius: 16px;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .services-grid,
  .pricing-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .card {
    max-width: 100%;
  }

  .price {
    font-size: 1.5rem;
  }

  .quote-form .form-grid,
  .quote-form .form-grid.form-grid-2 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-logo {
    width: 100px;
  }

  .footer-tagline {
    font-size: 0.9rem;
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero h2 {
    font-size: 2rem;
  }

  .section-title h3 {
    font-size: 1.5rem;
  }

  .card h4 {
    font-size: 1rem;
  }

  .price {
    font-size: 1.3rem;
  }

  .menu-toggle {
    font-size: 1.5rem;
  }

  nav {
    padding: 12px 5%;
  }

  section {
    padding: 40px 5%;
  }

  .footer-col h4 {
    font-size: 0.9rem;
  }

  .footer-col a,
  .footer-col p {
    font-size: 0.85rem;
  }
}

@media (min-width: 1200px) {
  section {
    padding: 120px 12%;
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(280px, 1fr));
  }

  .quote-form .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
