/* ── 1. CSS Custom Properties ─────────────────────────────── */
:root {
  --green-primary:   #47A35D;
  --green-dark:      #204E3D;
  --green-light:     #61CE70;
  --gold:            #EFB344;
  --beige:           #EFEEEA;
  --white:           #FFFFFF;
  --body-text:       #7A7A7A;
  --secondary-text:  #54595F;
  --font-main:       'Poppins', sans-serif;
  --font-heading:    'Alata', sans-serif;
  --container-max:   1200px;
  --transition:      0.25s ease;
  --shadow-card:     10px 10px 0px 0px var(--green-primary);
}

/* ── 2. Reset / Normalize ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--body-text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── 3. Utility ───────────────────────────────────────────── */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ── 4. Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--green-primary);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 3px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:hover { background: var(--green-dark); color: var(--white); }
.btn-sm { padding: 8px 20px; font-size: 13px; }
.btn-amber { background: var(--gold); color: var(--white); }
.btn-amber:hover { background: #d9a030; color: var(--white); }
.btn-slide {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 12px 32px;
  font-size: 14px;
  letter-spacing: 1px;
}
.btn-slide:hover { background: var(--white); color: var(--green-dark); }

/* ── 5. Holiday Banner ────────────────────────────────────── */
.holiday-banner {
  background: var(--gold);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  display: none;
}
.holiday-banner.visible { display: block; }

/* ── 5b. Promo Banner ─────────────────────────────────────── */
.promo-banner {
  background: var(--gold);
  color: var(--white);
  text-align: center;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  display: none;
}
.promo-banner.visible { display: block; }

/* ── 6. Header — Sticky Wrapper ──────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 999;
}

/* ── 6. Header — Top Bar ──────────────────────────────────── */
.header-topbar {
  background: var(--beige);
  min-height: 50px;
  display: flex;
  align-items: center;
}
.header-topbar .container { width: 100%; }
.topbar-items {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 8px 0;
}
.topbar-items li { font-size: 13px; color: var(--secondary-text); }
.topbar-items a { color: var(--secondary-text); font-size: 13px; }
.topbar-items a:hover { color: var(--green-primary); }
.topbar-items i { color: var(--green-primary); margin-right: 5px; }

/* ── 7. Header — Nav Bar ──────────────────────────────────── */
.header-nav {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: box-shadow var(--transition);
}
.header-nav.is-sticky { box-shadow: 0 2px 16px rgba(0,0,0,0.10); }
.nav-inner {
  display: grid;
  grid-template-columns: 15% 70% 15%;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  min-height: 80px;
}
.nav-logo a { display: inline-block; }
.nav-logo img { width: 150px; height: auto; }

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary-text);
  white-space: nowrap;
  transition: color var(--transition);
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--green-primary); }
.nav-menu > li > a i { font-size: 11px; margin-left: 3px; }

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  border-top: 3px solid var(--green-primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 1000;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--secondary-text);
  border-bottom: 1px solid var(--beige);
  transition: background var(--transition), color var(--transition);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--beige); color: var(--green-primary); }

/* Nav CTA */
.nav-cta { display: flex; justify-content: flex-end; align-items: center; }

/* Hamburger */
.nav-toggle {
  display: none;
  font-size: 22px;
  color: var(--green-dark);
  padding: 8px;
}
.nav-icon-close { display: none; }

/* ── 8. Hero Slider ───────────────────────────────────────── */
.hero-slider {
  position: relative;
  width: 100%;
  height: 630px;
  overflow: hidden;
}
.slider-track { width: 100%; height: 100%; position: relative; }
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide.active { opacity: 1; z-index: 2; }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.slide-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  padding: 20px;
  max-width: 800px;
}
.slide-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.slide-content p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.slider-prev, .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  border: 2px solid rgba(255,255,255,0.5);
}
.slider-prev { left: 20px; }
.slider-next { right: 20px; }
.slider-prev:hover, .slider-next:hover { background: rgba(255,255,255,0.4); }
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.slider-dot.active { background: var(--white); }

/* ── 9. Featured Plants ───────────────────────────────────── */
.featured-plants {
  padding: 70px 0;
  background: var(--white);
}
.plants-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.plant-card { text-align: center; }
.plant-card img {
  width: 100%;
  border-radius: 5px;
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
}
.plant-name {
  color: var(--green-dark);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 10px;
}
.plant-name strong { font-weight: 700; display: block; }
.plant-desc { font-size: 14px; color: var(--body-text); line-height: 1.6; }

