:root {
  --primary: #1b5e20;
  --primary-light: #2e7d32;
  --primary-pale: #a5d6a7;
  --mint: #dcedc8;
  --mint-mid: #c8e6c9;
  --white: #ffffff;
  --off-white: #f9fdf9;
  --text-dark: #0d2b10;
  --text-mid: #3d5c40;
  --accent: #ff8f00;
  --leaf1: #66bb6a;
  --leaf2: #43a047;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Poppins", sans-serif;
}

/* ── NAVBAR ── */
.navbar {
  background: rbga(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rbga(46, 125, 50, 0.15);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: #1b5e20 !important;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg var(--primary-light),
      var(--primary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.brand-logo img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 5px 20px rgba(46, 125, 50, 0.3);
}

.nav-link {
  font-weight: 600;
  color: #2f4f2f !important;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #66bb6a, #2e7d32);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 10px;
}

.nav-link:hover::after {
  width: 80%;
}

.nav-link:hover {
  color: #2e7d32 !important;
  transform: translateY(-2px);
}

/* .btn-whatsapp {
        background: #25d366;
        color: white !important;
        border-radius: 25px;
        padding: 8px 20px;
        font-weight: 600;
        transition: all 0.3s;
        text-decoration: none;
      }
      .btn-whatsapp:hover {
        background: #1da851;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
      } */
.btn-whatsapp {
  background: linear-gradient(135deg,
      #25d366,
      #128c7e);
  color: white !important;
  border-radius: 30px;
  padding: 10px 22px;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.btn-whatsapp::after {
  display: none !important;
  content: none !important;
}

.btn-whatsapp {
  text-decoration: none !important;
}

.btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg,
      #c8e6c9 0%,
      #e8f5e9 50%,
      #ffffff 100%);
  min-height: 92vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero {
  margin-top: 0;
  z-index: 1;
}

.navbar {
  background: #ffffff !important;
  position: sticky;
  z-index: 9999;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
      rgba(76, 175, 80, 0.12) 0%,
      transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle,
      rgba(165, 214, 167, 0.18) 0%,
      transparent 70%);
  border-radius: 50%;
}

.hero-badge {
  background: var(--mint);
  border: 1px solid var(--primary-pale);
  color: var(--primary);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease both;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.12;
  color: var(--text-dark);
  animation: fadeInUp 0.9s ease 0.1s both;
}

.hero h1 span {
  color: var(--primary);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 520px;
  line-height: 1.7;
  margin: 20px 0 32px;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-cta {
  animation: fadeInUp 1s ease 0.3s both;
}

.btn-primary-green {
  background: linear-gradient(135deg,
      var(--primary-light),
      var(--primary));
  color: white;
  border: none;
  border-radius: 50px;
  padding: 14px 36px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(46, 125, 50, 0.3);
  text-decoration: none;
  display: inline-block;
}

.btn-primary-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(46, 125, 50, 0.4);
  color: white;
}

.btn-outline-green {
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 1rem;
  background: transparent;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-green:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.hero-image-wrap {
  position: relative;
  animation: fadeInRight 1s ease 0.2s both;
}

.hero-main-img {
  width: 100%;
  max-width: 520px;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(46, 125, 50, 0.2);
  object-fit: cover;
  height: 500px;
}

.hero-float-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(46, 125, 50, 0.1);
}

.hero-image img {
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.03);
}

.hero h1 {
  font-weight: 800;
  letter-spacing: -1px;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.hero-float-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  animation: float 3s ease-in-out infinite;
}

.card-delivery {
  bottom: 30px;
  left: -30px;
}

.card-rating {
  top: 40px;
  right: -20px;
}

.hero-float-card .icon {
  font-size: 1.4rem;
  margin-right: 10px;
}

/* .hero-float-card .label {
        font-size: 0.7rem;
        color: #888;
      } */
.hero-float-card .icon {
  font-size: 22px;
  color: #2e7d32;
  margin-right: 12px;
}

.hero-float-card .val {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.hero-img-box {
  width: 100%;
  max-width: 520px;
  height: 480px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(46, 125, 50, 0.2);
}

/* floating leaves */
.leaf-float {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.15;
  animation: leafSpin 8s linear infinite;
}

.leaf-float:nth-child(1) {
  top: 15%;
  left: 5%;
  animation-delay: 0s;
}

.leaf-float:nth-child(2) {
  top: 60%;
  left: 2%;
  animation-delay: 2s;
  font-size: 1.8rem;
}

.leaf-float:nth-child(3) {
  top: 25%;
  right: 8%;
  animation-delay: 4s;
  font-size: 2rem;
}

/* ── STATS STRIP ── */
.stats-strip {
  background: linear-gradient(135deg,
      var(--primary),
      var(--primary-light));
  padding: 40px 0;
}

.stat-item {
  text-align: center;
  color: white;
}

.stat-num {
  font-family: "Poppins", sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 auto;
}

/* ── DELIVERY BANNER ── */
/* .delivery-banner {
        background: var(--mint);
        border: 1px solid var(--mint-mid);
        border-radius: 20px;
        padding: 24px 32px;
        margin: 60px 0 0;
        display: flex;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
      }
      .delivery-icon-wrap {
        width: 56px;
        height: 56px;
        background: linear-gradient(
          135deg,
          var(--primary-light),
          var(--primary)
        );
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        flex-shrink: 0;
      } */
.delivery-banner {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(46, 125, 50, 0.15);
  border-radius: 24px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 10px 30px rgba(46, 125, 50, 0.12);
}

.delivery-icon-wrap {
  width: 65px;
  height: 65px;
  border-radius: 18px;
  background: linear-gradient(135deg, #66bb6a, #2e7d32);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
}

.delivery-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1b5e20;
}

.delivery-text {
  font-size: 0.9rem;
  color: #4e6b50;
}

/* .free-badge{
    background:#e8f5e9;
    color:#2e7d32;
    padding:4px 10px;
    border-radius:20px;
    font-size:12px;
    margin-left:8px;
    font-weight:700;
}  */
.free-badge {
  background: linear-gradient(135deg, #ffb300, #ff8f00);
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-left: 8px;
}

/* ── SECTION HEADERS ── */
.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--mint);
  border-radius: 50px;
  padding: 5px 16px;
  display: inline-block;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-dark);
  line-height: 1.2;
}

.section-header p {
  color: var(--text-mid);
  font-size: 1rem;
  max-width: 560px;
  margin: 12px auto 0;
}

/* ── CATEGORIES ── */
.categories-section {
  padding: 100px 0;
  background: #f4fbf4;
}

.cat-card {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  width: 100%;
  height: 100%;

  border: 1px solid #e7efe7;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);

  cursor: pointer;
  position: relative;
  overflow: hidden;

  transition: all 0.3s ease;
}

.cat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
      var(--primary-light),
      var(--primary));
  transform: scaleX(0);
  transition: transform 0.35s;
}

