:root{
  --nv-green: #1f7a3a;
  --nv-green-dark: #145428;
  --nv-bg: #f6f8f6;
  --nv-text: #1b1f1c;
}

*{ box-sizing: border-box; }
body{
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--nv-text);
  background: #ffffff;
}

/* Navbar */
.nv-navbar{
  background: linear-gradient(90deg, var(--nv-green-dark), var(--nv-green));
}
.nv-brand-badge{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #ffffff;
  color: var(--nv-green-dark);
  font-weight: 800;
  letter-spacing: .5px;
}
.nv-brand-badge-sm{
  width: 34px;
  height: 34px;
  border-radius: 10px;
}
.nv-btn{
  border-radius: 12px;
  padding: .65rem 1rem;
  font-weight: 600;
}
.nv-btn-outline{
  border-radius: 12px;
  padding: .65rem 1rem;
  font-weight: 600;
  border-width: 2px;
}

/* Hero */
.nv-hero{
  position: relative;
  padding: 3.5rem 0;
  background: radial-gradient(1200px 500px at 80% 0%, rgba(31,122,58,.18), transparent 60%),
              linear-gradient(180deg, #ffffff, var(--nv-bg));
  overflow: hidden;
}
.nv-hero::after{
  content:"";
  position: absolute;
  right: -240px;
  top: -240px;
  width: 620px;
  height: 620px;
  background: linear-gradient(180deg, var(--nv-green), var(--nv-green-dark));
  border-radius: 50%;
  opacity: .95;
  z-index: 0;
}
.nv-hero .container{ position: relative; z-index: 1; }

.nv-hero-image{
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
}

.nv-hero-image img{
  width: 100%;
  height: 420px;        /* keep or adjust */
  object-fit: contain;  /* SHOW FULL IMAGE */
  background: #fff;     /* fills the empty space */
  display: block;
}

.nv-hero-card{
  background: #ffffff;
  border-radius: 22px;
  padding: 1.6rem;
  border: 1px solid rgba(0,0,0,.06);
}
.nv-mini-pill{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .75rem;
  border-radius: 999px;
  background: rgba(31,122,58,.12);
  color: var(--nv-green-dark);
  font-weight: 600;
  font-size: .9rem;
}

.nv-contact-row{
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.nv-contact-chip{
  text-decoration: none;
  color: var(--nv-green-dark);
  background: rgba(31,122,58,.10);
  border: 1px solid rgba(31,122,58,.20);
  padding: .45rem .6rem;
  border-radius: 12px;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.nv-contact-chip:hover{
  background: rgba(31,122,58,.16);
}

/* Cards / Side boxes */
.nv-card{
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.06);
  padding: 1.1rem;
}
.nv-card-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(31,122,58,.12);
  color: var(--nv-green-dark);
  margin-bottom: .75rem;
  font-size: 1.15rem;
}

.nv-sidebox{
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,.06);
  padding: 1.4rem;
}

/* Lists */
.nv-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .6rem;
}
.nv-list li{
  display: flex;
  align-items: center;
  gap: .6rem;
  color: #2a332d;
}
.nv-list i{
  color: var(--nv-green-dark);
  font-size: 1.1rem;
}

/* Page head */
.nv-pagehead{
  background: linear-gradient(90deg, var(--nv-green-dark), var(--nv-green));
  color: #fff;
  padding: 3rem 0;
}
.text-white-75{ color: rgba(255,255,255,.80) !important; }
.nv-btn-outline-light{
  border-radius: 12px;
  padding: .65rem 1rem;
  font-weight: 600;
  border-width: 2px;
}

