:root {
  --nurs-white: #ffffff;
  --nurs-forest-green: #0b2216;
  --nurs-emerald: #134e32;
  --nurs-sage-green: #4f7963;
  --nurs-soft-cream: #f4f6f2;
  --nurs-text-dark: #1e2b24;
  --nurs-text-light: #617369;
  --nurs-glass-bg: rgba(255, 255, 255, 0.45);
  --nurs-glass-border: rgba(255, 255, 255, 0.4);
  --nurs-shadow-premium: 0 20px 40px rgba(11, 34, 22, 0.05);
  --nurs-shadow-hover: 0 30px 60px rgba(11, 34, 22, 0.12);
  --nurs-font-heading: "Outfit", sans-serif;
  --nurs-font-body: "Inter", sans-serif;
  --nurs-transition-premium: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  --forest-950: #0f1f12;
  --leaf-500: #6fa646;
}

.nurs-py-6 {
  padding: 50px 0;
  background: #ebf2e9;
}

/* -------------------------------------------------------------
    GLASSMORPHISM & AMBIENT ELEMENTS
------------------------------------------------------------- */
.nurs-glass-reflection {
  background: var(--nurs-glass-bg);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--nurs-glass-border);
}

.nurs-ambient-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
}

.nurs-glow-1 {
  top: -10%;
  right: -10%;
  background: radial-gradient(circle, var(--nurs-sage-green), transparent 70%);
}

