:root {
  --green-dark: #1a4d2e;
  --green-mid: #2d7a47;
  --green-light: #5aab3a;
  --green-pale: #8cc63f;
  --green-fresh: #3d8b37;
  --gray-dark: #555d50;
  --gray-text: #4a4a4a;
  --off-white: #f8f6f0;
  --cream: #fdf9f3;
  --white: #ffffff;
  --border: #d4e6c3;
  --shadow: 0 4px 24px rgba(26,77,46,0.10);
  --shadow-lg: 0 12px 48px rgba(26,77,46,0.15);
  --radius: 14px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--gray-text);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(26,77,46,0.07);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 70px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.logo img { height: 48px; width: auto; }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--green-dark); letter-spacing: 0.5px;
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.nav-links a {
  display: block; padding: 8px 14px;
  font-size: 0.88rem; font-weight: 500; color: var(--gray-text);
  text-decoration: none; border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover { background: var(--border); color: var(--green-dark); }
.nav-links .active > a { color: var(--green-mid); font-weight: 600; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + -2px); left: 0;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 200px; overflow: hidden;
  animation: fadeDown 0.2s ease;
}
@keyframes fadeDown {
  from { opacity:0; transform:translateY(-8px); }
  to { opacity:1; transform:translateY(0); }
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 18px; font-size: 0.85rem; color: var(--gray-text);
  border-radius: 0; text-decoration: none;
  transition: var(--transition);
}
.dropdown-menu a:hover { background: var(--off-white); color: var(--green-mid); }
.dropdown-menu a .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-light); flex-shrink: 0;
}
.dropdown-arrow { font-size: 0.7rem; margin-left: 4px; }

/* CTA Button */
.nav-cta {
  background: var(--green-mid); color: white !important;
  border-radius: 8px !important; padding: 9px 18px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--green-dark) !important; color: white !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; border: none; background: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--green-dark); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed;
  top: 70px; left: 0; right: 0; bottom: 0;
  background: white; z-index: 999;
  overflow-y: auto; padding: 16px;
  transform: translateX(100%); transition: transform 0.3s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  display: block; padding: 13px 16px;
  font-size: 1rem; font-weight: 500; color: var(--gray-text);
  text-decoration: none; border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--green-mid); padding-left: 22px; }
.mobile-nav .section-label {
  font-size: 0.75rem; font-weight: 600; color: var(--green-mid);
  text-transform: uppercase; letter-spacing: 1px;
  padding: 16px 16px 6px;
}
.mobile-nav .sub-link {
  padding-left: 32px !important; font-size: 0.9rem !important; color: #888 !important;
}