.cat-card:hover::before {
  transform: scaleX(1);
}

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(46, 125, 50, 0.15);
  border-color: #8bc34a;
  background: #fcfffc;
}

.cat-emoji {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.35s;
}

.cat-card:hover .cat-emoji {
  transform: scale(1.2) rotate(-5deg);
}

.cat-card h5 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  min-height: 50px;

}

.cat-card p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
  min-height: 45px;
  margin-bottom: 12px;
}

.cat-count {
  margin-top: auto;
  padding: 5px 12px;
  font-size: 0.75rem;
}

.cat-img {
  width: 100%;
  height: 165px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.reveal {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ── PLANTS SECTION ── */

.search-box {
  max-width: 500px;
  margin: 20px auto;
}

.search-box input {
  border-radius: 30px;
  padding: 12px 20px;
  font-size: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.plants-section {
  padding: 80px 0;
  background: var(--off-white);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}

.filter-btn {
  border: 1.5px solid var(--mint-mid);
  background: white;
  color: var(--text-mid);
  border-radius: 50px;
  padding: 8px 22px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.plant-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.plant-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.plant-img-wrap {
  height: 260px;
  overflow: hidden;
}

.plant-img-wrap img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.plant-img-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: linear-gradient(to top, white, transparent);
}

.plant-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: white;
  color: var(--primary);
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.best-seller {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent);
  color: white;
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 0.65rem;
  font-weight: 700;
}

.plant-body {
  flex: 1;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
}

.plant-body h6 {
  min-height: 56px;
  line-height: 1.4;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}


.plant-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(46, 125, 50, 0.18);
}

@media (max-width: 780px) {
  .plant-img-wrap {
    height: 240px;
  }

}

.plant-sci {
  font-size: 0.85rem;
  color: #6b7280;
  font-style: italic;
  min-height: 22px;
  margin-bottom: 10px;
}

.plant-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 70px;
  align-content: flex-start;
  margin-bottom: 14px;
}