/* ── 10. Shared: Green Section Overlay ────────────────────── */
.green-section {
  position: relative;
  background: var(--green-dark);
  overflow: hidden;
}
.green-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('img/bg-illustration.jpg') center/cover no-repeat;
  opacity: 0.2;
  pointer-events: none;
}
.green-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('img/leafs-pattern.png') center/cover no-repeat;
  opacity: 0.5;
  pointer-events: none;
}

/* ── 10. About Section ────────────────────────────────────── */
.about-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 2fr 3fr;
  min-height: 420px;
}
.about-image { overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 50px;
  background: rgba(32, 78, 61, 0.7);
  color: var(--white);
}
.about-content .section-label {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 20px;
}
.about-content .section-label strong { color: var(--green-light); }
.about-content p { font-size: 15px; line-height: 1.8; margin-bottom: 16px; color: rgba(255,255,255,0.9); }
.about-content h2 { color: var(--green-light); font-size: 36px; margin-bottom: 20px; }

/* ── 11. Features Row ─────────────────────────────────────── */
.features-section {
  position: relative;
  padding: 70px 0;
  background: var(--white);
}
.features-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--beige);
  opacity: 0.95;
  pointer-events: none;
}
.features-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.feature { text-align: center; padding: 20px; }
.feature-icon {
  font-size: 40px;
  color: var(--green-primary);
  margin-bottom: 16px;
  display: block;
}
.feature-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  line-height: 1.3;
}
.feature p { font-size: 14px; color: var(--body-text); }
.feature p a { color: var(--green-primary); }
.feature p a:hover { color: var(--gold); }

/* ── 12. Plant Design Section ─────────────────────────────── */
.plant-design-section { padding: 80px 0; background: var(--white); }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.col-text h2 {
  font-size: 32px;
  color: var(--green-dark);
  font-weight: 600;
  margin-bottom: 20px;
}
.col-text p { font-size: 15px; color: var(--body-text); margin-bottom: 16px; }
.col-text p a { color: var(--green-primary); }
.col-text p a:hover { color: var(--gold); }
.col-text .btn { margin-top: 8px; }
.col-image img {
  width: 100%;
  border-radius: 5px;
  box-shadow: 8px 8px 24px rgba(0,0,0,0.15);
}

/* ── 13. Planting Guide Section ───────────────────────────── */
.planting-guide-section {
  padding: 80px 0;
  background: var(--beige);
}
.guide-heading {
  font-size: 42px;
  color: var(--green-dark);
  font-weight: 700;
  margin-bottom: 20px;
}

/* ── 14. Testimonials ─────────────────────────────────────── */
.testimonials-section {
  padding: 80px 0;
}
.testimonials-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  background: rgba(32,78,61,0.6);
  border-radius: 12px 12px 0 0;
}
.testimonial-slider { padding: 60px 20px 40px; }
.testimonial-track { position: relative; min-height: 160px; }
.testimonial {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.testimonial.active { opacity: 1; position: relative; }
.testimonial blockquote {
  font-size: 16px;
  font-style: italic;
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 16px;
}
.testimonial cite {
  font-size: 14px;
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.testimonial-dot.active { background: var(--gold); }

/* ── 16. Main Footer ──────────────────────────────────────── */
.footer-main {
  background: var(--beige);
  padding-top: 60px;
  padding-bottom: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.footer-col img { margin-bottom: 20px; }
.footer-hours p {
  font-size: 13px;
  color: var(--secondary-text);
  line-height: 1.7;
  margin-bottom: 4px;
}
.footer-hours strong { color: var(--green-dark); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: background var(--transition);
}
.social-icon:hover { background: var(--green-dark); color: var(--white); }
.footer-heading {
  font-size: 15px;
  font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 14px; color: var(--secondary-text); }
.footer-links a:hover { color: var(--green-primary); }
.footer-col iframe { border-radius: 5px; }

/* ── 17. Copyright Bar ────────────────────────────────────── */
.footer-copyright {
  background: var(--gold);
  padding: 14px 20px;
  text-align: center;
}
.footer-copyright p {
  color: var(--white);
  font-size: 13px;
  margin: 0;
}

/* ── 18. Back to Top ──────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  font-size: 32px;
  color: var(--green-primary);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), color var(--transition);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { color: var(--gold); }

/* ── 19. Page Hero (inner pages) ──────────────────────────── */
.page-hero {
  padding: 60px 0;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .two-col { align-items: center; }
.page-hero .col-image img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: none;
}
.page-hero .col-text {
  color: var(--white);
}
.page-hero .col-text h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
  color: var(--white);
}
.page-hero .col-text h1 strong { color: var(--green-light); }
.page-hero .col-text h2 {
  font-size: 22px;
  color: var(--gold);
  margin: 24px 0 8px;
}
.page-hero .col-text h3 {
  font-size: 18px;
  color: var(--gold);
  margin: 20px 0 8px;
}
.page-hero .col-text p { font-size: 17px; margin-bottom: 14px; color: rgba(255,255,255,0.9); line-height: 1.7; }
.page-hero .col-text p a { color: var(--gold); }
.page-hero .col-text p a:hover { color: var(--white); }
.page-hero .col-text strong { color: var(--gold); }
.page-hero .col-image-sm { max-width: 340px; flex-shrink: 0; }
.page-hero .col-image-sm img { border-radius: 5px; }

/* ── 20. Guide Content ────────────────────────────────────── */
.guide-content { padding: 70px 0; background: var(--white); }
.guide-warranty-note {
  background: #fff8ee;
  border: 1px solid var(--gold);
  border-radius: 5px;
  padding: 24px;
  margin-bottom: 30px;
}
.guide-warranty-note p { font-size: 14px; color: var(--secondary-text); margin-bottom: 8px; }
.guide-warranty-note p:last-child { margin-bottom: 0; font-weight: 600; }
.section-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--green-primary);
  margin-bottom: 8px;
}
.section-label strong { color: var(--green-dark); }