/* Flyer image */
.nv-flyer-wrap{
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.25);
}
.nv-flyer-wrap img{
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

/* Booking section */
.nv-book{
  background: linear-gradient(180deg, var(--nv-bg), #ffffff);
}

/* Footer */
.nv-footer{
  background: #0e2816;
  color: #fff;
  padding: 2rem 0;
}
.nv-footer-link{
  color: rgba(255,255,255,.85);
  text-decoration: none;
}
.nv-footer-link:hover{
  color: #ffffff;
  text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 991.98px){
  .nv-hero::after{
    right: -320px;
    top: -320px;
  }
  .nv-hero-image img{
    height: 320px;
  }
  .nv-flyer-wrap img{
    height: 320px;
  }
}
.nv-logo{
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 10px;
}

/* Contact chip text bold */
.nv-contact-text{
  font-weight: 700;
}

/* Make icons thicker / stronger */
.nv-contact-icon{
  font-size: 1.2rem;
  background: rgba(31,122,58,.15);
  padding: 6px;
  border-radius: 8px;
  color: var(--nv-green-dark);
}

.nv-card-icon{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(31,122,58,.15);
  color: var(--nv-green-dark);
  font-size: 1.6rem;   /* Bigger = stronger */
}

.nv-powered{
  display: inline-block;
  margin-top: 6px;
  font-variant: small-caps;
  letter-spacing: 1px;
  font-size: 0.75rem;
  opacity: 0.8;
}

.nv-tagline{
  font-family: 'Playball', cursive;
  font-size: 1.2rem;
}


.nv-about{
  background: linear-gradient(180deg, #ffffff, #f6f8f6);
}

.nv-about-card{
  background: #ffffff;
  border-radius: 22px;
  padding: 2rem;
  border: 1px solid rgba(0,0,0,.06);
}

.nv-about-image{
  border-radius: 22px;
  overflow: hidden;
}

.nv-about-image img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}


.nv-map{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
}

/*New one*/

/* Premium location block */
.nv-loc-block{
  background: linear-gradient(180deg, rgba(31,122,58,.10), rgba(255,255,255,.85));
  border: 1px solid rgba(31,122,58,.18);
  border-radius: 22px;
  padding: 1rem;
}

.nv-loc-btn{
  border-width: 2px;
  border-radius: 12px;
  font-weight: 700;
}

.nv-map-premium{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
}

.nv-map-premium iframe{
  width: 100%;
  height: 240px;
  border: 0;
  display: block;
}

.nv-serve-row{
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.nv-serve-chip{
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem .65rem;
  border-radius: 999px;
  background: rgba(31,122,58,.12);
  border: 1px solid rgba(31,122,58,.18);
  color: var(--nv-green-dark);
  font-weight: 700;
  font-size: .9rem;
}

.nv-serve-chip i{
  font-size: 1.05rem;
}

.nv-serve-note{
  font-size: .9rem;
  font-weight: 600;
  color: #2a332d;
  opacity: .9;
}


/* Make right image card match the left card */
.nv-about-image-card .nv-about-image{
  border-radius: 18px;
  overflow: hidden;
}

.nv-about-image-card .nv-about-image img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.nv-image-caption{
  padding: 0.25rem 0.25rem 0.5rem 0.25rem;
}


/* ✅ Mobile-first responsiveness fixes */
@media (max-width: 575.98px){

  /* Reduce big page padding */
  .nv-hero{ padding: 2.2rem 0; }
  .nv-pagehead{ padding: 2.2rem 0; }

  /* Smaller hero headline if you used display-6 */
  .nv-hero-card .display-6{
    font-size: 1.6rem;
    line-height: 1.2;
  }

  /* Prevent the green circle from covering content on small screens */
  .nv-hero::after{
    right: -420px;
    top: -420px;
    width: 720px;
    height: 720px;
    opacity: .35;
  }

  /* Hero image: responsive height */
  .nv-hero-image img{
    height: 280px;
    object-fit: cover; /* or 'contain' if you want full image */
  }

  /* About image: responsive height */
  .nv-about-image-card .nv-about-image img{
    height: 300px;
    object-fit: cover;
  }

  /* Map height on mobile */
  .nv-map-premium iframe{
    height: 220px;
  }

  /* Make cards less “wide” feeling */
  .nv-about-card{
    padding: 1.25rem;
  }

  /* Buttons full width so they don't wrap awkwardly */
  .nv-about-card .btn,
  #book .btn{
    width: 100%;
  }

  /* Contact chips wrap nicely */
  .nv-contact-row{
    gap: .6rem;
  }
  .nv-contact-chip{
    width: 100%;
    justify-content: center;
  }
}

/* Reviews Section */
.nv-reviews{
  background: linear-gradient(180deg, #ffffff, #f6f8f6);
}

.nv-review-card{
  background: #ffffff;
  border-radius: 20px;
  padding: 1.8rem;
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.nv-review-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,.08);
}

.nv-stars{
  color: #f4b400; /* gold stars */
  font-size: 1.1rem;
}

/*I added a new css from here for customer review */

.reviews-section {
  padding: 80px 0;
  background: #f8faf9;
}

.reviews-section .section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 45px;
}

.section-tag {
  display: inline-block;
  color: #1f7a3a;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.reviews-section h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #1f2933;
}

.reviews-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.review-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.stars {
  color: #f4b400;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.review-card p {
  color: #5f6b63;
  line-height: 1.7;
}

.review-card h4 {
  margin-top: 15px;
  color: #1f7a3a;
}

@media (max-width: 768px) {
  .reviews-list {
    grid-template-columns: 1fr;
  }

  .reviews-section h2 {
    font-size: 1.8rem;
  }
}

.review-submit-btn {
  display: inline-block;
  margin-top: 20px;
  background: #1f7a3a;
  color: #ffffff;
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
}

.review-submit-btn:hover {
  background: #155c2b;
  transform: translateY(-2px);
}


/*New new*/

.review-count {
  text-align: center;
  color: #5f6b63;
  margin-bottom: 35px;
  font-weight: 500;
}

.reviews-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.review-card {
  position: relative;
  padding: 35px 35px 28px;
  min-height: auto;
  border: 1px solid rgba(31, 122, 58, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.quote-icon {
  color: #d4af37;
  font-size: 4rem;
  opacity: 0.45;
  line-height: 1;
  margin-bottom: 10px;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.review-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #1f7a3a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.review-top h4 {
  margin: 0 0 4px;
  color: #1f7a3a;
}

.review-card p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: #5f6b63;
  margin-top: 18px;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  background: #e8f5ec;
  color: #1f7a3a;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
}

.quote-icon{
  font-size:2.5rem;
}

.quote-icon{
  opacity:0.2;
}