.nurs-glow-2 {
  top: 40%;
  left: -15%;
  background: radial-gradient(circle, #c9dcce, transparent 70%);
}

/* -------------------------------------------------------------
    PREMIUM BUTTONS & BADGES
------------------------------------------------------------- */
.nurs-btn-premium-primary {
  background-color: var(--nurs-forest-green);
  color: var(--nurs-white);
  font-family: var(--nurs-font-heading);
  font-weight: 500;
  padding: 1rem 2.25rem;
  border-radius: 100px;
  border: 1px solid var(--nurs-forest-green);
  box-shadow: 0 10px 25px rgba(11, 34, 22, 0.15);
  display: inline-flex;
  align-items: center;
}

.nurs-btn-premium-primary:hover {
  background-color: var(--nurs-emerald);
  color: var(--nurs-white);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(19, 78, 50, 0.25);
}

.nurs-btn-premium-secondary {
  background-color: transparent;
  color: var(--nurs-forest-green);
  font-family: var(--nurs-font-heading);
  font-weight: 500;
  padding: 1rem 2.25rem;
  border-radius: 100px;
  border: 1px solid rgba(11, 34, 22, 0.2);
  display: inline-flex;
  align-items: center;
}

.nurs-btn-premium-secondary:hover {
  background-color: rgba(11, 34, 22, 0.04);
  color: var(--nurs-forest-green);
  transform: translateY(-3px);
}

.nurs-badge-premium {
  display: inline-flex;
  align-items: center;
  background: rgba(19, 78, 50, 0.08);
  color: var(--nurs-emerald);
  font-family: var(--nurs-font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* -------------------------------------------------------------
    HERO ARCHITECTURE
------------------------------------------------------------- */
.nurs-hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 90vh;
}

.nurs-hero-title {
  font-size: 4.25rem;
  line-height: 1.15;
  letter-spacing: -2px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
}

.nurs-text-gradient {
  background: linear-gradient(135deg,
      var(--nurs-forest-green),
      var(--nurs-sage-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nurs-hero-desc {
  font-size: 1.15rem;
  color: var(--nurs-text-light);
  max-width: 520px;
}

.nurs-feature-mini-card {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 1.25rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: var(--nurs-shadow-premium);
}

.nurs-feature-mini-card i {
  color: var(--nurs-emerald);
  font-size: 1.35rem;
}

.nurs-feature-mini-card h6 {
  margin-bottom: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.nurs-hero-image-wrapper {
  position: relative;
  display: block;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}

.nurs-main-hero-img {
  border-radius: 200px 200px 40px 40px;
  box-shadow: 0 30px 70px rgba(11, 34, 22, 0.15);
  object-fit: cover;
  height: 620px;
  width: 100%;
}

.nurs-floating-hero-img-1 {
  position: absolute;
  bottom: -5%;
  left: -10%;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border: 6px solid var(--nurs-white);
  z-index: 3;
}

/* -------------------------------------------------------------
    SECTION GENERAL HEADERS
------------------------------------------------------------- */
.nurs-section-subtitle {
  font-family: var(--nurs-font-heading);
  color: var(--nurs-emerald);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.nurs-section-title {
  font-size: 2.85rem;
  letter-spacing: -1px;
  font-weight: 700;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background-image:
    linear-gradient(120deg, rgba(223, 232, 207, 0.94) 0%, rgb(17, 56, 33) 100%),
    url("../images/Banner\ -\ Nursery/main.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 80px 0;
}

.cta-inner h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  margin: 0 0 16px;
  color: var(--forest-950);
  font-weight: 700;
}

.cta-inner h2 .accent {
  color: var(--leaf-600);
}

.cta-inner p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 420px;
  margin: 0 0 28px;
}

.cta-imgs {
  display: flex;
  align-items: flex-end;
  gap: 14px;
}

.cta-imgs img {
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 18px 30px -14px rgba(20, 40, 20, 0.35);
}

.cta-imgs img:nth-child(1) {
  height: 210px;
  width: 22%;
}

.cta-imgs img:nth-child(2) {
  height: 270px;
  width: 26%;
}

.cta-imgs img:nth-child(3) {
  height: 230px;
  width: 24%;
}

.cta-imgs img:nth-child(4) {
  height: 190px;
  width: 28%;
}

@media (max-width: 860px) {
  .cta-inner {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .cta-imgs {
    margin-top: 10px;
  }

  .nurs-hero-title {
    font-size: 2.5rem;
  }

  .nurs-floating-hero-img-1 {
    left: 0%;
    width: 150px;
    height: 150px;
  }

  .nurs-main-hero-img {
    height: 420px;
  }

  .nurs-animate-scale-in {
    order: 1;
    padding: 30px 0;
  }

  .nurs-hero-text-col {
    order: 2;
  }

  .nurs-hero-section {
    padding: 0 20px;
  }
}

/* ---------- EXISTING BASE STYLES ---------- */

.section {
  padding: 96px 0;
}

.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 52px;
}

.section-head .eyebrow {
  margin-bottom: 14px;
  justify-content: center;
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--leaf-500);
}

.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin: 0 0 10px;
  font-weight: 700;
  color: var(--forest-950);
}

.rule {
  width: 46px;
  height: 2px;
  background: var(--leaf-500);
  margin: 16px auto 0;
  position: relative;
}

.rule::after {
  content: "";
  position: absolute;
  right: -14px;
  top: -7px;
  width: 16px;
  height: 16px;
  background: var(--leaf-100);
  border-radius: 50%;
}

.testi-sectionnurs {
  background:
    radial-gradient(circle at 80% 20%,
      rgba(52, 211, 153, 0.15) 0%,
      transparent 50%),
    linear-gradient(135deg,
      rgba(6, 78, 59, 0.95) 0%,
      rgba(2, 44, 34, 0.98) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.testi-gridnurs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.testi-cardnurs {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  padding: 30px 26px;
}

.testi-cardnurs .stars {
  color: #e7b95c;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testi-cardnurs p {
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 22px;
  font-weight: 300;
}

.testi-personnurs {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-personnurs strong {
  display: block;
  font-size: 14px;
}

.testi-personnurs span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.testi-sectionnurs .section-head h2 {
  color: #fff;
}

.testi-sectionnurs .section-head p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14.5px;
  margin-top: 8px;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--leaf-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

/* --- PARALLAX PROMOTIONAL BANNER --- */
.nurs-promo-banner-section {
  position: relative;
  z-index: 5;
}

.nurs-parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 1;
}

.nurs-dark-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(11, 34, 22, 0.9),
      rgba(19, 78, 50, 0.75));
  z-index: 2;
}

.nurs-promo-title {
  font-size: 3.5rem;
  font-weight: 700;
}

.nurs-promo-subtitle {
  max-width: 650px;
  font-size: 1.15rem;
  opacity: 0.85;
}

.nurs-promo-stat-card {
  padding: 2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.nurs-promo-stat-card h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--nurs-white);
  margin-bottom: 0.5rem;
}

.nurs-promo-stat-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- FEATURED SELECTION CARDS --- */
.nurs-featured-plant-card {
  border-radius: 32px;
  padding: 1.25rem;
  box-shadow: var(--nurs-shadow-premium);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--nurs-transition-premium);
}

.nurs-plant-img-box {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 300px;
  width: 100%;
}

.nurs-plant-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--nurs-transition-premium);
}

