/* ================= ROOT VARIABLES ================= */
:root {
  --primary-color: #2d6e16; /* Deep Forest Green */
  --secondary-color: #c3d908; /* Luxury Gold */
  --accent-color: #8fd3b6; /* Soft Mint */
  --dark-color: #0b1f17;
  --light-color: #f5f8f6;
  --text-color: #2b2b2b;
  --white: #ffffff;
}

/* ================= GLOBAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img {
  max-width: 100%;
}
.btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: #2982b5;
    border-color: #2982b5;
}
body {
  font-family: "Poppins", sans-serif;
  color: var(--text-color);
  background: var(--white);
}

/* ================= NAVBAR ================= */
.header {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
}
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 120px;
  height: auto;
}

.nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: var(--dark-color);
  font-weight: 500;
}
a.cta-btn {
  padding: 15px;
  background: #f6001d;
  color: #ffffff !important;
  border-radius: 5px;
  transition: all 0.3s;
}
.nav a:hover {
  color: var(--primary-color);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--dark-color);
}

/* ================= HERO ================= */
.top-wrapper {
  background:
    linear-gradient(rgba(31, 122, 79, 0.85), rgba(31, 122, 79, 0.85)),
    url("../image/banner-img.png") bottom/cover;
}
.hero {
  color: var(--white);
  padding: 100px 0;
  background:url("../image/banner-bg.png");
  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-size: 38px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #ffffff;
}

.hero p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}
.banner-btn {
  border: 2px solid var(--white);
  color: var(--white);
}
.banner-btn:hover {
    background-color: #f6001d;
}
/* Buttons */
.btn {
  padding: 12px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
}

/* .primary {
  background: var(--secondary-color);
  color: var(--dark-color);
}

.secondary {
  border: 2px solid var(--white);
  color: var(--white);
} */

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    display: none;
  }

  .nav.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: 28px;
  }
}

/* ================= ABOUT US ================= */
/* ================= ABOUT US ================= */
.about {
  /* background: linear-gradient(
    180deg,
    #f5f8f6 0%,
    #ffffff 100%
  ); */
  padding: 80px 0;
}
.about-content ul li {
    list-style: none;
}
.about-content ul li i {
    color: #0d6efd;
}
.about-content ul li p {
  font-size: 15.5px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 0px;
}
.section-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2.5px;
  font-weight: 600;
  margin-bottom: 18px;
  background: #8fd2f14f;
  padding: 5px 15px;
  border-radius: 30px;
  color: #000000;
}

/* Headings */
.about h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 30px;
  color: var(--dark-color);
}

.about h2 span {
  color: var(--primary-color);
}
.vmv-section {
  background-color: #f8f9fa;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
}

.section-subtitle {
  max-width: 750px;
  margin: 0 auto;
  color: #6c757d;
}
/* service section */

.services-section {
    background: linear-gradient(135deg, #f8f9fa, #e9f2ff);
}

.service-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-card .icon {
    font-size: 40px;
}
a.btn.btn-white {
    border: 1px solid grey;
    background: white;
    color: #000000;
    transition: all 0.3s;
}
a.btn.btn-white:hover {
    background: #2982b5;
    color: #ffffff;
    border-color: #2982b5;
}
/* plan section */
.plans-section {
    padding: 80px 0;
    background: white;
}

/* Base Card */
.plan-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    padding: 40px 30px;
}

.plan-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* Features */
.plan-features li {
    margin-bottom: 12px;
    font-size: 14px;
}

/* Premium Card */
.premium-card {
    background: #0d6efd;
    color: #fff;
    transform: scale(1.05);
    /* box-shadow: 0 20px 60px rgba(0,0,0,0.2); */
}
/* Badge */
.premium-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #f6001d;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* on demand service */
.ondemand-section {
    background: url('../image/man-washing-his-car-garage.jpg') center/cover no-repeat;
    position: relative;
    padding: 80px 0;
}
/* Dark Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(0 0 0 / 89%), rgb(0 0 0 / 54%));
    z-index: 1;
}

.ondemand-section .container {
    z-index: 2;
}

/* Service Badges */
.service-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    padding: 8px 18px;
    margin: 5px;
    border-radius: 30px;
    font-size: 14px;
    transition: 0.3s;
}

