* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --green: #4a7c4a;
      --green-dark: #2d502d;
      --beige: #f9f6f0;
      --light-beige: #fdfcf8;
      --warm-brown: #f5f0e6;
      --brown: #6b5b4b;
      --gold: #d4af37;
      --text: #3a352f;
      --border: #e9e2d6;
    }

    body {
      font-family: 'Open Sans', sans-serif;
      color: var(--text);
      line-height: 1.7;
      background-color: var(--beige);
      overflow-x: hidden;
      scroll-behavior: smooth;
    }

    h1, h2, h3, h4, h5 {
      font-family: 'Playfair Display', serif;
      color: var(--white);
      font-weight: 700;
      letter-spacing: -0.5px;
    }

    /* General container */
    .container {
      width: 90%;
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 15px;
    }

/* === Navbar === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 1rem 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.8rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand h2 {
  font-family: 'Playfair Display', serif;
  color: var(--green-dark);
  font-size: 1.6rem;
  font-weight: 700;
}

.navbar-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.6rem;
}

.navbar-menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 1.05rem;
  position: relative;
}

.navbar-menu a:hover {
  color: var(--green);
}

.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.3s ease;
}

.navbar-menu a:hover::after {
  width: 100%;
}

.btn-contact {
  background: var(--green);
  color: white !important;
  padding: 6px 16px;
  border-radius: 30px;
  font-weight: 600;
}

.btn-contact:hover {
  background: var(--green-dark);
  color: white !important;
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.navbar-toggle span {
  width: 26px;
  height: 3px;
  background: var(--green-dark);
  margin: 3px 0;
  transition: 0.3s;
}
.navbar-menu a.active,
.navbar-menu a.active::after {
  color: var(--green);
  width: 100% !important;
}

.navbar-menu a.active::after {
  width: 100%;
}

/* === Hero === */
.hero {
  /* Updated background: fresh produce harvest */
  background: url('https://images.pexels.com/photos/3765023/pexels-photo-3765023.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  margin-top: 72px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  /* Slightly lighter green overlay for better text contrast */
  /* background: rgba(25, 60, 25, 0.6); */
  background-image: url(cropfield.jpeg);
  background-size: cover;
  background-position: center;
  z-index: -1;

    
}

.hero-content {
  max-width: 800px;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

/* Removed .eywa-hero-badge — not relevant to Nhlelo Enhle */

.hero h1 {
  font-size: 3.8rem;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.35rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  font-weight: 300;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--green-dark);
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.6);
  background: #c6a02e;
}


    /* === Sections === */
    section {
      padding: 5rem 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 3.5rem;
      position: relative;
    }

    .section-title h2 {
      font-size: 2.3rem;
      position: relative;
      display: inline-block;
      padding-bottom: 0.5rem;
      background: var(--beige);
    }

    .section-title h2::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 2px;
      background: var(--green);
    }

    /* === About === */
    .about-section {
      background-color: var(--light-beige);
    }

    .about-content {
      display: flex;
      gap: 3rem;
      align-items: center;
      flex-wrap: wrap;
    }

    .about-text {
      flex: 1;
      min-width: 300px;
    }

    .about-text h2 {
      font-size: 2.2rem;
      margin-bottom: 1.4rem;
      position: relative;
      padding-bottom: 0.6rem;
    }

    .about-text h2::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 2px;
      background: var(--green);
    }

    .about-lead {
      margin-bottom: 1.2rem;
      font-size: 1.05rem;
      line-height: 1.7;
    }

    .about-callout {
      color: var(--green);
      font-weight: 600;
    }

    .eywa-badge {
      display: inline-block;
      background: var(--green);
      color: white;
      padding: 4px 16px;
      border-radius: 30px;
      font-size: 0.85rem;
      margin-bottom: 1.2rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.8px;
    }

/* === About Section - Forced Layout (Do Not Change HTML) === */
.about-section {
  background-color: var(--light-beige);
  padding: 5rem 0;
}