/* ── 21. Warranty ─────────────────────────────────────────── */
.warranty-content { padding: 70px 0; background: var(--white); }
.warranty-card {
  background: var(--beige);
  border-radius: 6px;
  padding: 32px;
  margin-bottom: 24px;
  border-left: 4px solid var(--green-primary);
}
.warranty-card h2 {
  font-size: 20px;
  color: var(--green-dark);
  margin-bottom: 16px;
  font-weight: 700;
}
.warranty-card h3 {
  font-size: 17px;
  color: var(--green-dark);
  margin-bottom: 12px;
  font-weight: 700;
}
.warranty-card p { font-size: 14px; color: var(--body-text); margin-bottom: 10px; line-height: 1.7; }
.warranty-card p strong { color: var(--secondary-text); }
.warranty-card ul { padding-left: 20px; list-style: disc; }
.warranty-card ul li { font-size: 14px; color: var(--body-text); margin-bottom: 6px; line-height: 1.6; }

/* ── 22. Products Gallery ─────────────────────────────────── */
.products-gallery { padding: 70px 0; background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-grid figure { overflow: hidden; border-radius: 5px; }
.gallery-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 5px;
  transition: transform 0.4s ease;
  display: block;
}
.gallery-img:hover { transform: scale(1.04); }
figcaption {
  padding: 8px 4px;
  font-size: 13px;
  color: var(--secondary-text);
  font-weight: 500;
  text-align: center;
}

/* ── 23. Services ─────────────────────────────────────────── */
.services-hero {
  padding: 70px 0;
}
.services-hero .container { position: relative; z-index: 2; }
.services-hero h1 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.6rem); }
.services-hero .col-text p { color: rgba(255,255,255,0.9); font-size: 17px; line-height: 1.7; }
.services-hero .col-image img { box-shadow: none; }
.services-considerations { padding: 70px 0; background: var(--white); }
.considerations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.consideration i {
  font-size: 40px;
  color: var(--green-primary);
  margin-bottom: 16px;
  display: block;
}
.consideration h3 { font-size: 16px; color: var(--green-dark); margin-bottom: 10px; font-weight: 700; }
.consideration p { font-size: 14px; color: var(--body-text); }
.delivery-section { padding: 60px 0; background: var(--beige); }
.delivery-section h2 { font-size: 28px; color: var(--green-dark); margin-bottom: 30px; font-weight: 700; }
.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.delivery-grid figure { overflow: hidden; border-radius: 5px; }
.delivery-grid img { width: 100%; border-radius: 5px; }
.services-gallery { padding: 70px 0; background: var(--white); }
.services-cta {
  padding: 60px 0;
  background: var(--green-dark);
  text-align: center;
}
.services-cta h2 { color: var(--white); font-size: 28px; margin-bottom: 24px; }
.services-message { padding: 70px 0; background: var(--beige); }
.services-message h2 { font-size: 24px; color: var(--green-dark); margin-bottom: 24px; font-weight: 700; }

