* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: #FEFCF5;
      color: #1E2F2C;
      line-height: 1.4;
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 32px;
    }

    /* Buttons */
    .btn-primary {
      background: #2C6E4F;
      color: white;
      padding: 12px 28px;
      border-radius: 40px;
      font-weight: 600;
      font-size: 1rem;
      border: none;
      cursor: pointer;
      transition: all 0.25s ease;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    .btn-primary:hover {
      background: #1F5540;
      transform: translateY(-2px);
    }
    .btn-outline {
      background: transparent;
      border: 1.5px solid #2C6E4F;
      color: #2C6E4F;
      padding: 10px 26px;
      border-radius: 40px;
      font-weight: 600;
      font-size: 1rem;
      transition: 0.2s;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-outline:hover {
      background: #2C6E4F;
      color: white;
    }

    /* Header & Navigation - DESKTOP MENU NARROWER */
    header {
      padding: 20px 0;
      position: sticky;
      top: 20px;
      z-index: 100;
      transition: all 0.3s ease;
      margin-bottom: 20px;
    }
    header.scrolled .navbar {
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(20px);
      border-radius: 46px;
      padding: 8px 28px; /* Reduced padding for narrower appearance */
      border: 1px solid rgba(44, 110, 79, 0.18);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px; /* Slightly reduced */
    }

    .logo-img {
      width: 65px; /* Slightly smaller for narrower menu */
      height: 65px;
      object-fit: contain;
      border-radius: 20px;
    }

    .logo h1 {
      font-size: 1.4rem; /* Slightly smaller */
      font-weight: 700;
      color: #1A3E34;
    }

    .logo span {
      font-weight: 400;
      font-size: 0.7rem;
      color: #5B7C6E;
      display: block;
    }

    /* Desktop Navigation - Clean & Proper, with reduced gap */
    .nav-links {
      display: flex;
      gap: 20px; /* Reduced from 32px for narrower menu */
      align-items: center;
    }

    .nav-links a {
      text-decoration: none;
      font-weight: 500;
      color: #2C3E38;
      transition: 0.3s;
      font-size: 0.9rem; /* Slightly smaller font */
      position: relative;
      padding: 6px 0; /* Reduced padding */
      white-space: nowrap;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #2C6E4F, #e47c3b);
      transition: all 0.3s ease;
      transform: translateX(-50%);
    }

    .nav-links a:hover::after {
      width: 70%;
    }

    /* Make the quote button slightly smaller to match */
    .nav-links .btn-outline {
      padding: 8px 20px;
      font-size: 0.85rem;
    }

    /* Mobile menu button - HIDDEN on desktop */
    .mobile-menu-btn {
      display: none;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(12px);
      border-radius: 40px;
      padding: 8px 16px;
      color: #2C6E4F;
      cursor: pointer;
      font-size: 1.3rem;
      border: 1px solid rgba(44, 110, 79, 0.2);
      transition: all 0.2s;
    }
    .mobile-menu-btn:hover {
      background: #2C6E4F;
      color: white;
    }

    /* Market Ticker */
    .market-ticker-section {
      margin: 0 auto 40px;
    }

    .market-ticker {
      background: linear-gradient(90deg, #1A3E34, #2C6E4F);
      overflow: hidden;
      padding: 14px 0;
      border-radius: 60px;
    }

    .ticker-wrapper {
      display: flex;
      white-space: nowrap;
      animation: tickerScroll 40s linear infinite;
      width: fit-content;
    }

    .ticker-wrapper:hover {
      animation-play-state: paused;
    }

    .ticker-item {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 0 28px;
      font-size: 0.95rem;
      font-weight: 500;
      color: white;
    }

    .ticker-item i {
      font-size: 1rem;
      color: #e47c3b;
    }

    .ticker-separator {
      display: inline-block;
      width: 5px;
      height: 5px;
      background: #e47c3b;
      border-radius: 50%;
      margin: 0 12px;
    }

    .ticker-value {
      color: #e47c3b;
      font-weight: 700;
      margin-left: 4px;
    }

    .ticker-up {
      color: #4ade80;
      margin-left: 4px;
    }

    @keyframes tickerScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* Hero Section */
    .hero {
      padding: 40px 0 70px;
    }

    .hero-grid {
      display: flex;
      align-items: center;
      gap: 48px;
      flex-wrap: wrap;
    }

    .hero-content {
      flex: 1;
      min-width: 280px;
    }

    .hero-badge {
      background: #E9F3EE;
      color: #2C6E4F;
      display: inline-block;
      padding: 6px 16px;
      border-radius: 60px;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 24px;
    }

    .hero-content h1 {
      font-size: 3.8rem;
      font-weight: 700;
      line-height: 1.2;
      color: #1A3E34;
      margin-bottom: 20px;
    }

    .hero-content p {
      font-size: 1.2rem;
      color: #4A5E58;
      max-width: 500px;
      margin-bottom: 32px;
    }

    .hero-buttons {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
    }

    .hero-image {
      flex: 1;
      background: #FEFCF5;
      border-radius: 56px;
      padding: 20px;
      text-align: center;
      min-width: 280px;
    }

    .animated-hero {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 320px;
    }

    .hero-img-wrapper {
      position: relative;
      width: 100%;
      max-width: 480px;
      margin: 0 auto;
      aspect-ratio: 1 / 0.9;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .floating-fruit-img {
      position: relative;
      z-index: 10;
      width: 100%;
      max-width: 550px;
      height: auto;
      animation: floatImage 5s ease-in-out infinite;
    }

    .orbit-ring {
      position: absolute;
      border: 2px dashed rgba(228, 124, 59, 0.25);
      border-radius: 50%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

    .ring-1 {
      width: clamp(200px, 45vw, 320px);
      height: clamp(200px, 45vw, 320px);
      animation: rotateClockwise 20s linear infinite;
    }
    .ring-2 {
      width: clamp(280px, 65vw, 440px);
      height: clamp(280px, 65vw, 440px);
      animation: rotateCounterClockwise 28s linear infinite;
    }
    .ring-3 {
      width: clamp(360px, 85vw, 560px);
      height: clamp(360px, 85vw, 560px);
      animation: rotateClockwise 36s linear infinite;
    }

    .particle {
      position: absolute;
      background: rgba(58, 107, 41, 0.3);
      border-radius: 50%;
      pointer-events: none;
      animation: floatParticle 8s ease-in-out infinite;
    }
    .particle-1 { width: 12px; height: 12px; top: 15%; right: 10%; }
    .particle-2 { width: 8px; height: 8px; bottom: 20%; left: 5%; animation-delay: 2s; }
    .particle-3 { width: 10px; height: 10px; top: 40%; right: -5px; animation-delay: 4s; }
    .particle-4 { width: 6px; height: 6px; bottom: 10%; right: 20%; animation-delay: 1s; }
    .particle-5 { width: 14px; height: 14px; top: 70%; left: 0%; animation-delay: 3s; }

    @keyframes floatImage {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-15px); }
    }
    @keyframes rotateClockwise {
      0% { transform: translate(-50%, -50%) rotate(0deg); }
      100% { transform: translate(-50%, -50%) rotate(360deg); }
    }
    @keyframes rotateCounterClockwise {
      0% { transform: translate(-50%, -50%) rotate(360deg); }
      100% { transform: translate(-50%, -50%) rotate(0deg); }
    }
    @keyframes floatParticle {
      0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.3; }
      50% { transform: translateY(-20px) translateX(10px); opacity: 0.8; }
    }

    /* Video Hero */
    .video-hero {
      position: relative;
      background: linear-gradient(135deg, #0a2a1f 0%, #1a3e2a 100%);
      border-radius: 48px;
      margin: 40px 0 60px;
      overflow: hidden;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .video-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }
    .video-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(10, 42, 31, 0.4);
      z-index: 2;
    }
    .video-content {
      position: relative;
      z-index: 3;
      text-align: center;
      padding: 80px 40px;
      max-width: 800px;
      margin: 0 auto;
    }
    .video-badge {
      display: inline-block;
      background: rgba(228, 124, 59, 0.9);
      color: white;
      padding: 8px 20px;
      border-radius: 60px;
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 20px;
    }
    .video-content h2 {
      font-size: 3rem;
      font-weight: 700;
      color: white;
      margin-bottom: 20px;
    }
    .video-content p {
      font-size: 1.2rem;
      color: rgba(255, 255, 255, 0.95);
      margin-bottom: 30px;
      max-width: 600px;
      margin: 0 auto;
    }

    /* Categories */
    .categories {
      padding: 60px 0 80px;
    }
    .categories-grid {
      display: flex;
      gap: 25px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .category-card {
      background: white;
      padding: 25px 20px;
      border-radius: 24px;
      width: 180px;
      text-align: center;
      transition: all 0.3s ease;
      box-shadow: 0 8px 20px rgba(0,0,0,0.04);
      border: 1px solid #F0F2EA;
      cursor: pointer;
    }
    .category-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 30px -12px rgba(44,110,79,0.12);
    }
    .circle {
      width: 90px;
      height: 90px;
      margin: 0 auto;
      border-radius: 50%;
      background: #F4F8F5;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    .circle i {
      font-size: 32px;
      color: #2C6E4F;
      z-index: 2;
    }
    .dot-ring {
      position: absolute;
      width: 110px;
      height: 110px;
      border: 2px dashed #e47c3b;
      border-radius: 50%;
      animation: spinDots 12s linear infinite;
      opacity: 0.7;
    }
    @keyframes spinDots {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }
    .category-card h4 { margin-top: 16px; font-size: 1.1rem; font-weight: 600; }
    .category-card span { font-size: 0.8rem; color: #7A8F86; display: block; margin-top: 6px; }

    /* Section Title */
    .section-title {
      text-align: center;
      margin-bottom: 56px;
    }
    .section-title h2 {
      font-size: 2.5rem;
      font-weight: 700;
      color: #1A3E34;
      margin-bottom: 12px;
    }
    .section-title p {
      color: #5E7970;
      font-size: 1.1rem;
    }

    /* Products */
    .products-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 32px;
      justify-content: center;
    }
    .product-card {
      background: white;
      border-radius: 32px;
      padding: 28px 22px;
      width: 260px;
      text-align: center;
      transition: all 0.3s ease;
      box-shadow: 0 12px 28px -12px rgba(0,0,0,0.05);
      border: 1px solid #F0F2EA;
    }
    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 28px 36px -16px rgba(44,110,79,0.15);
    }
    .product-icon { font-size: 3.4rem; color: #2C6E4F; margin-bottom: 20px; }
    .product-card h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 12px; }
    .product-card p { color: #5F7A6F; font-size: 0.9rem; margin-bottom: 20px; }
    .product-tag { background: #F1F7F3; display: inline-block; padding: 4px 12px; border-radius: 30px; font-size: 0.75rem; font-weight: 500; color: #2C6E4F; }

    /* About */
    .about {
      padding: 80px 0;
      background: #F9FBF7;
      margin-top: 40px;
      border-radius: 48px 48px 0 0;
    }
    .about-inner {
      display: flex;
      gap: 60px;
      align-items: center;
      flex-wrap: wrap;
    }
    .about-text { flex: 1; min-width: 280px; }
    .about-text h3 { font-size: 2rem; font-weight: 600; margin-bottom: 24px; }
    .about-text p { margin-bottom: 20px; color: #405a52; line-height: 1.5; }
    .stats { display: flex; gap: 32px; margin-top: 28px; flex-wrap: wrap; }
    .stat-item h4 { font-size: 2rem; font-weight: 700; color: #2C6E4F; }
    .about-image { flex: 1; background: #E3EFE7; border-radius: 15px; overflow: hidden; min-width: 280px; }
    .about-image img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 15px; min-height: 300px; }

    /* Contact */
    .contact { padding: 80px 0; }
    .contact-card {
      background: white;
      border-radius: 48px;
      padding: 48px 40px;
      box-shadow: 0 20px 35px -12px rgba(0,0,0,0.05);
      border: 1px solid #EBF0E8;
      display: flex;
      flex-wrap: wrap;
      gap: 48px;
    }
    .contact-info { flex: 1; min-width: 260px; }
    .contact-info h3 { font-size: 1.9rem; margin-bottom: 20px; }
    .contact-detail { display: flex; align-items: center; gap: 16px; margin: 24px 0; }
    .contact-detail i { font-size: 1.6rem; width: 48px; height: 48px; background: #EDF4EF; display: flex; align-items: center; justify-content: center; border-radius: 60px; color: #2C6E4F; flex-shrink: 0; }
    .contact-form { flex: 1; min-width: 260px; }
    .form-group { margin-bottom: 20px; }
    input, textarea { width: 100%; padding: 14px 18px; border-radius: 28px; border: 1px solid #DDE5DE; font-family: 'Inter', sans-serif; background: #FEFEFB; }
    input:focus, textarea:focus { outline: none; border-color: #2C6E4F; }
    .social-icons { display: flex; gap: 16px; margin-top: 20px; flex-wrap: wrap; }
    .social-icons a { background: #2C403B; width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; color: white; transition: 0.2s; }
    .social-icons a:hover { background: #2C6E4F; transform: translateY(-2px); }

    /* Footer */
    footer {
      background: #1E2F2C;
      color: #DBE3DF;
      padding: 48px 0 24px;
      border-radius: 32px 32px 0 0;
      margin-top: 40px;
    }
    .footer-grid {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 40px;
      margin-bottom: 48px;
    }
    .footer-col {
      flex: 1;
      min-width: 180px;
    }
    .footer-logo {
      width: 100px;
      height: 100px;
      object-fit: contain;
      border-radius: 12px;
    }
    .footer-col p {
      max-width: 280px;
      margin-top: 12px;
      font-size: 0.9rem;
      opacity: 0.8;
    }
    .footer-col h4 {
      color: white;
      margin-bottom: 20px;
      font-weight: 600;
    }
    .footer-col a {
      display: block;
      color: #C0D4CA;
      text-decoration: none;
      margin-bottom: 12px;
      transition: 0.2s;
    }
    .footer-col a:hover {
      color: white;
      transform: translateX(5px);
    }
    .subscribe-wrapper {
      display: flex;
      max-width: 280px;
      width: 100%;
      margin-top: 8px;
    }
    .subscribe-input {
      flex: 1;
      border-radius: 60px 0 0 60px;
      background: white;
      border: none;
      padding: 12px 18px;
      outline: none;
    }
    .subscribe-btn {
      background: #2C6E4F;
      border: none;
      border-radius: 0 60px 60px 0;
      padding: 0 20px;
      color: white;
      cursor: pointer;
    }
    .copyright {
      text-align: center;
      padding-top: 28px;
      border-top: 1px solid #2F4540;
      font-size: 0.8rem;
      opacity: 0.7;
    }
    .toast-msg {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: #1E2F2C;
      color: white;
      padding: 12px 24px;
      border-radius: 60px;
      font-weight: 500;
      opacity: 0;
      transition: 0.2s;
      z-index: 200;
      pointer-events: none;
    }
    .toast-msg.show { opacity: 1; }

    /* ========== RESPONSIVE: Mobile menu appears only below 900px ========== */
    @media (max-width: 900px) {
      .mobile-menu-btn {
        display: block;
      }
      .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 28px 24px;
        gap: 20px;
        border-radius: 32px;
        margin-top: 16px;
        border: 1px solid rgba(44, 110, 79, 0.2);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        z-index: 200;
      }
      .nav-links.active {
        display: flex;
      }
      .nav-links a {
        padding: 12px 0;
        font-size: 1.1rem;
        text-align: center;
        width: 100%;
      }
      .nav-links a::after {
        display: none;
      }
      .nav-links .btn-outline {
        justify-content: center;
        width: 100%;
        margin-top: 8px;
      }
      .navbar {
        position: relative;
        flex-wrap: wrap;
        padding: 10px 20px;
      }
      /* Restore logo size on mobile */
      .logo-img {
        width: 55px;
        height: 55px;
      }
      .logo h1 {
        font-size: 1.2rem;
      }
      
      /* Footer mobile alignment */
      .footer-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
      }
      .footer-col {
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      .footer-col p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
      }
      .footer-col a {
        display: inline-block;
        margin: 0 8px 12px;
      }
      .footer-col a:hover {
        transform: translateY(-2px);
      }
      .footer-logo {
        margin: 0 auto;
      }
      .subscribe-wrapper {
        margin: 0 auto;
        justify-content: center;
      }
      .social-icons {
        justify-content: center;
      }
    }

    @media (max-width: 768px) {
      .container {
        padding: 0 24px;
      }
      .hero {
        padding: 30px 0 50px;
      }
      .hero-content h1 {
        font-size: 2.2rem;
      }
      .hero-content p {
        font-size: 1rem;
      }
      .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
      }
      .hero-buttons .btn-primary,
      .hero-buttons .btn-outline {
        justify-content: center;
        width: 100%;
        text-align: center;
      }
      .section-title h2 {
        font-size: 2rem;
      }
      .video-content h2 {
        font-size: 2rem;
      }
      .video-content {
        padding: 50px 20px;
      }
      .video-hero {
        min-height: 400px;
      }
      .category-card {
        width: calc(50% - 20px);
        min-width: 140px;
        padding: 20px 15px;
      }
      .circle {
        width: 70px;
        height: 70px;
      }
      .circle i {
        font-size: 26px;
      }
      .dot-ring {
        width: 86px;
        height: 86px;
      }
      .product-card {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
      }
      .about-text h3 {
        font-size: 1.6rem;
        text-align: center;
      }
      .about-text p {
        text-align: center;
      }
      .stats {
        justify-content: center;
        text-align: center;
        gap: 24px;
      }
      .contact-card {
        padding: 32px 24px;
        gap: 32px;
      }
      .contact-info h3 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 20px;
        margin-top: 8px;
      }
      .contact-info p {
        text-align: center;
        margin-bottom: 16px;
      }
      .contact-detail {
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
      }
      .market-ticker {
        padding: 12px 0;
      }
      .ticker-item {
        padding: 0 16px;
        font-size: 0.75rem;
        gap: 6px;
      }
    }

    @media (max-width: 640px) {
      .hero-content h1 {
        font-size: 1.8rem;
      }
      .section-title h2 {
        font-size: 1.6rem;
      }
      .video-content h2 {
        font-size: 1.4rem;
      }
      .category-card {
        width: calc(50% - 12px);
        min-width: 130px;
        padding: 16px 12px;
      }
      .circle {
        width: 60px;
        height: 60px;
      }
      .circle i {
        font-size: 22px;
      }
      .dot-ring {
        width: 74px;
        height: 74px;
      }
      .category-card h4 {
        font-size: 0.9rem;
      }
      .contact-card {
        padding: 24px 20px;
      }
      .contact-detail {
        flex-direction: column;
        text-align: center;
        gap: 12px;
      }
      .contact-info h3 {
        margin-top: 12px;
        margin-bottom: 24px;
      }
      .ticker-item {
        padding: 0 12px;
        font-size: 0.7rem;
      }
    }

    @media (max-width: 480px) {
      .container {
        padding: 0 16px;
      }
      .hero-content h1 {
        font-size: 1.6rem;
      }
      .categories-grid {
        gap: 12px;
      }
      .category-card {
        width: 100%;
        max-width: 160px;
        margin: 0 auto;
      }
      .contact-detail span {
        font-size: 0.85rem;
      }
      .hero-buttons .btn-primary,
      .hero-buttons .btn-outline {
        padding: 12px 16px;
        font-size: 0.9rem;
      }
      .footer-col p {
        font-size: 0.8rem;
        padding: 0 12px;
      }
      .footer-col h4 {
        font-size: 1.1rem;
      }
      .subscribe-wrapper {
        width: 90%;
        max-width: 260px;
      }
    }