:root {
  --bg-main: #0b0b0b;
  --bg-card: #151515;
  --accent-green: #00e676;
  --accent-purple: #7b5cff;
  --text-main: #ffffff;
  --text-muted: #bdbdbd;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #2a1616;
  flex-wrap: wrap;
  gap: 10px;
}

.navbar-brand {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 15px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 8px;
}

.navbar h1 {
  font-size: 2rem;
  margin: 0;
  background: linear-gradient(135deg, #00e676 0%, #7b5cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.navbar a {
  color: #ffffff9d;
  margin-left: 15px;
  text-decoration: none;
  white-space: nowrap;
}

.navbar ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.navbar ul li {
  margin: 0;
}

/* More Dropdown */
.more-dropdown {
  position: relative;
  display: inline-block;
}

.more-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.more-toggle .arrow {
  font-size: 10px;
  transition: transform 0.3s;
}

.more-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 6px;
  min-width: 280px;
  max-height: 400px;
  overflow-y: auto;
  z-index: 1000;
  margin-top: 5px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.more-menu.open {
  display: block;
}

.more-category {
  border-bottom: 1px solid #222;
  cursor: pointer;
}

.more-category:last-child {
  border-bottom: none;
}

.category-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  color: #fff;
  user-select: none;
  transition: background 0.3s;
}

.more-category:hover .category-title {
  background: #222;
}

.category-arrow {
  font-size: 10px;
  transition: transform 0.3s;
}

.category-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: #0a0a0a;
}

.category-content.open {
  max-height: 300px;
  overflow-y: auto;
}

.category-content p {
  padding: 8px 16px;
  margin: 0;
  color: #ccc;
  font-size: 0.85rem;
  line-height: 1.4;
}

.category-content p:last-child {
  padding-bottom: 12px;
}

.hero {
  background: url('hero-placeholder.jpg') center/cover no-repeat;
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #1a0404;
  position: relative;
}
.hero h1 { font-size: 3rem; margin: 0 20px; }
.hero p { font-size: 1.2rem; margin: 10px 0 20px; }
.hero-btn { 
  display: inline-block;
  background-color: #ff4c00; 
  color: #250505; 
  padding: 15px 30px; 
  border-radius: 8px; 
  text-decoration: none;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
  font-weight: 600;
}
.hero-btn:hover { background-color: #e04300; }
.scroll-cue { position: absolute; bottom: 20px; font-size: 2rem; animation: bounce 2s infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(10px); } }
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.feature-card {
  flex: 1 1 250px;
  max-width: 280px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  text-align: center;
  padding: 30px 20px;
  transition: transform 0.4s, box-shadow 0.4s;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

#design:hover {
  border: 2px solid var(--accent-green);
  box-shadow: 0 12px 35px rgba(76, 175, 80, 0.25);
}

#expert:hover {
  border: 2px solid var(--accent-green);
  box-shadow: 0 12px 35px rgba(76, 175, 80, 0.25);
}

.feature-card img {
  width: 140px;
  height: 140px;
  border-radius: 50%;  /* makes it a perfect circle */
  margin-bottom: 20px;
  object-fit: cover;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
  color: #222;
}

.feature-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}