.container > .about-content {
  position: relative;
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* Force "Our Story" heading into the text block */
.container > .about-content > h2 {
  display: none; /* Hide the misplaced heading */
}

/* Reposition .about-text to appear before image */
.about-text {
  order: 1;
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1.4rem;
  position: relative;
  padding-bottom: 0.6rem;
  display: block;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--green);
}

.about-lead {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Style the flip card */
.about-img {
  order: 2;
  flex: 1;
  /*min-width: 300px;*/
  display: flex;
  justify-content: center;
  align-items: flex-start;
  perspective: 1000px;
  margin-top: 2rem; /* Compensate for layout shift */
}

.flip-card {
  width: 100%;
  /*max-width: 450px;*/
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 60%; /* 5:6 aspect ratio */
  transform-style: preserve-3d;
  transition: transform 0.7s ease;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.about-img:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Fix nested structure: target .flip-card-front inside .flip-card-inner */
.flip-card-inner > .flip-card-front {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  background: white;
  border: 1px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: center;
}

.flip-card-front img {
  width: 100%;
  height: 70%;
  object-fit: cover;
  display: block;
}

/* Fix: .flip-card-back is currently inside .flip-card-front — override */
.flip-card-front > .flip-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--green);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1.5rem;
  box-sizing: border-box;
  text-align: center;
  backface-visibility: hidden;
  transform: rotateY(180deg);
}