.benefit-chip {
  background: #eefbf0;
  color: #2e7d32;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.plant-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-top: 1px solid #eef2ee;
  margin-top: auto;
}

/* .price {
        font-weight: 700;
        color: var(--primary);
      }
      .price{
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
}
      .price {
  font-size: 24px;
  font-weight: 800;
  color: white;
  background: #f8fff8;
  padding: 6px 14px;
  border-radius: 20px;
} */
.price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2e7d32;
}

.btn-add {
  background: #2e7d32;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 600;
}

.btn-add:hover {
  background: #1b5e20;
}

/* ── FEATURES ── */
.features-section {
  padding: 50px 0;
  background: #f8fbf8;
}

.feature-card {
  background: #fff;
  border-radius: 18px;
  padding: 16px 14px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(46, 125, 50, 0.08);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(46, 125, 50, 0.12);
}

.feature-icon {
  width: 52px;
  height: 52px;
  font-size: 1.2rem;
  margin: 0 auto 8px;
}

.feature-card:hover .feature-icon {
  transform: translateY(-5px) scale(1.08);
}

.feature-card h5 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.feature-card p {
  font-size: 0.82rem;
  line-height: 1.5;
  min-height: auto;
  margin-bottom: 0;
}

/* ── PAYMENT SECTION ── */
.payment-section {
  padding: 60px 0;
  background: #f8fbf8;
}

.row.g-3>div,
.row.g-4>div {
  display: flex;
}

.payment-card {
  width: 100%;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.payment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(46, 125, 50, 0.12);
}

.pay-logo {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.pay-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.payment-card h5,
.payment-card p,
.upi-id {
  text-align: center;
}

.payment-card .btn-primary-green {
  margin: 10px auto 0;
}

.upi-id {
  background: #f4faf4;
  border: 1px dashed #2e7d32;
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 12px auto;
  display: inline-block;
}

/* ── SOCIAL ── */
/* ===== SOCIAL SECTION ===== */

.social-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #f8fbf8, #eef8ef);
}

.social-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border-radius: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(46, 125, 50, .08);
  box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
  transition: .35s ease;
  text-decoration: none;
  color: inherit;
  height: 100%;
  min-height: 145px;
}

.social-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(46, 125, 50, .15);
  text-decoration: none;
  color: inherit;
}

.social-icon-wrap {
  width: 65px;
  height: 65px;
  border-radius: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
  transition: .3s;
}

.social-card:hover .social-icon-wrap {
  transform: scale(1.08);
}

.social-icon-wrap i {
  color: #fff;
  font-size: 30px;
}

.insta-wrap {
  background: linear-gradient(135deg,
      #f09433,
      #e6683c,
      #dc2743,
      #cc2366,
      #bc1888);
}

.yt-wrap {
  background: #ff0000;
}

.social-content {
  flex: 1;
}

.social-title {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin: 0 0 6px;
}

.social-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: .3s;
}

.instagram-link {
  color: #E1306C;
}

.youtube-link {
  color: #ff0000;
}

.social-card:hover .social-link {
  gap: 12px;
}

.social-card:hover .social-title {
  color: #2e7d32;
}

/*================ CONTACT SECTION ================*/

.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #2e7d32, #1b5e20);
  position: relative;
  overflow: hidden;

}

.contact-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;

  border-radius: 50%;

  top: -120px;

  right: -120px;

  background: rgba(255, 255, 255, .05);

}

.contact-section::after {

  content: "";

  position: absolute;

  width: 280px;

  height: 280px;

  border-radius: 50%;

  bottom: -120px;

  left: -80px;

  background: rgba(255, 255, 255, .04);

}

.contact-tag {

  background: rgba(255, 255, 255, .15);

  color: #fff;

}

.contact-section h2 {

  color: #fff;

}

.contact-heading {

  color: #f4f4f4;

  opacity: .9;

}

.contact-card {

  background: rgba(255, 255, 255, .12);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, .18);

  border-radius: 20px;

  padding: 24px;

  display: flex;

  gap: 18px;

  align-items: flex-start;

  height: 100%;

  transition: .35s;

}

.contact-card:hover {

  transform: translateY(-8px);

  background: rgba(255, 255, 255, .18);

  box-shadow: 0 20px 45px rgba(0, 0, 0, .18);

}

