/* =========================================
   SERVICES STRIP – Simple Grid Cards
   Placed right after hero video banner
   ========================================= */

.services-strip {
  background: transparent;
  padding: 0 0 60px 0;
  margin-top: -80px;          /* Pull up over video banner – adjust if needed */
  position: relative;
  z-index: 20;                /* Above video but below header if needed */
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: rgba(12, 18, 40, 0.85);   /* Dark semi-transparent – matches your other cards */
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border-color: rgba(245, 164, 37, 0.4); /* subtle accent border on hover */
}

.card-icon {
  font-size: 3.2rem;
  color: #f5a425;
  margin-bottom: 16px;
}

.service-card h4 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: 0.5px;
}

.service-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 20px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f5a425;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s;
}

.card-link:hover {
  color: #fff;
}

.card-link i {
  transition: transform 0.3s;
}

.card-link:hover i {
  transform: translateX(6px);
}

/* Mobile tweaks */
@media (max-width: 991px) {
  .services-strip {
    margin-top: -120px;     /* Stronger pull-up on smaller screens */
    padding-bottom: 40px;
  }
  
  .service-card {
    padding: 28px 20px;
  }
}