/* Honeypot anti-spam field: invisible to people, still present for bots to fill in */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* ===== Variables ===== */
:root {
  --color-primary: #e65c2e;
  --color-primary-dark: #cf4f24;
  --color-white: #ffffff;
  --color-black: #111111;
  --color-text: #0a0a0a70;
  --color-muted: #6b7280;
  --color-border: #e5e7eb;
  --color-overlay: rgba(0, 0, 0, 0.62);
  --text-error: #d94f2b;
  --font-sans: "Montserrat", system-ui, -apple-system, sans-serif;
  --container-max: 1200px;
  --header-height: 88px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 14px;
  --shadow-form: 0 20px 50px rgba(0, 0, 0, 0.25);
  --transition: 0.25s ease;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body,
button,
input,
textarea,
select {
  font-family: var(--font-sans);
}

body {
  color: var(--color-text);
  line-height: 1.5;
  background: var(--color-black);
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}
h2{
  font-size: 40px;
  font-weight: 800;
  color: var(--color-black);
}
h3{
  font-size: 22px;
}
p{
  font-size: 16px;
  color: var(--color-muted);
}

.container {
  width: min(100% - 2rem, var(--container-max));
  margin-inline: auto;
}
.text-muted{
  color: #0A0A0A99 !important;
  font-weight: 600;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  margin-bottom: 5px;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.btn-outline {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
  margin-bottom: 5px;
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-block {
  width: 100%;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 13px 0;
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  z-index: 99;
}

.logo-icon img {
  width: auto;
  height: 70px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--color-primary);
}

.logo-tagline {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-white);
  max-width: 140px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
}
.nav-list a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  transition: color var(--transition);
}

.nav-list a:hover {
  color: var(--color-primary);
}

