  :root {
    --green: #2D6A4F;
    --green-light: #52B788;
    --green-pale: #D8F3DC;
    --gold: #B7950B;
    --gold-light: #F4D03F;
    --cream: #FEFAE0;
    --brown: #6B4226;
    --text: #1a1a1a;
    --text-muted: #666;
    --white: #fff;
    --border: #e0e0e0;
    --shadow: 0 4px 24px rgba(0,0,0,0.10);
    --radius: 16px;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
    box-shadow: 0 2px 12px rgba(45,106,79,0.07);
  }
  .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .logo-icon {
    width: 44px; height: 44px; background: var(--green);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-size: 22px;
  }
  .logo-text { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--green); line-height: 1.2; }
  .logo-text span { display: block; font-size: 0.7rem; font-family: 'DM Sans', sans-serif; color: var(--text-muted); font-weight: 400; letter-spacing: 1px; text-transform: uppercase; }
  nav ul { list-style: none; display: flex; gap: 36px; }
  nav ul a { text-decoration: none; color: var(--text); font-size: 0.92rem; font-weight: 500; letter-spacing: 0.2px; transition: color 0.2s; }
  nav ul a:hover { color: var(--green); }
  .nav-cta {
    background: var(--green); color: white; padding: 10px 22px;
    border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 0.9rem;
    transition: background 0.2s;
  }
  .nav-cta:hover { background: #1e4d38; }

  /* HERO */
  .hero {
    min-height: 100vh;
    padding-top: 72px;
    background: linear-gradient(135deg, #f0faf4 0%, #fefae0 60%, #fff 100%);
    display: flex; align-items: center;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; top: -80px; right: -80px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(82,183,136,0.15) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute; bottom: -60px; left: -60px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(183,149,11,0.10) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-inner {
    max-width: 1200px; margin: 0 auto; padding: 80px 5%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--green-pale); color: var(--green);
    padding: 7px 16px; border-radius: 50px; font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.5px; margin-bottom: 20px; text-transform: uppercase;
  }
  .hero-badge::before { content: '●'; font-size: 8px; }
  h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 900; line-height: 1.12;
    color: var(--text); margin-bottom: 22px;
  }
  h1 span { color: var(--green); }
  .hero-desc { font-size: 1.08rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 36px; max-width: 480px; }
  .hero-stats { display: flex; gap: 36px; margin-bottom: 40px; }
  .stat { }
  .stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--green); }
  .stat-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--green); color: white; padding: 14px 30px;
    border-radius: 10px; text-decoration: none; font-weight: 600; font-size: 0.97rem;
    transition: all 0.2s; box-shadow: 0 4px 16px rgba(45,106,79,0.25);
  }
  .btn-primary:hover { background: #1e4d38; transform: translateY(-1px); }
  .btn-outline {
    border: 2px solid var(--green); color: var(--green); padding: 12px 28px;
    border-radius: 10px; text-decoration: none; font-weight: 600; font-size: 0.97rem;
    transition: all 0.2s;
  }
  .btn-outline:hover { background: var(--green-pale); }
  .hero-img {
    position: relative; display: flex; justify-content: center; align-items: center;
  }
  .hero-img-main {
    width: 420px; height: 420px; border-radius: 30px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(45,106,79,0.2);
    position: relative;
  }
  .hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
  .hero-float-badge {
    position: absolute; bottom: 24px; left: -24px;
    background: white; border-radius: 14px; padding: 14px 20px;
    box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px;
  }
  .hero-float-badge .icon { font-size: 28px; }
  .hero-float-badge .info strong { display: block; font-size: 0.92rem; font-weight: 700; }
  .hero-float-badge .info span { font-size: 0.78rem; color: var(--text-muted); }
  .cert-badge {
    position: absolute; top: 24px; right: -20px;
    background: var(--gold); color: white; border-radius: 12px; padding: 10px 16px;
    font-size: 0.82rem; font-weight: 700; box-shadow: 0 4px 14px rgba(183,149,11,0.35);
    text-align: center;
  }
  .cert-badge span { display: block; font-size: 1.1rem; }

  /* SECTIONS */
  section { padding: 90px 5%; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-label {
    display: inline-block; background: var(--green-pale); color: var(--green);
    padding: 5px 14px; border-radius: 50px; font-size: 0.78rem; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px;
  }
  h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800; line-height: 1.18; color: var(--text); margin-bottom: 16px;
  }
  .section-sub { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; max-width: 600px; }
  .section-header { text-align: center; margin-bottom: 56px; }
  .section-header .section-sub { margin: 0 auto; }

  /* PRODUCTS */
  #products { background: #f8fdf9; }
  .products-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  }
  .product-card {
    background: white; border-radius: var(--radius); overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07); transition: all 0.3s;
    border: 1px solid var(--border);
  }
  .product-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(45,106,79,0.15); }
  .product-img-wrap { height: 220px; overflow: hidden; position: relative; }
  .product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
  .product-card:hover .product-img-wrap img { transform: scale(1.06); }
  .product-tag {
    position: absolute; top: 14px; left: 14px;
    background: var(--green); color: white;
    padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 600;
  }
  .product-info { padding: 22px 24px 26px; }
  .product-info h3 { font-family: 'Playfair Display', serif; font-size: 1.22rem; font-weight: 700; margin-bottom: 8px; }
  .product-info p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
  .product-meta { display: flex; gap: 16px; }
  .product-meta span { font-size: 0.78rem; color: var(--green); font-weight: 600; background: var(--green-pale); padding: 4px 10px; border-radius: 6px; }

  /* ABOUT / MISSION VISION */
  #mission { background: white; }
  .mission-header { margin-bottom: 42px; }
  .mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: stretch; }
  .mv-image-col { display: flex; }
  .mv-img-wrap { position: relative; width: 100%; height: 100%; min-height: 480px; }
  .mv-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  .mv-cards { display: flex; flex-direction: column; gap: 24px; }
  .mv-card {
    border-radius: 14px; padding: 28px 30px;
    border-left: 5px solid var(--green);
    background: #f8fdf9;
  }
  .mv-card.vision { border-color: var(--gold); background: #fffdf0; }
  .mv-card-icon { font-size: 2rem; margin-bottom: 10px; }
  .mv-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; }
  .mv-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }
  .company-intro { margin-bottom: 32px; }
  .company-intro p { font-size: 1.02rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
  .info-chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
  .chip {
    background: var(--green-pale); color: var(--green);
    padding: 7px 16px; border-radius: 8px; font-size: 0.84rem; font-weight: 600;
    display: flex; align-items: center; gap: 6px;
  }

  /* GALLERY */
  #gallery { background: #f8fdf9; }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
  }
  .gallery-item {
    overflow: hidden; border-radius: 14px; cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08); position: relative;
  }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; min-height: 200px; }
  .gallery-item:first-child img { min-height: 420px; }
  .gallery-item:hover img { transform: scale(1.07); }
  .gallery-item .overlay {
    position: absolute; inset: 0; background: rgba(45,106,79,0.45);
    opacity: 0; transition: opacity 0.3s; display: flex; align-items: center; justify-content: center;
    color: white; font-size: 0.9rem; font-weight: 600;
  }
  .gallery-item:hover .overlay { opacity: 1; }

  /* TESTIMONIALS */
  #testimonials { background: white; }
  .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .testi-card {
    background: #f8fdf9; border-radius: var(--radius); padding: 32px 28px;
    border: 1px solid var(--border); transition: all 0.3s; position: relative;
  }
  .testi-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
  .testi-card::before {
    content: '"'; font-family: 'Playfair Display', serif; font-size: 5rem; color: var(--green-pale);
    position: absolute; top: 10px; right: 20px; line-height: 1; font-weight: 900;
  }
  .stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; }
  .testi-text { font-size: 0.96rem; line-height: 1.75; color: var(--text-muted); margin-bottom: 24px; font-style: italic; }
  .testi-author { display: flex; align-items: center; gap: 14px; }
  .testi-avatar {
    width: 48px; height: 48px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
    background: var(--green-pale); display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
  }
  .testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
  .testi-author-info strong { display: block; font-size: 0.92rem; font-weight: 700; }
  .testi-author-info span { font-size: 0.8rem; color: var(--text-muted); }

  /* FAQ */
  #faq { background: #f8fdf9; }
  .faq-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
  .faq-side h2 { text-align: left; }
  .faq-side .section-label { }
  .faq-side p { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-top: 14px; }
  .faq-list { display: flex; flex-direction: column; gap: 12px; }
  .faq-item {
    background: white; border-radius: 12px; border: 1px solid var(--border);
    overflow: hidden; transition: box-shadow 0.2s;
  }
  .faq-item:hover { box-shadow: 0 4px 16px rgba(45,106,79,0.1); }
  .faq-q {
    padding: 20px 24px; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-weight: 600; font-size: 0.97rem;
    user-select: none;
  }
  .faq-q .arrow {
    width: 28px; height: 28px; border-radius: 50%; background: var(--green-pale);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    color: var(--green); font-size: 1.1rem; transition: transform 0.3s;
  }
  .faq-item.open .faq-q .arrow { transform: rotate(45deg); }
  .faq-item.open .faq-q { color: var(--green); }
  .faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.2s; }
  .faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }
  .faq-a p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.75; }

  /* CONTACT */
  #contact { background: white; }
  .contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
  .contact-info h2 { text-align: left; }
  .contact-info p { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }
  .contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
  .contact-detail-icon {
    width: 44px; height: 44px; border-radius: 10px; background: var(--green-pale);
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0;
  }
  .contact-detail-text strong { display: block; font-size: 0.84rem; color: var(--text-muted); font-weight: 500; margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.5px; }
  .contact-detail-text span { font-size: 0.95rem; font-weight: 600; }
  .contact-form {
    background: #f8fdf9; border-radius: 20px; padding: 40px 36px;
    border: 1px solid var(--border);
  }
  .contact-form h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 24px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
  .form-group { margin-bottom: 16px; }
  .form-group label { display: block; font-size: 0.84rem; font-weight: 600; margin-bottom: 7px; color: var(--text); }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 13px 16px; border: 1.5px solid var(--border);
    border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: 0.93rem;
    background: white; color: var(--text); outline: none; transition: border-color 0.2s;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); }
  .form-group textarea { resize: vertical; min-height: 110px; }
  .btn-submit {
    width: 100%; background: var(--green); color: white; padding: 15px;
    border: none; border-radius: 10px; font-family: 'DM Sans', sans-serif;
    font-size: 1rem; font-weight: 700; cursor: pointer; transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(45,106,79,0.25);
  }
  .btn-submit:hover { background: #1e4d38; transform: translateY(-1px); }

  /* FOOTER */
  footer {
    background: #1a2e22; color: #c8e6c9; padding: 60px 5% 30px;
  }
  .footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
  .footer-brand .logo-text { color: #81c784; }
  .footer-brand .logo-text span { color: #a5d6a7; }
  .footer-brand p { font-size: 0.9rem; color: #a5d6a7; line-height: 1.7; margin-top: 16px; max-width: 260px; }
  .footer-col h4 { color: white; font-size: 0.92rem; font-weight: 700; margin-bottom: 16px; letter-spacing: 0.5px; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a { color: #a5d6a7; text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
  .footer-col ul li a:hover { color: white; }
  .footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 0.84rem; color: #81c784; }
  .footer-copyright {
    border-top: 1px solid rgba(255,255,255,0.12);
    margin-top: 10px;
    padding-top: 22px;
  }
  .footer-copyright .auto-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .copyright-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  .copy-text p {
    margin: 0;
    color: #a5d6a7;
    font-size: 0.88rem;
    line-height: 1.7;
  }
  .copy-text a {
    color: #d7f3d8;
    text-decoration: none;
  }
  .copy-text a:hover {
    color: #ffffff;
  }
  .copy-logo {
    flex-shrink: 0;
  }
  .exportersway-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
  }
  .exportersway-badge {
    display: block;
    width: 140px;
    height: auto;
    border-radius: 6px;
    background: #ffffff;
    padding: 2px;
  }
  .exportersway-label {
    color: #d7f3d8;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2px;
  }

  /* ANIMATIONS */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  .hero-left > * { animation: fadeUp 0.6s ease both; }
  .hero-left > *:nth-child(1) { animation-delay: 0.1s; }
  .hero-left > *:nth-child(2) { animation-delay: 0.2s; }
  .hero-left > *:nth-child(3) { animation-delay: 0.3s; }
  .hero-left > *:nth-child(4) { animation-delay: 0.4s; }
  .hero-left > *:nth-child(5) { animation-delay: 0.5s; }
  .hero-img { animation: fadeUp 0.7s 0.35s ease both; }

  @media (max-width: 900px) {
    #about > div > div { grid-template-columns: 1fr !important; }
    .hero-inner, .mv-grid, .contact-grid, .faq-layout { grid-template-columns: 1fr; }
    .mv-img-wrap { min-height: 340px; }
    .products-grid, .testi-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:first-child { grid-column: span 2; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .copyright-row { flex-direction: column; align-items: flex-start; }
    nav ul { display: none; }
  }
  @media (max-width: 600px) {
    .products-grid, .testi-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .exportersway-link { width: 100%; justify-content: center; }
    .exportersway-badge { width: 120px; }
    .exportersway-label { display: none; }
  }
