/* ================================================================
   style-4.css — Services Page Specific Styles
   Page: service.php

   USES from main.css (do NOT duplicate):
   ✔ :root variables
   ✔ .arun_example-section-label / heading / sub
   ✔ .arun_example-btn, btn-fill, btn-teal-outline
   ✔ .arun_example-reveal + delay classes
   ✔ .arun_example-cta, .arun_example-cta-btn

   USES from style-2.css:
   ✔ .arun_about-breadcrumb

   USES from style-3.css:
   ✔ .arun_pkg-banner, .arun_pkg-banner-bg, .arun_pkg-banner-inner
   ✔ .arun_pkg-banner-title, .arun_pkg-banner-sub, .arun_pkg-banner-stats
   ✔ .arun_pkg-intro-bar, .arun_pkg-intro-text
   ✔ .arun_pkg-card-btn
   ✔ .arun_pkg-cta-phones, .arun_pkg-cta-phone

   NEW classes defined here (service page only):
   – .arun_svc-section
   – .arun_svc-card
   – .arun_svc-fleet
   – .arun_svc-vehicle-icon
   – .arun_svc-capacity-badge
================================================================ */

/* ---------------------------------------------------------------
   SERVICES SECTION WRAPPER
--------------------------------------------------------------- */
.arun_svc-section {
  padding: var(--section-gap) 0;
  background: var(--cream);
}

/* ---------------------------------------------------------------
   SERVICE CARD
--------------------------------------------------------------- */
.arun_svc-card {
  background: var(--white);
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 1px solid #edf2f7;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.arun_svc-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 55px rgba(40, 22, 108, 0.12);
}

/* Image block */
.arun_svc-card-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
  flex-shrink: 0;
}
.arun_svc-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.arun_svc-card:hover .arun_svc-card-img-wrap img {
  transform: scale(1.07);
}

/* Dark gradient over image */
.arun_svc-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(40, 22, 108, 0.65) 0%,
    rgba(40, 22, 108, 0.1) 55%,
    transparent 100%
  );
}

/* Icon circle on image */
.arun_svc-card-icon-wrap {
  position: absolute;
  bottom: -22px;
  left: 24px;
  width: 48px;
  height: 48px;
  background: var(--saffron);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(0, 146, 221, 0.25);
  z-index: 2;
}

/* Card body */
.arun_svc-card-body {
  padding: 36px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.arun_svc-card-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.2;
}

.arun_svc-card-desc {
  font-size: 0.87rem;
  line-height: 1.7;
  color: var(--mid);
  margin-bottom: 16px;
}

/* Feature list inside card */
.arun_svc-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 10px;
  flex: 1;
}
.arun_svc-card-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--mid);
  font-weight: 500;
}
.arun_svc-card-list li i {
  color: var(--saffron);
  font-size: 0.78rem;
  flex-shrink: 0;
}

/* ---------------------------------------------------------------
   VEHICLE FLEET STRIP
--------------------------------------------------------------- */
.arun_svc-fleet {
  padding: 72px 0;
  background: var(--teal-xlt);
}

.arun_about-vehicle-card {
  background: var(--white);
  border-radius: var(--card-radius);
  padding: 28px 18px 22px;
  border: 1px solid #d8ecf4;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.arun_about-vehicle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(40, 22, 108, 0.1);
}

.arun_svc-vehicle-icon {
  font-size: 2.6rem;
  color: var(--saffron);
  margin-bottom: 14px;
  line-height: 1;
}

.arun_about-vehicle-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
}

.arun_about-vehicle-card p {
  font-size: 0.82rem;
  color: var(--mid);
  margin-bottom: 14px;
}

.arun_svc-capacity-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--teal-xlt);
  color: var(--teal);
  border: 1px solid #c0dce8;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
}

/* ---------------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------------- */
@media (max-width: 767px) {
  .arun_svc-card-img-wrap {
    height: 175px;
  }
  .arun_svc-card-list {
    grid-template-columns: 1fr;
  }
  .arun_svc-card-title {
    font-size: 1.05rem;
  }
}