.btn-book-nav {
  padding: 0.7rem 1.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.btn-primary.btn-book-nav:active{
  background-color: var(--color-primary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-overlay {
  display: none;
}
/* ===== Booking date picker (Select Date) ===== */
.date-field {
  --dp-accent: #FE4C1C;
  --dp-border: #E6E8EC;
  --dp-trigger-bg: #F7F6F4;
  --dp-ink: #3c4048;
  --dp-title: #51607a;
  --dp-dow: #9aa0a8;
  --dp-faded: #cbced4;
}
.date-select { position: relative; }
.date-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: #fff; border: 1px solid var(--dp-border); border-radius: 12px;
  padding: 16px 22px; font-size: 15px; cursor: pointer; text-align: left; font-family: inherit;
}
.date-trigger-text { color: #6b7280; }
.date-trigger-text .dash { color: var(--dp-accent); margin: 0 5px; }
.date-trigger-text .date-value { color: var(--dp-accent); }
.date-caret { width: 18px; height: 18px; flex: 0 0 18px; color: var(--dp-ink); }
.date-select.open .date-trigger { border-radius: 12px 12px 0 0; }
.date-panel {
  position: absolute; top: 100%; left: 0; right: 0; z-index: 30;
  background: #fff; border: 1px solid var(--dp-border); border-top: none;
  border-radius: 0 0 12px 12px; box-shadow: 0 16px 36px rgba(17,24,39,.10);
  padding: 22px 24px 28px; display: none;
}
.date-select.open .date-panel { display: block; }
.cal-inner { max-width: 560px; margin: 0 auto; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; padding: 0 4px; }
.cal-title { font-size: 16px; font-weight: 500; color: var(--dp-title); }
.cal-nav {
  width: 34px; height: 34px; border: 1px solid var(--dp-border); border-radius: 8px; background: #fff;
  color: #8b929c; display: grid; place-items: center; cursor: pointer; transition: background .15s;
}
.cal-nav:hover:not(.disabled) { background: #f7f7f8; }
.cal-nav.disabled { opacity: .4; cursor: default; }
.cal-nav svg { width: 15px; height: 15px; }
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); }
.cal-grid.cal-dow { margin-bottom: 8px; }
.cal-grid.cal-dow span { text-align: center; font-size: 13px; color: var(--dp-dow); padding: 4px 0; }
.cal-days { row-gap: 8px; }
.day {
  width: 40px; height: 40px; margin: 0 auto; border-radius: 9px;
  display: grid; place-items: center; border: 1.6px solid transparent; background: none;
  color: var(--dp-ink); font-size: 14px; font-family: inherit; cursor: pointer; transition: background .12s;
}
.day.empty { cursor: default; }
.day.faded { color: var(--dp-faded); cursor: default; }
.day.today { border-color: var(--dp-accent); color: var(--dp-accent); font-weight: 600; }
.day.selected { background: var(--dp-accent); border-color: var(--dp-accent); color: #fff; font-weight: 600; }
.day:not(.faded):not(.selected):not(.empty):hover { background: #f5f5f6; }

/* ===== Booking time picker (Select Time) ===== */
.time-field {
  --tp-border: #E6E8EC;
  --tp-divider: #F1F1F3;
  --tp-ink: #2b2f36;
  --tp-placeholder: #A2A7AF;
  --tp-hover: #FAFAFA;
  --tp-dash: #D6943F;
  --tp-accent: #FCF8F2;
}
.time-select { position: relative; }
.time-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: #fff; border: 1px solid var(--tp-border); border-radius: 12px;
  padding: 15px 20px; font-size: 15px; cursor: pointer; text-align: left; font-family: inherit;
  transition: border-color .15s, box-shadow .15s;
}
.time-trigger:hover { border-color: #d7dade; }
.time-value { color: var(--tp-ink); }
.time-value.tp-empty { color: var(--tp-placeholder); }
.time-caret { width: 18px; height: 18px; flex: 0 0 18px; color: #8b929c; transition: transform .2s ease; }
.time-select.open .time-trigger {
  border-radius: 12px 12px 0 0; border-bottom-color: var(--tp-divider);
}
.time-select.open .time-caret { transform: rotate(180deg); }
.time-menu {
  position: absolute; top: 100%; left: 0; right: 0; z-index: 30;
  background: #fff; border: 1px solid var(--tp-border); border-top: none;
  border-radius: 0 0 12px 12px; box-shadow: 0 14px 32px rgba(17,24,39,.10);
  list-style: none; margin: 0; padding: 0; overflow: hidden;
  display: none;
}
.time-select.open .time-menu { display: block; }
.time-option {
  padding: 14px 20px; font-size: 14px; color: #3c4048; cursor: pointer;
  border-bottom: 1px solid var(--tp-divider); transition: background .12s;
}
.time-option:last-child { border-bottom: none; }
.time-option:hover { background: #FE4C1C; color: #fff; }
.time-option:hover .sep { color: #fff; }
.time-option.selected { background: var(--tp-accent); }
.time-option.selected:hover { background: #FE4C1C; color: #fff; }
.time-option.selected:hover .sep { color: #fff; }
.time-option .sep { color: var(--tp-dash); margin: 0 7px; font-weight: 500; }



/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 2rem) 0 3rem;
  background: var(--color-black) url("../images/hero-banner.webp") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  color: var(--color-white);
}

.hero-title {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  max-width: 660px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rating-avatars {
  display: flex;
}

.rating-avatars span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-left: -10px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  background-size: cover;
  background-position: center;
}

.rating-avatars span:first-child {
  margin-left: 0;
  background-image: url("../images/Ellipse\ 1.webp");
}

.rating-avatars span:nth-child(2) {
  background-image: url("../images/Ellipse\ 2.webp");
}

.rating-avatars span:nth-child(3) {
  background-image: url("../images/Ellipse\ 3.webp");
}

.rating-score {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
}

.rating-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
}

/* ===== Quote Form ===== */
.quote-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-form);
}

.quote-card h3 {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(230, 92, 46, 0.15);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-group .field-error {
  display: none;
  font-size: 0.75rem;
  color: var(--text-error);
  margin-top: 0.35rem;
}

.form-group.has-error input,
.form-group.has-error textarea {
  border-color: var(--text-error);
}

.form-group.has-error .field-error {
  display: block;
}

.quote-card .btn-primary {
  margin-top: 0.5rem;
  padding: 0.95rem;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

/* ===== Our Services ===== */
.services-section {
  background: #fff;
}


.fw-700 { font-weight: 700 !important; }
.fw-800 { font-weight: 800 !important; }

.service-icon-wrap svg {
  width: 72px;
  height: 72px;
  z-index: 1;
  position: relative;
}
.service-icon-wrap.mb-3 {
  position: relative;
}
.service-icon-wrap.mb-3::before {
  content: "";
  background-color: #FFE3DB;
  height: 60px;
  width: 60px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  z-index: 0;
}
.section-padding{
  padding: 80px 0;
}

.service-title {
  color: var(--color-black);
  height: 55px;
}

.service-desc {
  line-height: 1.6;
}

.service-price {
  font-size: 0.9rem;
  color: var(--color-primary) !important;
  margin-bottom: 0;
}

.service-price strong {
  color: var(--color-primary);
}

.btn-service {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border: 1.5px solid var(--color-black);
  color: var(--color-black);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.btn-service:hover {
  background: var(--color-black);
  color: var(--color-white);
}

/* ===== Gallery ===== */
.gallery-section {
  background: #fff5f5;
}

.gallery-heading {
  font-weight: 800;
  color: var(--color-black);
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  transition: transform var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.btn-gallery {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 10px 35px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-white);
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-sm);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.btn-gallery:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-1px);
}

/* ===== Testimonials ===== */
.testimonials-section {
  background: #fff;
}

.testimonials-badge {
  display: inline-block;
  padding: 10px 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  border-radius: var(--radius-sm);
}

.testimonials-heading {
  color: var(--color-black);
  max-width: 720px;
  margin-inline: auto;
}

.testimonials-subtitle {
  max-width: 680px;
  line-height: 1.7;
}

.testimonial-card {
  background: #f9f9f9;
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.testimonial-title {
    font-size: 21px;
    color: var(--color-black);
}

.testimonial-quote {
  /* font-size: 3rem; */
  /* line-height: 1; */
  font-weight: 700;
  /* color: var(--color-primary); */
}

.testimonial-text {
    line-height: 1.7;
    font-size: 16px;
    height: 180px;
    margin-bottom: 20px !important;
    overflow-y: auto;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary);
}

.testimonial-role {
  font-size: 0.82rem;
  color: var(--color-muted);
}

.testimonial-stats {
  padding-top: 0.5rem;
}

.stat-value {
  font-size: 48px;
  color:#00000060;
  line-height: 1.1;
  font-weight: 600;
}

.stat-label {
  font-size: 16px;
  color:#00000060;
}
.testimonial-card{
  margin: 0 10px;
}
.slick-dots li button:before{
  color: var(--color-primary) !important;
}


/* ===== Membership & Loyalty ===== */
.membership-section {
  background: #fffafa;
}

.membership-subtitle {
  color: var(--color-text);
  line-height: 1.6;
  font-weight: 600;
}

.membership-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding:45px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.plan-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  width: 75%;
  margin: 0 auto;
  color: var(--color-black);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.plan-badge-silver {
  background: #b9b9b9;
}

.plan-badge-gold {
  background: #FEAF1C;
}

.plan-badge-platinum {
  background: #5A2AEB;
  color: var(--color-white);
}

.plan-price-wrap {
  margin-bottom: 1.5rem;
  text-align: center;
}
.plan-price span {
  display: block;
  font-size: 28px;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1.1;
  padding-right: 10px;
}

.plan-price {
  display: flex;
  font-size: 55px;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.1;
  justify-content: center;
    align-items: center;
}

.plan-period {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-text);
  margin-top: 0.25rem;
}

.plan-features {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.plan-features li {
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.8;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.btn-plan {
  display: block;
  width: 100%;
  padding: 0.85rem 2.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.btn-plan-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
}

.btn-plan-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
}

.btn-plan-outline {
  background: var(--color-white);
  color: var(--color-black);
  border: 1.5px solid var(--color-black);
}

.btn-plan-outline:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.get-cars-wash{
  background-color: var(--color-white);
}

.get-cars-wash .section {
  display: flex;
  margin: 0 -40px;
}

/* ── LEFT COLUMN ── */
.left-col {
  display: flex;
  flex: 0 0 40%;
  flex-direction: column;
  gap: 0;
  padding: 0 40px;
}

.car-image {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* placeholder image via gradient if no real img */
.car-image-placeholder {
  width: 100%;
  height: 270px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
  position: relative;
  overflow: hidden;
}
.car-image-placeholder::after {
  content: '🚗';
  font-size: 80px;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: .6;
}

.promo-card {
  background: #fde8e8;
  border-radius: 12px;
  padding: 28px 24px;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

.promo-card h3 {
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 10px;
}

.promo-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.promo-card .btn {
  display: inline-block;
  background: #e84b1f;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s;
}
.promo-card .btn:hover { background: #c73c14; }

.promo-icon {
  position: absolute;
  right: 28px;
  bottom: 18px;
  height: 70px;
  width: 70px;
}
.promo-icon svg{
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
}
.promo-icon::before{
  content: "";
    background-color: #FEAF1C;
    height: 50px;
    width: 50px;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 50%;
    z-index: 0;
}

/* ── RIGHT COLUMN ── */
.right-col { padding-top: 4px; 
  flex: 0 0 60%;
  padding: 0 40px;

}

.right-col h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.right-col .subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #666;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* steps */
.steps { display: flex; flex-direction: column; gap: 0; }

.step {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 28px;
}
.step:last-child { border-bottom: none; padding-bottom: 0; }

.step-label {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 140px;
  font-size: 18px;
  color: var(--color-text);
  font-weight: 500;
}

.step-dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: #ccc;
  flex-shrink: 0;
}

.step-line {
  flex: 1;
  height: 1px;
  background: #ddd;
}

.step h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-black);
  padding-top: 2px;
}
.step.active h4 { color: var(--color-primary); }

.step p {
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.6;
  max-width: 500px;
}

.hero-bg {
  position: relative;
  background-image: url('../images/image-3.webp');
  background-size: cover;
  background-position: center;
  opacity:1;
  z-index: 0;
  width: 100%;
}
.hero-bg img{
  width: 100%;
  height: 100%;
  position: absolute;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.main-title{
  color: #ffffff;
  font-weight: 700;
  line-height: 1.25;
  max-width: 840px;
}

.hero-features {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 40px 0;
}

.check-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon svg {
  display: block;
}

.feature-label {
  color: #f0f0f0;
  font-size: 20px;
  font-weight: 600;
}

.btn-book {
  display: inline-block;
  background: var(--color-white);
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 0.65rem 1.6rem;
  border-radius: 4px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.2px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-book:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-book span {
  color: var(--color-primary);
}

footer {
  background-color: #0d0d0d;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.divider {
  display: flex;
    flex: 0 0 38%;
    max-width: 100%;
    justify-content: space-around;
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 1.1rem;
  letter-spacing: 0.3px;
}

.footer-col a {
  display: block;
  color: #ffffff60;
  font-size: 16px;
  text-decoration: none;
  margin-bottom: 0.65rem;
  transition: color 0.2s ease;
}

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

.footer-col p {
  color: #ffffff60;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 0.4rem;
}

.footer-col .section-gap {
  margin-top: 1.5rem;
}

.footer-divider {
  border: none;
  border-top: 1px solid #656565;
}

.footer-bottom {
  padding: 1.25rem 40px;
}

.footer-bottom p, .footer-bottom a {
  color: #ffffff60;
  font-size: 16px;
  text-decoration: none;
}
.footer-bottom a:hover{
  color: #fff;
  text-decoration: underline;
}

/*Services page*/
.services-banner{
  min-height: 100%;
  height: 70vh;
  background: var(--color-black) url("../images/services-banner.webp") center / cover no-repeat;
}
.services-banner .hero-content{
  padding-top: 100px;
}
.ppf .row{
  margin: 0 -40px;
  align-items: center;
}
.ppf .col-md-6{
  padding: 0 40px;
}
.ppf h2{
  color: var(--color-black);
  line-height: 42px;
  font-weight: 700;
  padding-bottom: 20px;
}
.ppf p{
  color: var(--color-text);
  font-weight: 500;
  line-height: 32px;
}
.ppf-vehicle {
  background-color: #FFF8F8;
}
.ppf-vehicle .left-col{
  flex: 0 0 45%;
}
.ppf-vehicle .right-col{
  flex: 0 0 55%;
}
.ppf-vehicle .promo-card p{
  font-weight: 600;
}
.ppf-vehicle .right-col h3{
  font-weight: 700;
  color: var(--color-black);
}
.ppf-vehicle .right-col p.subtitle{
  /* font-size: 17px; */
  margin-bottom: 25px;
}
.cont-list ul{
  padding: 0;
}
.cont-list ul li{
  position: relative;
  padding-left: 20px;
  line-height: 25px;
  color: var(--color-text);

}
.cont-list ul li::before{
  content: "-";
  position: absolute;
  top: 2px;
  left: 0;

}
.full-cont{
  font-size: 20px;
  font-weight: 700;
  color: var(--color-black);
  background-color: var(--color-white);
  width: 100%;
  text-align: center;
  padding: 20px;
  border-radius: var(--radius-md);
  margin-top: 30px;
}
.ppf .car-image{
  height: 260px;
    margin: 20px 0;
}
.ppf.cross .row{
  margin: 0 -30px;
  align-items: center;
}
.ppf .col-md-5, .ppf .col-md-7{
  padding: 0 30px;

}
.ppf.cross .cont-list ul li{
  font-weight: 500;
}

/*Make a Booking */
.form-card{
  background-color: var(--color-white);

}
.form-booking-main{
  background-color: #FBFBFB;
  border-radius: 38px;
  padding: 30px;
  max-width: 900px;
  margin: 0 auto;
}

/* Privacy Policy page */
.privacy-page {
  background: #fff;
}

.privacy-card {
  margin: 40px 0;
  background: #fff5f5;
  border-radius: 12px;
  padding: 3rem 2.25rem;
}

.privacy-title {
  font-size: 2.25rem;
  font-weight: 800;
  text-align: center;
  color: var(--color-black);
  margin-bottom: 0.5rem;
}

.privacy-card .lead {
  color: var(--color-muted);
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 10px;
}

.policy-section { margin-bottom: 1.75rem; }
.policy-section h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 0.5rem;
}
.policy-section p, .policy-section ul, .policy-section li {
  color: var(--color-text);
  font-weight: 600;
  line-height: 1.8;
}

.policy-actions .btn { min-width: 160px; }

@media (max-width: 768px) {
  .privacy-card { padding: 2rem 1rem; }
}

/* Faqs Page */
.accordion-button:focus {
  /* outline: none; */
  box-shadow: none;
}
.accordion-button{
  padding: 25px;
}
.accordion-button:hover {
  background-color: #fff5f5;
}
.accordion-button:not(.collapsed){
  background-color: #fff5f5;
}
.faqs-page { background: #fff; }
.faqs-header h1 { color: var(--color-primary); margin-bottom: .25rem; }
.faq-card { border-radius: 12px; }
.faq-item .accordion-button { font-weight: 700; color: var(--color-black); }
.faq-item .accordion-body { color: var(--color-text); font-weight: 600; line-height: 1.7; }
/* .btn-outline { border-color: var(--color-primary); color: var(--color-primary); } */

@media (max-width: 768px) {
  .faq-card { padding: 1.25rem; }
}

/* ===== Thank you page ===== */
.thank-you-page {
  min-height: calc(100vh - var(--header-height) - 2rem);
  display: flex;
  align-items: center;
  background: #fff;
}

.thank-you-card {
  max-width: 780px;
  margin: 0 auto;
  padding: 4rem 2.5rem;
  border-radius: var(--radius-lg);
  background: #fdf5ef;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.thank-you-icon {
  display: inline-flex;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--color-primary);
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.thank-you-icon svg {
  width: 44px;
  height: 44px;
}

.thank-you-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--color-black);
}

.thank-you-text {
  max-width: 680px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  color: var(--color-text);
  line-height: 1.8;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.thank-you-actions .btn {
  min-width: 180px;
}

@media (max-width: 768px) {
  .thank-you-card {
    padding: 3rem 1.5rem;
  }
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 2.5rem 2.25rem 2.25rem;
  width: 100%;
  max-width: 545px;
  box-shadow: var(--shadow-card);
}

/* ── Title ── */
.form-title {
  /* font-size: 30px; */
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: -0.2px;
}

/* ── Field ── */
.field-card {
  margin-bottom: 1.2rem;
  position: relative;
}

/* ── Input / Textarea ── */
.field input,
.field textarea {
  width: 100%;
  padding: 0.72rem 2.5rem 0.72rem 1rem;
  border: 1px solid #E6E6E6;
  border-radius: 16px;
  font-size: 16px;
  color:#848484;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  resize: none;
}

.field textarea { height: 115px; padding-right: 1rem; }

.field input::placeholder,
.field textarea::placeholder { color: var(--text-placeholder); }

.field input:focus,
.field textarea:focus {
  border-color: var(--border-focus);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(217,79,43,0.10);
}

/* states */
.field input.is-error,
.field textarea.is-error {
  border-color: var(--border-error);
  background: #fff8f6;
  box-shadow: 0 0 0 3px rgba(217,79,43,0.08);
}

.field input.is-valid,
.field textarea.is-valid {
  border-color: var(--border-valid);
  background: #f6fbf8;
  box-shadow: 0 0 0 3px rgba(90,170,122,0.08);
}

/* status icon inside input */
.field-card .status-icon {
  position: absolute;
  right: 12px;
  top: 38px;
  width: 18px;
  height: 18px;
  display: none;
  pointer-events: none;
}
.field-card.show-valid .status-icon.icon-valid,
.field-card.show-error .status-icon.icon-error { display: block; }

/* inline error text */
.field-card .err-msg {
  display: none;
  font-size: 0.75rem;
  color: var(--text-error);
  margin-top: 0.35rem;
  padding-left: 2px;
}
.field-card.show-error .err-msg { display: block; }

/* ── Checkbox row ── */
.checkbox-area { margin-bottom: 0.4rem; }

.check-label , .checkbox-area p{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 16px;
  color: #848484;
  line-height: 1.55;
  user-select: none;
}

.check-label input[type="checkbox"] { display: none; }

.check-box {
  width: 24px; height: 24px; min-width: 18px;
  border: 2px solid #FE4C1C;
  border-radius: 4px;
  margin-top: 1px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, border-color 0.15s;
  flex-shrink: 0;
}

.check-box svg { display: none; }

.check-label input:checked + .check-box { background: #FE4C1C; }
.check-label input:checked + .check-box svg { display: block; }

.check-label a { color: var(--accent); text-decoration: underline; }

.check-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  padding-left: 28px;
  line-height: 1.5;
}

.check-err {
  display: none;
  font-size: 0.75rem;
  color: var(--text-error);
  margin-top: 0.3rem;
  padding-left: 28px;
}
.check-err.show { display: block; }

/* ── Actions ── */
.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.75rem;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--color-black);
  color: #fff;
  border: 1px solid var(--color-black);
  border-radius: 9px;
  padding: 0.68rem 1.35rem;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s, transform 0.1s;
}
.btn-back:hover { background: transparent; color: var(--color-black); }
.btn-back:hover svg path{
  stroke: #000;
}
.btn-back:active { transform: scale(0.97); }

.btn-submit {
  background: #FE4C1C;
  border: 1px solid #FE4C1C;
  color: #fff;
  border-radius: 9px;
  padding: 0.68rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.2px;
  transition: background 0.18s, transform 0.1s;
}
.btn-submit:hover { background:transparent; color: #FE4C1C; }
.btn-submit:hover svg path { fill: #FE4C1C; }
.btn-submit:active { transform: scale(0.97); }

/* ── Success banner ── */
.success-banner {
  display: none;
  text-align: center;
  padding: 0.85rem 1rem;
  background: #edf9f2;
  border: 1px solid #a8dfc0;
  border-radius: 10px;
  color: #2e7d52;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 1.25rem;
}
.success-banner.show { display: block; }

.btn-navigate-form-step:active {
  transform: scale(0.97);
}
.btn-navigate-form-step.submit-btn {
  background: #FE4C1C;
  border: 1px solid #FE4C1C;
  color: #fff;
  border-radius: 9px;
  padding: 0.68rem 2rem;
  font-size: 0.85rem;
}
.btn-navigate-form-step.submit-btn:hover {
  background:transparent; color: #FE4C1C;
}
.btn-navigate-form-step.submit-btn:active {
  transform: scale(0.97);
}
form.booking{
  max-width: 900px;
  margin: 0 auto;
  background-color: #FBFBFB;
  padding: 40px;
  border-radius: 32px;
}
h6.section-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.package-label {
  display: block;
  cursor: pointer;
  height: 100%;
}

.package-card {
  background: #fff;
  border: 1.5px solid #e8e4df;
  border-radius: 16px;
  padding: 18px 20px 16px 20px;
  transition: border-color 0.18s, box-shadow 0.18s;
  position: relative;
  height: 100%;
  user-select: none;
}

input[type="checkbox"] {
  display: none;
}

.check-box {
  width: 20px;
  height: 20px;
  border: 1.5px solid #ccc;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, background 0.15s;
  flex-shrink: 0;
  background: #fff;
}

.check-box svg {
  display: block;
  width: 12px;
  height: 12px;
}

input[type="checkbox"]:checked ~ .package-card {
  border-color: #FE4C1C;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.08);
}

input[type="checkbox"]:checked ~ .package-card .check-box {
  background: #fff;
  border-color: #FE4C1C;
}

input[type="checkbox"]:checked ~ .package-card .check-box svg {
  display: block;
  color: #FE4C1C;
}

.package-card:hover {
  border-color: #bbb;
}

.pkg-title {
  font-size: 16px;
  font-weight: 700;
  color: #4E4E4E;
  margin-bottom: 6px;
}

.pkg-price {
  font-size: 14px;
  color: var(--color-text);
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}
.addon-card {
  background: #fff;
  border: 1.5px solid #e8e4df;
  border-radius: 14px;
  overflow: hidden;
}

.addon-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  gap: 12px;
}

.addon-toggle:hover {
  background: #faf9f8;
}

.addon-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
}

.addon-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.addon-price {
  font-size: 16px;
  color: var(--color-text);
}

.chevron {
  width: 22px;
  height: 22px;
  transition: transform 0.25s ease;
  color: #333;
}

.addon-toggle.open .chevron {
  transform: rotate(180deg);
}

.addon-body {
  display: none;
  border-top: 1.5px solid #f0ece8;
  padding: 0;
}

.addon-body.show {
  display: block;
}

.addon-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid #f5f2ef;
  cursor: pointer;
  gap: 12px;
}

.addon-option:last-child {
  border-bottom: none;
}

.addon-option:hover {
  background: #FE4C1C;
}

.addon-option:hover .opt-label,
.addon-option:hover .opt-price {
  color: #fff;
}

.addon-option:hover .opt-check {
  border-color: #fff;
  background: transparent;
}

.addon-option input[type="checkbox"] {
  display: none;
}

.opt-check {
  width: 18px;
  height: 18px;
  border: 1.5px solid #ccc;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #fff;
  transition: border-color 0.15s;
}

.opt-check svg {
  display: none;
  width: 10px;
  height: 10px;
}

.addon-option input[type="checkbox"]:checked ~ .opt-info .opt-check {
  border-color: #FE4C1C;
}

.addon-option input[type="checkbox"]:checked ~ .opt-info .opt-check svg {
  display: block;
}

.opt-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.opt-label {
  font-size: 13.5px;
  color: #333;
}

.opt-price {
  font-size: 13px;
  color: #666;
  flex-shrink: 0;
}

/* Input fields */
.form-section {
  margin-top: 28px;
}

.field-card {
  background: #fff;
  border: 1.5px solid #e8e4df;
  border-radius: 14px;
  font-weight: 500;
  overflow: hidden;
}

.field-card input,
.field-card textarea {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  color: var(--color-text);
  padding: 18px 20px;
  font-weight: 500;
  resize: none;
}

.field-card input::placeholder,
.field-card textarea::placeholder {
  color: var(--color-text);
}

.field-card textarea {
  min-height: 140px;
}

.field-card:focus-within {
  border-color: #FE4C1C;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.07);
}
/*popup*/
 /* Overlay */
 .modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(80, 80, 90, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

/* Popup Card */
.car-modal {
  background: #fff;
  border-radius: 22px;
  border: 2px solid #b0bec5;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 32px 28px 32px;
  position: relative;
  box-shadow: 0 12px 48px rgba(0,0,0,0.13);
  animation: popIn 0.22s ease;
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.96) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 28px;
}

/* Car option row */
.car-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  cursor: pointer;
  user-select: none;
}

.car-option:last-of-type {
  border-bottom: none;
}

.car-option input[type="checkbox"] {
  display: none;
}

.car-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.car-option svg{
  height: 60px;
}
.car-option svg path{
  height: 100%;
  width: 100%;
}

/* Checkbox */
.check-box {
  width: 24px;
  height: 24px;
  border: 2px solid #FE4C1C;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #fff;
  transition: background 0.15s, border-color 0.15s;
}

.check-box svg {
  display: block;
  width: 13px;
  height: 13px;
}
.package-card .check-box svg {
  display: none;
}

input[type="checkbox"]:checked ~ .car-left .check-box {
  background: #fff;
  border-color: #FE4C1C;
}

input[type="checkbox"]:checked ~ .car-left .check-box svg {
  display: none;
}

.car-name {
  font-size: 16px;
  font-weight: 700;
  color: #4E4E4E;
}

/* SVG car illustrations */
.car-icon {
  width: 72px;
  height: 40px;
  flex-shrink: 0;
  opacity: 0.55;
}

/* Bottom hint */
.bottom-hint {
  font-size: 12.5px;
  color: #aaa;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #f0ece8;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 30px;
  color: #aaa;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 8px;
  transition: color 0.15s;
}

.close-btn:hover { color: #555; }

/* Confirm button */
.confirm-btn {
  display: block;
  width: 100%;
  margin-top: 22px;
  padding: 14px;
  background: #FE4C1C;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s;
}

.confirm-btn:hover { background: #a93226; }

/*Gallery*/
.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item .zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: rgba(0, 0, 0, 0.55);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  transition: transform 0.2s ease;
  pointer-events: none;
}
.gallery-item:hover .zoom-icon {
  transform: translate(-50%, -50%) scale(1);
}

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1.5rem;
}
.lightbox-overlay.active {
  display: flex;
}
.lightbox-inner {
  position: relative;
  max-width: 900px;
  width: 100%;
}
.lightbox-inner img {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}
.lightbox-close {
  position: absolute;
  top: -42px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  opacity: 0.85;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.28); }
.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }
.lightbox-caption {
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  margin-top: 10px;
}