/* ── HERO ── */
#home {
  min-height: 100vh; padding-top: 70px;
  background: linear-gradient(135deg, #e8f5e0 0%, #f0f7e8 40%, var(--cream) 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg-deco {
  position: absolute; top: -80px; right: -80px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(90,171,58,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero-bg-deco2 {
  position: absolute; bottom: -100px; left: -60px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(45,122,71,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; padding: 80px 24px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(45,122,71,0.12); border: 1px solid rgba(45,122,71,0.25);
  border-radius: 100px; padding: 6px 16px;
  font-size: 0.8rem; font-weight: 600; color: var(--green-mid);
  margin-bottom: 20px;
}
.hero-badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--green-mid); }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900; line-height: 1.12;
  color: var(--green-dark); margin-bottom: 20px;
}
.hero-title em { font-style: normal; color: var(--green-mid); }
.hero-tagline {
  font-size: 1.05rem; color: #666; line-height: 1.7;
  margin-bottom: 36px; max-width: 480px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--green-mid); color: white;
  padding: 14px 30px; border-radius: 10px;
  font-size: 0.95rem; font-weight: 600; text-decoration: none;
  transition: var(--transition); box-shadow: 0 4px 16px rgba(45,122,71,0.3);
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,122,71,0.35); }
.btn-outline {
  background: transparent; color: var(--green-mid);
  padding: 14px 30px; border-radius: 10px;
  font-size: 0.95rem; font-weight: 600; text-decoration: none;
  border: 2px solid var(--green-mid); transition: var(--transition);
  cursor: pointer;
}
.btn-outline:hover { background: var(--green-mid); color: white; transform: translateY(-2px); }
.hero-stats {
  display: flex; gap: 32px; margin-top: 44px; flex-wrap: wrap;
}
.stat { text-align: left; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 900; color: var(--green-dark);
}
.stat-label { font-size: 0.8rem; color: #888; margin-top: 2px; }

/* Hero image area */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.hero-logo-wrap {
  background: white; border-radius: 24px;
  box-shadow: var(--shadow-lg);
  padding: 40px; display: flex; flex-direction: column; align-items: center;
  position: relative; animation: floatUp 3s ease-in-out infinite alternate;
}
@keyframes floatUp {
  from { transform: translateY(0px); }
  to { transform: translateY(-14px); }
}
.hero-logo-wrap img { width: 200px; height: auto; }
.hero-card-deco {
  position: absolute; top: -20px; right: -20px;
  background: var(--green-mid); color: white;
  border-radius: 12px; padding: 12px 18px;
  font-size: 0.8rem; font-weight: 600;
  box-shadow: var(--shadow);
}
.hero-card-deco2 {
  position: absolute; bottom: -20px; left: -20px;
  background: white; border: 2px solid var(--border);
  border-radius: 12px; padding: 12px 18px;
  font-size: 0.8rem; font-weight: 600; color: var(--green-dark);
  box-shadow: var(--shadow);
}

/* ── SECTION COMMONS ── */
.section { padding: 90px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; color: var(--green-mid);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px;
}
.section-tag::before {
  content: ''; width: 20px; height: 2px; background: var(--green-mid);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; color: var(--green-dark); margin-bottom: 18px; line-height: 1.2;
}
.section-desc {
  font-size: 1rem; color: #666; line-height: 1.75; max-width: 620px;
}

/* ── ABOUT ── */
#about { background: white; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-bg {
  background: url('b2.jpg');
  border-radius: 20px; padding: 50px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 680px; text-align: center;
}
.about-img-bg img { width: 160px; height: auto; margin-bottom: 20px; }
.about-img-bg p {
  color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.6;
}
.about-badge-wrap {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--green-pale); color: var(--green-dark);
  border-radius: 12px; padding: 14px 20px;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 900; text-align: center;
  box-shadow: var(--shadow-lg);
  line-height: 1;
}
.about-badge-wrap span { display: block; font-family: 'DM Sans', sans-serif; font-size: 0.75rem; font-weight: 500; margin-top: 4px; }
.about-content { }
.mission-list {
  margin-top: 24px; display: flex; flex-direction: column; gap: 10px;
}
.mission-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 16px; background: var(--off-white); border-radius: 10px;
  border-left: 3px solid var(--green-mid);
  font-size: 0.9rem; color: var(--gray-text); line-height: 1.5;
  transition: var(--transition);
}
.mission-item:hover { background: var(--border); transform: translateX(4px); }
.mission-item::before {
  content: '✓'; color: var(--green-mid); font-weight: 700; flex-shrink: 0; margin-top: 1px;
}

/* ── VISION ── */
#vision {
  background: linear-gradient(135deg, var(--green-dark) 0%, #1c5c38 100%);
  position: relative; overflow: hidden;
}
#vision::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.vision-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; position: relative;
}
.vision-text .section-tag { color: var(--green-pale); }
.vision-text .section-tag::before { background: var(--green-pale); }
.vision-text .section-title { color: white; }
.vision-text .section-desc { color: rgba(255,255,255,0.8); max-width: 100%; }
.vision-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.vision-card {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 24px;
  backdrop-filter: blur(4px); transition: var(--transition);
}
.vision-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }
.vision-card-icon { font-size: 2rem; margin-bottom: 12px; }
.vision-card h4 { color: white; font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.vision-card p { color: rgba(255,255,255,0.7); font-size: 0.85rem; line-height: 1.5; }

/* ── PRODUCTS ── */
#products { background: var(--cream); }
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 50px;
}
.product-card {
  background: white; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--border); transition: var(--transition);
  box-shadow: 0 2px 10px rgba(26,77,46,0.06);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green-mid); }
