/**
 * Enhanced Modern Styling
 * Additional styles for a more modern, spacious look
 */

/* Add subtle border to cards for better definition */
.card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(20px);
  background: var(--bg-card);
}

/* Enhanced service cards with better spacing */
.service-card {
  padding: 2.5rem 2rem;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

/* Better text contrast */
.service-card > p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Why us section improvements */
.why-us-grid {
  position: relative;
  z-index: 1;
}

.why-us-item {
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Hero content improvements */
.hero-title {
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero-subtitle {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Section headers */
.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* Feature items in hero */
.feature-item {
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.feature-icon {
  font-size: 2.5rem;
}

/* Better spacing for sections */
.section {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }
  
  .service-card {
    padding: 2rem 1.5rem;
  }
}

/* Enhance buttons */
.btn {
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.875rem 2rem;
}

/* Add hover effect to service cards */
.service-card:hover {
  border-color: rgba(59, 130, 246, 0.2);
}

/* Gradient text enhancement */
.text-gradient {
  font-weight: 700;
  letter-spacing: -0.02em;
}

