/* ==========================
   THEME COLORS
========================== */
:root {
  --red-1: #ff2d2d;
  --red-2: #b30000;
  --black: #0b0b0b;
  --muted: #333;
}

body.theme-redblack {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: linear-gradient(180deg, #0b0b0b 0%, #111 100%);
  color: #fff;
  margin: 0;
  min-height: 100vh;
  scroll-behavior: smooth;
}

/* ==========================
   HEADER
========================== */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
  background: linear-gradient(90deg, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
  position: sticky;
  top: 0;
  z-index: 1000;
  margin-bottom: 0;
  padding-bottom: 0;
}
.section-title {
    text-align: center;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 600;
}


.logo-wrap a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo-wrap img.logo-img {
  height: 75px;
  width: 150px;
  transition: transform 0.3s ease;
}
.logo-wrap img.logo-img:hover {
  transform: scale(1.05);
}

/* ==========================
   NAVBAR
========================== */
.navbar .nav-link {
  color: #fff !important;
  font-weight: 500;
}


.navbar .nav-link:hover {
  color: #ff2d2d !important;
}



/* Desktop navbar blends with background */
.custom-nav {
  background: transparent !important;
  border: none;
  box-shadow: none;
  padding-top: 10px;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

/* Mobile navbar solid bar */
/* Mobile View */
/* Mobile View */
@media (max-width: 768px) {
  .site-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px;
  }

  nav.custom-nav {
      padding: 0 !important;
      background: transparent !important;
  }

  nav.custom-nav .nav-link {
      padding: 6px 10px;
      font-size: 14px;
  }
}

/* Desktop View */
@media (min-width: 769px) {
  nav.custom-nav {
      background: transparent !important;
  }

  nav.custom-nav .nav-link {
      padding: 8px 16px;
      font-size: 16px;
  }
}



/* ==========================
   HERO SECTION
========================== */
.hero-section {
    padding-left: 28px !important;
    text-align: left;
    margin-top: 20px;
    max-width: 600px;
}
.hero-section .hero-left {
  margin-left: 0;
  max-width: 600px;
}

.hero-section h1 {
  color: #ff2d2d;
  margin: 0 0 5px 0;
  font-size: 3rem;
  line-height: 1.1;
}
.hero-section p {
  margin-top: 5px !important;
  font-size: 1.1rem;
}

/* ==========================
   SERVICE CARDS
========================== */
.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 20px;
}
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  padding: 20px;
  border-radius: 10px;
  width: 280px;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 10px rgba(255,0,0,0.4);
}
.card h3 {
  color: #ff4d4d;
  margin-bottom: 6px;
}
.card p {
  font-size: 15px;
  color: #ddd;
}
.service-points {
  list-style: none;
  padding: 0;
  margin: 10px 0 15px;
}
.service-points li {
  border-left: 3px solid #ff2d2d;
  padding: 6px 10px;
  border-radius: 4px;
  margin-bottom: 6px;
}

/* ==========================
   BUTTONS
========================== */
.btn-book,
.btn-paydone,
.btn-home {
  display: inline-block;
  background: #ff2d2d;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}
.btn-book:hover,
.btn-paydone:hover,
.btn-home:hover {
  background: #b30000;
  transform: translateY(-2px);
}

/* ==========================
   PAYMENT PAGE
========================== */
.payment-section { text-align: center; padding: 60px 20px; }
.payment-box {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 10px;
  display: inline-block;
  box-shadow: 0 0 10px rgba(255,0,0,0.3);
}
.payment-qr { width: 220px; height: 220px; }

/* ==========================
   SUCCESS PAGE
========================== */
.success-section {
  text-align: center;
  padding: 100px 20px;
}
.success-section h2 {
  font-size: 36px;
  color: #ff4d4d;
}
.success-section p {
  font-size: 18px;
  margin-bottom: 25px;
}

/* ==========================
   FOOTER
========================== */
.site-footer {
  background-color: #000;
  text-align: center;
  padding: 15px;
  color: #ccc;
  border-top: 1px solid #222;
  margin-top: 40px;
}
footer a:hover {
  color: #ff4c4c !important;
  text-decoration: underline;
}

/* ==========================
   MISC
========================== */
input, select, textarea {
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #222;
  background: #0f0f0f;
  color: #fff;
}
.notice.success { background: #143214; color: #b7f0b7; padding: 8px; border-radius: 6px; }
.notice.error { background: #4a1212; color: #ffb7b7; padding: 8px; border-radius: 6px; }
#car-logo:hover { transform: translateY(-6px) rotate(-2deg); }

