/* ============================================
   Apex Grill Chepterit - Main Stylesheet
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --orange: #E85D04;
  --orange-dark: #c94d00;
  --black: #1a1a1a;
  --dark: #222;
  --light-gray: #f5f5f5;
  --gray: #666;
  --white: #ffffff;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --transition: all 0.3s ease;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 12px 35px rgba(0,0,0,0.15);
  --max-width: 1280px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: var(--font-body);
  color: #333;
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 90px 0;
}

.bg-light {
  background-color: #faf7f4;
}

.bg-dark {
  background-color: var(--black);
  color: var(--white);
}

.text-center {
  text-align: center;
}

.mt-3 {
  margin-top: 2.5rem;
}

/* ---------- Typography ---------- */
.section-tag {
  display: inline-block;
  background-color: var(--orange);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 15px;
}

.section-tag.light {
  background-color: rgba(255,255,255,0.15);
  color: var(--white);
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 12px;
  color: var(--black);
}

.text-white {
  color: var(--white) !important;
}

.text-light-gray {
  color: #ccc !important;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 50px;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-primary:hover {
  background-color: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232,93,4,0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--orange);
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn-outline-dark:hover {
  background-color: var(--black);
  color: var(--white);
}

.btn-lg {
  padding: 15px 36px;
  font-size: 1rem;
}

/* ---------- Header & Navigation ---------- */
.header {
  position: relative;
  z-index: 1000;
}

.top-bar {
  background-color: var(--black);
  color: #ddd;
  font-size: 0.82rem;
  padding: 8px 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar i {
  color: var(--orange);
  margin-right: 5px;
}

.navbar {
  background-color: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar.sticky {
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  background-color: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon i {
  font-size: 2rem;
  color: var(--orange);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--black);
  letter-spacing: 2px;
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--gray);
  letter-spacing: 1px;
  font-weight: 500;
  margin-top: -4px;
}

.nav-menu {
  display: flex;
  gap: 10px;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
  color: var(--black);
}

.nav-link:hover,
.nav-link.active {
  color: var(--orange);
  background-color: #fff3e8;
}

.nav-specials {
  background-color: var(--orange);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 50px;
}

.btn-nav {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger .bar {
  width: 28px;
  height: 3px;
  background-color: var(--black);
  border-radius: 3px;
  transition: var(--transition);
}

/* ---------- Hero Section ---------- */
.hero {
  height: 100vh;
  min-height: 650px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(5px);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.8rem;
  margin-bottom: 15px;
}

.hero-title span {
  color: var(--orange);
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 15px;
  opacity: 0.95;
}

.hero-desc {
  font-size: 1.05rem;
  margin-bottom: 30px;
  opacity: 0.85;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-info-cards {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-info-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(5px);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* ---------- Features Strip ---------- */
.features-strip {
  padding: 40px 0;
  background-color: #fff;
  margin-top: -40px;
  position: relative;
  z-index: 5;
  box-shadow: var(--shadow);
}

.features-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-item {
  text-align: center;
  padding: 20px;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: #fff3e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.8rem;
  color: var(--orange);
}

.feature-item h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

/* ---------- About Preview ---------- */
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-preview-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-preview-img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--orange);
  color: var(--white);
  padding: 15px 25px;
  border-radius: 8px;
  text-align: center;
}

.badge-number {
  font-size: 2rem;
  font-weight: 800;
  display: block;
}

.about-stats-row {
  display: flex;
  gap: 30px;
  margin: 25px 0;
}

.about-stat {
  text-align: center;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange);
  display: block;
}

/* ---------- Popular Dishes ---------- */
.popular-dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.dish-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.dish-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.dish-img-wrapper {
  height: 210px;
  position: relative;
  overflow: hidden;
}

.dish-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.dish-card:hover .dish-img-wrapper img {
  transform: scale(1.05);
}

.dish-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--orange);
  color: white;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.dish-info {
  padding: 20px;
}

.dish-info h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.dish-info p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 15px;
}

.dish-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dish-price {
  font-weight: 700;
  color: var(--orange);
  font-size: 1.2rem;
}

.dish-stars {
  color: #f0ad4e;
  font-size: 0.9rem;
}

/* ---------- Car Wash Preview ---------- */
.carwash-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.carwash-feature-list {
  margin: 20px 0;
}

.carwash-feature-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.carwash-feature-list i {
  color: var(--orange);
  font-size: 1.2rem;
}

.carwash-preview-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.carwash-preview-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.carwash-price-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--orange);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-align: center;
}

.carwash-price-badge strong {
  display: block;
  font-size: 1.5rem;
}

/* ---------- Testimonials ---------- */
.testimonial-slider {
  max-width: 750px;
  margin: 30px auto 0;
  position: relative;
}

.testimonial-card {
  display: none;
  text-align: center;
  padding: 20px;
}

.testimonial-card.active {
  display: block;
}

.testimonial-stars {
  color: var(--orange);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.author-avatar i {
  font-size: 3rem;
  color: #555;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}

.dot {
  width: 12px;
  height: 12px;
  background: #555;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--orange);
  transform: scale(1.3);
}

/* ---------- Hours & Location ---------- */
.hours-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.hours-card,
.location-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
}

.hours-card-header,
.location-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--orange);
  font-size: 1.3rem;
}

.hours-list .hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-weight: 500;
}

.hours-note {
  margin-top: 15px;
  font-size: 0.85rem;
  color: var(--gray);
}

.location-details p {
  margin-bottom: 8px;
  font-weight: 500;
}