/* ── 24. Contact ──────────────────────────────────────────── */
.contact-section { padding: 70px 0; background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-form-col h2,
.contact-map-col h2 {
  font-size: 24px;
  color: var(--green-dark);
  margin-bottom: 24px;
  font-weight: 700;
}
.contact-hero .page-hero-content h2 { color: var(--gold); }
.contact-social { display: flex; gap: 12px; margin: 12px 0 20px; }
.contact-social a {
  font-size: 22px;
  color: var(--white);
  transition: color var(--transition);
}
.contact-social a:hover { color: var(--gold); }

/* ── 25. Contact Form ─────────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 14px;
  color: var(--secondary-text);
  background: #fafafa;
  transition: border-color var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--green-primary); background: #fff; }
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form .btn { align-self: flex-start; }
.contact-map-col iframe { border-radius: 5px; }

/* ── 26. Plant Finder ─────────────────────────────────────── */
.plant-finder-wrapper {
  padding: 60px 20px;
  max-width: var(--container-max);
  margin: 0 auto;
}
.plant-finder-wrapper h1 {
  font-size: 2rem;
  color: var(--green-dark);
  margin-bottom: 24px;
  font-weight: 700;
}

/* ── 27. Responsive — 1024px ──────────────────────────────── */
@media (max-width: 1024px) {
  .nav-inner { grid-template-columns: 1fr auto; }
  .nav-menu { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  /* Mobile nav open */
  .header-nav.nav-open .nav-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 998;
    padding: 16px 0;
    align-items: flex-start;
    gap: 0;
  }
  .header-nav.nav-open .nav-menu > li { width: 100%; }
  .header-nav.nav-open .nav-menu > li > a {
    padding: 12px 24px;
    border-bottom: 1px solid var(--beige);
    display: block;
    width: 100%;
  }
  .header-nav.nav-open .nav-icon-open { display: none; }
  .header-nav.nav-open .nav-icon-close { display: inline; }
  .header-nav .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid var(--green-primary);
    margin-left: 20px;
    display: none;
  }
  .has-dropdown.open .dropdown { display: block; }

  .plants-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .considerations-grid { grid-template-columns: repeat(2, 1fr); }
  .delivery-grid { grid-template-columns: 1fr; }
}

/* ── 28. Responsive — 768px ───────────────────────────────── */
@media (max-width: 768px) {
  .hero-slider { height: 420px; }
  .slide-content h1 { font-size: 1.6rem; letter-spacing: 1px; }
  .slide-content p { font-size: 0.9rem; }

  .plants-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .plant-card img { margin-bottom: 12px; }
  .plant-name { font-size: 18px; }
  .plant-desc { font-size: 13px; }

  .about-inner { grid-template-columns: 1fr; }
  .about-image { min-height: 240px; }
  .about-content { padding: 32px 20px; }
  .about-content .section-label { font-size: 18px; }

  .features-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .feature { padding: 16px 10px; }
  .feature-icon { font-size: 32px; }

  .two-col { grid-template-columns: 1fr; gap: 24px; }
  .two-col.reverse { direction: ltr; }
  .col-text h2 { font-size: 24px; }
  .guide-heading { font-size: 28px; }

  .page-hero { padding: 40px 0; }
  .page-hero .col-image { margin-bottom: 16px; }
  .page-hero .col-image img { max-height: 260px; }
  .page-hero .col-image-sm { max-width: 180px; margin: 0 auto 16px; }
  #watering-guide > div:first-of-type { grid-template-columns: 1fr !important; }
  #watering-guide > div:first-of-type > div:first-child { grid-row: auto !important; }
  .page-hero .col-text h1 { font-size: 1.4rem; }
  .page-hero .col-text p { font-size: 15px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-main { padding-top: 40px; padding-bottom: 40px; }
  .footer-col iframe { height: 180px; }
  .considerations-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  .topbar-items { gap: 8px; }
  .topbar-items li, .topbar-items a { font-size: 11px; }
  .header-topbar { min-height: 40px; }

  .delivery-grid { grid-template-columns: 1fr; }
  .services-cta h2 { font-size: 22px; }
  .services-message { padding: 40px 0; }

  .warranty-card { padding: 20px; }

  .testimonials-inner { border-radius: 8px 8px 0 0; }
  .testimonial-slider { padding: 30px 12px 24px; }
  .testimonial blockquote { font-size: 14px; }

  .contact-form-col h2,
  .contact-map-col h2 { font-size: 20px; }
}

@media (max-width: 480px) {
  .hero-slider { height: 340px; }
  .slide-content h1 { font-size: 1.3rem; }
  .slider-prev { left: 8px; width: 36px; height: 36px; font-size: 14px; }
  .slider-next { right: 8px; width: 36px; height: 36px; font-size: 14px; }

  .plants-grid { grid-template-columns: 1fr; }
  .plant-card img { box-shadow: 6px 6px 0px 0px var(--green-primary); }

  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .considerations-grid { grid-template-columns: 1fr; }

  .topbar-items { justify-content: center; }
  .topbar-items li, .topbar-items a { font-size: 10px; }

  .nav-logo img { width: 120px; }

  .btn { padding: 10px 22px; font-size: 13px; }

  .footer-copyright { padding: 12px 16px; }
  .footer-copyright p { font-size: 12px; }
}