.product-card-img {
  <!-- height: 130px; -->
  display: flex; align-items: center; justify-content: center;
  font-size: 0;
}
.pc-insecticide { background: linear-gradient(135deg, #e8f5e0, #c8e6b0); }
.pc-fungicide { background: linear-gradient(135deg, #e0f0f5, #b0d8e6); }
.pc-herbicide { background: linear-gradient(135deg, #f5f0e0, #e6d8b0); }
.pc-growth { background: linear-gradient(135deg, #e8ffe0, #b0f0b0); }
.pc-specialty { background: linear-gradient(135deg, #f0e0f5, #d8b0e6); }
.product-card-body { padding: 22px; }
.product-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--green-dark); margin-bottom: 8px;
}
.product-card p { font-size: 0.87rem; color: #777; line-height: 1.6; margin-bottom: 16px; }
.product-tag {
  display: inline-block; background: var(--border);
  color: var(--green-mid); font-size: 0.75rem; font-weight: 600;
  padding: 4px 12px; border-radius: 100px;
}

/* ── STRENGTHS ── */
#strengths { background: white; }
.strengths-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px; margin-top: 50px;
}
.strength-card {
  padding: 32px; border-radius: 18px; background: var(--off-white);
  border: 1px solid var(--border); text-align: center;
  transition: var(--transition);
}
.strength-card:hover { background: var(--green-dark); transform: translateY(-4px); }
.strength-card:hover h3, .strength-card:hover p { color: white !important; }
.strength-card:hover .strength-icon-wrap { background: rgba(255,255,255,0.15); }
.strength-icon-wrap {
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--border); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 1.8rem;
  transition: var(--transition);
}
.strength-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700; color: var(--green-dark); margin-bottom: 10px;
  transition: var(--transition);
}
.strength-card p { font-size: 0.87rem; color: #777; line-height: 1.65; transition: var(--transition); }

/* ── FAQ ── */
#faq { background: var(--cream); }
.faq-wrap { max-width: 760px; margin: 50px auto 0; }
.faq-item {
  background: white; border: 1px solid var(--border);
  border-radius: 12px; margin-bottom: 12px; overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--green-mid); box-shadow: 0 4px 16px rgba(45,122,71,0.1); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; cursor: pointer; user-select: none;
  font-weight: 600; color: var(--green-dark); font-size: 0.95rem;
  gap: 16px;
}
.faq-q .icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--border); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--green-mid); flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-q .icon { background: var(--green-mid); color: white; transform: rotate(45deg); }
.faq-a {
  padding: 0 24px; max-height: 0; overflow: hidden;
  font-size: 0.9rem; color: #666; line-height: 1.7;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { padding: 0 24px 20px; max-height: 300px; }

/* ── TESTIMONIALS ── */
#testimonials { background: white; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px; margin-top: 50px;
}
.testimonial-card {
  background: var(--off-white); border-radius: 18px; padding: 30px;
  border: 1px solid var(--border); position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4rem; line-height: 0.8;
  color: var(--green-light); opacity: 0.3;
  margin-bottom: 12px;
}
.testimonial-text { font-size: 0.92rem; color: #555; line-height: 1.7; margin-bottom: 22px; font-style: italic; }
.testimonial-footer {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid var(--border); padding-top: 18px;
}
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-mid); display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: white;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--green-dark); font-size: 0.9rem; }
.testimonial-role { font-size: 0.78rem; color: #999; }
.stars { color: #f4b942; font-size: 0.85rem; margin-top: 3px; }

/* ── CONTACT ── */
#contact { background: var(--cream); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start;
}
.contact-info { }
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 28px; padding: 20px; background: white;
  border-radius: 12px; border: 1px solid var(--border);
  transition: var(--transition);
}
.contact-item:hover { border-color: var(--green-mid); transform: translateX(4px); }
.contact-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--border); display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.contact-item h4 { font-weight: 700; color: var(--green-dark); font-size: 0.9rem; margin-bottom: 4px; }
.contact-item p { font-size: 0.85rem; color: #777; line-height: 1.5; }
.contact-form {
  background: white; border-radius: 20px; padding: 36px;
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--green-dark); margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--gray-text);
  background: var(--off-white); transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid); background: white;
  box-shadow: 0 0 0 3px rgba(45,122,71,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%; padding: 14px;
  background: var(--green-mid); color: white;
  border: none; border-radius: 10px; font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: var(--transition);
}
.form-submit:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(45,122,71,0.3); }

/* ── FOOTER ── */
footer {
  background: var(--green-dark); color: rgba(255,255,255,0.75);
  padding: 60px 24px 24px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo img { height: 40px; }
.footer-logo span { color: white; font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; }
.footer-brand p { font-size: 0.87rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { color: white; font-weight: 700; font-size: 0.9rem; margin-bottom: 18px; }
.footer-col a {
  display: block; color: rgba(255,255,255,0.65);
  text-decoration: none; font-size: 0.85rem; margin-bottom: 10px;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--green-pale); transform: translateX(4px); }
.footer-bottom {
  max-width: 1200px; margin: 40px auto 0;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: var(--green-pale); text-decoration: none; }

/* ── FLOATING BUTTONS ── */
.float-wa {
  position: fixed; bottom: 24px; left: 24px; z-index: 900;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition); animation: pulse-wa 2.5s infinite;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
}
.float-enquiry {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--green-mid); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; cursor: pointer;
  box-shadow: 0 4px 20px rgba(45,122,71,0.4);
  transition: var(--transition); border: none;
  animation: pulse-enq 2.5s 1s infinite;
}
.float-enquiry:hover { transform: scale(1.1); }
@keyframes pulse-enq {
  0%, 100% { box-shadow: 0 4px 20px rgba(45,122,71,0.4); }
  50% { box-shadow: 0 4px 32px rgba(45,122,71,0.7); }
}