.nurs-plant-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--nurs-white);
  color: var(--nurs-forest-green);
  font-family: var(--nurs-font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.nurs-plant-details {
  padding: 1.5rem 0.5rem 0.5rem 0.5rem;
}

.nurs-plant-details h3 {
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
}

.nurs-plant-details p {
  font-size: 0.9rem;
  color: var(--nurs-text-light);
  line-height: 1.6;
}

.nurs-plant-price {
  font-family: var(--nurs-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--nurs-emerald);
}

.nurs-btn-learn-more {
  font-family: var(--nurs-font-heading);
  font-weight: 600;
  color: var(--nurs-forest-green);
  font-size: 0.95rem;
}

.nurs-featured-plant-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--nurs-shadow-hover);
  background: var(--nurs-white);
}

.nurs-featured-plant-card:hover .nurs-plant-img-box img {
  transform: scale(1.06);
}

.nurs-featured-plant-card:hover .nurs-btn-learn-more {
  color: var(--nurs-emerald);
}

/* --- BENTO GRID LAYOUT SYSTEM --- */
.nurs-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.nurs-bento-item {
  border-radius: 32px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--nurs-shadow-premium);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
  transition: var(--nurs-transition-premium);
}

.nurs-bento-content {
  position: relative;
  z-index: 3;
}

.nurs-bento-icon-box {
  width: 60px;
  height: 60px;
  background: var(--nurs-white);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--nurs-emerald);
  margin-bottom: 2rem;
  box-shadow: 0 10px 20px rgba(11, 34, 22, 0.04);
}

.nurs-bento-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.nurs-bento-item p {
  color: var(--nurs-text-light);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.nurs-item-lg {
  grid-column: span 2;
  grid-row: span 1;
}

.nurs-item-md {
  grid-column: span 1;
  grid-row: span 1;
}

.nurs-item-sm {
  grid-column: span 1;
  justify-content: flex-start;
}

.nurs-bento-bg-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.4;
  pointer-events: none;
}

.nurs-bg-1 {
  background: radial-gradient(circle at top right, #e3f0e8, transparent 60%);
}

.nurs-bg-2 {
  background: radial-gradient(circle at bottom left, #ebf3ee, transparent 60%);
}

.nurs-bg-3 {
  background: radial-gradient(circle at top left, #def0e5, transparent 70%);
}

.nurs-bento-item:hover {
  transform: scale(1.02);
  box-shadow: var(--nurs-shadow-hover);
  background: var(--nurs-white);
}

/* =============================================================
    NEW RESPONSIVE MEDIA QUERIES
============================================================= */

/* Tablets and Medium viewports (under 992px) */
@media (max-width: 991px) {
  .section {
    padding: 70px 0;
  }

  /* Drop testimonial to 2 columns */
  .testi-gridnurs {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Drop bento grid layout to 2 columns */
  .nurs-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .nurs-item-lg {
    grid-column: span 2;
  }

  /* Adjust hero typography scale down */
  .nurs-promo-title {
    font-size: 2.75rem;
  }
}

/* Mobile Devices (under 768px) */
@media (max-width: 767px) {
  .section {
    padding: 50px 0;
  }

  .section-head {
    margin-bottom: 35px;
  }

  /* Single-column collapse for testimonials */
  .testi-gridnurs {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testi-cardnurs {
    padding: 24px 20px;
  }

  /* Single-column collapse for Bento Matrix */
  .nurs-bento-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .nurs-item-lg,
  .nurs-item-md,
  .nurs-item-sm {
    grid-column: span 1;
    min-height: auto;
    justify-content: flex-start;
  }

  .nurs-bento-icon-box {
    margin-bottom: 1.25rem;
  }

  /* Typography fine-tuning for smaller touchscreens */
  .nurs-promo-title {
    font-size: 2.2rem;
  }

  .nurs-bento-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }

  .nurs-promo-stat-card {
    padding: 1.5rem;
  }
}