.flip-card-back h3 {
  color: white;
  font-size: 1.7rem;
  margin-bottom: 1.3rem;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.flip-card-back .qualification {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.3rem;
}

.flip-card-back .institution {
  font-size: 1rem;
  opacity: 0.95;
  font-style: italic;
  line-height: 1.6;
}

.flip-card-back i {
  color: var(--gold);
  margin-right: 8px;
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .container > .about-content {
    flex-direction: column;
    align-items: center;
  }

  .about-text {
    text-align: center;
  }

  .about-img {
    margin-top: 2rem;
  }

  .flip-card {
    max-width: 350px;
  }
}

    /* === Services === */
    .services-section {
      padding: 5.5rem 0;
      background-color: var(--light-beige);
    }

    .services-organic-list {
      margin-top: 3rem;
    }

    .service-row {
      display: flex;
      align-items: center;
      gap: 3rem;
      padding: 2.2rem 0;
      border-bottom: 1px solid var(--border);
    }

    .service-row:last-child {
      border-bottom: none;
    }

    .service-row.reverse {
      flex-direction: row-reverse;
    }

    .service-icon-box {
      flex: 0 0 auto;
      width: 110px;
      height: 110px;
      background: var(--beige);
      border: 1px solid var(--border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--green);
      font-size: 2.2rem;
    }

    .service-text {
      flex: 1;
    }

    .service-text h3 {
      font-size: 1.6rem;
      margin-bottom: 0.6rem;
      color: var(--green-dark);
    }

    .service-text p {
      margin-bottom: 0.8rem;
      line-height: 1.7;
      color: #444;
    }

    .read-more-btn {
      background: var(--green);
      color: white;
      border: none;
      padding: 8px 18px;
      border-radius: 30px;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      margin-top: 1rem;
      transition: all 0.3s ease;
      font-family: 'Open Sans', sans-serif;
    }

    .read-more-btn:hover {
      background: var(--green-dark);
      transform: translateY(-2px);
    }

    /* === Modal === */
    .modal-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.75);
      z-index: 1000;
      justify-content: center;
      align-items: center;
      padding: 1.5rem;
      box-sizing: border-box;
    }

    .modal-content {
      background: white;
      max-width: 620px;
      width: 100%;
      border-radius: 18px;
      position: relative;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
      animation: modalFadeIn 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
      display: flex;
      flex-direction: column;
      max-height: 85vh;
    }

    @keyframes modalFadeIn {
      from { opacity: 0; transform: translateY(25px) scale(0.98); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }

    .modal-scrollable {
      padding: 2.2rem;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      flex: 1;
    }

    .close-modal {
      position: sticky;
      top: 0;
      left: calc(100% - 40px);
      transform: translateX(-50%);
      font-size: 1.9rem;
      color: #aaa;
      cursor: pointer;
      font-weight: 300;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: white;
      z-index: 10;
      margin-left: auto;
      margin-top: 1rem;
      margin-right: 1rem;
      transition: all 0.25s ease;
    }

    .close-modal:hover {
      color: var(--green);
      background: #f9f6f0;
      transform: rotate(90deg) scale(1.05);
    }

    .modal-scrollable h3 {
      font-family: 'Playfair Display', serif;
      color: var(--green-dark);
      margin-bottom: 1.1rem;
      font-size: 1.8rem;
      line-height: 1.3;
    }

    .modal-scrollable p {
      line-height: 1.75;
      margin-bottom: 1.3rem;
      color: #444;
      font-size: 1.05rem;
    }

    .tiers-container {
      margin-top: 1.6rem;
    }

    .tier-item {
      margin-bottom: 1.6rem;
      padding-bottom: 1.4rem;
      border-bottom: 1px solid var(--border);
    }

    .tier-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .tier-item h4 {
      font-family: 'Open Sans', sans-serif;
      font-weight: 700;
      color: var(--green-dark);
      margin-bottom: 0.7rem;
      font-size: 1.3rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .tier-price {
      color: var(--brown);
      font-weight: 800;
      font-size: 1.25rem;
    }

    .tier-item ul {
      padding-left: 1.5rem;
      margin-top: 0.5rem;
      list-style: none;
    }

    .tier-item li {
      margin-bottom: 0.55rem;
      font-size: 1rem;
      color: #555;
      position: relative;
      padding-left: 1.2rem;
      line-height: 1.5;
    }

    .tier-item li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--green);
      font-weight: bold;
      font-size: 1.1rem;
    }

    /* === Products === */
    .products-section {
      padding: 5.5rem 0;
      background-color: var(--light-beige);
      position: relative;
    }

    .product-slideshow {
      max-width: 800px;
      margin: 3rem auto 0;
      position: relative;
      text-align: center;
    }

    .slide {
      display: none;
      animation: fadeIn 0.6s ease-in-out;
    }

    .slide.active {
      display: block;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .product-image img {
      width: 140px;
      height: 140px;
      object-fit: contain;
      display: block;
      margin: 0 auto;
    }

    .product-text h3 {
      font-size: 1.7rem;
      margin-bottom: 0.8rem;
      color: var(--green-dark);
    }

    .product-text p {
      max-width: 600px;
      margin: 0 auto 1rem;
      line-height: 1.7;
      color: #444;
      font-size: 1.05rem;
    }

    .slideshow-dots {
      margin-top: 2rem;
    }

    .dot {
      display: inline-block;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #ccc;
      margin: 0 6px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .dot.active {
      background: var(--green);
    }

    .slide-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.7);
      border: 1px solid var(--border);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      font-weight: bold;
      color: var(--green-dark);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .slide-btn:hover {
      background: white;
      color: var(--green);
    }

    .prev-btn { left: -60px; }
    .next-btn { right: -60px; }

    @media (max-width: 768px) {
      .slide-btn { display: none; }
    }

    /* === Workwear === */
    .workwear-section {
      padding: 5.5rem 0;
      background-color: var(--warm-brown);
      background-image: 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='%23d7c8b0' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4l4-4h-4v-4h-4v4h-4v4h4v4h4zm4-14a6 6 0 1 1-12 0 6 6 0 0 1 12 0zm-6-2a2 2 0 1 0 0-4 2 2 0 0 0 0 4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      overflow: hidden;
    }

    .workwear-carousel {
      max-width: 1000px;
      margin: 3rem auto 0;
      position: relative;
    }

    .carousel-track {
      display: flex;
      gap: 2.4rem;
      padding: 1rem 0;
      animation: scroll 24s linear infinite;
      width: max-content;
    }

    .workwear-carousel:hover .carousel-track {
      animation-play-state: paused;
    }

    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .workwear-circle {
      text-align: center;
      min-width: 160px;
      max-width: 180px;
      opacity: 0.85;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .workwear-carousel:hover .workwear-circle {
      opacity: 1;
    }

    .workwear-circle:hover {
      transform: scale(1.05);
    }

    .circle-icon {
      width: 90px;
      height: 90px;
      background: var(--beige);
      border: 1px solid var(--border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.2rem;
      color: var(--green);
      font-size: 1.8rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .workwear-circle h3 {
      font-size: 1.25rem;
      margin-bottom: 0.4rem;
      color: var(--green-dark);
    }

    .workwear-circle p {
      font-size: 0.95rem;
      color: #555;
      margin-bottom: 0.5rem;
    }

    /* === Packages === */
    .packages-section {
      padding: 5.5rem 0;
      background: linear-gradient(to bottom, var(--light-beige), #f3f0e9);
      position: relative;
      overflow: hidden;
    }

    .packages-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30,20 C30,20 40,10 50,20 C60,30 70,20 70,20 L70,80 C70,80 60,90 50,80 C40,70 30,80 30,80 Z' fill='none' stroke='%23d4c8b0' stroke-opacity='0.04' stroke-width='2'/%3E%3C/svg%3E");
      pointer-events: none;
    }

    .package-accordion {
      max-width: 800px;
      margin: 2.5rem auto 0;
    }

    .package-item {
      background: white;
      border: 1px solid var(--border);
      border-radius: 14px;
      margin-bottom: 1.4rem;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.06);
      transition: box-shadow 0.3s ease;
    }

    .package-item:hover {
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }

    .package-header {
      display: flex;
      align-items: center;
      padding: 1.4rem 1.6rem;
      cursor: pointer;
      background: white;
    }

    .package-icon {
      width: 60px;
      height: 60px;
      background: var(--beige);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--green);
      font-size: 1.6rem;
      margin-right: 1.4rem;
    }

    .package-info h3 {
      font-size: 1.4rem;
      color: var(--green-dark);
      margin-bottom: 0.3rem;
    }

    .package-info .price {
      color: var(--brown);
      font-weight: 700;
      font-size: 1.15rem;
    }

    .toggle-icon {
      margin-left: auto;
      font-size: 1.8rem;
      color: var(--green);
      font-weight: bold;
      transition: transform 0.3s ease;
    }

    .package-item.active .toggle-icon {
      transform: rotate(45deg);
    }

    .package-details {
      padding: 0 1.6rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
      background: #faf8f4;
    }

    .package-item.active .package-details {
      padding: 0 1.6rem 1.8rem;
      max-height: 500px;
    }

    .package-details h4 {
      font-size: 1.3rem;
      color: var(--green);
      margin: 1.4rem 0 1rem;
    }

    .package-tiers {
      margin-bottom: 1rem;
    }

    .tier {
      margin-bottom: 0.8rem;
      font-size: 1rem;
      line-height: 1.6;
      color: #444;
    }

    .package-note {
      font-style: italic;
      color: #666;
      font-size: 0.95rem;
      margin-top: 0.6rem;
      padding-top: 0.8rem;
      border-top: 1px dashed var(--border);
    }

    /* === Special Offers === */
    .special-offers {
      text-align: center;
      margin-top: 2.8rem;
      position: relative;
      overflow: hidden;
    }

    .special-offers-content {
      display: inline-flex;
      align-items: center;
      background: var(--beige);
      padding: 0 1.2rem;
      z-index: 2;
      position: relative;
    }

    .special-offers::before,
    .special-offers::after {
      content: "";
      position: absolute;
      top: 50%;
      height: 1px;
      background: var(--border);
      transform: translateY(-50%);
    }

    .special-offers::before {
      left: 0;
      right: 50%;
      margin-right: 1.4rem;
    }

    .special-offers::after {
      left: 50%;
      right: 0;
      margin-left: 1.4rem;
    }

    .highlight-offer {
      font-weight: 800;
      font-size: 1.35rem;
      background: linear-gradient(to right, var(--green-dark), var(--green));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      letter-spacing: 0.5px;
      white-space: nowrap;
    }

    .referral-offer {
      color: var(--brown);
      font-weight: 600;
      font-size: 1.2rem;
      opacity: 0.9;
      margin-left: 0.6rem;
      white-space: nowrap;
    }

/* === Contact Form === */
.contact-section {
  padding: 5rem 0;
  background-color: var(--light-beige);
}

.contact-form-container {
  max-width: 700px;
  margin: 0 auto;
}

#nhlelo-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.form-row {
  display: flex;
  gap: 1.4rem;
}

.form-row input {
  flex: 1;
  min-width: 0; /* prevents overflow on mobile */
}

input,
textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  background: white;
  color: var(--text);
  transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(74, 124, 74, 0.15);
}

