/* talukas.css - Simplified Working Version */

:root {
  --primary-green: #176d63;
  --secondary-green: #2e7d32;
  --accent-green: #4caf50;
  --light-green: #e8f5e9;
  --dark-green: #0f4c3a;
}

body {
  font-family: 'Inter', 'Poppins', sans-serif;
  background: linear-gradient(135deg, #f8fff8 0%, #e6f7f1 100%);
  min-height: 100vh;
  color: #333;
}

/* Hero Section */
.hero-section {
  padding: 3rem 2rem;
  background: white;
  border-radius: 24px;
  border: 1px solid rgba(76, 175, 80, 0.2);
  box-shadow: 0 10px 30px rgba(23, 109, 99, 0.1);
  margin-bottom: 3rem;
}

.text-gradient {
  background: linear-gradient(90deg, var(--dark-green), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Stats Container */
.stats-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.stat-item {
  padding: 1rem 1.5rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 2px solid rgba(76, 175, 80, 0.1);
  text-align: center;
  min-width: 120px;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

/* Taluka Cards Container */
.row.g-4 {
  margin: 0;
}

/* Taluka Card - SIMPLIFIED VERSION */
.taluka-card {
  background: white;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 30px rgba(23, 109, 99, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.1);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.taluka-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(23, 109, 99, 0.2);
}

.taluka-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
}

/* Icon Container */
.icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.taluka-icon {
  font-size: 2.5rem;
  z-index: 2;
}

.pulse-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(76, 175, 80, 0.1);
}

/* Card Content */
.taluka-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 0.5rem;
  text-align: center;
}

.taluka-description {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  text-align: center;
}

/* Explore Button */
.explore-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
  color: white;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  width: 100%;
  border: none;
  text-decoration: none;
}

.explore-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(23, 109, 99, 0.3);
  color: white;
}

/* Card Footer */
.card-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
}

.plant-count, .season-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #666;
}

.plant-count i, .season-indicator i {
  color: var(--accent-green);
}

/* Info Card */
.info-card {
  background: linear-gradient(135deg, white, var(--light-green));
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(23, 109, 99, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.2);
  margin-top: 3rem;
}

.info-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 2.5rem;
  color: white;
  box-shadow: 0 10px 30px rgba(23, 109, 99, 0.3);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease both;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    padding: 2rem 1rem;
  }
  
  .stat-item {
    min-width: 100px;
    padding: 0.8rem 1rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .taluka-card {
    padding: 1.5rem 1rem;
  }
  
  .icon-wrapper {
    width: 70px;
    height: 70px;
  }
  
  .taluka-icon {
    font-size: 2rem;
  }
  
  .info-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .stats-container {
    gap: 1rem;
  }
  
  .stat-item {
    min-width: 80px;
  }
}