
    /* ═══════════════════════════════════════
       RESET & ROOT
    ═══════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --green-dark:  #0d4a28;
      --green-mid:   #1a6b3c;
      --green-light: #2e9455;
      --gold:        #c9a227;
      --gold-light:  #f0c84a;
      --cream:       #faf7f0;
      --gray-light:  #f4f4f4;
      --gray-mid:    #e0e0e0;
      --text-dark:   #1a1a1a;
      --text-mid:    #444;
      --text-light:  #777;
      --white:       #ffffff;
      --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
      --shadow-md:   0 6px 24px rgba(0,0,0,.12);
      --shadow-lg:   0 12px 40px rgba(0,0,0,.16);
      --radius:      14px;
      --radius-sm:   8px;
      --transition:  .3s ease;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Cairo', sans-serif;
      background: var(--white);
      color: var(--text-dark);
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* ═══════════════════════════════════════
       UTILITY
    ═══════════════════════════════════════ */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .section { padding: 80px 0; }
    .section-alt { background: var(--cream); }

    .badge {
      display: inline-block;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--green-dark);
      font-size: .8rem;
      font-weight: 700;
      padding: 4px 14px;
      border-radius: 20px;
      letter-spacing: .5px;
      margin-bottom: 12px;
    }

    .section-title {
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 900;
      color: var(--green-dark);
      margin-bottom: 12px;
    }

    .section-title span { color: var(--green-mid); }
    .section-on-dark .section-title span,
    .page-hero h1 span { color: var(--gold-light); }

    .section-desc {
      color: var(--text-mid);
      font-size: 1.05rem;
      max-width: 640px;
    }

    .section-header { margin-bottom: 50px; }
    .section-header.center { text-align: center; }
    .section-header.center .section-desc { margin: 0 auto; }

    /* Divider */
    .divider {
      width: 60px; height: 4px;
      background: linear-gradient(90deg, var(--green-mid), var(--gold));
      border-radius: 2px;
      margin: 14px 0 18px;
    }
    .center .divider { margin-left: auto; margin-right: auto; }

    /* ═══════════════════════════════════════
       TOP BAR
    ═══════════════════════════════════════ */
    .topbar {
      background: var(--green-dark);
      color: rgba(255,255,255,.85);
      font-size: .82rem;
      padding: 8px 0;
    }
    .topbar-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .topbar-item { display: flex; align-items: center; gap: 6px; }
    .topbar-item svg { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; }
    .topbar a { color: inherit; text-decoration: none; }
    .topbar a:hover { color: var(--gold-light); }

    /* ═══════════════════════════════════════
       HEADER / NAV
    ═══════════════════════════════════════ */
    .header {
      position: sticky; top: 0; z-index: 999;
      background: var(--white);
      box-shadow: var(--shadow-sm);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 0;
    }

    /* LOGO */
    .logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
    .logo-icon { width: 56px; height: 56px; flex-shrink: 0; }
    .logo-text { line-height: 1.2; }
    .logo-name {
      font-size: 1.2rem;
      font-weight: 900;
      color: var(--green-dark);
      display: block;
    }
    .logo-sub {
      font-size: .78rem;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: .3px;
    }

    /* Nav Links */
    .nav-links {
      display: flex;
      gap: 6px;
      list-style: none;
    }
    .nav-links a {
      text-decoration: none;
      color: var(--text-mid);
      font-weight: 600;
      font-size: .9rem;
      padding: 8px 14px;
      border-radius: var(--radius-sm);
      transition: var(--transition);
    }
    .nav-links a:hover, .nav-links a.active {
      background: var(--green-dark);
      color: var(--white);
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 10px;
      background: #25d366;
      color: var(--white);
      font-weight: 700;
      font-size: .88rem;
      padding: 10px 20px;
      border-radius: 30px;
      text-decoration: none;
      transition: var(--transition);
      box-shadow: 0 4px 14px rgba(37,211,102,.35);
    }
    .nav-cta:hover { background: #1ebe5d; transform: translateY(-1px); }
    .nav-cta svg { width: 18px; height: 18px; fill: var(--white); }

    /* Hamburger */
    .burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
    }
    .burger span {
      display: block; width: 26px; height: 2.5px;
      background: var(--green-dark); border-radius: 2px;
      transition: var(--transition);
    }

    /* Mobile menu */
    .mobile-menu {
      display: none;
      background: var(--white);
      border-top: 1px solid var(--gray-mid);
      padding: 16px 0;
    }
    .mobile-menu.open { display: block; }
    .mobile-menu a {
      display: block;
      padding: 10px 24px;
      color: var(--text-mid);
      text-decoration: none;
      font-weight: 600;
      font-size: .95rem;
    }
    .mobile-menu a:hover { color: var(--green-mid); }

    /* ═══════════════════════════════════════
       HERO
    ═══════════════════════════════════════ */
    .hero {
      background: linear-gradient(145deg, var(--green-dark) 0%, var(--green-mid) 55%, #1e7840 100%);
      position: relative;
      overflow: hidden;
      padding: 100px 0 80px;
    }

    /* Pattern overlay */
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        radial-gradient(circle at 20% 80%, rgba(201,162,39,.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,.06) 0%, transparent 40%);
      pointer-events: none;
    }

    /* Decorative circles */
    .hero-deco {
      position: absolute;
      border-radius: 50%;
      opacity: .08;
      background: var(--white);
    }
    .hero-deco-1 { width: 500px; height: 500px; top: -200px; left: -150px; }
    .hero-deco-2 { width: 300px; height: 300px; bottom: -100px; right: -80px; }

    .hero-inner {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .hero-content { color: var(--white); }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(201,162,39,.2);
      border: 1px solid rgba(201,162,39,.4);
      color: var(--gold-light);
      font-size: .82rem;
      font-weight: 700;
      padding: 6px 16px;
      border-radius: 20px;
      margin-bottom: 20px;
    }
    .hero-badge span { width: 6px; height: 6px; background: var(--gold-light); border-radius: 50%; animation: pulse 2s infinite; }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: .5; transform: scale(1.3); }
    }

    .hero-title {
      font-size: clamp(1.8rem, 4vw, 3.2rem);
      font-weight: 900;
      line-height: 1.25;
      margin-bottom: 16px;
    }
    .hero-title .gold { color: var(--gold-light); }

    .hero-desc {
      font-size: 1.05rem;
      color: rgba(255,255,255,.82);
      margin-bottom: 32px;
      line-height: 1.8;
    }

    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Cairo', sans-serif;
      font-weight: 700;
      font-size: .95rem;
      padding: 13px 28px;
      border-radius: 30px;
      text-decoration: none;
      cursor: pointer;
      border: none;
      transition: var(--transition);
    }
    .btn svg { width: 18px; height: 18px; flex-shrink: 0; }

    .btn-primary {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--green-dark);
      box-shadow: 0 6px 20px rgba(201,162,39,.4);
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,162,39,.5); }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255,255,255,.5);
    }
    .btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

    /* Hero visual */
    .hero-visual {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .hero-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      width: 100%;
      max-width: 420px;
    }
    .hero-card {
      background: rgba(255,255,255,.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,.2);
      border-radius: var(--radius);
      padding: 20px 16px;
      text-align: center;
      color: var(--white);
      transition: var(--transition);
    }
    .hero-card:hover { background: rgba(255,255,255,.18); transform: translateY(-4px); }
    .hero-card-icon { font-size: 2.4rem; margin-bottom: 8px; }
    .hero-card-label { font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.9); }
    .hero-card.featured {
      grid-column: 1 / -1;
      background: linear-gradient(135deg, rgba(201,162,39,.25), rgba(201,162,39,.1));
      border-color: rgba(201,162,39,.4);
    }

    /* Stats row */
    .stats-strip {
      background: var(--gold);
      padding: 20px 0;
    }
    .stats-inner {
      display: flex;
      justify-content: space-around;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }
    .stat {
      text-align: center;
      color: var(--green-dark);
    }
    .stat-number {
      font-size: 1.8rem;
      font-weight: 900;
      line-height: 1;
    }
    .stat-label {
      font-size: .78rem;
      font-weight: 600;
      margin-top: 4px;
      opacity: .8;
    }
    .stat-divider {
      width: 1px; height: 40px;
      background: rgba(13,74,40,.25);
    }

    /* ═══════════════════════════════════════
       ABOUT
    ═══════════════════════════════════════ */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .about-visual { position: relative; }

    .about-img-wrap {
      background: linear-gradient(135deg, var(--green-dark), var(--green-light));
      border-radius: var(--radius);
      padding: 48px 32px;
      text-align: center;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }
    .about-img-wrap::after {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .about-big-icon { font-size: 5rem; margin-bottom: 16px; position: relative; z-index: 1; }

    .about-pill {
      display: inline-block;
      background: rgba(201,162,39,.2);
      border: 1px solid rgba(201,162,39,.4);
      color: var(--gold-light);
      font-size: .85rem;
      font-weight: 700;
      padding: 6px 18px;
      border-radius: 20px;
      margin: 6px 4px;
      position: relative;
      z-index: 1;
    }

    .about-features { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }

    .feat-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }
    .feat-icon {
      width: 44px; height: 44px;
      background: linear-gradient(135deg, var(--green-light), var(--green-mid));
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .feat-icon svg { width: 22px; height: 22px; fill: var(--white); }
    .feat-text strong { display: block; font-weight: 700; color: var(--green-dark); font-size: .95rem; }
    .feat-text span { font-size: .85rem; color: var(--text-light); }

    /* ═══════════════════════════════════════
       PRODUCTS
    ═══════════════════════════════════════ */
    .cat-tabs {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }
    .cat-tab {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 20px;
      border-radius: 30px;
      border: 2px solid var(--gray-mid);
      font-family: 'Cairo', sans-serif;
      font-size: .88rem;
      font-weight: 700;
      color: var(--text-mid);
      cursor: pointer;
      background: var(--white);
      transition: var(--transition);
    }
    .cat-tab:hover { border-color: var(--green-mid); color: var(--green-mid); }
    .cat-tab.active {
      background: var(--green-dark);
      border-color: var(--green-dark);
      color: var(--white);
    }
    .cat-tab .tab-icon { font-size: 1rem; }

    /* Product categories */
    .prod-category { display: none; }
    .prod-category.active { display: block; }

    .cat-intro {
      background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
      border-radius: var(--radius);
      padding: 32px 36px;
      color: var(--white);
      margin-bottom: 32px;
      display: flex;
      align-items: center;
      gap: 24px;
    }
    .cat-intro-icon { font-size: 3.5rem; flex-shrink: 0; }
    .cat-intro h3 { font-size: 1.4rem; font-weight: 900; margin-bottom: 6px; }
    .cat-intro p { font-size: .9rem; color: rgba(255,255,255,.82); line-height: 1.7; }

    /* Product grid */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 24px;
    }

    .product-card {
      background: var(--white);
      border-radius: var(--radius);
      border: 1.5px solid var(--gray-mid);
      overflow: hidden;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }
    .product-card:hover {
      border-color: var(--green-mid);
      box-shadow: var(--shadow-md);
      transform: translateY(-4px);
    }

    .product-img {
      background: linear-gradient(135deg, #e8f4ed, #d0eada);
      height: 220px;
      display: block;
      position: relative;
      overflow: hidden;
    }
    .product-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .product-img::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 40px;
      background: linear-gradient(transparent, rgba(255,255,255,.5));
    }

    .product-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
    .product-name {
      font-size: .95rem;
      font-weight: 700;
      color: var(--green-dark);
      margin-bottom: 8px;
      line-height: 1.4;
    }

    .product-specs { list-style: none; margin-bottom: 16px; flex: 1; }
    .product-specs li {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: .8rem;
      color: var(--text-mid);
      padding: 4px 0;
      border-bottom: 1px solid var(--gray-light);
    }
    .product-specs li:last-child { border-bottom: none; }
    .product-specs li::before {
      content: '';
      width: 6px; height: 6px;
      background: var(--green-light);
      border-radius: 50%;
      flex-shrink: 0;
    }

    .product-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: auto;
    }
    .product-badge {
      font-size: .72rem;
      font-weight: 700;
      background: var(--green-dark);
      color: var(--white);
      padding: 4px 10px;
      border-radius: 20px;
    }
    .product-wa {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #25d366;
      color: var(--white);
      font-weight: 700;
      font-size: .78rem;
      padding: 7px 14px;
      border-radius: 20px;
      text-decoration: none;
      transition: var(--transition);
    }
    .product-wa:hover { background: #1ebe5d; }
    .product-wa svg { width: 14px; height: 14px; fill: var(--white); }

    /* ═══════════════════════════════════════
       WHY US
    ═══════════════════════════════════════ */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 24px;
    }
    .why-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 32px 24px;
      text-align: center;
      border: 1.5px solid var(--gray-mid);
      transition: var(--transition);
    }
    .why-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
    .why-icon {
      width: 64px; height: 64px;
      background: linear-gradient(135deg, var(--green-dark), var(--green-light));
      border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 18px;
    }
    .why-icon svg { width: 30px; height: 30px; fill: var(--white); }
    .why-title { font-size: 1rem; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
    .why-desc { font-size: .83rem; color: var(--text-light); line-height: 1.7; }

    /* ═══════════════════════════════════════
       CONTACT
    ═══════════════════════════════════════ */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }

    .contact-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 36px;
      box-shadow: var(--shadow-md);
    }

    .contact-items { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }

    .contact-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }
    .contact-item-icon {
      width: 46px; height: 46px;
      background: linear-gradient(135deg, var(--green-dark), var(--green-light));
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .contact-item-icon svg { width: 22px; height: 22px; fill: var(--white); }
    .contact-item-label { font-size: .78rem; color: var(--text-light); font-weight: 600; margin-bottom: 2px; }
    .contact-item-value { font-size: .95rem; font-weight: 700; color: var(--text-dark); line-height: 1.5; }
    .contact-item-value a { color: inherit; text-decoration: none; }
    .contact-item-value a:hover { color: var(--green-mid); }

    /* Map */
    .map-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }
    .map-header {
      background: var(--green-dark);
      color: var(--white);
      padding: 20px 28px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .map-header svg { width: 22px; height: 22px; fill: var(--gold); }
    .map-header h3 { font-size: 1rem; font-weight: 700; }

    .map-frame {
      width: 100%;
      height: 300px;
      border: none;
      display: block;
    }

    .map-links {
      padding: 16px 20px;
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    .map-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 18px;
      border-radius: 20px;
      font-size: .82rem;
      font-weight: 700;
      text-decoration: none;
      border: 1.5px solid;
      transition: var(--transition);
    }
    .map-link.primary {
      background: var(--green-dark);
      color: var(--white);
      border-color: var(--green-dark);
    }
    .map-link.primary:hover { background: var(--green-mid); }
    .map-link.secondary {
      background: transparent;
      color: var(--green-dark);
      border-color: var(--green-dark);
    }
    .map-link.secondary:hover { background: var(--green-dark); color: var(--white); }

    /* Hours */
    .hours-card {
      background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
      border-radius: var(--radius);
      padding: 28px;
      color: var(--white);
      margin-top: 20px;
    }
    .hours-title {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 16px;
    }
    .hours-title svg { width: 20px; height: 20px; fill: var(--gold-light); }

    .hours-list { display: flex; flex-direction: column; gap: 8px; }
    .hours-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: .85rem;
      padding: 8px 0;
      border-bottom: 1px solid rgba(255,255,255,.12);
    }
    .hours-row:last-child { border-bottom: none; }
    .hours-day { font-weight: 600; }
    .hours-time {
      background: rgba(201,162,39,.2);
      border: 1px solid rgba(201,162,39,.3);
      color: var(--gold-light);
      padding: 3px 10px;
      border-radius: 12px;
      font-size: .78rem;
      font-weight: 700;
    }
    .hours-time.closed {
      background: rgba(255,100,100,.15);
      border-color: rgba(255,100,100,.25);
      color: #ff9999;
    }

    /* Big WhatsApp CTA */
    .wa-cta-section {
      background: linear-gradient(135deg, #25d366 0%, #128c5e 100%);
      padding: 60px 0;
      text-align: center;
    }
    .wa-cta-section h2 {
      color: var(--white);
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 900;
      margin-bottom: 10px;
    }
    .wa-cta-section p { color: rgba(255,255,255,.85); font-size: 1rem; margin-bottom: 28px; }
    .wa-big-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--white);
      color: #1a7a44;
      font-weight: 900;
      font-size: 1.05rem;
      padding: 16px 36px;
      border-radius: 40px;
      text-decoration: none;
      box-shadow: 0 8px 30px rgba(0,0,0,.2);
      transition: var(--transition);
    }
    .wa-big-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,.28); }
    .wa-big-btn svg { width: 28px; height: 28px; fill: #25d366; }

    /* ═══════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════ */
    .footer {
      background: var(--green-dark);
      color: rgba(255,255,255,.8);
      padding: 50px 0 0;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 50px;
      padding-bottom: 40px;
    }
    .footer-brand .logo-name { color: var(--white); font-size: 1.3rem; }
    .footer-brand .logo-sub { color: var(--gold-light); }
    .footer-brand p {
      font-size: .85rem;
      color: rgba(255,255,255,.65);
      margin-top: 16px;
      line-height: 1.8;
    }
    .footer-title {
      color: var(--white);
      font-weight: 700;
      font-size: .95rem;
      margin-bottom: 18px;
      position: relative;
      padding-bottom: 10px;
    }
    .footer-title::after {
      content: '';
      position: absolute; bottom: 0; right: 0;
      width: 30px; height: 2px;
      background: var(--gold);
    }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-links a { color: rgba(255,255,255,.65); text-decoration: none; font-size: .85rem; transition: var(--transition); }
    .footer-links a:hover { color: var(--gold-light); padding-right: 4px; }

    .footer-info-item {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: .82rem; color: rgba(255,255,255,.65); margin-bottom: 12px;
    }
    .footer-info-item svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; margin-top: 2px; }
    .footer-info-item a { color: inherit; text-decoration: none; }
    .footer-info-item a:hover { color: var(--gold-light); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.1);
      padding: 20px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
    }
    .footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.5); }
    .footer-bottom .tax { color: var(--gold); font-weight: 600; }

    /* WhatsApp Float */
    .wa-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      left: auto;
      z-index: 1000;
      width: 60px;
      height: 60px;
      background: #25d366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
      text-decoration: none;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      animation: floatBounce 3s ease-in-out infinite;
    }
    .wa-float:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 30px rgba(37, 211, 102, 0.65);
    }
    .wa-float-icon {
      width: 34px;
      height: 34px;
      display: block;
      flex-shrink: 0;
    }
    .wa-float-icon path {
      fill: #ffffff;
    }

    @keyframes floatBounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }

    .wa-float-tooltip {
      position: absolute;
      right: 70px;
      left: auto;
      background: var(--green-dark);
      color: var(--white);
      font-size: .78rem;
      font-weight: 700;
      white-space: nowrap;
      padding: 6px 12px;
      border-radius: 8px;
      opacity: 0;
      pointer-events: none;
      transition: var(--transition);
    }
    .wa-float:hover .wa-float-tooltip { opacity: 1; }

    /* ═══════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════ */
    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-visual { display: none; }
      .about-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .nav-links { display: none; }
      .burger { display: flex; }
    }

    @media (max-width: 600px) {
      .section { padding: 55px 0; }
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
      .stats-inner { gap: 10px; }
      .stat-divider { display: none; }
      .topbar-inner { flex-direction: column; gap: 6px; align-items: flex-start; }
      .hero { padding: 60px 0 50px; }
      .cat-intro { flex-direction: column; text-align: center; }
      .contact-card { padding: 24px 20px; }
      .wa-float { bottom: 20px; right: 20px; left: auto; }
    }
  
