/* 🌐 Base Styles */
.sports-nets-hero-main {
  padding: 70px 0;
  background: linear-gradient(135deg, #f8fbff, #eef6fa);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: #222;
}

.sports-nets-hero-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

/* 🏆 Headings */
.sports-nets-hero-heading {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 40px;
  color: #0a3d62;
  font-weight: 700;
  position: relative;
  animation: fadeDown 1s ease-in-out;
}

.sports-nets-hero-subheading {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #1a5f7a;
  font-weight: 600;
  animation: fadeUp 1s ease-in-out;
}

/* 📸 Row Layout */
.sports-nets-hero-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.sports-nets-hero-row.reverse {
  flex-direction: row-reverse;
}

/* 🖼️ Image Styling */
.sports-nets-hero-img {
  flex: 1 1 48%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sports-nets-hero-img img {
  width: 100%;
  max-height: 400px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeIn 1.2s ease-in-out;
}

.sports-nets-hero-img img:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

/* 📝 Content */
.sports-nets-hero-content {
  flex: 1 1 48%;
  font-size: 1.05rem;
  line-height: 1.65;
  animation: slideIn 1s ease-in-out;
}

.sports-nets-hero-list {
  margin-top: 14px;
  padding-left: 20px;
}

.sports-nets-hero-list li {
  margin-bottom: 10px;
  color: #333;
}

/* 🔑 SEO Content Block */
.sports-nets-hero-seo {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px;
  margin: 60px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  animation: fadeIn 1.5s ease-in-out;
}

.sports-nets-hero-seo h3 {
  color: #0a3d62;
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.sports-nets-hero-keywords {
  margin: 20px 0;
  padding-left: 18px;
}

.sports-nets-hero-keywords li {
  margin-bottom: 8px;
  color: #555;
}

/* 🎯 Call to Action Button */
.sports-nets-hero-cta {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(135deg, #00b894, #0984e3);
  color: #fff;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
  margin-top: 12px;
}

.sports-nets-hero-cta:hover {
  background: linear-gradient(135deg, #0984e3, #00b894);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ❓ FAQ Section */
.sports-nets-hero-faq {
  margin: 50px 0;
}

.sports-nets-hero-faq h3 {
  font-size: 1.5rem;
  color: #0a3d62;
  margin-bottom: 20px;
  text-align: center;
}

.sports-nets-hero-faq-list {
  display: grid;
  gap: 18px;
}

.faq-item {
  background: #f8fbff;
  border-radius: 12px;
  padding: 18px;
  border-left: 5px solid #0984e3;
  transition: all 0.3s ease;
  animation: fadeUp 1.3s ease-in-out;
}

.faq-item:hover {
  background: #eaf4ff;
  transform: translateY(-3px);
}

/* 📱 Responsive Styles */
@media (max-width: 900px) {
  .sports-nets-hero-row {
    flex-direction: column;
    gap: 20px;
  }
  .sports-nets-hero-img, 
  .sports-nets-hero-content {
    flex: 1 1 100%;
  }
  .sports-nets-hero-img img {
    max-height: 280px;
  }
}

@media (max-width: 600px) {
  .sports-nets-hero-heading {
    font-size: 1.7rem;
  }
  .sports-nets-hero-subheading {
    font-size: 1.25rem;
  }
  .sports-nets-hero-img img {
    max-height: 220px;
  }
}

/* ✨ Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-25px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(35px); }
  to { opacity: 1; transform: translateX(0); }
}