.service-wrap{
  margin: 0 -25px;
}
.service-wrap .service-full{
  padding: 0 25px;
  margin-top: 5px;
}
.service-wrap .service-card
 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.service-card .btn-service{
  width: fit-content;
}
.addon-option { cursor: pointer; transition: background 0.2s; }
  .addon-option input[type="radio"] { display: none; }
  .addon-option.selected {
    background: #FE4C1C; /* changed */
    color: #fff;
    border-radius: 6px;
  }
  .addon-option.selected .opt-label { color: #fff; }

.service-all.ppf .row{
  padding: 20px;
} 
.service-all.ppf .cont-list{
  max-width: 85%;
}
.main-nav .nav-list li:first-child a{
  display: none;
}
/*10-06-2026*/
.blog.service-all.ppf .full-block{
  background-color: #fff5f5;
  padding: 0px;
  margin-bottom: 40px;
    border-radius: 14px;
}
.blog .full-block .col-lg-6{
  padding:0;
}
.blog .car-image {
    height:100%;
    margin: 0px;
    min-height: 445px;
}
.blog .full-block .content{
  padding: 50px;
}
.bg-ff5{
  background-color: #fff5f5;
}
.blog-d img{
  height: 100%;
  width: 100%;
}
.blog-d .img-block{
  margin: 0 auto;
  height: 400px;
}


@media (max-width: 992px) {
  /* ===== Mobile Header ===== */
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: calc(var(--header-height) + 1.5rem) 1.75rem 2rem;
    background: rgba(17, 17, 17, 0.98);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 1001;
    overflow-y: auto;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .nav-list li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav .nav-list li:first-child a{
    display: block;
  }
  .nav-list a {
    display: block;
    padding: 1rem 0;
    font-size: 0.9rem;
  }

  .btn-book-nav {
    width: 100%;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
    z-index: 1000;
  }

  .nav-overlay.is-visible {
    opacity: 1;
    visibility: visible;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* .quote-card {
    max-width: 440px;
  } */
  .step p{
    max-width: 100%;
  }
  footer {
    padding: 2.5rem 2rem 0;
  }

  .footer-grid {
    flex-wrap: wrap;
  }
  .footer-grid .divider{
    flex: 0 0 100%;
    flex-wrap: wrap;
  }
  .footer-bottom
 {
    padding: 1.25rem 0px;
}
  .divider .nav-col, .divider .reso-col, .divider .add-col, .divider .det-col {
    flex: 0 0 50%;
  }
  .get-cars-wash .section {
    margin: 0 -10px;
  }
  .left-col, .right-col {
    padding: 0px 10px;
  }
  .right-col h2, .hero-title
  {
    font-size: 35px;
  }
  .promo-card {
    padding-bottom: 100px;
  }
  .feature-item{
    padding: 20px 0;
  }
  .ppf .row {
    margin: 0 -20px;
  }
  .ppf .col-md-6 {
    padding: 0 20px;
  }
  .ppf h2 {
    font-size: 22px;
    line-height: 30px;
  }
  .ppf p {
    line-height: 24px;
  }
  .ppf.cross .row {
    margin: 0 -20px;
  }
  .ppf .col-md-5, .ppf .col-md-7 {
    padding: 0 20px;
  }
  .lightbox-next {
    right: -6px;
  }
  .lightbox-prev {
    left: -6px;
  }
  .lightbox-inner img {
    width: 80%;
    margin: 0 auto;
  }
  .lightbox-nav{
    width: 30px;
    height: 30px;
  }
  
}
@media (max-width: 768px) {
  .hero-features {
    gap: 10px;
  }
  .feature-item {
    gap: 5px
  }
  .get-cars-wash .section {
    margin: 0 0px;
    flex-wrap: wrap;
  }
  .right-col, .left-col {
    flex: 0 0 100%;
    padding: 0 0px;
  }
  .right-col{
    padding-top: 40px;
  }
  .services-banner {
    height: 40vh;
    min-height: fit-content;
  }
  .ppf-vehicle .left-col {
    flex: 0 0 100%;
  }
  .ppf-vehicle .right-col {
    flex: 0 0 100%;
  }
  .row.set-rev{
    flex-direction: column-reverse;  
  }
  form.booking {
    padding: 25px;
  }
  .section-padding {
    padding: 40px 0;
  }
  .addon-card.cal-date #cal-body div {
    max-width: 90%;
  }
  .service-all.ppf .cont-list {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .section { grid-template-columns: 1fr; gap: 32px; }
  .right-col h2 { font-size: 1.7rem; }
  
}

@media (max-width: 600px) {
  .hero-content {
    padding: 2.5rem 1.5rem;
  }

  .hero-features {
    gap: 1rem;
    flex-direction: column;
  }
  .feature-item {
    padding: 3px 0;
  }
  .quote-card
  {
      max-width: 100%;
  }
  .accordion-button {
    padding: 15px;
}
  .faq-card {
    padding: 0;
  }
}


@media (max-width: 576px) {
  :root {
    --header-height: 76px;
  }

  .logo-tagline {
    font-size: 0.5rem;
    max-width: 110px;
  }

  .logo-icon svg {
    width: 40px;
  }

  .hero-actions {
    flex-direction: column;
    margin-bottom: 40px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .quote-card {
    padding: 1.5rem 0;
    max-width: none;
  }
  .gallery-item img {
    height: 200px;
  }
  .footer {
    padding: 2rem 1.5rem 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .hero-content {
    padding:40px 0; 
  }
  .promo-card h3{
    font-size: 20px;
  }
  .right-col h2 {
    font-weight: 700;
  }
  .right-col .subtitle {
    font-size: 16px;
  }
  .step {
    padding-bottom: 0px;
    gap: 2;
  }
  .step p {
    font-size: 16px;
  }
  .right-col h2, .hero-title
  {
    font-size: 32px;
  }
  .quote-card h3{
    margin-bottom: 0;
  }
  .feature-label {
    font-size: 16px;
  }
  .ppf-vehicle .right-col h2 {
    font-size: 20px;
  }
  .ppf h2 {
    font-size: 20px;
  }
  .form-step .col-6{
    width: 100%;
  }
  form {
    padding: 20px 15px;
  }
  h2 {
    font-size: 28px;
  }
  .service-title {
    height: auto;
  }
  .service-wrap .service-card{
    padding-bottom: 20px;
  }
  .divider .nav-col, .divider .reso-col, .divider .add-col, .divider .det-col
  {
    flex: 0 0 100%;
    padding-bottom: 25px;
  }
  .footer-grid{
    gap: 0;
    padding-bottom: 0;
  }
  .blog .car-image {
    min-height: 320px;
}
.blog .full-block .content {
    padding: 30px;
}

}


@media (max-width: 480px) {
  .card { padding: 2rem 1.25rem 1.75rem; }
  .testimonial-text {
    height: 300px;
}
  /* .form-title { font-size: 1.3rem; } */
}
