/* Service Cards Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.service-card {
  background: white;
  border-radius: 1.8rem;
  padding: 1.8rem;
  box-shadow: var(--soft-shadow);
  transition: var(--hover-transition);
  border: 1px solid rgba(0,0,0,0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 35px -12px rgba(0,0,0,0.1);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #F59E7A;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #3A2C2A;
}

.service-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  flex-grow: 1;
}

/* Why Choose Us Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.why-card {
  background: white;
  border-radius: 1.5rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

.why-card i {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.why-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #3A2C2A;
}

.why-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablets (780px - 1024px) */
@media (max-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 1.5rem;
    border-radius: 1.5rem;
  }
  
  .service-icon {
    font-size: 2.2rem;
  }
}

/* Mobile Devices (< 780px) */
@media (max-width: 780px) {
  .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.2rem;
    margin: 1.5rem 0;
  }
  
  .service-card {
    padding: 1.3rem;
    border-radius: 1.3rem;
  }
  
  .service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -10px rgba(0,0,0,0.1);
  }
  
  .service-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }
  
  .service-card h3 {
    font-size: 1.2rem;
  }
  
  .service-card p {
    font-size: 0.9rem;
  }
  
  .why-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .why-card {
    padding: 1.2rem;
    border-radius: 1.2rem;
  }
  
  .why-card i {
    font-size: 1.8rem;
  }
  
  .why-card h4 {
    font-size: 1rem;
  }
  
  .why-card p {
    font-size: 0.85rem;
  }
}

/* Small Mobile (< 480px) */
@media (max-width: 480px) {
  .card-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .service-card {
    padding: 1.2rem;
    border-radius: 1.2rem;
  }
  
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }
  
  .why-card {
    padding: 1rem;
    border-radius: 1rem;
  }
  
  .why-card i {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
  }
  
  .why-card h4 {
    font-size: 0.95rem;
  }
  
  .why-card p {
    font-size: 0.8rem;
  }
}

/* Very Small Mobile (< 360px) */
@media (max-width: 360px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}