body{
  background: #f4fbf6;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

/* HERO */
.guide-hero{
  position: relative;
  min-height: 60vh;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('../images/freshcatch-newc.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.guide-overlay{
  max-width: 800px;
  background: rgba(0,0,0,0.25);
  padding: 2.5rem;
  border-radius: 24px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.12);
}

.guide-badge{
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(67,160,71,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.guide-hero h1{
  color: #fff;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.guide-hero p{
  color: #f1f1f1;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* GENERAL */
.section-title{
  text-align: center;
  margin-bottom: 2rem;
}

.section-title h2{
  color: #2e7d32;
  font-size: 2rem;
}

.guide-intro,
.fish-types,
.health-section,
.facts-section,
.guide-cta{
  padding: 5rem 1.2rem;
}

.intro-grid,
.fish-grid,
.tips-grid{
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 1.5rem;
}

/* CARDS */
.intro-card,
.fish-card,
.tip-card,
.fact-card{
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid rgba(67,160,71,0.18);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.05),
    0 0 0 1px rgba(67,160,71,0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.intro-card:hover,
.fish-card:hover,
.tip-card:hover,
.fact-card:hover{
  transform: translateY(-8px);
  border-color: #43a047;
  box-shadow:
    0 18px 40px rgba(0,0,0,0.10),
    0 0 20px rgba(67,160,71,0.18);
}

.intro-card i,
.tip-card i{
  font-size: 2rem;
  color: #2e7d32;
  margin-bottom: 1rem;
}

.intro-card h3,
.tip-card h3{
  margin-bottom: 0.7rem;
  color: #2e7d32;
}

.fact-card{
  position: relative;
  overflow: hidden;
}

.fact-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #2e7d32, #66bb6a);
}

.fact-card h3{
  color: #2e7d32;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.fact-card p{
  line-height: 1.8;
  color: #444;
}

.guide-intro{
  background: #f8fffa;
}

.fish-types{
  background: #ffffff;
}

.health-section{
  background: #f4fbf6;
}

.guide-intro,
.fish-types,
.health-section,
.facts-section{
  border-top: 1px solid rgba(67,160,71,0.12);
}

/* FISH CARD */
.fish-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.fish-header h3{
  color: #2e7d32;
}

.fish-header span{
  background: #e8f5e9;
  color: #2e7d32;
  padding: 0.4rem 0.8rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
}

.fish-card ul{
  margin: 1rem 0;
  padding-left: 1.2rem;
}

.fish-card li{
  margin-bottom: 0.5rem;
}

.recipe-box{
  margin-top: 1.5rem;
  background: #f4fbf6;
  border-left: 4px solid #43a047;
  padding: 1rem;
  border-radius: 12px;
}

.recipe-box h4{
  color: #2e7d32;
  margin-bottom: 0.5rem;
}

.facts-section{
  padding: 5rem 1rem;
  background: #eef8f0;
}

.fact-card h3{
  color: #2e7d32;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.fact-card p{
  line-height: 1.8;
}

/* CTA */
.guide-cta{
  text-align: center;
  background: linear-gradient(135deg, #2e7d32, #43a047);
  color: #fff;
}

.guide-cta h2{
  font-size: 2.3rem;
  margin-bottom: 1rem;
}

.guide-cta p{
  max-width: 700px;
  margin: auto;
  line-height: 1.8;
}

.guide-btn{
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: #fff;
  color: #2e7d32;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.3s ease;
}

.guide-btn:hover{
  transform: translateY(-4px);
}

/* MOBILE */
@media (max-width: 768px){

  .guide-hero h1{
    font-size: 2rem;
  }

  .guide-hero{
    min-height: 50vh;
  }

  .guide-intro,
  .fish-types,
  .health-section,
  .guide-cta{
    padding: 4rem 1rem;
  }

}

@media (max-width: 480px){

  .guide-hero h1{
    font-size: 1.7rem;
  }

  .guide-hero p{
    font-size: 0.95rem;
  }

  .intro-card,
  .fish-card,
  .tip-card{
    padding: 1.4rem;
  }

}

@media (max-width: 768px){

  .fish-header{
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .guide-overlay{
    padding: 2rem 1.2rem;
  }

  .tips-grid,
  .fish-grid,
  .intro-grid{
    gap: 1rem;
  }

}

@media (max-width: 480px){

  .guide-overlay{
    border-radius: 18px;
  }

  .guide-badge{
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
  }

  .recipe-box{
    padding: 0.9rem;
  }

}

/* HOW TO IDENTIFY FRESH FISH */
.freshness-section{
  padding: 5rem 1.2rem;
  background: #ffffff;
  border-top: 1px solid rgba(67,160,71,0.12);
}

.section-subtitle{
  max-width: 700px;
  margin: 1rem auto 0;
  color: #555;
  line-height: 1.7;
}

.freshness-grid{
  max-width: 1200px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 1.5rem;
}

.fresh-card{
  background: #fff;
  padding: 2rem;
  border-radius: 22px;
  border: 2px solid rgba(67,160,71,0.18);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.05),
    0 0 0 1px rgba(67,160,71,0.06);
  transition: 0.35s ease;
  text-align: center;
}

.fresh-card:hover{
  transform: translateY(-8px);
  border-color: #43a047;
  box-shadow:
    0 18px 40px rgba(0,0,0,0.10),
    0 0 20px rgba(67,160,71,0.18);
}

.fresh-icon{
  width: 75px;
  height: 75px;
  margin: auto auto 1.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #43a047, #66bb6a);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fresh-icon i{
  color: #fff;
  font-size: 1.7rem;
}

.fresh-card h3{
  color: #2e7d32;
  margin-bottom: 1rem;
}

.fresh-card p{
  line-height: 1.8;
  color: #555;
}

/* FRESH FISH IDENTIFICATION */
.freshness-grid{
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 1.5rem;
}

.freshness-icon{
  width: 90px;
  height: 90px;
  margin: auto auto 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  position: relative;
  animation: floatingGlow 3s ease-in-out infinite;
}

/* MATCH OTHER GREEN ICONS */

.red-gills,
.bright-scales{
  background: linear-gradient(135deg, #43a047, #66bb6a);
  color: #fff;
  box-shadow:
    0 0 20px rgba(67,160,71,0.25),
    0 0 45px rgba(102,187,106,0.18);
}

.show-card{
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.intro-card,
.fish-card,
.tip-card,
.fact-card,
.fresh-card{
  opacity: 0;
  transform: translateY(40px);
}

/* ANIMATIONS */

@keyframes floatingGlow{

  0%{
    transform: translateY(0px);
  }

  50%{
    transform: translateY(-6px);
  }

  100%{
    transform: translateY(0px);
  }

}

/* RESPONSIVE */
@media (max-width: 768px){

  .lifestyle-slide{
    padding: 2rem 1.2rem;
  }

  .lifestyle-slide h2{
    font-size: 1.8rem;
  }

  .freshness-card{
    padding: 1.5rem;
  }

}

@media (max-width: 480px){

  .lifestyle-banner{
    min-height: 280px;
  }

  .lifestyle-slide h2{
    font-size: 1.5rem;
  }

  .lifestyle-slide p{
    font-size: 0.95rem;
  }

}
