/* ==========================================================================
   Services Page Hero
   ========================================================================== */
.services-hero {
  background:
    linear-gradient(90deg, rgba(7,20,30,.88), rgba(7,20,30,.55)),
    url("https://unitedtrips.in/assets/images/srinagar.png")
    center/cover no-repeat;
}

/* ==========================================================================
   Services Section — 3-column card grid
   ========================================================================== */
.services-section {
  padding: 90px 0 70px;
  background: #f7f9fb;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.svc-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 16px rgba(14,34,48,.07);
  transition: box-shadow .3s ease, transform .3s ease;
  text-decoration: none;
  color: inherit;
}

.svc-card:hover {
  box-shadow: 0 8px 36px rgba(14,34,48,.13);
  transform: translateY(-4px);
}

.svc-card-img {
  width: 100%;
  height: 210px;
  overflow: hidden;
}

.svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.svc-card:hover .svc-card-img img {
  transform: scale(1.06);
}

.svc-card-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.svc-card-body h3 {
  font-family: var(--heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.svc-card-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 8px;
}

.svc-card-body p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   How We Work Strip
   ========================================================================== */
.services-how-strip {
  padding: 80px 0;
  background: #07141e;
}
.services-how-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.services-how-text .section-mini-title { color: var(--primary); }
.services-how-text h2 {
  font-family: var(--heading);
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 800;
  color: #fff;
  margin: 12px 0 18px;
  line-height: 1.2;
}
.services-how-text p {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
}
.services-how-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.services-stat {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}
.services-stat:hover {
  background: rgba(17,197,192,.1);
  border-color: rgba(17,197,192,.25);
}
.services-stat-num {
  display: block;
  font-family: var(--heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}
.services-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}

/* ==========================================================================
   Services CTA Section
   ========================================================================== */
.services-cta-section {
  padding: 90px 0;
  background: var(--soft);
}
.services-cta-box {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.services-cta-box .section-mini-title { color: var(--primary); }
.services-cta-box h2 {
  font-family: var(--heading);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--text);
  margin: 12px 0 16px;
  line-height: 1.2;
}
.services-cta-box p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
}
.services-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.services-cta-btns .hero-btn-primary,
.services-cta-btns .hero-btn-secondary {
  height: 52px;
  padding: 0 28px;
  border-radius: 10px;
  font-size: 15px;
}
.services-cta-btns .hero-btn-secondary {
  border: 1px solid rgba(14,34,48,.25);
  color: var(--text);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .services-how-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .services-section { padding: 60px 0 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-how-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .services-how-strip { padding: 60px 0; }
  .services-cta-section { padding: 60px 0; }
}