.service-badge:hover {
    background: #0d6efd;
    color: #ffffff;
}

/* Glass Card */
.ondemand-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    transition: 0.4s;
    border: 2px solid #e8e8e859;
}
.ondemand-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.25);
}


/* promise-section */
.market-trust-section {
    background: #f8f9fc;
}

/* Trust Pills */
.trust-pill {
    background: #ffffff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    border: 1px solid #dee2e6;
    font-weight: 500;
    transition: 0.3s;
}

.trust-pill:hover {
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}

/* Highlight Box */
.trust-highlight {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: 0.4s;
}

.trust-highlight:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.professional-img img {
    border-radius: 15px;
}

/* footer */



.footer-section {
    background: #0f172a;
    border-top: 4px solid #0d6efd;
    padding: 80px 0 0;
}
.footer-details img {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    width: 150px;
    height: auto;
    padding: 10px;
}

/* Links */
.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #0d6efd;
}

/* Social Icons */
.social-icons a {
    color: #cbd5e1;
    font-size: 18px;
    margin-right: 12px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #0d6efd;
}

/* Bottom */
.footer-bottom {
    background: #0b1220;
    color: #94a3b8;
}



/* about us  */
.about-hero {
    background: #2982b5;
    height: 60vh;
}

.solution-section {
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

.glass-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
}

.glass-card .icon {
    font-size: 32px;
}
.vm-premium-section {
    overflow: hidden;
}

.vm-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    position: relative;
    transition: 0.4s ease;
    border: 1px solid rgb(90 90 90);
}

.vm-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.1);
}

.vm-card h4 {
    color: #000000;
}

.vm-card p {
    color: #000000;
    font-size: 18px;
}

.bg-text {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 70px;
    font-weight: 800;
    color: rgb(94 94 94 / 5%);
    letter-spacing: 3px;
}
.comparison-table {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
}

.comparison-table thead {
    background: #2982b5;
    color: #ffffff;
}

.comparison-table th,
.comparison-table td {
    padding: 18px;
    border: none;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e2e8f0;
}

.comparison-table tbody tr:hover {
    background: #f8fafc;
}

/* services */
.services-hero {
    background: #2982b5;
    height: 60vh;
}
.pricing-premium {
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

.plan-cards {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    transition: 0.4s ease;
}

.plan-cards:hover {
    transform: translateY(-12px);
}

.plan-title {
    font-weight: 700;
    letter-spacing: 1px;
    text-align: start;
}

.features li {
    margin-bottom: 8px;
    font-size: 14px;
}

.vehicle-pricing div {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #eee;
    font-weight: 500;
}

.vehicle-pricing span {
    font-weight: 700;
}

.featured {
    transform: scale(1.05);
    border: 2px solid #0d6efd;
}

.popular-label {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #0d6efd;
    color: white;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
}

.text-purple {
    color: #6f42c1;
}

.plan-cards ul {
    list-style: none;
}

.festival-note-section {
    margin-top: 30px;
}
.festival-box {
    background: #fff8e1;
    border-left: 5px solid #ffb300;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}

.festival-box h6 {
    color: #b26a00;
}

.festival-box ul li {
    font-size: 14px;
    margin-bottom: 5px;
}

.inner-ondemand-section {
    background: white;
}

.service-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-pricing div {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-weight: 500;
}

.service-pricing span {
    font-weight: 700;
}

.special-offer-section {
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

.offer-card {
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: 0.4s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.offer-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
}

.discount-text {
    font-size: 32px;
    font-weight: 800;
    margin: 15px 0;
}

.featured-offer {
    border: 2px solid #0d6efd;
    transform: scale(1.05);
}

.text-purple {
    color: #c084fc;
}

/* contact */
.contact-hero {
    background: #2982b5;
    height: 50vh;
}
.info-card {
    padding: 50px;
    border-radius: 15px;
    height: 100%;
    background: white;
}
.form-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.form-control,
.form-select {
    padding: 12px;
    border-radius: 10px;
}

.btn-primary {
    border-radius: 12px;
    font-weight: 600;
}