/* Multi-page extras */
.page-hero { background: linear-gradient(145deg, var(--green-dark), var(--green-mid)); padding: 60px 0 50px; color: #fff; }
.page-hero h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,.85); max-width: 600px; }
.breadcrumb { font-size: .85rem; margin-bottom: 16px; color: rgba(255,255,255,.7); }
.breadcrumb a { color: var(--gold-light); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.cat-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--gray-mid); text-decoration: none; color: inherit; transition: var(--transition); display: block; }
.cat-card:hover { border-color: var(--green-mid); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.cat-card-img { height: 200px; overflow: hidden; background: #e8f4ed; }
.cat-card-img img { width: 100%; height: 100%; object-fit: cover; }
.cat-card-body { padding: 20px; }
.cat-card-body h3 { font-size: 1rem; font-weight: 700; color: var(--green-dark); margin-bottom: 6px; }
.cat-card-body span { font-size: .82rem; color: var(--text-light); }
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.product-detail-img { border-radius: var(--radius); overflow: hidden; background: #e8f4ed; aspect-ratio: 4/3; }
.product-detail-img img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.product-detail-info h1 { font-size: 1.5rem; font-weight: 900; color: var(--green-dark); margin-bottom: 16px; line-height: 1.4; }
.loading { text-align: center; padding: 60px; color: var(--text-light); }
@media (max-width: 768px) { .product-detail { grid-template-columns: 1fr; } }

.section-green {
  background: linear-gradient(145deg, var(--green-dark) 0%, var(--green-mid) 100%);
  color: #fff;
}
.section-green .section-title { color: #fff; }
.section-green .section-title span { color: var(--gold-light); }
.section-green .section-desc { color: rgba(255,255,255,.85); }

.materials-row {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 28px;
}
.material-chip {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(201,162,39,.35);
  color: var(--gold-light);
  padding: 8px 18px; border-radius: 24px; font-size: .88rem; font-weight: 700;
}

.values-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px;
}
.value-card {
  background: #fff; border: 1.5px solid var(--gray-mid); border-radius: var(--radius);
  padding: 28px 20px; text-align: center; transition: var(--transition);
}
.value-card:hover { border-color: var(--green-mid); box-shadow: var(--shadow-sm); }
.value-card .icon { font-size: 2.2rem; margin-bottom: 12px; }
.value-card h3 { font-size: .95rem; font-weight: 700; color: var(--green-dark); margin-bottom: 6px; }
.value-card p { font-size: .82rem; color: var(--text-light); line-height: 1.6; }

.page-cta-bar {
  background: linear-gradient(135deg, #25d366, #128c5e);
  padding: 48px 0; text-align: center; color: #fff;
}
.page-cta-bar h2 { font-size: 1.5rem; font-weight: 900; margin-bottom: 8px; }
.page-cta-bar p { opacity: .9; margin-bottom: 20px; }

.related-strip { padding: 50px 0; background: var(--cream); }
.related-strip h3 { text-align: center; font-weight: 800; color: var(--green-dark); margin-bottom: 24px; }

.contact-cards-row {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; margin-bottom: 40px;
}
.info-card {
  background: #fff; border-radius: var(--radius); padding: 28px 24px;
  border: 1.5px solid var(--gray-mid); text-align: center;
}
.info-card .icon { font-size: 2rem; margin-bottom: 12px; }
.info-card h3 { font-size: 1rem; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.info-card p, .info-card a { font-size: .9rem; color: var(--text-mid); text-decoration: none; }
.info-card a[href^="tel:"], .contact-item-value a[href^="tel:"] { direction: ltr; unicode-bidi: embed; display: inline-block; }
.info-card a:hover { color: var(--green-mid); }

.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
@media (max-width: 900px) { .story-grid { grid-template-columns: 1fr; } }

.featured-scroll-hint { text-align: center; margin-top: 20px; }
.featured-scroll-hint a { color: var(--green-mid); font-weight: 700; text-decoration: none; }
.featured-scroll-hint a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════
   CREATIVE ENHANCEMENTS
═══════════════════════════════════════ */

/* Product card: image zoom + hover overlay */
.product-img { position: relative; overflow: hidden; }
.product-img img { transition: transform .45s cubic-bezier(.25,.46,.45,.94); }
.product-card:hover .product-img img { transform: scale(1.07); }
.product-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,74,40,.85) 0%, transparent 60%);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 14px;
  opacity: 0; transition: opacity .35s ease;
  z-index: 2;
}
.product-img-overlay span {
  background: #25d366; color: #fff;
  font-size: .8rem; font-weight: 700;
  padding: 6px 16px; border-radius: 20px;
  display: inline-flex; align-items: center; gap: 6px;
}
.product-card:hover .product-img-overlay { opacity: 1; }

/* Category card: image zoom + count badge */
.cat-card-img { position: relative; overflow: hidden; }
.cat-card-img img { transition: transform .45s cubic-bezier(.25,.46,.45,.94); }
.cat-card:hover .cat-card-img img { transform: scale(1.06); }
.cat-count-badge {
  position: absolute; bottom: 10px; left: 10px;
  background: var(--green-dark); color: #fff;
  font-size: .72rem; font-weight: 800;
  padding: 3px 10px; border-radius: 12px;
  z-index: 2;
}

/* Page hero: pattern overlay */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 56px;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 8% 88%, rgba(201,162,39,.18) 0%, transparent 45%),
    radial-gradient(circle at 92% 12%, rgba(255,255,255,.06) 0%, transparent 45%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .breadcrumb { margin-bottom: 18px; }

/* Why card: gold left accent on hover */
.why-card {
  border-right: 4px solid transparent;
  transition: var(--transition), border-right-color var(--transition);
}
.why-card:hover { border-right-color: var(--gold); }

/* Info card: hover lift + styled icon */
.info-card { transition: var(--transition); }
.info-card:hover { border-color: var(--green-mid); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.info-card .icon { display: block; }

/* Section divider */
.section-divider {
  height: 4px;
  background: linear-gradient(90deg, var(--green-dark), var(--gold-light), var(--green-mid));
  opacity: .25;
}

/* Process/timeline steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.process-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px 24px;
  text-align: center;
  border: 1.5px solid var(--gray-mid);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  counter-increment: step;
}
.process-step:hover { border-color: var(--green-mid); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.process-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; top: -10px; right: -8px;
  font-size: 4.5rem; font-weight: 900;
  color: var(--green-dark); opacity: .06;
  line-height: 1;
}
.process-icon { font-size: 2.2rem; margin-bottom: 12px; }
.process-step h4 { font-size: .95rem; font-weight: 700; color: var(--green-dark); margin-bottom: 6px; }
.process-step p { font-size: .82rem; color: var(--text-light); line-height: 1.6; }

/* Mini stats row (about page) */
.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.mini-stat {
  background: linear-gradient(135deg, var(--green-dark), var(--green-light));
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  color: var(--white);
}
.mini-stat-num { font-size: 2rem; font-weight: 900; color: var(--gold-light); line-height: 1; }
.mini-stat-lbl { font-size: .78rem; color: rgba(255,255,255,.8); margin-top: 6px; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* Header scroll shadow */
.header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.15); }

/* Sticky nav scroll-margin */
[id] { scroll-margin-top: 90px; }

.map-card-embed { padding: 0; overflow: hidden; box-shadow: var(--shadow-md); }
.map-card-embed .map-frame { height: 100%; min-height: 320px; border-radius: var(--radius); }

.footer-bottom-m2 {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.footer-m2-copy { margin: 0; }
.footer-m2-copy a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: .78rem;
  transition: var(--transition);
}
.footer-m2-copy a:hover { color: var(--gold-light); }

@media (max-width: 600px) {
  .mini-stats { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 50px 0 40px; }
  .map-card-embed .map-frame { min-height: 260px; }
}
