#services {
  background: #fdf5e6;
  padding: 40px 0;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

.srv-title {
  text-align: center;
  font-size: 32px;
  margin: 0 0 30px;
  color: #0d3b66;
}

/* Desktop Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
  padding-bottom: 20px;
}

.service-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #eee;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card h3 {
  font-size: 22px;
  margin: 15px 0 10px;
  color: #0d3b66;
}

.service-card p {
  font-size: 19px;
  padding: 0 15px;
  color: #000;
  line-height: 1.4;
}

.book-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #d4a017;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

.book-btn:hover {
  background: #b58910;
}

/* MOBILE SLIDER */
@media (max-width: 640px) {
  .services-grid {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .services-grid::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    flex: 0 0 100%;
    max-width: 100%;
    scroll-snap-align: start;
    border-radius: 0;
  }

  .service-img {
    height: 300px;
  }

  .srv-title {
    font-size: 26px;
  }
}