/* ---------- CTA ---------- */
.cta-section {
  background: linear-gradient(135deg, #fff3e8, #ffe0cc);
}

.cta-title {
  font-size: 2.8rem;
  margin: 15px 0 20px;
}

.cta-desc {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 30px;
}

.cta-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
  background-color: #111;
  color: #ddd;
  padding: 70px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-logo .logo-icon i {
  color: var(--orange);
  font-size: 2rem;
}

.footer-logo .logo-name {
  font-size: 1.5rem;
  color: var(--white);
}

.footer p {
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  background: #222;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--orange);
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a:hover {
  color: var(--orange);
}

.footer-contact li i {
  color: var(--orange);
  margin-right: 8px;
  width: 18px;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
}

/* ---------- Page Banner (inner pages) ---------- */
.page-banner {
  height: 350px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.page-banner-content {
  position: relative;
  color: var(--white);
  text-align: center;
}

.page-banner-content h1 {
  font-size: 3.5rem;
  margin-bottom: 10px;
}

/* ---------- About Page Specific ---------- */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.mission-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.mission-icon {
  font-size: 2.5rem;
  color: var(--orange);
  margin-bottom: 15px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.team-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
}

.team-img-wrapper {
  height: 200px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  padding: 20px;
}

.team-role {
  color: var(--orange);
  font-weight: 600;
  display: block;
  margin: 5px 0;
}

.team-social {
  margin-top: 10px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.why-card {
  text-align: center;
  padding: 20px;
}

.why-card i {
  font-size: 2.5rem;
  color: var(--orange);
  margin-bottom: 15px;
}

.why-card h4 {
  margin-bottom: 10px;
}

/* ---------- Menu Page ---------- */
.menu-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.cat-tab {
  background: #eee;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.cat-tab.active,
.cat-tab:hover {
  background: var(--orange);
  color: white;
}

.menu-category-section {
  margin-bottom: 60px;
}

.menu-category-header h2 {
  font-size: 2rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.menu-item-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.menu-item-card:hover {
  transform: translateY(-5px);
}

.menu-item-img {
  height: 180px;
  background: #f0f0f0;
  position: relative;
}

.menu-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-item-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--orange);
  color: white;
  font-size: 0.7rem;
  padding: 3px 12px;
  border-radius: 20px;
}

.menu-item-body {
  padding: 20px;
}

.menu-item-body h4 {
  margin-bottom: 5px;
}

.menu-item-body p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.menu-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-price {
  font-weight: 700;
  color: var(--orange);
  font-size: 1.2rem;
}

/* ---------- Gallery Page ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 15px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* ---------- Car Wash Page ---------- */
.wash-packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 25px;
}

.package-card {
  background: white;
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.package-card.featured {
  border: 2px solid var(--orange);
  position: relative;
}

.package-card:hover {
  transform: translateY(-8px);
}

.package-icon {
  font-size: 2.5rem;
  color: var(--orange);
  margin-bottom: 15px;
}

.package-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  margin: 15px 0;
}

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--orange);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-body);
}

/* ---------- Image Fallbacks ---------- */
.img-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: white;
  font-size: 2rem;
  background: inherit;
}

.img-fallback span {
  font-size: 0.9rem;
  margin-top: 5px;
}

.menu-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 2rem;
  color: rgba(0,0,0,0.2);
}

/* ---------- Scroll to Top Button ---------- */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}

/* ---------- Responsive Design ---------- */
@media (max-width: 1024px) {
  .hero-title { font-size: 2.8rem; }
  .features-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .about-preview-grid,
  .carwash-preview-grid,
  .hours-location-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .why-choose-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    transition: 0.4s;
  }
  .nav-menu.active { left: 0; }
  .hamburger { display: flex; }
  .btn-nav { display: none; }

  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1rem; }
  .section-header h2 { font-size: 2rem; }
  .team-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .menu-items-grid { grid-template-columns: 1fr; }
  .why-choose-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-banner-content h1 { font-size: 2.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn { padding: 10px 22px; }
  .hero { height: auto; padding: 120px 0 80px; background-attachment: scroll; }
  .hero-title { font-size: 1.8rem; }
  .hero-btns { flex-direction: column; align-items: center; }
}
/* ---------- New Logo Image ---------- */
.logo-img {
    height: 50px;          /* adjust to match your logo’s proportions */
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-right: 10px;
}
.carwash-preview-img {
    position: relative;
    overflow: hidden;
    border-radius: 12px; /* optional, match your design */
}

.carwash-preview-img video {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* ensures video fills the box like background-cover */
    display: block;
}

/* Keep the price badge on top */
.carwash-price-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    /* ... your existing styles ... */
    z-index: 2;
}
/* The wrapper becomes the positioning anchor */
.carwash-preview-wrapper {
    position: relative;      /* Required for absolute positioning of badge */
    display: inline-block;   /* Or block, depending on your layout */
    width: 100%;             /* Adjust as needed */
    max-width: 600px;        /* Example max width */
}

.carwash-preview-img img {
    width: 100%;
    height: auto;
    display: block;          /* Removes extra spacing below image */
    border-radius: 12px;     /* Optional: rounded corners */
}

/* Price badge positioned over the image */
.carwash-price-badge {
    position: absolute;
    bottom: 20px;            /* Distance from bottom edge */
    right: 20px;             /* Distance from right edge */
    /* Or use left: 20px; for bottom-left placement */
    
    background: rgba(0, 0, 0, 0.75); /* Semi-transparent background */
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;     /* Pill shape */
    font-family: Arial, sans-serif;
    display: flex;
    align-items: baseline;
    gap: 6px;
    backdrop-filter: blur(4px); /* Optional: glass effect */
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.carwash-price-badge span {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
}

.carwash-price-badge strong {
    font-size: 20px;
    font-weight: 700;
    color: #ffd700;          /* Gold color for emphasis */
}
