/* Enhanced UI Styles for Better UX */
.hero {
  background: linear-gradient(to right, #004aad, #007bff);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.card-image {
  max-width: 200px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.card-image:hover {
  transform: scale(1.05);
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.back-btn {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 25px;
  transition: background 0.3s;
  backdrop-filter: blur(10px);
}

.back-btn:hover {
  background: rgba(255,255,255,0.3);
}

.step-list {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
}

.step-list li {
  counter-increment: step-counter;
  display: flex;
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #007bff;
  transition: box-shadow 0.3s;
}

.step-list li:hover {
  box-shadow: 0 2px 8px rgba(0,123,255,0.2);
}

.step-number {
  background: #007bff;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-top: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.sms-steps {
  counter-reset: none; /* Reset for SMS section */
}

.vendor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.vendor-card {
  background: #fff;
  padding: 15px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.vendor-card:hover {
  transform: translateY(-2px);
}

.vendor-card i {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 10px;
}

.vendor-card a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.warning {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  color: #856404;
  padding: 10px;
  border-radius: 5px;
  margin-top: 10px;
}

.issues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.issue-card {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border-left: 4px solid #ffc107;
}

.issue-card h4 {
  margin: 0 0 10px 0;
  color: #856404;
}

.issue-card i {
  margin-right: 8px;
}

.faqs details {
  background: #fff;
  margin: 10px 0;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.faqs details:hover {
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.faqs summary {
  font-weight: bold;
  color: #007bff;
}

.faqs summary i {
  margin-right: 8px;
}

.cta-box {
  background: linear-gradient(135deg, #eef6ff, #d4ecff);
  padding: 30px;
  margin-top: 40px;
  text-align: center;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,123,255,0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

.cta-box i {
  font-size: 2em;
  color: #007bff;
  margin-bottom: 10px;
}

.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 12px 24px;
  border-radius: 25px;
  margin-top: 15px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(0,123,255,0.3);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,123,255,0.4);
}

.sidebar {
  background: linear-gradient(to bottom, #f9f9f9, #f0f0f0);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.news-list {
  list-style: none;
  padding: 0;
}

.news-list li {
  margin: 15px 0;
  padding: 10px;
  background: white;
  border-radius: 5px;
  transition: background 0.2s;
}

.news-list li:hover {
  background: #e9ecef;
}

.news-list a {
  color: #333;
  text-decoration: none;
  display: block;
}

.news-list a i {
  color: #28a745;
  margin-right: 8px;
  width: 16px;
}

.sidebar-cta {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
  text-align: center;
  border: 2px solid #25d366;
}

.whatsapp-btn {
  display: inline-block;
  background: #25d366;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  margin-top: 10px;
  font-weight: bold;
}

.whatsapp-btn i {
  margin-right: 8px;
}

@media (max-width: 900px) {
  .container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .vendor-grid, .issues-grid {
    grid-template-columns: 1fr;
  }
  
  .step-list li {
    flex-direction: column;
    text-align: center;
  }
  
  .step-number {
    margin-right: 0;
    margin-bottom: 10px;
  }
}