/* ----- Products Section ----- */
.products {
  display: flex; flex-wrap: wrap; justify-content: center; padding: 60px 20px; background-color: #f5f5f5;
}
.product { 
  flex: 1 1 280px; 
  max-width: 300px;
  height: 420px;
  margin: 20px; 
  text-align: center; 
  background: #fff; 
  border-radius: 12px; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.product:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.product img { 
  width: 100%; 
  height: 200px;
  object-fit: cover;
  border-radius: 12px 12px 0 0; 
}
.product h4 { margin: 15px 0 10px; flex-shrink: 0; }
.product p { 
  padding: 0 10px; 
  font-size: 0.95rem; 
  color: #555;
  flex-grow: 1;
}
.shop-btn { 
  display: inline-block; 
  margin: 15px 0 20px; 
  background-color: #ff4c00; 
  color: #fff; 
  padding: 10px 20px; 
  border-radius: 6px; 
  text-decoration: none; 
  transition: background 0.3s; 
  border: none; 
  cursor: pointer;
  flex-shrink: 0;
}
.shop-btn:hover { background-color: #e04300; }

.reviews-section {
  padding: 60px 20px;
  background: #121212;
}

.reviews-section .section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.reviews-section .section-heading h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.reviews-section .section-heading p {
  color: #d1d1d1;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.review-form-card,
.review-list-card {
  background: #181818;
  border: 1px solid #282828;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.review-form-card h3,
.review-list-card h3 {
  margin-top: 0;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.review-form-card label {
  display: block;
  margin-bottom: 8px;
  color: #d1d1d1;
  font-weight: 600;
}

.review-form-card input,
.review-form-card select,
.review-form-card textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #333;
  background: #0d0d0d;
  color: #fff;
  margin-bottom: 18px;
  font-size: 1rem;
}

.review-form-card input:focus,
.review-form-card select:focus,
.review-form-card textarea:focus {
  outline: none;
  border-color: #00e676;
  box-shadow: 0 0 0 3px rgba(0,230,118,0.12);
}

.submit-review-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #00e676;
  color: #050505;
  border: none;
  padding: 15px 24px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.submit-review-btn:hover {
  transform: translateY(-2px);
  background: #2fff88;
}

.reviews-list {
  display: grid;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}

.review-card {
  padding: 24px;
  background: #090909;
  border: 1px solid #222;
  border-radius: 18px;
}

.review-card h4 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.review-card .review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #9f9f9f;
  font-size: 0.95rem;
}

.review-card .review-stars {
  color: #ffd54f;
  font-size: 1rem;
}

.review-card p {
  margin: 0;
  color: #e2e2e2;
  line-height: 1.7;
}

.no-reviews {
  color: #bfbfbf;
  margin: 0;
}

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

@media (max-width: 650px) {
  .products {
    flex-direction: column;
    align-items: center;
  }
}

/* ----- Blog Section ----- */
.blog-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0b0b0b 0%, #151515 100%);
  text-align: center;
}

.blog-section h2 {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #00e676 0%, #7b5cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 50px;
  font-weight: bold;
  letter-spacing: 1px;
}

.blog-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.card,
.product-card {
  background-color: var(--bg-card);
  border-radius: 12px;
  border: 1px solid #222;
}

/* Contact Section */
.contact-section {
  padding: 60px 20px;
  background-color: var(--bg-main);
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-section h2 {
  font-size: 2.5rem;
  color: var(--accent-green);
  text-align: center;
  margin-bottom: 40px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.info-card {
  background: var(--bg-card);
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid var(--accent-green);
  box-shadow: 0 4px 15px rgba(0, 230, 118, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 230, 118, 0.2);
}

.info-card h3 {
  color: var(--accent-green);
  font-size: 1.3rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-card p {
  color: var(--text-muted);
  margin: 5px 0;
  font-size: 0.95rem;
}

.info-card a {
  color: var(--accent-green);
  text-decoration: none;
  transition: color 0.3s;
}

.info-card a:hover {
  color: var(--accent-purple);
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.contact iframe {
  margin-top: 20px;
  border-radius: 8px;
}
.logo img {
  height: 48px;
  width: auto;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("../images/logo.png") center no-repeat;
  background-size: 550px;
  opacity: 0.1;
  z-index: -1;
}
.blog-card {
  flex: 1 1 280px;
  max-width: 350px;
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #222;
  box-shadow: 0 4px 15px rgba(0, 230, 118, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 230, 118, 0.2);
  border-color: #00e676;
}

.blog-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.blog-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image-wrapper img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent-green);
  color: #000;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
}

.blog-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.blog-date,
.blog-read-time {
  display: flex;
  align-items: center;
}

.blog-card h4 {
  margin: 0 0 12px 0;
  color: var(--text-main);
  font-size: 1.3rem;
  line-height: 1.4;
}

.blog-card p {
  margin: 0 0 15px 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  flex-grow: 1;
}

.blog-link {
  color: var(--accent-green);
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  transition: color 0.3s;
  align-self: flex-start;
}

.blog-link:hover {
  color: var(--accent-purple);
}

/* ----- Footer ----- */
footer {
  background-color: #222; color: #fff; padding: 40px 20px; text-align: center;
}
footer a { color: #ff4c00; }
footer .social-icons { margin: 15px 0; }
footer .social-icons a { margin: 0 10px; font-size: 1.2rem; }

/* Booking Section */
.booking-area {
  background: hsl(177, 97%, 62%);
  padding: 60px 20px;
}

.booking-container {
  max-width: 680px;
  margin: auto;
  background: #c2a7a7;
  padding: 30px 25px;
  border-radius: 8px;
  border: 1px solid #222;
}

.booking-title {
  text-align: center;
  font-size: 28px;
  color: white;
  margin-bottom: 8px;
}

.booking-subtitle {
  text-align: center;
  color: #cccccc;
  margin-bottom: 24px;
  font-size: 14px;
}

/* Service Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.service-option {
  background:white;
  padding: 14px;
  border-radius: 6px;
  border: 1px solid #333;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.service-option:hover {
  border-color: var(--accent-green);
}

.service-option input {
  margin-right: 8px;
}

/* Input Fields */
.booking-form label {
  display: block;
  margin: 12px 0 6px;
  color: #bbb;
  font-size: 14px;
}

.booking-form input {
  width: 100%;
  padding: 12px;
  background: #0b0b0b;
  border: 1px solid #333;
  border-radius: 6px;
  color: #fff;
}

.booking-form select {
  width: 100%;
  padding: 12px;
  background: #e6dada;
  border: 1px solid #333;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.booking-form select option {
  background: #1a1a1a;
  color: #fff;
}

.booking-form input[type="time"] {
  width: 100%;
  padding: 12px;
  background: #0b0b0b;
  border: 1px solid #333;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.booking-form input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}

.booking-form input[type="time"]:focus {
  border-color: var(--accent-green);
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 230, 118, 0.1);
}

.vehicle-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 12px;
}

.date-picker-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booking-form input[type="date"] {
  width: 100%;
  padding: 12px;
  background: #0b0b0b;
  border: 1px solid #333;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.booking-form input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}

.booking-form input[type="date"]:focus {
  border-color: var(--accent-green);
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 230, 118, 0.1);
}

.date-display {
  font-size: 13px;
  color: var(--accent-green);
  font-weight: 500;
  min-height: 18px;
}

.datetime {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

/* Note */
.booking-note {
  text-align: center;
  color: #888;
  margin-top: 16px;
  font-size: 13px;
}
.why-us {
  background: #e3dedefc;
  padding: 70px 20px;
  text-align: center;
}

.why-us h2 {
  font-size: 32px;
  margin-bottom: 8px;
}

.why-subtitle {
  color: #511717;
  margin-bottom: 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: auto;
}

.why-card {
  background: #e0d4d4;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #222;
  transition: 0.3s;
}

.why-card:hover {
  border-color: #00e676;
}

.why-card h3 {
  color: hsl(152, 36%, 9%);
  margin-bottom: 10px;
}
.cart-icon {
  position: relative;
  font-size: 22px;
  cursor: pointer;
  margin-left: 20px;
}

#cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #00e676;
  color: #000;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
}

/* ----- What We Offer Slider ----- */
.what-we-offer {
  padding: 40px 20px;
  background: linear-gradient(180deg, #0b0b0b 0%, #0f0f0f 100%);
  text-align: center;
}
.what-we-offer h2 { font-size: 28px; margin-bottom: 18px; color: #fff; }
.offer-slider {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  padding: 10px 6px;
}
.offer-slider .slide {
  position: relative;
  flex: 1 1 calc(33.333% - 12px);
  min-width: 0;
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.offer-slider .slide {
  display: block;
  text-decoration: none;
  color: inherit;
}
.offer-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.offer-slider .slide-caption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 12px;
  background: linear-gradient(90deg, rgba(0,0,0,0.6), rgba(0,0,0,0.35));
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 6px;
  font-size: 14px;
}

/* Responsive columns: 1 on small, 2 on medium, 3 on large */
@media (max-width: 599px) {
  .offer-slider .slide { flex-basis: 100%; height: 220px; }
}
@media (min-width: 600px) and (max-width: 899px) {
  .offer-slider .slide { flex-basis: calc(50% - 9px); height: 260px; }
}
@media (min-width: 900px) {
  .offer-slider .slide { flex-basis: calc(33.333% - 12px); height: 320px; }
  .what-we-offer h2 { font-size: 32px; }
}

/* Optional: hide scrollbar in WebKit while still scrollable */
.offer-slider::-webkit-scrollbar { height: 8px; }
.offer-slider::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 6px; }
/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -380px;
  width: 360px;
  height: 100%;
  background: #111;
  border-left: 1px solid #222;
  box-shadow: -4px 0 10px rgba(0,0,0,0.5);
  transition: right 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #222;
}

.close-cart {
  cursor: pointer;
  font-size: 18px;
}

.cart-items {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
}

.empty-cart {
  color: #888;
  text-align: center;
  margin-top: 40px;
}

/* Cart Item */
.cart-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  border-bottom: 1px solid #222;
  padding-bottom: 12px;
}

.cart-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: #000;
  border-radius: 6px;
}

.cart-item-info {
  flex: 1;
}

.cart-item-info h4 {
  font-size: 14px;
  margin-bottom: 4px;
}

.cart-item-info span {
  color: #00e676;
  font-weight: bold;
  font-size: 13px;
}

.remove-item {
  cursor: pointer;
  color: #ff5252;
  font-size: 14px;
}

/* Footer */
.cart-footer {
  padding: 20px;
  border-top: 1px solid #222;
}

.cart-total {
  font-size: 16px;
  margin-bottom: 15px;
}

.checkout-btn {
  width: 100%;
  padding: 14px;
  background: #00e676;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background-color: var(--bg-card);
  margin: 5% auto;
  padding: 30px;
  border: 1px solid var(--accent-green);
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-content img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.modal-content h3 {
  color: var(--accent-green);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.modal-content p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 15px;
}

.modal-content ul {
  margin: 15px 0;
  padding-left: 20px;
}

.modal-content li {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 10px;
}

.modal-content li strong {
  color: var(--accent-green);
}

.video-modal {
  max-width: 700px;
}

.video-modal video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 230, 118, 0.2);
}

.video-modal h3 {
  margin-top: 0;
}


.close-modal {
  color: var(--accent-green);
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.close-modal:hover,
.close-modal:focus {
  color: var(--accent-purple);
}

.modal-tips {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.tip-item {
  background: #1a1a1a;
  padding: 20px;
  border-left: 4px solid var(--accent-green);
  border-radius: 6px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.tip-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.15);
}

.tip-item h4 {
  color: var(--accent-green);
  margin: 0 0 10px 0;
  font-size: 1.1rem;
}

.tip-item p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.faq-item {
  border: 1px solid #333;
  border-radius: 6px;
  overflow: hidden;
  background: #1a1a1a;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: #1a1a1a;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
}

.faq-question:hover {
  background: #222;
}

.faq-question span {
  color: var(--accent-green);
  font-weight: 600;
  font-size: 0.95rem;
}

.faq-toggle {
  background: none;
  border: none;
  color: var(--accent-green);
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  font-weight: bold;
}

.faq-question:hover .faq-toggle {
  color: var(--accent-purple);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: #0a0a0a;
}

.faq-answer.open {
  max-height: 500px;
}

.faq-answer p {
  padding: 16px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .modal-content {
    width: 95%;
    padding: 20px;
    margin: 20% auto;
  }

  .modal-content h3 {
    font-size: 1.4rem;
  }

  .modal-content img {
    height: 200px;
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  * {
    box-sizing: border-box;
  }

  /* Navbar */
  .navbar {
    flex-direction: column;
    padding: 10px;
    gap: 12px;
  }

  .navbar-brand {
    width: 100%;
    justify-content: center;
  }

  .navbar h1 {
    font-size: 1.5rem;
  }

  .logo img {
    width: 40px;
    height: 40px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    justify-content: center;
  }

  nav a {
    margin-left: 0;
    font-size: 0.85rem;
    padding: 6px 10px;
  }

  .cart-icon {
    font-size: 1.5rem;
    margin-left: 0;
  }

  /* Hero Section */
  .hero {
    height: 60vh;
    padding: 20px;
  }

  .hero h1 {
    font-size: 1.8rem;
    margin: 0 10px;
  }

  .hero p {
    font-size: 1rem;
    margin: 10px 0 20px;
  }

  .hero-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  /* What We Offer Slider */
  .offer-slider {
    padding: 20px 10px;
  }

  .slide {
    min-width: 80%;
  }

  .slider-prev, .slider-next {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }

  /* Features Section */
  .features {
    gap: 20px;
    padding: 40px 15px;
    flex-wrap: wrap;
  }

  .feature-card {
    flex: 1 1 45%;
    max-width: 100%;
    padding: 15px;
  }

  .feature-card img {
    width: 100px;
    height: 100px;
  }

  .feature-card h3 {
    font-size: 1.1rem;
  }

  .feature-card p {
    font-size: 0.9rem;
  }

  /* Products Section */
  .products {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px 15px;
  }

  .product {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: 280px;
    height: auto;
  }

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

  .product p {
    font-size: 0.9rem;
  }

  .shop-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  /* Blog Section */
  .blog-section {
    padding: 50px 15px;
  }

  .blog-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .blog-container {
    gap: 20px;
  }

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

  .blog-image-wrapper {
    height: 150px;
  }

  .blog-card h4 {
    font-size: 1.1rem;
    margin: 0 0 10px 0;
  }

  .blog-card p {
    font-size: 0.9rem;
    margin: 0 0 12px 0;
  }

  .blog-meta {
    font-size: 0.8rem;
    gap: 10px;
  }

  /* Booking Section */
  .vehicle-details {
    grid-template-columns: 1fr;
  }

  /* Why Us Section */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 15px;
  }

  .why-card {
    padding: 20px 15px;
  }

  /* Cart Drawer */
  .cart-drawer {
    width: 90%;
    max-width: 100%;
  }

  .cart-item img {
    width: 60px;
    height: 60px;
  }

  /* Footer */
  footer {
    padding: 30px 15px;
    text-align: center;
  }

  footer p {
    font-size: 0.9rem;
  }

  .social-icons {
    margin: 15px 0;
  }

  .social-icons a {
    margin: 0 8px;
    font-size: 1.3rem;
  }

  /* Modal */
  .modal-content {
    margin: 30% auto;
    width: 95%;
    max-height: 85vh;
    padding: 20px;
  }

  .modal-content h3 {
    font-size: 1.4rem;
  }

  .modal-content img {
    height: 180px;
  }

  .modal-content p {
    font-size: 0.95rem;
  }

  .close-modal {
    font-size: 24px;
  }

  /* FAQ Styling */
  .faq-question {
    padding: 12px;
  }

  .faq-question span {
    font-size: 0.9rem;
  }

  .faq-toggle {
    width: 25px;
    height: 25px;
    font-size: 20px;
  }

  .faq-answer {
    max-height: 0;
  }

  .faq-answer.open {
    max-height: 500px;
  }

  .faq-answer p {
    padding: 12px;
    font-size: 0.85rem;
  }

  /* Tip Items */
  .modal-tips {
    gap: 15px;
  }

  .tip-item {
    padding: 15px;
  }

  .tip-item h4 {
    margin-bottom: 8px;
    font-size: 1rem;
  }

  .tip-item p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  /* Navbar */
  .navbar {
    padding: 8px;
  }

  .navbar-brand {
    width: 100%;
  }

  .navbar h1 {
    font-size: 1.2rem;
  }

  .logo img {
    width: 35px;
    height: 35px;
  }

  nav {
    gap: 5px;
  }

  nav a {
    font-size: 0.75rem;
    padding: 4px 8px;
  }

  .more-toggle {
    font-size: 0.75rem;
  }

  .more-menu {
    min-width: 250px;
    left: -100px;
  }

  .cart-icon {
    font-size: 1.3rem;
  }

  #cart-count {
    font-size: 0.8rem;
    top: -5px;
    right: -5px;
  }

  /* Hero Section */
  .hero {
    height: 50vh;
    padding: 15px;
  }

  .hero h1 {
    font-size: 1.4rem;
    margin: 0;
  }

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

  .hero-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .scroll-cue {
    font-size: 1.5rem;
  }

  /* What We Offer */
  .what-we-offer {
    padding: 30px 10px;
  }

  .what-we-offer h2 {
    font-size: 1.5rem;
  }

  .slide {
    min-width: 90%;
  }

  .slide-caption {
    font-size: 0.8rem;
    padding: 8px;
  }

  .slider-prev, .slider-next {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  /* Features Section */
  .features {
    flex-direction: column;
    gap: 15px;
    padding: 30px 10px;
  }

  .feature-card {
    flex: 1 1 100%;
    padding: 12px;
  }

  .feature-card img {
    width: 80px;
    height: 80px;
  }

  .feature-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .feature-card p {
    font-size: 0.85rem;
  }

  /* Products Section */
  .products {
    padding: 30px 10px;
    gap: 15px;
  }

  .product {
    min-width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
  }

  .product img {
    height: 150px;
  }

  .product h4 {
    font-size: 0.95rem;
    margin: 10px 0 8px;
  }

  .product p {
    font-size: 0.8rem;
    padding: 0 8px;
  }

  .shop-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
    margin: 10px 0 15px;
  }

  /* Blog Section */
  .blog-section {
    padding: 30px 10px;
  }

  .blog-section h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .blog-container {
    gap: 15px;
  }

  .blog-card {
    max-width: 100%;
  }

  .blog-image-wrapper {
    height: 120px;
  }

  .blog-category {
    font-size: 0.65rem;
    padding: 3px 8px;
  }

  .blog-content {
    padding: 15px;
  }

  .blog-card h4 {
    font-size: 1rem;
    margin: 0 0 8px 0;
  }

  .blog-card p {
    font-size: 0.8rem;
    margin: 0 0 10px 0;
  }

  .blog-meta {
    flex-direction: column;
    gap: 4px;
    font-size: 0.75rem;
    margin-bottom: 8px;
  }

  .blog-link {
    font-size: 0.85rem;
  }

  .blog-card {
    width: 100%;
  }

  .blog-card img {
    height: 150px;
  }

  .blog-card h4 {
    font-size: 0.95rem;
  }

  .blog-card p {
    font-size: 0.8rem;
  }

  .blog-card a {
    font-size: 0.85rem;
  }

  /* Booking Section */
  .vehicle-details {
    grid-template-columns: 1fr;
  }

  .date-picker-wrapper {
    gap: 5px;
  }

  .date-display {
    font-size: 11px;
  }

  .booking-form input[type="date"],
  .booking-form input[type="time"] {
    font-size: 13px;
  }

  .booking-form label {
    font-size: 0.85rem;
  }

  /* Why Us Section */
  .why-us {
    padding: 40px 10px;
  }

  .why-us h2 {
    font-size: 1.4rem;
  }

  .why-subtitle {
    font-size: 0.85rem;
  }

  .why-grid {
    gap: 12px;
  }

  .why-card {
    padding: 15px 10px;
  }

  .why-card h3 {
    font-size: 0.95rem;
  }

  .why-card p {
    font-size: 0.8rem;
  }

  /* Cart Drawer */
  .cart-drawer {
    width: 95%;
  }

  .cart-header h3 {
    font-size: 1.1rem;
  }

  .cart-item {
    padding: 10px;
  }

  .cart-item img {
    width: 50px;
    height: 50px;
  }

  .cart-item-info h4 {
    font-size: 0.85rem;
  }

  .cart-item-info span {
    font-size: 0.8rem;
  }

  .cart-total {
    font-size: 0.95rem;
    padding: 10px;
  }

  .checkout-btn {
    font-size: 0.85rem;
    padding: 10px 15px;
  }

  /* Footer */
  footer {
    padding: 20px 10px;
    text-align: center;
  }

  footer p {
    font-size: 0.75rem;
    margin: 5px 0;
  }

  footer a {
    font-size: 0.75rem;
  }

  .social-icons {
    margin: 10px 0;
  }

  .social-icons a {
    margin: 0 5px;
    font-size: 1.1rem;
  }

  /* Modal */
  .modal {
    padding: 10px;
  }

  .modal-content {
    margin: 50% auto;
    padding: 15px;
    width: 98%;
    border-radius: 8px;
  }

  .modal-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .modal-content img {
    height: 150px;
    margin-bottom: 12px;
  }

  .modal-content p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .modal-content ul {
    padding-left: 15px;
    margin: 12px 0;
  }

  .modal-content li {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }

  .close-modal {
    font-size: 22px;
    right: 10px;
    top: 10px;
  }

  /* FAQ */
  .faq-container {
    gap: 8px;
  }

  .faq-item {
    border-radius: 4px;
  }

  .faq-question {
    padding: 10px;
    gap: 8px;
  }

  .faq-question span {
    font-size: 0.8rem;
    font-weight: 600;
  }

  .faq-toggle {
    width: 22px;
    height: 22px;
    font-size: 18px;
  }

  .faq-answer p {
    padding: 10px;
    font-size: 0.8rem;
  }

  /* Tip Items */
  .modal-tips {
    gap: 10px;
  }

  .tip-item {
    padding: 12px;
    border-left-width: 3px;
  }

  .tip-item h4 {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }

  .tip-item p {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  /* Contact Section */
  .contact-section {
    padding: 30px 10px;
  }

  .contact-section h2 {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .contact-info {
    gap: 12px;
  }

  .info-card {
    padding: 15px 10px;
  }

  .info-card h3 {
    font-size: 1rem;
  }

  .info-card p {
    font-size: 0.8rem;
  }

  .map-container iframe {
    height: 300px;
  }
}

/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Body */
body {
    background-color: #78818a;
    color: #333;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background-color: #111;
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #f7c948;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

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

.nav-links li a:hover,
.nav-links li a.active {
    color: #f7c948;
}

/* Shop Section Layout */


/* Footer */
.footer {
    text-align: center;
    padding: 2rem 0;
    background-color: #111;
    color: #fff;
    margin-top: 2rem;
}

/* Responsive */
@media(max-width: 992px){
    .shop-section {
        flex-direction: column;
    }

    .categories-sidebar {
        margin-bottom: 2rem;
    }
}

@media(max-width: 576px){
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f8f8f8;
}

/* Navbar */
.navbar {
    background: #1d3557;
    color: #fff;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar .logo { font-weight: bold; font-size: 1.5rem; }
.navbar ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
}
.navbar a {
    color: #fff;
    text-decoration: none;
}
.navbar a.active { text-decoration: underline; }

/* Layout */
.shop-section {
    display: flex;
    gap: 2rem;
    padding: 1rem;
}
.categories-sidebar {
    min-width: 200px;
    background: #fff;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: fit-content;
}
.categories-sidebar h2 { margin-top: 0; }
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.categories-list li {
    margin-bottom: 0.5rem;
}
.categories-list a {
    text-decoration: none;
    color: #1d3557;
    cursor: pointer;
}
.categories-list a.active { font-weight: bold; color: #e63946; }

.products-main {
    flex: 1;
}
.product-category {
    display: none;
}
.product-category.active {
    display: block;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}
.product-card {
    background: #fff;
    border-radius: 12px;
    padding: 0.75rem;
    text-align: left;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}
.product-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
}
.product-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 8px;
    background: #f2f2f2;
    display: block;
    image-rendering: auto;
    filter: contrast(0.98) saturate(0.98);
}
.product-card h4 { margin: 0.5rem 0 0.3rem; }
.product-card .price {
    font-weight: bold;
    color: #e63946;
    margin-bottom: 0.3rem;
}
.product-card .description {
    font-size: 0.9rem;
    color: #555;
}
.product-card .product-features {
    font-size: 0.85rem;
    color: #4a4a4a;
    margin: 0;
}

@media (max-width: 768px) {
    .shop-section {
        flex-direction: column;
    }
    .categories-sidebar {
        width: 100%;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
    .product-images {
        grid-template-columns: 1fr;
    }
    .product-card {
        width: 100%;
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background: #1d3557;
    color: #fff;
    margin-top: 2rem;
}


@media (max-width: 768px) {
  .navbar {
    padding: 12px 16px;
  }

  .navbar ul {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
  }

  .navbar a {
    margin-left: 0;
  }
}

/* ============================================
   CART REVIEW PAGE
   ============================================ */
.cart-review-section {
  max-width: 1100px;
  margin: 40px auto 80px;
  padding: 0 20px;
  color: var(--text-main);
}

.cart-review-header {
  margin-bottom: 30px;
  text-align: center;
}

.cart-review-header h1 {
  font-size: 2rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cart-review-header p {
  color: var(--text-muted);
}

.cart-review-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-review-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid #222;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

.cart-review-info {
  display: flex;
  gap: 16px;
  align-items: center;
  flex: 1;
}

.cart-review-info img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  background: #000;
}

.cart-review-meta h4 {
  margin: 0 0 6px 0;
  font-size: 1.1rem;
}

.cart-review-meta span {
  color: var(--accent-green);
  font-weight: 600;
}

.cart-review-controls {
  display: flex;
  gap: 14px;
  align-items: center;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0f0f0f;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 6px 10px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: none;
  background: #1a1a1a;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.qty-btn:hover {
  background: #2a2a2a;
}

.qty-value {
  min-width: 24px;
  text-align: center;
  color: var(--text-main);
  font-weight: 600;
}

.remove-btn {
  background: transparent;
  border: 1px solid #ff5252;
  color: #ff5252;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.remove-btn:hover {
  background: #ff5252;
  color: #000;
}

.cart-review-footer {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
}

.cart-review-total {
  font-size: 1.2rem;
  font-weight: 700;
}

.confirm-order-btn {
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--accent-green) 0%, #00c853 100%);
  border: none;
  border-radius: 8px;
  color: #000;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.confirm-order-btn:hover {
  box-shadow: 0 10px 25px rgba(0, 230, 118, 0.25);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cart-review-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-review-controls {
    width: 100%;
    justify-content: space-between;
  }

  .cart-review-footer {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}
/* Add to Cart Button */
.product-card .add-to-cart {
    background: linear-gradient(135deg, #1d3557, #457b9d);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    margin-top: auto; /* push button to bottom of card */
}

/* Hover Effect */
.product-card .add-to-cart:hover {
    background: linear-gradient(135deg, #fca311, #ffba08);
    color: #fff;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* Active Click Effect */
.product-card .add-to-cart:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}


