:root {
    --mustard: #D4A017;
    --mustard-light: #F0C030;
    --mustard-dark: #A07810;
    --green: #1B5E20;
    --green-mid: #2E7D32;
    --green-light: #4CAF50;
    --brown: #6D4C41;
    --brown-light: #8D6E63;
    --cream: #FFF8E1;
    --cream-dark: #F5E6B0;
    --text-dark: #2C1A0E;
    --text-mid: #4E342E;
    --white: #FFFFFF;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; font-size: 16px; }

  body {
    font-family: 'Nunito', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* ── GRAIN OVERLAY ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.5;
  }

  /* ── NAVBAR ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 4%;
    background: rgba(27, 94, 32, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--mustard);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
  }

  .nav-logo-img {
  height: 52px;
  width: auto;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
  transition: transform 0.25s ease;
}

.nav-logo-img:hover {
  transform: scale(1.06);
}

  .nav-logo-text {
    font-family: 'Yatra One', cursive;
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.2;
  }

  .nav-logo-text span {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-size: 0.65rem;
    color: var(--mustard);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .nav-links {
    display: flex;
    list-style: none;
    gap: 0.2rem;
    align-items: center;
  }

  .nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 0.9rem;
    border-radius: 6px;
    transition: all 0.2s;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .nav-links a:hover {
    color: var(--mustard);
    background: rgba(212,160,23,0.15);
  }

  .nav-cta {
    background: var(--mustard) !important;
    color: var(--text-dark) !important;
    border-radius: 30px !important;
    padding: 0.5rem 1.2rem !important;
  }

  .nav-cta:hover {
    background: var(--mustard-light) !important;
    color: var(--text-dark) !important;
  }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
  }

  .hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
  }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(160deg, rgba(27,94,32,0.85) 0%, rgba(109,76,65,0.6) 50%, rgba(212,160,23,0.75) 100%),
      radial-gradient(ellipse at 70% 60%, rgba(240,192,48,0.4) 0%, transparent 60%),
      radial-gradient(ellipse at 20% 80%, rgba(27,94,32,0.5) 0%, transparent 50%);
    background-color: #2a4a1a;
  }

  /* Animated field rows */
  .hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(
        175deg,
        transparent,
        transparent 60px,
        rgba(212,160,23,0.08) 60px,
        rgba(212,160,23,0.08) 62px
      );
  }

  /* Sun glow */
  .hero-bg::after {
    content: '';
    position: absolute;
    top: -10%; right: 5%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(240,192,48,0.5) 0%, rgba(212,160,23,0.2) 40%, transparent 70%);
    border-radius: 50%;
    animation: sunPulse 4s ease-in-out infinite alternate;
  }

  @keyframes sunPulse {
    from { transform: scale(1); opacity: 0.8; }
    to { transform: scale(1.1); opacity: 1; }
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 6% 80px;
    max-width: 800px;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212,160,23,0.2);
    border: 1px solid rgba(212,160,23,0.5);
    color: var(--mustard-light);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeDown 0.8s ease both;
  }

  .hero-badge::before { content: '🌾'; font-size: 1rem; }

  .hero-title {
    font-family: 'Yatra One', cursive;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.2rem;
    animation: fadeUp 0.9s 0.2s ease both;
  }

  .hero-title .accent { color: var(--mustard); }

  .hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 520px;
    animation: fadeUp 0.9s 0.4s ease both;
  }

  .hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp 0.9s 0.6s ease both;
  }

  .btn-primary {
    background: var(--mustard);
    color: var(--text-dark);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(212,160,23,0.4);
    border: 2px solid transparent;
    display: inline-block;
  }

  .btn-primary:hover {
    background: var(--mustard-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212,160,23,0.5);
  }

  .btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border: 2px solid rgba(255,255,255,0.5);
    display: inline-block;
  }

  .btn-secondary:hover {
    border-color: var(--mustard);
    color: var(--mustard);
    transform: translateY(-2px);
  }

  .hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    animation: bounce 2s ease-in-out infinite;
  }

  .hero-scroll span {
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--mustard), transparent);
  }

  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
  }

  /* ── MARQUEE STRIP ── */
  .marquee-strip {
    background: var(--mustard);
    padding: 0.7rem 0;
    overflow: hidden;
    white-space: nowrap;
  }

  .marquee-inner {
    display: inline-block;
    animation: marquee 25s linear infinite;
    font-family: 'Yatra One', cursive;
    font-size: 1rem;
    color: var(--text-dark);
    letter-spacing: 1px;
  }

  .marquee-inner span { margin: 0 2rem; }
  .marquee-inner .dot { color: var(--green); font-size: 1.2rem; vertical-align: middle; }

  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ── SECTIONS COMMON ── */
  section { padding: 6rem 6%; }

  .section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--mustard-dark);
    background: rgba(212,160,23,0.12);
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    border-left: 3px solid var(--mustard);
    margin-bottom: 1rem;
  }

  .section-title {
    font-family: 'Yatra One', cursive;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--green);
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .section-title .accent { color: var(--mustard-dark); }

  .section-divider {
    width: 60px; height: 4px;
    background: linear-gradient(to right, var(--mustard), var(--green));
    border-radius: 2px;
    margin-bottom: 1.5rem;
  }

  /* ── ABOUT ── */
  #about {
    background: linear-gradient(135deg, #FFF8E1 0%, #F5E6B0 50%, #FFF8E1 100%);
    position: relative;
  }

  #about::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse at right center, rgba(27,94,32,0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .about-visual {
    position: relative;
  }

  .about-img-frame {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(145deg, var(--green) 0%, #2E7D32 40%, var(--mustard-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(27,94,32,0.3);
  }

  .about-img-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(255,255,255,0.03) 20px,
      rgba(255,255,255,0.03) 21px
    );
  }

  .about-badge-float {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--mustard);
    color: var(--text-dark);
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    font-family: 'Yatra One', cursive;
    font-size: 1.1rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(212,160,23,0.4);
    line-height: 1.3;
  }

  .about-badge-float small {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0.2rem;
    opacity: 0.8;
  }

  .about-badge-float-2 {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    width: 80px; height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(27,94,32,0.4);
  }

  .about-text p {
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1rem;
  }

  .about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-top: 2rem;
  }

  .value-chip {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--white);
    border: 1px solid rgba(212,160,23,0.3);
    border-radius: 10px;
    padding: 0.7rem 1rem;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--green);
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }

  .value-chip:hover {
    border-color: var(--mustard);
    background: rgba(212,160,23,0.05);
    transform: translateY(-2px);
  }

  .value-chip .icon { font-size: 1.2rem; }

  /* ── PRODUCTS ── */
  #products {
    background: var(--green);
    position: relative;
    overflow: hidden;
  }

  #products::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
      90deg,
      transparent, transparent 40px,
      rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 41px
    ),
    repeating-linear-gradient(
      0deg,
      transparent, transparent 40px,
      rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 41px
    );
  }

  #products .section-title { color: var(--cream); }
  #products .section-label { color: var(--mustard); background: rgba(212,160,23,0.15); }

  .products-header {
    text-align: center;
    margin-bottom: 3.5rem;
  }

  .products-header .section-divider { margin: 0 auto 1rem; }

  .products-header p {
    color: rgba(255,255,255,0.75);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
  }

  .product-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(212,160,23,0.25);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s ease;
    backdrop-filter: blur(10px);
    position: relative;
  }

  .product-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--mustard), var(--mustard-light));
    transform: scaleX(0);
    transition: transform 0.35s ease;
  }

  .product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212,160,23,0.5);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    background: rgba(255,255,255,0.1);
  }

  .product-card:hover::after { transform: scaleX(1); }

  .product-img {
    width: 100%;
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
    overflow: hidden;

    .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
  }

  .card-cattle .product-img { background: linear-gradient(135deg, #3E2723, #6D4C41); }
  .card-mustard .product-img { background: linear-gradient(135deg, #E65100, #D4A017); }
  .card-churi .product-img { background: linear-gradient(135deg, #1B5E20, #33691E); }

  .product-img-label {
    position: absolute;
    bottom: 0.8rem; right: 0.8rem;
    background: rgba(0,0,0,0.4);
    color: rgba(255,255,255,0.7);
    font-size: 0.6rem;
    letter-spacing: 1px;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
  }

  .product-body { padding: 1.5rem; }

  .product-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mustard);
    margin-bottom: 0.5rem;
  }

  .product-name {
    font-family: 'Yatra One', cursive;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.7rem;
  }

  .product-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
  }

  .product-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .product-benefits li {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .product-benefits li::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--mustard);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* ── WHY CHOOSE US ── */
  #why {
    background: linear-gradient(135deg, #FFF8E1, #FFFDE7);
    position: relative;
    overflow: hidden;
  }

  #why::after {
    content: '🌿';
    position: absolute;
    right: -1rem;
    bottom: 2rem;
    font-size: 12rem;
    opacity: 0.05;
    transform: rotate(-20deg);
    pointer-events: none;
  }

  .why-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 5rem;
    align-items: center;
  }

  .why-intro p {
    color: var(--text-mid);
    line-height: 1.8;
    margin-top: 1rem;
    font-size: 1rem;
  }

  .why-stat-row {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
  }

  .why-stat {
    text-align: center;
  }

  .why-stat .num {
    font-family: 'Yatra One', cursive;
    font-size: 2.5rem;
    color: var(--green);
    line-height: 1;
  }

  .why-stat .lbl {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--brown-light);
    margin-top: 0.2rem;
  }

  .why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .why-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(212,160,23,0.2);
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    transition: all 0.3s;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }

  .why-card:hover {
    border-color: var(--mustard);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(212,160,23,0.15);
  }

  .why-card-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 50px; height: 50px;
    background: linear-gradient(135deg, rgba(27,94,32,0.1), rgba(212,160,23,0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .why-card h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--green);
    margin-bottom: 0.3rem;
  }

  .why-card-wide { grid-column: span 2; }

  .why-card p {
    font-size: 0.8rem;
    color: var(--brown-light);
    line-height: 1.5;
  }

  /* ── DISTRIBUTOR SECTION ── */
  #distributor {
    background: #1A0F0A;   /* very dark espresso — true dark base */
    position: relative;
    overflow: hidden;
  }

  /* subtle warm grain texture */
  #distributor::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 10% 50%, rgba(212,160,23,0.08) 0%, transparent 55%),
      radial-gradient(ellipse at 90% 20%, rgba(109,76,65,0.15) 0%, transparent 50%),
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(212,160,23,0.07)'/%3E%3C/svg%3E") repeat;
    pointer-events: none;
  }

  .dist-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  /* Left panel — text on very dark bg */
  #distributor .section-title {
    color: #FFF8E1;        /* cream — contrast 15:1 on #1A0F0A ✓ */
  }
  #distributor .section-label {
    color: #1A0F0A;        /* near-black on solid mustard ✓ */
    background: #D4A017;
    border-left-color: #FFF8E1;
  }

  .dist-text p {
    color: #D6C4B8;        /* warm light taupe — 7.8:1 on #1A0F0A ✓ */
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
  }

  .dist-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .dist-perks li {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    color: #F5EDE7;        /* near-white warm — 13:1 on #1A0F0A ✓ */
    font-size: 0.95rem;
    font-weight: 600;
  }

  .dist-perks li .perk-icon {
    width: 32px; height: 32px;
    background: #D4A017;   /* solid mustard — fully opaque ✓ */
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(212,160,23,0.35);
  }

  /* ── INQUIRY FORM CARD ── */
  /* Flip to a LIGHT cream card — maximum contrast strategy */
  .dist-form {
    background: #FFF8E1;   /* cream — fully opaque light card */
    border: 2px solid #D4A017;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  }

  .dist-form h3 {
    font-family: 'Yatra One', cursive;
    color: #1B5E20;        /* deep green on cream — 8.3:1 ✓ */
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .form-group label {
    display: block;
    color: #4E342E;        /* mitti brown on cream — 5.9:1 ✓ */
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    background: #FFFFFF;
    border: 1.5px solid #A07810;  /* mustard-dark border — visible on white ✓ */
    border-radius: 10px;
    padding: 0.85rem 1rem;
    color: #2C1A0E;               /* near-black text on white — 17:1 ✓ */
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.2s;
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: #8D6E63;               /* warm brown placeholder — 3.6:1 on white ✓ */
  }

  .form-group input:focus,
  .form-group textarea:focus {
    border-color: #1B5E20;
    background: #FAFFF9;
    box-shadow: 0 0 0 3px rgba(27,94,32,0.15);
  }

  .form-group textarea { min-height: 90px; resize: vertical; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

  .btn-submit {
    width: 100%;
    background: #1B5E20;   /* deep green button */
    color: #FFFFFF;        /* white text — 8.3:1 ✓ */
    border: none;
    border-radius: 50px;
    padding: 1rem;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
  }

  .btn-submit:hover {
    background: #2E7D32;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27,94,32,0.45);
  }

  /* ── CONTACT ── */
  #contact {
    background: var(--cream);
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
  }

  .contact-info h3 {
    font-family: 'Yatra One', cursive;
    font-size: 1.8rem;
    color: var(--green);
    margin-bottom: 0.5rem;
  }

  .contact-info > p {
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 2rem;
  }

  .contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    border-radius: 14px;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(212,160,23,0.2);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.2s;
  }

  .contact-card:hover {
    border-color: var(--mustard);
    box-shadow: 0 4px 20px rgba(212,160,23,0.15);
  }

  .contact-card-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--green), var(--green-mid));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(27,94,32,0.3);
  }

  .contact-card-body .lbl {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--mustard-dark);
    margin-bottom: 0.1rem;
  }

  .contact-card-body .val {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
  }

  .map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 3px solid var(--mustard);
    position: relative;
  }

  .map-placeholder {
    width: 100%;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--green);
    font-size: 3rem;
    border-radius: 17px;
    position: relative;
    overflow: hidden;
  }

  .map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M0,0 L80,0 L80,80 L0,80 Z' fill='none' stroke='rgba(27,94,32,0.05)' stroke-width='1'/%3E%3Cpath d='M40,0 L40,80 M0,40 L80,40' stroke='rgba(27,94,32,0.05)' stroke-width='0.5'/%3E%3C/svg%3E") repeat;
  }

  .map-label {
    font-family: 'Yatra One', cursive;
    font-size: 1.1rem;
    color: var(--green);
    position: relative;
  }

  .map-sub {
    font-size: 0.8rem;
    color: var(--brown-light);
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--green);
    color: rgba(255,255,255,0.75);
    padding: 3rem 6% 2rem;
    position: relative;
    overflow: hidden;
  }

  footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--mustard), var(--mustard-light), var(--mustard));
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
  }

  .footer-brand .logo-text {
    font-family: 'Yatra One', cursive;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 0.5rem;
  }

  .footer-brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 260px;
  }

  .footer-col h5 {
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mustard);
    margin-bottom: 1.2rem;
  }

  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }

  .footer-col ul a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }

  .footer-col ul a:hover { color: var(--mustard); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
  }

  .footer-bottom p { color: rgba(255,255,255,0.5); }

  .footer-tagline {
    font-family: 'Yatra One', cursive;
    color: var(--mustard);
    font-size: 0.95rem;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  /* ── TABLET ── */
  @media (max-width: 1024px) {
    .products-grid { grid-template-columns: 1fr 1fr; }
    .why-layout { gap: 3rem; }
    .about-grid { gap: 3rem; }
  }

  /* ── MOBILE ── */
  @media (max-width: 768px) {

    /* NAV */
    nav { padding: 0.85rem 5%; position: fixed; }
    .nav-logo-text { font-size: 1rem; }
    .nav-logo-icon { width: 38px; height: 38px; font-size: 1.2rem; }
    .nav-links { display: none; }
    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 64px; left: 0; right: 0;
      background: rgba(20, 76, 25, 0.99);
      padding: 1.2rem 5%;
      border-top: 2px solid var(--mustard);
      gap: 0.2rem;
      z-index: 999;
      box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    }
    .nav-links.open li { width: 100%; }
    .nav-links.open a {
      display: block;
      padding: 0.8rem 1rem;
      font-size: 0.95rem;
      border-radius: 8px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .nav-links.open .nav-cta {
      margin-top: 0.5rem;
      text-align: center;
      border-radius: 8px !important;
    }
    .hamburger { display: flex; }

    /* HERO */
    #hero { min-height: 100svh; align-items: flex-end; }
    .hero-content {
      padding: 100px 5% 6rem;
      max-width: 100%;
    }
    .hero-badge {
      font-size: 0.65rem;
      letter-spacing: 1px;
      padding: 0.35rem 0.8rem;
      margin-bottom: 1rem;
    }
    .hero-title { font-size: clamp(2.2rem, 9vw, 3rem); margin-bottom: 1rem; }
    .hero-subtitle { font-size: 0.95rem; margin-bottom: 2rem; max-width: 100%; }
    .hero-btns { flex-direction: column; gap: 0.75rem; }
    .btn-primary, .btn-secondary {
      width: 100%;
      text-align: center;
      padding: 1rem 1.5rem;
      font-size: 1rem;
    }
    .hero-bg::after { width: 250px; height: 250px; top: 0; right: -30px; }
    .hero-scroll { display: none; }

    /* MARQUEE */
    .marquee-strip { padding: 0.6rem 0; }
    .marquee-inner { font-size: 0.85rem; }

    /* SECTIONS */
    section { padding: 3.5rem 5%; }
    .section-title { font-size: clamp(1.7rem, 6vw, 2.2rem); }

    /* ABOUT */
    .about-grid { grid-template-columns: 1fr; gap: 4rem; }
    .about-visual { padding-bottom: 2.5rem; } /* space for floating badge */
    .about-img-frame { font-size: 4rem; border-radius: 16px; }
    .about-badge-float {
      right: 0.5rem;
      bottom: 0.2rem;
      padding: 0.9rem 1.1rem;
      font-size: 0.95rem;
      border-radius: 12px;
    }
    .about-badge-float-2 { width: 60px; height: 60px; font-size: 1.5rem; top: -1rem; left: -1rem; }
    .about-text p { font-size: 0.95rem; }
    .about-values { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
    .value-chip { font-size: 0.8rem; padding: 0.6rem 0.8rem; }

    /* PRODUCTS */
    #products { padding: 3.5rem 5%; }
    .products-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .product-card { border-radius: 16px; }
    .product-img { font-size: 3.5rem; }
    .product-name { font-size: 1.3rem; }
    .product-desc { font-size: 0.85rem; }

    /* WHY CHOOSE US */
    .why-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .why-cards { grid-template-columns: 1fr; gap: 0.8rem; }
    .why-card-wide { grid-column: span 1; }
    .why-stat-row { gap: 1.5rem; margin-top: 1.5rem; }
    .why-stat .num { font-size: 2rem; }
    .why-card { padding: 1.1rem; }
    .why-card-icon { width: 42px; height: 42px; font-size: 1.4rem; border-radius: 10px; }

    /* DISTRIBUTOR */
    .dist-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .dist-form { padding: 1.5rem; border-radius: 16px; background: #FFF8E1; }
    .dist-form h3 { font-size: 1.2rem; margin-bottom: 1.2rem; color: #1B5E20; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .dist-perks { gap: 0.6rem; margin-top: 1.2rem; }
    .dist-perks li { font-size: 0.9rem; color: #F5EDE7; }
    .perk-icon { width: 28px !important; height: 28px !important; font-size: 0.85rem !important; }
    .form-group input,
    .form-group textarea { font-size: 16px; /* prevents iOS zoom */ padding: 0.8rem; color: #2C1A0E; background: #fff; }
    .btn-submit { padding: 0.95rem; font-size: 0.95rem; background: #1B5E20; color: #fff; }

    /* CONTACT */
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-info h3 { font-size: 1.5rem; }
    .contact-info > p { font-size: 0.9rem; margin-bottom: 1.5rem; }
    .contact-card { padding: 0.9rem 1rem; gap: 0.8rem; }
    .contact-card-icon { width: 38px; height: 38px; font-size: 1rem; border-radius: 8px; }
    .contact-card-body .val { font-size: 0.85rem; }
    .map-container { border-width: 2px; }
    .map-placeholder { aspect-ratio: 4/3; font-size: 2rem; border-radius: 14px; }
    .map-label { font-size: 0.95rem; }

    /* FOOTER */
    footer { padding: 2.5rem 5% 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-brand .logo-text { font-size: 1.3rem; }
    .footer-brand p { font-size: 0.85rem; max-width: 100%; }
    .footer-col h5 { margin-bottom: 0.8rem; }
    .footer-bottom {
      flex-direction: column;
      gap: 0.5rem;
      text-align: center;
      padding-top: 1.2rem;
    }
    .footer-bottom p { font-size: 0.72rem; }
    .footer-tagline { font-size: 0.85rem; }
  }

  /* ── SMALL PHONES (≤380px) ── */
  @media (max-width: 380px) {
    .hero-title { font-size: 2rem; }
    .about-values { grid-template-columns: 1fr; }
    .why-stat-row { flex-direction: column; gap: 0.8rem; }
    .value-chip { justify-content: center; }
    .nav-logo-text { font-size: 0.9rem; }
  }

  /* ── SLIDESHOW ── */
.slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active { opacity: 1; }

.slide img,
.slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dark overlay so hero text stays readable */
.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(27,94,32,0.75) 0%,
    rgba(109,76,65,0.5) 50%,
    rgba(212,160,23,0.6) 100%
  );
}

/* ARROWS */
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  color: white;
  font-size: 2.5rem;
  width: 50px; height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
  line-height: 1;
}

.slide-arrow:hover {
  background: rgba(212,160,23,0.5);
  border-color: var(--mustard);
}

.slide-arrow.prev { left: 1.5rem; }
.slide-arrow.next { right: 1.5rem; }

/* DOTS */
.slide-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: var(--mustard);
  border-color: var(--mustard);
  transform: scale(1.3);
}

/* Mobile */
@media (max-width: 768px) {
  .slide-arrow { width: 38px; height: 38px; font-size: 1.8rem; }
  .slide-arrow.prev { left: 0.8rem; }
  .slide-arrow.next { right: 0.8rem; }
}

.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
  border-radius: 17px;
}