.contact-icon {

  width: 58px;

  height: 58px;

  border-radius: 18px;

  background: rgba(255, 255, 255, .18);

  display: flex;

  justify-content: center;

  align-items: center;

  flex-shrink: 0;

  transition: .3s;

}

.contact-card:hover .contact-icon {

  transform: scale(1.08);

}

.contact-icon i {

  color: #fff;

  font-size: 24px;

}

.contact-content {

  flex: 1;

}

.label {

  display: block;

  color: rgba(255, 255, 255, .75);

  font-size: 12px;

  letter-spacing: 1px;

  text-transform: uppercase;

  margin-bottom: 8px;

}

.val {

  color: #fff;

  font-size: 15px;

  font-weight: 600;

  line-height: 1.7;

  text-decoration: none;

  word-break: break-word;

}

.contact-card a:hover {

  color: #d8ffd8;

}

.contact-email {

  font-size: 14px;

}

.contact-btn {

  display: inline-flex;

  align-items: center;

  gap: 10px;

  background: #fff;

  color: #2e7d32;

  padding: 14px 34px;

  border-radius: 50px;

  font-weight: 600;

  text-decoration: none;

  box-shadow: 0 12px 30px rgba(0, 0, 0, .20);

  transition: .3s;

}

.contact-btn:hover {

  background: #f3fff3;

  color: #1b5e20;

  transform: translateY(-4px);

}

/*================ FOOTER ================*/

.footer-section {

  background: #102915;

  color: #bfcdbf;

  padding: 70px 0 25px;

}

.footer-brand {

  color: #fff;

  font-size: 28px;

  font-weight: 700;

  margin-bottom: 18px;

}

.footer-brand i {

  color: #55c057;

  margin-right: 8px;

}

.footer-about {

  font-size: 15px;

  line-height: 1.8;

  max-width: 340px;

  color: #bfcdbf;

}

.footer-section h5 {

  color: #fff;

  font-size: 17px;

  margin-bottom: 22px;

  font-weight: 600;

}

.footer-links {

  list-style: none;

  padding: 0;

  margin: 0;

}

.footer-links li {

  margin-bottom: 12px;

}

.footer-links a {

  text-decoration: none;

  color: #bfcdbf;

  transition: .3s;

  font-size: 15px;

}

.footer-links a:hover {

  color: #7bd97d;

  padding-left: 6px;

}

.footer-contact {

  list-style: none;

  padding: 0;

}

.footer-contact li {

  display: flex;

  gap: 12px;

  margin-bottom: 18px;

  align-items: flex-start;

  color: #bfcdbf;

  font-size: 15px;

  line-height: 1.7;

}

.footer-contact i {

  color: #67d36b;

  font-size: 18px;

  width: 22px;

  margin-top: 3px;

}

.footer-contact a {

  color: #bfcdbf;

  text-decoration: none;

}

.footer-contact a:hover {

  color: #7bd97d;

}

.social-links {

  margin-top: 25px;

}

.social-links a {

  width: 45px;

  height: 45px;

  display: inline-flex;

  justify-content: center;

  align-items: center;

  background: #17361d;

  color: #fff;

  border-radius: 12px;

  margin-right: 10px;

  transition: .35s;

  font-size: 18px;

}

.social-links a:hover {

  transform: translateY(-5px);

  background: #2e7d32;

}

.footer-divider {

  margin: 45px 0 25px;

  border-color: rgba(255, 255, 255, .08);

}

.footer-bottom {

  display: flex;

  justify-content: space-between;

  align-items: center;

  flex-wrap: wrap;

  gap: 10px;

}

.footer-bottom p {

  margin: 0;

  font-size: 14px;

  color: #bfcdbf;

}

/* Mobile */

@media(max-width:768px) {

  .footer-bottom {

    justify-content: center;

    text-align: center;

  }

  .footer-brand {

    font-size: 24px;

  }

  .footer-section {

    padding: 60px 0 20px;

  }

}

/* WHATSAPP FAB */
.whatsapp-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  animation: pulse 2s infinite;
}

.whatsapp-fab:hover {
  background: #1da851;
  color: white;
  transform: scale(1.1);
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes leafSpin {
  0% {
    transform: rotate(0deg) translateY(0);
  }

  50% {
    transform: rotate(180deg) translateY(-20px);
  }

  100% {
    transform: rotate(360deg) translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  }

  50% {
    box-shadow: 0 6px 40px rgba(37, 211, 102, 0.8);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.plant-grid-item {
  display: none !important;
}

.plant-grid-item.show {
  display: block !important;
}