button[type="submit"] {
  align-self: flex-start;
  background: var(--gold);
  color: var(--green-dark) !important;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
  font-family: 'Open Sans', sans-serif;
  text-decoration: none;
  display: inline-block;
}

button[type="submit"]:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.6);
  background: #c6a02e;
}

/* Direct Contact Info (Optional - place below form) */
.direct-contact {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px dashed var(--border);
  color: var(--text);
  font-size: 1.05rem;
}

.direct-contact p {
  margin: 0.4rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.direct-contact i {
  color: var(--green);
  width: 20px;
  text-align: center;
}

/* === Main Footer === */
.main-footer {
  background: var(--green-dark);
  color: white;
  text-align: center;
  padding: 1.8rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 0; /* ensure no extra gap */
}

.main-footer p {
  margin: 0.3rem 0;
  opacity: 0.9;
}

.main-footer p:first-child {
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 1rem;
  }

  .direct-contact {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }
}    /* === Shared Price === */
    .price {
      color: var(--brown);
      font-weight: 700;
      font-size: 1.15rem;
      display: block;
    }

    /* === Responsive === */
    @media (max-width: 768px) {
      .navbar-toggle {
        display: flex;
      }

      .navbar-menu {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 0;
        gap: 1.2rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        transition: transform 0.4s ease;
      }

      .navbar-menu.active {
        transform: translateY(0);
      }

      .hero {
        height: 90vh;
        margin-top: 0;
      }

      .hero h1 { font-size: 2.6rem; }
      .hero p { font-size: 1.1rem; }

      .about-content,
      .service-row {
        flex-direction: column;
        text-align: center;
      }

      .service-icon-box {
        width: 100px;
        height: 100px;
        font-size: 2rem;
      }

      .special-offers-content {
        flex-direction: column;
        padding: 0 0.8rem;
        gap: 0.4rem;
      }

      .referral-offer {
        margin-left: 0;
      }

      .contact-links {
        flex-direction: column;
        gap: 0.8rem;
      }
    }

    @media (max-width: 480px) {
      .hero h1 { font-size: 2.2rem; }
      section { padding: 3.5rem 0; }
    }

    /* === NEW: Poultry Feature === */
    .poultry-feature {
      text-align: center;
      margin-top: 1.5rem;
    }

    .egg-toggle {
      background: var(--green);
      color: white;
      border: none;
      padding: 8px 20px;
      border-radius: 30px;
      font-weight: 600;
      cursor: pointer;
      margin-top: 1rem;
      transition: background 0.3s;
    }

    .egg-toggle:hover {
      background: var(--green-dark);
    }

    .egg-status {
      margin-top: 1rem;
      font-weight: 600;
      font-size: 1.1rem;
      min-height: 1.5rem;
    }

    .egg-available { color: var(--green); }
    .egg-unavailable { color: #d32f2f; }
    
.footer-link {
  color: black;
  text-decoration: none;
}