/* ===============================
   SERVICES PREVIEW SECTION
================================ */
.services-preview {
  padding: 80px 0;
  background: #ccd2d7;;
}

/* Section Headings */
.section-title {
  text-align: center;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #64748b;
  max-width: 650px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

/* ===============================
   SERVICES GRID
================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

/* Service Card */
.service-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Subtle Hover Accent */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f5d76e, #d4af37);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}

.service-card:hover::before {
  opacity: 0.05;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 65px rgba(15, 23, 42, 0.15);
}

/* ===============================
   SERVICE ICON
================================ */
.service-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5d76e, #d4af37);
  color: #0f172a;
  font-size: 34px;
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
  position: relative;
  z-index: 1;
}

/* ===============================
   CARD CONTENT
================================ */
.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

/* ===============================
   LINK BUTTON
================================ */
.btn-link {
  font-size: 15px;
  font-weight: 600;
  color: #d4af37;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.btn-link i {
  font-size: 13px;
  transition: transform 0.3s ease;
}

.btn-link:hover {
  color: #0f172a;
}

.btn-link:hover i {
  transform: translateX(5px);
}

/* ===============================
   VIEW ALL SERVICES BUTTON
================================ */
.text-center {
  text-align: center;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  background: #0f172a;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.3);
}

.btn-secondary:hover {
  background: #d4af37;
  color: #0f172a;
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(212, 175, 55, 0.5);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-preview {
    padding: 60px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-card {
    padding: 32px 24px;
  }
}
