/* Mumbai Freight Forwarding Software Page Styles */

body {
  font-family: 'Poppins', sans-serif;
  color: #222;
  background: #fff;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.hero-mumbai {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.25rem);
  margin-bottom: 2rem;
  opacity: 0.95;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 1rem;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  background: #fff;
}

.feature-card h3 {
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.cta-button {
  display: inline-block;
  background: #33908f;
  color: white;
  padding: 1rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  margin: 1rem 0.5rem;
}

.cta-button:hover {
  background: #2c7a79;
  color: white;
}

.stats-section {
  background: #f8f9fa;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #33908f;
  display: block;
}

.stat-label {
  font-size: 1rem;
  color: #666;
}

.testimonial-section {
  background: #fff;
}

.testimonial-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  border-left: 4px solid #33908f;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: #444;
}

.testimonial-author {
  font-weight: 600;
  color: #1e3a8a;
}

.map-section {
  padding: 3rem 0;
  background: #f8f9fa;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-button {
    display: block;
    margin: 0.5rem 0;
    text-align: center;
  }

  /* How It Works - Mobile */
  .workflow-steps {
    grid-template-columns: 1fr !important;
  }

  .workflow-steps .arrow {
    transform: rotate(90deg);
    margin: 0.5rem 0;
  }

  /* Comparison Table - Mobile */
  table {
    font-size: 0.9rem;
  }

  table th,
  table td {
    padding: 0.8rem 0.5rem !important;
  }

  /* Trust Badges - Mobile */
  .trust-badges {
    flex-direction: column;
    gap: 1rem !important;
  }
}
