@import url("style.css");

/* SERVICES */
.services {
  padding: 80px 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid #e5e7eb;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* ICON */
.service-card .icon {
  font-size: 30px;
  margin-bottom: 15px;
}

/* TEXT */
.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 15px;
}

/* PRICE */
.price {
  font-weight: bold;
  margin-bottom: 15px;
}

/* BUTTON */
.btn-service {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  background: #1E3A8A;
  color: #fff;
  text-decoration: none;
}

.btn-service:hover {
  background: #111827;
}

/* HIGHLIGHT */
.highlight {
  background: linear-gradient(135deg, #1E3A8A, #1e40af);
  color: #fff;
}

.highlight p {
  color: #e5e7eb;
}

.highlight .btn-service {
  background: #FACC15;
  color: #111;
}

/* CTA */
.cta {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1E3A8A, #1e40af);
  color: #fff;
  text-align: center;
}

.cta-wrap {
  flex-direction: column;
}

.cta h2 {
  margin-bottom: 10px;
}

.cta p {
  margin-bottom: 20px;
  color: #e5e7eb;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}