/* ==============================
   OUR SERVICES SECTION
   ============================== */

.services-section {
  background: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1600') center/cover no-repeat fixed;
  position: relative;
  padding: 80px 0;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.82);
}

.services-section .container {
  position: relative;
  z-index: 1;
}

.services-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.services-label i {
  font-size: 14px;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  gap: 40px;
}

.services-title {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0;
  flex: 1;
}

.services-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  flex: 1;
  max-width: 500px;
  padding-top: 10px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
}

.service-card {
  padding: 45px 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.04);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon i {
  font-size: 42px;
  color: #c9a84c;
}

.service-card h5 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.service-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 991px) {
  .services-header {
    flex-direction: column;
    gap: 15px;
  }
  .services-title {
    font-size: 30px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 35px 20px;
  }
}
