

:root {
    --pasa-blue:#2E8BC0 ;
    --pasa-hover:#333;
    --pasa-grey:#444;
    --pasa-orange:#f59e0b;
    --pasa-border:#e5e7eb;
    
  }
/* ===== SECTION ===== */
.whg-services-container{
     max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.whg-services-header {
  margin-bottom: 3rem;
  margin-top: 5rem;
  padding-top: 20px;
}

/* ===== BACK LINK ===== */
.whg-back-wrapper {
  margin-bottom: 1.5rem;
}

.whg-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pasa-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.whg-back-link:hover {
  color: #57b3e9;
}

/* ===== CENTER CONTENT ===== */
.whg-services-center {
  text-align: center;
}

/* ===== BADGE ===== */
.whg-services-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--pasa-blue);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 1rem;
}
.whg-services-badge:hover{
  background: var(--pasa-grey);
}

/* ===== TITLE ===== */
.whg-services-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .whg-services-title {
    font-size: 3.5rem;
  }
}

/* ===== TEXT ===== */
.whg-services-text {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.125rem;
  color: black;
  line-height: 1.6;
}

/* ===== SVG ===== */
.whg-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.whg-icon-back {
  width: 14px;
  height: 14px;
}

.whg-icon-droplet {
  width: 12px;
  height: 12px;
}

/* ===== SECTION ===== */
.cw-wash-packages {
  margin-bottom: 5rem;
}

/* ===== CONTAINER ===== */
.cw-container {
  max-width: 1200px;
  padding: 0 20px;
  margin: auto;
}

/* ===== TITLE ===== */
.cw-section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #0f172a;
}

@media (min-width: 768px) {
  .cw-section-title {
    font-size: 2.5rem;
  }
}

/* ===== GRID ===== */
.cw-packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .cw-packages-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== CARD ===== */
.cw-package-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cw-package-card:hover {
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* ===== CARD LAYOUT ===== */
.cw-card-layout {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .cw-card-layout {
    flex-direction: row;
  }
}

/* ===== IMAGE ===== */
.cw-card-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cw-card-image {
    width: 35%;
    height: auto;
  }
}

.cw-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== OVERLAYS ===== */
.cw-image-overlay {
  position: absolute;
  inset: 0;
}

.cw-overlay-desktop {
  display: none;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.8));
}

.cw-overlay-mobile {
  background: linear-gradient(to top, #fff, transparent);
}

@media (min-width: 768px) {
  .cw-overlay-desktop { display: block; }
  .cw-overlay-mobile { display: none; }
}

/* ===== CONTENT ===== */
.cw-card-content {
  padding: 1.5rem;
  flex: 1;
}

/* ===== HEADER ===== */
.cw-card-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.cw-card-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.cw-card-badge {
  display: inline-block;
  margin-top: 4px;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  font-weight: bold;
}

/* ===== PRICE ===== */
.cw-card-price strong {
  font-size: 2rem;
  color: var(--pasa-blue);
}

.cw-time {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #6b7280;
}

/* ===== TEXT ===== */
.cw-card-text {
  font-size: 14px;
  color: black;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* ===== DIVIDER ===== */
.cw-card-divider {
  border-top: 1px solid #e5e7eb;
  padding-top: 1rem;
}

.cw-card-divider h4 {
  font-size: 14px;
  margin-bottom: 0.5rem;
}

/* ===== LIST ===== */
.cw-includes-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  list-style: none;
  padding: 0;
}

.cw-includes-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: black;
}

/* ===== NOTE ===== */
.cw-note {
  margin-top: 0.75rem;
  font-size: 12px;
  font-style: italic;
  color: #9ca3af;
}

/* ===== SVG ICONS ===== */
.cw-icon {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}

.cw-icon-check {
  color: #22c55e;
}

.cw-icon-clock {
  width: 12px;
  height: 12px;
  color: #6b7280;
}


/* SECTION */
.as-services-section {
  margin-bottom: 5rem;
}

/* CONTAINER */
.as-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.as-header {
  text-align: center;
  margin-bottom: 3rem;
}

.as-title-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 1rem;
}

.as-icon-wrap {
  width: 40px;
  height: 40px;
  background: rgb(187, 191, 194);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.as-icon-wrap svg{
    stroke: var(--pasa-grey);
}

.as-title {
  font-size: 2rem;
  font-weight: 700;
}

.as-subtitle {
  color:black;
  max-width: 600px;
  margin: auto;
}

/* GRID */
.as-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .as-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .as-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* CARD */
.as-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  background: #fff;
  transition: box-shadow 0.3s ease;
}

.as-card:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* CARD HEADER */
.as-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.as-card-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 600;
}

.as-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--pasa-blue);
}

/* TEXT */
.as-card-text {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
}

/* SVG ICONS */
.as-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}

.as-icon-car {
  color: var(--pasa-blue);
}

.as-icon-sparkle {
  width: 22px;
  height: 22px;
  color: var(--pasa-blue);
}



/* ===== CONTAINER ===== */
.cw-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  
}

/* ===== CTA CARD ===== */
.cw-cta-card {
  background-color: #dddedf;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
  .cw-cta-card {
    padding: 48px;
  }
}

/* ===== TEXT ===== */
.cw-cta-title {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .cw-cta-title {
    font-size: 32px;
  }
}

.cw-cta-text {
  font-size: 16px;
  color: black;
  max-width: 640px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

/* ===== BUTTONS ===== */
.cw-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .cw-cta-buttons {
    flex-direction: row;
  }
}

.cw-btn {
  height: 44px;
  padding: 0 32px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* SVG  */
.cw-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* PRIMARY */
.cw-btn-primary {
  background-color: var(--pasa-grey);
  color: #fff;
  border: none;
}

.cw-btn-primary:hover {
  background-color: var(--pasa-hover);
}

/* OUTLINE */
.cw-btn-outline {
  background-color: transparent;
  border: 1px solid #d1d5db;
  color: #111827;
}

.cw-btn-outline:hover {
  background-color: #f3f4f6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
 .cw-btn-primary{
  width: 100%;
 }
 .cw-btn-outline{
  width: 100%;
 }
}



