:root {
      --color-primary: #2f7d32;
      --color-primary-dark: #235c25;
      --color-accent: #f5b623;
      --color-bg: #f5f7f3;
      --color-bg-alt: #ffffff;
      --color-text: #1f2933;
      --color-muted: #6b7280;
      --shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.09);
      --radius-lg: 14px;
      --radius-md: 10px;
      --radius-pill: 999px;
      --max-width: 1120px;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--color-bg);
      color: var(--color-text);
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    /* Header & Nav */
    header.site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(245, 247, 243, 0.96);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(148, 163, 184, 0.25);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.8rem 0;
      gap: 1rem;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      font-weight: 700;
      letter-spacing: 0.02em;
    }

    .logo-icon {
      width: 32px;
      height: 32px;
      border-radius: 10px;
      background: radial-gradient(circle at 30% 20%, #fff 0, #9ae6b4 20%, #2f7d32 70%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.1rem;
    }

    .logo-text-main {
      font-size: 1.1rem;
    }

    .logo-text-sub {
      font-size: 0.78rem;
      color: var(--color-muted);
    }

    nav {
      display: flex;
      gap: 1.25rem;
      align-items: center;
      font-size: 0.9rem;
    }

    nav a {
      position: relative;
      padding-bottom: 0.2rem;
    }

    nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      border-radius: 999px;
      background: var(--color-primary);
      transition: width 0.2s ease;
    }

    nav a:hover::after {
      width: 100%;
    }

    .nav-cta {
      padding: 0.4rem 0.9rem;
      border-radius: var(--radius-pill);
      background: var(--color-primary);
      color: #fff;
      font-weight: 600;
      font-size: 0.88rem;
      box-shadow: 0 6px 16px rgba(31, 122, 41, 0.3);
      white-space: nowrap;
    }

    .nav-cta:hover {
      background: var(--color-primary-dark);
    }

    .mobile-nav-toggle {
      border: none;
      background: transparent;
      display: none;
      cursor: pointer;
      padding: 0.25rem;
    }

    .mobile-nav-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      background: #111827;
      border-radius: 999px;
      margin-bottom: 4px;
    }

    /* Hero with video background */
    #hero {
      position: relative;
      overflow: hidden;
      color: #0b1120;
    }

    .hero-background-video {
      position: absolute;
      inset: 0;
      z-index: -2;
      overflow: hidden;
    }

    .hero-background-video video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(1.2);
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top left, rgba(22, 163, 74, 0.45), transparent 40%),
                  linear-gradient(to bottom, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.8));
      z-index: -1;
    }

    .hero-inner {
      padding: 3.5rem 0 3rem;
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
      gap: 2.5rem;
      align-items: center;
      color: #f9fafb;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.15rem 0.5rem;
      border-radius: var(--radius-pill);
      background: rgba(34, 197, 94, 0.12);
      font-size: 0.8rem;
      color: #bbf7d0;
      margin-bottom: 0.7rem;
      border: 1px solid rgba(22, 163, 74, 0.5);
    }

    .eyebrow-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #22c55e;
    }

    .hero-title {
      font-size: clamp(2.1rem, 2.7vw + 1.4rem, 3rem);
      line-height: 1.1;
      margin: 0 0 0.6rem;
      letter-spacing: 0.02em;
    }

    .hero-highlight {
      color: #bbf7d0;
    }

    .hero-subtitle {
      font-size: 1rem;
      color: #e5e7eb;
      max-width: 32rem;
      margin-bottom: 1.4rem;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem;
      margin-bottom: 1.7rem;
    }

    .badge {
      border-radius: var(--radius-pill);
      padding: 0.3rem 0.9rem;
      font-size: 0.78rem;
      background: rgba(15, 23, 42, 0.8);
      border: 1px solid rgba(148, 163, 184, 0.55);
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
    }

    .badge-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #22c55e;
    }

    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
      align-items: center;
      margin-bottom: 1.4rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
      border-radius: var(--radius-pill);
      padding: 0.65rem 1.4rem;
      font-weight: 600;
      font-size: 0.94rem;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, #22c55e, #16a34a);
      color: #0b1120;
      box-shadow: 0 10px 20px rgba(22, 163, 74, 0.6);
    }

    .btn-primary:hover {
      background: linear-gradient(135deg, #4ade80, #16a34a);
      transform: translateY(-1px);
    }

    .btn-secondary {
background: linear-gradient(135deg, #22c55e, #16a34a);
      color: #0b1120;
      box-shadow: 0 10px 20px rgba(22, 163, 74, 0.6);
      border: 1px solid rgba(148, 163, 184, 0.7);
    }

    .btn-secondary:hover {
       background: linear-gradient(135deg, #4ade80, #16a34a);
      transform: translateY(-1px);
    
    }

    .btn-small {
      padding: 0.45rem 1rem;
      font-size: 0.82rem;
      box-shadow: none;
    }

    .hero-note {
      font-size: 0.86rem;
      color: #d1d5db;
    }

    .hero-note strong {
      color: #bbf7d0;
    }

    .hero-media {
      position: relative;
    }

    .hero-card {
      background: rgba(15, 23, 42, 0.88);
      border-radius: 24px;
      padding: 1rem;
      box-shadow: var(--shadow-soft);
      overflow: hidden;
      position: relative;
      border: 1px solid rgba(148, 163, 184, 0.6);
    }

    .hero-image {
      border-radius: 18px;
      overflow: hidden;
      max-height: 260px;
      position: relative;
    }

    .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.03);
    }

    .hero-tag {
      position: absolute;
      left: 1rem;
      bottom: 1rem;
      background: rgba(15, 23, 42, 0.78);
      color: #f9fafb;
      padding: 0.3rem 0.7rem;
      font-size: 0.78rem;
      border-radius: var(--radius-pill);
    }

    .hero-stats {
      display: flex;
      justify-content: space-between;
      gap: 0.9rem;
      margin-top: 0.9rem;
      font-size: 0.8rem;
    }

    .stat-pill {
      flex: 1;
      border-radius: 16px;
      padding: 0.45rem 0.7rem;
      background: rgba(15, 23, 42, 0.9);
      border: 1px dashed rgba(148, 163, 184, 0.9);
    }

    .stat-label {
      font-size: 0.7rem;
      color: #9ca3af;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .stat-value {
      font-weight: 700;
      margin-top: 0.1rem;
      color: #e5e7eb;
    }

    .stat-text {
      font-size: 0.75rem;
      color: #9ca3af;
    }

    /* Section base styles */
    section {
      padding: 3rem 0;
    }

    .section-heading {
      text-align: center;
      margin-bottom: 2rem;
    }

    .section-heading h2 {
      font-size: 1.6rem;
      margin-bottom: 0.3rem;
    }

    .section-heading p {
      margin: 0;
      font-size: 0.95rem;
      color: var(--color-muted);
      max-width: 32rem;
      margin-inline: auto;
    }

    /* About */
    #about {
      background: radial-gradient(circle at top right, #e0f2fe 0, #f5f7f3 40%, #ffffff 100%);
    }

    .about-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
      gap: 2.2rem;
      align-items: center;
    }

    .about-card {
      background: #ffffff;
      padding: 1.4rem 1.5rem;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-soft);
      border-left: 4px solid var(--color-primary);
    }

    .about-highlights {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 1rem;
      margin-top: 1rem;
      font-size: 0.9rem;
    }

    .about-highlight {
      border-radius: var(--radius-md);
      padding: 0.8rem 0.9rem;
      background: #ecfdf3;
      border: 1px solid rgba(22, 163, 74, 0.35);
    }

    .about-highlight strong {
      display: block;
      margin-bottom: 0.15rem;
    }

    /* Services with big images */
    #services {
      background: linear-gradient(135deg, #ecfdf3, #fefce8);
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
    }

    .service-card {
      background: #ffffff;
      border-radius: 20px;
      box-shadow: var(--shadow-soft);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      border: 1px solid rgba(148, 163, 184, 0.5);
    }

    .service-media {
      height: 190px;
      overflow: hidden;
    }

    .service-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.03);
    }

    .service-content {
      padding: 1rem 1.1rem 1rem;
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      height: 100%;
    }

    .service-icon {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      background: #ecfdf3;
      margin-bottom: 0.2rem;
    }

    .service-card h3 {
      margin: 0 0 0.2rem;
      font-size: 1.05rem;
    }

    .service-card ul {
      padding-left: 1.1rem;
      margin: 0.2rem 0 0.4rem;
      font-size: 0.9rem;
    }

    .service-card ul li {
      margin-bottom: 0.2rem;
    }

    .service-benefit {
      font-size: 0.86rem;
      color: var(--color-muted);
      margin-top: auto;
    }

    .service-footer {
      margin-top: 0.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.3rem;
    }

    .service-tag {
      font-size: 0.78rem;
      color: var(--color-muted);
    }

    /* Why choose us */
    #why-us {
      background: #ffffff;
    }

    .why-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
      gap: 2.3rem;
      align-items: center;
    }

    .why-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
      gap: 1rem;
      font-size: 0.9rem;
    }

    .why-item {
      background: #ffffff;
      border-radius: var(--radius-md);
      padding: 0.8rem 0.9rem;
      border: 1px solid rgba(148, 163, 184, 0.6);
      display: flex;
      align-items: flex-start;
      gap: 0.55rem;
    }

    .why-icon {
      font-size: 1.1rem;
      margin-top: 0.1rem;
    }

    /* Gallery with subtle image background */
    #gallery {
      background:
        linear-gradient(to bottom, rgba(15, 23, 42, 0.03), rgba(15, 23, 42, 0.07)),
        url("Assets/Images/row unit planter.avif")
        center/cover fixed;
      position: relative;
      color: #0f172a;
    }

    #gallery::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(249, 250, 251, 0.88);
      backdrop-filter: blur(1px);
      z-index: 0;
    }

    #gallery .container {
      position: relative;
      z-index: 1;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1rem;
    }

    figure.gallery-item {
      background: #ffffff;
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    figure.gallery-item img {
      height: 170px;
      object-fit: cover;
    }

    .gallery-caption {
      padding: 0.6rem 0.8rem;
      font-size: 0.85rem;
      color: var(--color-muted);
    }

    /* Pricing */
    #pricing {
      background: #f9fafb;
    }

    .pricing-note {
      text-align: center;
      font-size: 0.9rem;
      color: var(--color-muted);
      margin-bottom: 1.4rem;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
    }

    .pricing-card {
      background: #ffffff;
      border-radius: var(--radius-lg);
      padding: 1.2rem 1.2rem;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(148, 163, 184, 0.6);
    }

    .pricing-card h3 {
      margin: 0 0 0.4rem;
      font-size: 1.02rem;
    }

    .pricing-meta {
      font-size: 0.84rem;
      color: var(--color-muted);
      margin-bottom: 0.4rem;
    }

    .pricing-from {
      font-weight: 600;
      color: var(--color-primary-dark);
      margin-bottom: 0.4rem;
    }

    .pricing-card ul {
      padding-left: 1.1rem;
      margin: 0.3rem 0 0.6rem;
      font-size: 0.9rem;
    }

    /* Testimonials */
    #testimonials {
      background: #ffffff;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.3rem;
    }

    .testimonial-card {
      background: #ffffff;
      border-radius: var(--radius-lg);
      padding: 1rem 1.1rem;
      box-shadow: var(--shadow-soft);
      border-left: 3px solid var(--color-accent);
      font-size: 0.9rem;
    }

    .testimonial-name {
      margin-top: 0.5rem;
      font-weight: 600;
      font-size: 0.88rem;
    }

    .testimonial-role {
      font-size: 0.8rem;
      color: var(--color-muted);
    }

    /* FAQ */
    #faq {
      background: radial-gradient(circle at top left, #e0f2fe 0, #f5f7f3 40%, #ffffff 100%);
    }

    .faq-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 1.8rem;
      align-items: flex-start;
    }

    .faq-intro {
      font-size: 0.92rem;
      color: var(--color-muted);
    }

    details.faq-item {
      background: #ffffff;
      border-radius: var(--radius-md);
      padding: 0.6rem 0.8rem;
      border: 1px solid rgba(148, 163, 184, 0.6);
      margin-bottom: 0.5rem;
      font-size: 0.9rem;
    }

    details.faq-item summary {
      cursor: pointer;
      list-style: none;
      font-weight: 600;
    }

    details.faq-item summary::-webkit-details-marker {
      display: none;
    }

    details.faq-item p {
      margin: 0.4rem 0 0;
      color: var(--color-muted);
    }

    /* Contact */
    #contact {
      background:
        radial-gradient(circle at top right, rgba(34, 197, 94, 0.15), transparent 45%),
        #0f172a;
      color: #e5e7eb;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
      gap: 2rem;
      align-items: flex-start;
    }

    form.contact-form {
      background: rgba(15, 23, 42, 0.9);
      border-radius: var(--radius-lg);
      padding: 1.4rem 1.4rem 1.2rem;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(148, 163, 184, 0.6);
    }

    .form-row {
      display: flex;
      gap: 0.9rem;
      flex-wrap: wrap;
    }

    .form-group {
      margin-bottom: 0.9rem;
      flex: 1;
      min-width: 150px;
    }

    label {
      display: block;
      font-size: 0.82rem;
      font-weight: 600;
      margin-bottom: 0.2rem;
    }

    input,
    select,
    textarea {
      width: 100%;
      border-radius: 9px;
      border: 1px solid rgba(148, 163, 184, 0.8);
      padding: 0.55rem 0.6rem;
      font-size: 0.9rem;
      font-family: inherit;
      resize: vertical;
      min-height: 40px;
      background: #020617;
      color: #e5e7eb;
    }

    textarea {
      min-height: 90px;
    }

    input:focus,
    select:focus,
    textarea:focus {
      outline: 2px solid rgba(34, 197, 94, 0.5);
      border-color: rgba(34, 197, 94, 0.8);
    }

    .contact-info {
      font-size: 0.92rem;
    }

    .contact-info-block {
      background: rgba(15, 23, 42, 0.9);
      border-radius: var(--radius-md);
      padding: 0.9rem 1rem;
      border: 1px solid rgba(148, 163, 184, 0.6);
      margin-bottom: 0.8rem;
    }

    .contact-info-block strong {
      display: block;
      margin-bottom: 0.15rem;
    }

    .contact-meta {
      font-size: 0.85rem;
      color: #9ca3af;
    }

    .contact-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      border-radius: var(--radius-pill);
      padding: 0.25rem 0.7rem;
      font-size: 0.78rem;
      background: #fef9c3;
      color: #854d0e;
      margin-bottom: 0.6rem;
    }

    .contact-links a {
      color: #a5b4fc;
      text-decoration: underline;
    }

    /* Footer */
    footer {
      border-top: 1px solid rgba(148, 163, 184, 0.4);
      padding: 1.2rem 0 1.4rem;
      font-size: 0.82rem;
      color: var(--color-muted);
      background: #f9fafb;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    /* Responsive */
    @media (max-width: 880px) {
      .hero-inner,
      .about-grid,
      .why-grid,
      .faq-grid,
      .contact-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .hero-inner {
        gap: 2rem;
        padding-top: 3rem;
      }

      .hero-media {
        order: -1;
      }

      /* center-align hero text and controls on smaller phones */
      .hero-title,
      .hero-subtitle,
      .hero-note {
        text-align: center;
      }

      .hero-cta,
      .hero-badges {
        justify-content: center;
      }

      .hero-inner {
        padding-top: 3rem;
      }

      nav {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: #f9fafb;
        padding: 0.7rem 1.5rem 1rem;
        border-bottom: 1px solid rgba(148, 163, 184, 0.5);
        flex-direction: column;
        gap: 0.5rem;
      }

      nav.show {
        display: flex;
      }

      .mobile-nav-toggle {
        display: block;
      }
    }