/* ── ENQUIRY PANEL ── */
.enquiry-overlay {
  display: none; position: fixed; inset: 0; z-index: 1100;
  background: rgba(0,0,0,0.35); backdrop-filter: blur(3px);
  animation: fadeIn 0.2s ease;
}
.enquiry-overlay.show { display: block; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.enquiry-panel {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 1200;
  width: 420px; max-width: 95vw;
  background: white; box-shadow: -8px 0 48px rgba(0,0,0,0.18);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
}
.enquiry-panel.open { transform: translateX(0); }
.enquiry-panel-header {
  background: var(--green-dark); padding: 28px 28px 22px;
  flex-shrink: 0;
}
.enquiry-panel-header h3 {
  color: white; font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 800; margin-bottom: 6px;
}
.enquiry-panel-header p { color: rgba(255,255,255,0.75); font-size: 0.85rem; }
.enquiry-panel-close {
  position: absolute; top: 20px; right: 20px;
  background: rgba(255,255,255,0.15); border: none; color: white;
  width: 34px; height: 34px; border-radius: 50%; font-size: 1.2rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.enquiry-panel-close:hover { background: rgba(255,255,255,0.3); }
.enquiry-panel-body {
  flex: 1; overflow-y: auto; padding: 28px;
}
.enquiry-panel-body .form-group { margin-bottom: 16px; }
.enquiry-panel-body .form-group label { font-size: 0.8rem; }
.enquiry-panel-body .form-group input,
.enquiry-panel-body .form-group select,
.enquiry-panel-body .form-group textarea {
  font-size: 0.88rem; padding: 11px 14px;
}

/* ── MOBILE BOTTOM BAR ── */
.mobile-bottom-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: white;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.10);
  padding: 8px 0 env(safe-area-inset-bottom, 0px);
}
.mobile-bottom-bar-inner {
  display: flex; align-items: stretch;
}
.mbb-btn {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; padding: 6px 4px;
  text-decoration: none; color: var(--gray-text);
  font-size: 0.7rem; font-weight: 600;
  border: none; background: none; cursor: pointer;
  transition: var(--transition); position: relative;
}
.mbb-btn:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px; background: var(--border);
}
.mbb-btn .icon { font-size: 1.3rem; }
.mbb-btn.chat { color: #25D366; }
.mbb-btn.call { color: var(--green-mid); }
.mbb-btn.enquiry-m { color: var(--green-mid); }
.mbb-btn.reach { color: var(--green-dark); }
.mbb-btn:active { background: var(--off-white); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--green-dark); color: white;
  padding: 12px 24px; border-radius: 100px;
  font-size: 0.88rem; font-weight: 600; z-index: 2000;
  opacity: 0; transition: all 0.3s ease; pointer-events: none;
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .vision-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none !important; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-logo-wrap { padding: 28px; }
  .hero-logo-wrap img { width: 140px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .float-wa, .float-enquiry { display: none !important; }
  .mobile-bottom-bar { display: block; }
  body { padding-bottom: 65px; }
  .form-row { grid-template-columns: 1fr; }
  .vision-cards { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .section { padding: 60px 18px; }
  .hero-inner { padding: 50px 18px; }
  .contact-form { padding: 22px; }
}



/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.lightbox.show {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  font-weight: 300;
  transition: 0.3s;
}

.lightbox-close:hover {
  color: #8cc63f;
  transform: rotate(90deg);
}


/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  background: #eee;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);

  aspect-ratio: 1 / 1; /* 🔥 square (best for gallery) */
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transition: transform 0.4s ease; /* IMPORTANT */
}

/* Hover Effect */
.gallery-item:hover img {
  transform: scale(1.15); /* 🔥 stronger zoom */
}

/* Overlay effect */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  opacity: 0;
  transition: 0.3s;
}

.gallery-item:hover::after {
  opacity: 1;
}











