
    :root {
      --primary: #3d6b48;
      --primary-dark: #294432;
      --accent: #e0a826;
      --bg: #fdf9f3;
      --text: #252525;
      --muted: #777777;
      --white: #ffffff;
      --max-width: 1120px;
      --radius-lg: 18px;
      --shadow-soft: 0 14px 30px rgba(0, 0, 0, 0.08);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* Layout Helpers */
    .container {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.8rem 1.6rem;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      font-weight: 600;
      font-size: 0.95rem;
      letter-spacing: 0.02em;
      transition: transform 0.15s ease, box-shadow 0.15s ease,
        background 0.15s ease, color 0.15s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: var(--white);
      box-shadow: 0 10px 20px rgba(34, 82, 50, 0.35);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 26px rgba(34, 82, 50, 0.45);
    }

    .btn-outline {
      background: transparent;
      border: 1.6px solid rgba(0, 0, 0, 0.16);
      color: var(--primary-dark);
    }

    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.85);
      transform: translateY(-1px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    }

    .btn-ghost {
      background: transparent;
      border-radius: 999px;
      font-size: 0.8rem;
      padding: 0.5rem 0.9rem;
      border: 1px dashed rgba(0, 0, 0, 0.12);
      cursor: pointer;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.25rem 0.75rem;
      border-radius: 999px;
      background: rgba(61, 107, 72, 0.06);
      color: var(--primary-dark);
      font-size: 0.78rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.09em;
    }

    .tag-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
    }

    /* NAVBAR */
    header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(253, 249, 243, 0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px;
      gap: 1.5rem;
    }

    .logo-wrap {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .logo-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, #fdf3d5, #c08620);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-weight: 800;
      font-size: 1.1rem;
      box-shadow: 0 8px 18px rgba(192, 134, 32, 0.5);
    }

    .logo-text-main {
      font-size: 1.15rem;
      font-weight: 700;
      letter-spacing: 0.02em;
    }

    .logo-text-sub {
      font-size: 0.76rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--muted);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      font-size: 0.92rem;
    }

    .nav-links a {
      position: relative;
      padding-bottom: 0.1rem;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 1.5px;
      background: var(--primary);
      transition: width 0.2s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 4px;
      cursor: pointer;
    }

    .nav-toggle span {
      width: 20px;
      height: 2px;
      background: #333;
      border-radius: 999px;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .nav-toggle.active span:nth-child(1) {
      transform: translateY(3px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
      transform: translateY(-3px) rotate(-45deg);
    }

    /* HERO */
    .hero {
      padding: 3.5rem 0 3rem;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 3rem;
      align-items: center;
    }

    .hero-badge-row {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      margin-bottom: 1.1rem;
      flex-wrap: wrap;
    }

    .hero-badge-row span {
      font-size: 0.8rem;
      color: var(--muted);
    }

    .hero-title {
      font-size: clamp(2.1rem, 3vw, 2.6rem);
      line-height: 1.15;
      margin-bottom: 0.8rem;
      letter-spacing: 0.02em;
    }

    .hero-title span {
      color: var(--primary-dark);
    }

    .hero-subtitle {
      font-size: 0.98rem;
      color: var(--muted);
      max-width: 30rem;
      margin-bottom: 1.5rem;
    }

    .hero-cta-row {
      display: flex;
      gap: 0.9rem;
      align-items: center;
      flex-wrap: wrap;
      margin-bottom: 1.4rem;
    }

    .hero-note {
      font-size: 0.83rem;
      color: var(--muted);
    }

    .hero-note strong {
      color: var(--primary-dark);
    }

    .hero-stats {
      display: flex;
      gap: 1.8rem;
      flex-wrap: wrap;
      margin-top: 0.4rem;
    }

    .stat {
      font-size: 0.85rem;
    }

    .stat strong {
      display: block;
      font-size: 1.2rem;
      color: var(--primary-dark);
    }

    .hero-card {
      background: var(--white);
      border-radius: 32px;
      padding: 1.6rem 1.8rem;
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
    }

    .hero-pill {
      position: absolute;
      inset: auto -60px 16px auto;
      width: 160px;
      height: 160px;
      background: radial-gradient(circle at 20% 20%, #fef6df, #e0a826);
      opacity: 0.55;
      filter: blur(2px);
    }

    .hero-product-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 0.75rem;
      margin-bottom: 1rem;
    }

    .hero-product-copy h3 {
      font-size: 1rem;
      margin-bottom: 0.2rem;
    }

    .hero-product-copy p {
      font-size: 0.88rem;
      color: var(--muted);
    }

    .hero-quality-tag {
      background: rgba(255, 255, 255, 0.9);
      padding: 0.4rem 0.9rem;
      border-radius: 999px;
      font-size: 0.76rem;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    }

    .hero-product-image {
      margin: 0.8rem 0 1.2rem;
      border-radius: 22px;
      overflow: hidden;
      border: 1px dashed rgba(224, 168, 38, 0.4);
      padding: 0.75rem;
      background: linear-gradient(135deg, #fffaf3, #ffe8bb);
    }

    .hero-product-inner {
      border-radius: 16px;
      background: #fffdf7;
      padding: 0.9rem;
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 0.8rem;
      align-items: center;
    }

    .hero-product-bowl {
      border-radius: 999px;
      background: radial-gradient(circle at 30% 20%, #fff7df, #f1c15a);
      padding: 0.9rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      font-size: 0.85rem;
      text-align: center;
    }

    .hero-product-bowl span {
      display: block;
      font-size: 0.72rem;
      font-weight: 500;
      opacity: 0.8;
    }

    .hero-product-facts {
      font-size: 0.78rem;
      display: grid;
      gap: 0.45rem;
    }

    .hero-product-facts strong {
      display: block;
      font-size: 0.82rem;
      margin-bottom: 0.1rem;
    }

    .hero-badges-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-bottom: 0.4rem;
    }

    .hero-badge {
      font-size: 0.7rem;
      padding: 0.22rem 0.55rem;
      border-radius: 999px;
      border: 1px solid rgba(61, 107, 72, 0.2);
      background: rgba(255, 255, 255, 0.85);
    }

    .hero-bottom-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.76rem;
      color: var(--muted);
      flex-wrap: wrap;
      gap: 0.4rem;
    }

    .hero-bottom-row span strong {
      color: var(--primary-dark);
    }

    /* Sections */
    section {
      padding: 3rem 0;
    }

    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 1rem;
      margin-bottom: 1.8rem;
      flex-wrap: wrap;
    }

    .section-title {
      font-size: 1.4rem;
      font-weight: 700;
    }

    .section-subtitle {
      font-size: 0.9rem;
      color: var(--muted);
      max-width: 26rem;
    }

    /* Benefits */
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.4rem;
    }

    .benefit-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 1.2rem;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
      border: 1px solid rgba(0, 0, 0, 0.03);
    }

    .benefit-icon {
      width: 30px;
      height: 30px;
      border-radius: 12px;
      background: rgba(61, 107, 72, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      margin-bottom: 0.6rem;
    }

    .benefit-card h3 {
      font-size: 0.98rem;
      margin-bottom: 0.3rem;
    }

    .benefit-card p {
      font-size: 0.85rem;
      color: var(--muted);
    }

    /* Products */
    .products-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: 1.5rem;
      align-items: flex-start;
    }

    .chip-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-bottom: 0.9rem;
    }

    .chip {
      font-size: 0.78rem;
      padding: 0.25rem 0.7rem;
      border-radius: 999px;
      border: 1px dashed rgba(0, 0, 0, 0.1);
      background: rgba(255, 255, 255, 0.8);
    }

    .products-list {
      display: grid;
      gap: 0.8rem;
    }

    .product-item {
      background: rgba(255, 255, 255, 0.85);
      border-radius: 14px;
      padding: 0.85rem 0.9rem;
      border: 1px solid rgba(0, 0, 0, 0.04);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 0.8rem;
      font-size: 0.85rem;
    }

    .product-item div:first-child {
      max-width: 75%;
    }

    .product-item strong {
      font-size: 0.9rem;
    }

    .badge-soft {
      font-size: 0.72rem;
      padding: 0.2rem 0.55rem;
      border-radius: 999px;
      background: rgba(224, 168, 38, 0.08);
      color: var(--primary-dark);
    }

    .sourcing-card {
      background: linear-gradient(135deg, #fef7e5, #f6dec2);
      border-radius: var(--radius-lg);
      padding: 1.2rem;
      position: relative;
      overflow: hidden;
    }

    .sourcing-card::after {
      content: "";
      position: absolute;
      inset: auto -50px -40px auto;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      border: 10px solid rgba(255, 255, 255, 0.6);
      opacity: 0.5;
    }

    .sourcing-card h3 {
      font-size: 1rem;
      margin-bottom: 0.4rem;
    }

    .sourcing-card p {
      font-size: 0.85rem;
      color: #5d4a32;
      margin-bottom: 0.7rem;
    }

    .sourcing-list {
      list-style: none;
      font-size: 0.83rem;
    }

    .sourcing-list li {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      margin-bottom: 0.3rem;
    }

    .sourcing-list span {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #5d4a32;
    }

    /* CHIPS SECTION */
    .chips-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.3rem;
    }

    .chip-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 1rem;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      font-size: 0.85rem;
    }

    .chip-card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.6rem;
    }

    .chip-tag {
      font-size: 0.7rem;
      padding: 0.18rem 0.55rem;
      border-radius: 999px;
      background: rgba(61, 107, 72, 0.05);
    }

    .chip-flavour {
      display: inline-flex;
      gap: 0.3rem;
      flex-wrap: wrap;
      font-size: 0.78rem;
    }

    .chip-flavour span {
      padding: 0.18rem 0.55rem;
      border-radius: 999px;
      background: rgba(224, 168, 38, 0.08);
    }

    /* Numbers */
    .numbers-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1.2rem;
    }

    .number-card {
      text-align: center;
      padding: 1.1rem 0.8rem;
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, 0.9);
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.03);
      font-size: 0.85rem;
    }

    .number-card strong {
      display: block;
      font-size: 1.3rem;
      color: var(--primary-dark);
      margin-bottom: 0.2rem;
    }

    .number-card span {
      display: block;
      font-size: 0.76rem;
      color: var(--muted);
    }

    /* Contact */
    .contact-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 1.5rem;
      align-items: flex-start;
    }

    .contact-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 1.2rem 1.4rem;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
    }

    .contact-card h3 {
      font-size: 1rem;
      margin-bottom: 0.7rem;
    }

    .contact-card p {
      font-size: 0.86rem;
      color: var(--muted);
      margin-bottom: 0.9rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.8rem;
    }

    .form-group {
      margin-bottom: 0.8rem;
      font-size: 0.85rem;
    }

    label {
      display: block;
      margin-bottom: 0.25rem;
      font-weight: 500;
    }

    input,
    select,
    textarea {
      width: 100%;
      padding: 0.6rem 0.65rem;
      border-radius: 10px;
      border: 1px solid rgba(0, 0, 0, 0.14);
      font-size: 0.85rem;
      outline: none;
      background: #fffdf9;
      transition: border 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
      resize: vertical;
      min-height: 40px;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 1px rgba(61, 107, 72, 0.12);
      background: #ffffff;
    }

    .contact-meta {
      font-size: 0.86rem;
    }

    .contact-meta-item {
      margin-bottom: 0.7rem;
    }

    .contact-meta-item strong {
      display: block;
      font-size: 0.86rem;
      margin-bottom: 0.1rem;
    }

    .contact-meta-item span {
      font-size: 0.83rem;
      color: var(--muted);
    }

    .contact-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-top: 0.6rem;
    }

    .contact-tags .chip {
      background: rgba(61, 107, 72, 0.06);
    }

    /* FAQ */
    .faq {
      margin-top: 2.5rem;
    }

    .faq-item {
      background: rgba(255, 255, 255, 0.9);
      border-radius: 14px;
      margin-bottom: 0.7rem;
      border: 1px solid rgba(0, 0, 0, 0.04);
      overflow: hidden;
    }

    .faq-question {
      padding: 0.8rem 1rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.86rem;
    }

    .faq-question span {
      font-weight: 500;
    }

    .faq-toggle {
      font-size: 1.1rem;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.25s ease;
      padding: 0 1rem;
      font-size: 0.83rem;
      color: var(--muted);
    }

    .faq-answer.open {
      padding-bottom: 0.9rem;
    }

    /* Footer */
    footer {
      border-top: 1px solid rgba(0, 0, 0, 0.06);
      padding: 1.4rem 0 1.8rem;
      font-size: 0.78rem;
      color: var(--muted);
      background: #fbf3e7;
      margin-top: 2rem;
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .footer-links {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .footer-links a {
      text-decoration: underline;
      text-decoration-style: dotted;
    }

    /* Reveal Animations */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Responsive */
    @media (max-width: 960px) {
      .hero-grid,
      .products-grid,
      .contact-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .hero {
        padding-top: 2.4rem;
      }

      .chips-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 780px) {
      .nav-links,
      .nav-cta {
        display: none;
      }

      .nav-toggle {
        display: flex;
      }

      .nav-menu-open .nav-links,
      .nav-menu-open .nav-cta {
        display: flex;
      }

      .nav-menu-open .nav-links {
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 1.5rem;
        background: rgba(253, 249, 243, 0.98);
        padding: 0.9rem 1.1rem;
        border-radius: 14px;
        box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
        gap: 0.75rem;
        z-index: 49;
      }

      .nav-menu-open .nav-cta {
        position: absolute;
        top: 70px;
        left: 1.5rem;
        right: auto;
        background: rgba(253, 249, 243, 0.98);
        padding: 0.9rem 1.1rem;
        border-radius: 14px;
        box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 0.6rem;
        z-index: 48;
      }

      .numbers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .benefits-grid,
      .chips-grid,
      .numbers-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .hero-card {
        border-radius: 20px;
      }

      .hero-product-inner {
        grid-template-columns: minmax(0, 1fr);
      }

      .hero-title {
        font-size: 2rem;
      }

      .footer-inner {
        flex-direction: column;
        align-items: flex-start;
      }

      .form-row {
        grid-template-columns: minmax(0, 1fr);
      }
    }
.logo-wrap img {
  height: 40px; /* Adjust the height as needed */
  width: auto; /* Maintain the aspect ratio */
  display: block;
}
/* Logo size (if not added already) */
.logo-wrap img {
  height: 46px;        /* tweak as you like: 40–60px works well */
  width: auto;
  display: block;
}

/* Dropdown in navbar */
.nav-item.dropdown {
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.dropdown-toggle::after {
  content: "▾";
  font-size: 0.7rem;
}

/* Dropdown menu (desktop + mobile) */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 150px;
  background: #fffdf9;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  padding: 0.4rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 60;
}

.dropdown-menu a {
  display: block;
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: rgba(0, 0, 0, 0.04);
}

/* Show on hover (desktop) */
.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* When opened via JS on mobile */
.dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* ===== Product Image Box Handling ===== */

.product-card img,
.chip-card img,
.package-card img {
  width: 100%;
  height: 220px;          /* Box height */
  object-fit: contain;    /* Show full image */
  background: #ffffff;    /* Box background */
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 10px;          /* Space inside box */
}

/* Mobile adjustment */
@media (max-width: 640px) {
  .product-card img,
  .chip-card img,
  .package-card img {
    height: 180px;
  }
}
.product-card img {
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}
/* ===== Visual Polish Upgrade ===== */

/* Softer page background */
body {
  background: linear-gradient(#fdf9f3, #fffefb);
}

/* Section spacing improvement */
section {
  padding: 4rem 0;
}

/* Section titles stronger */
.section-title {
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1rem;
}

/* Product Grid Improvements */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}

/* Product Cards */
.product-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.2rem;
  text-align: center;
  box-shadow: 0 12px 26px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 32px rgba(0,0,0,0.10);
}

.product-card h3 {
  font-size: 1.1rem;
  margin: 0.8rem 0 0.4rem;
  color: var(--primary-dark);
}

.product-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Image box */
.product-card img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  padding: 12px;
  background: #fafafa;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.06);
}

/* Benefit list style */
.benefit-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.benefit-list li {
  background: #ffffff;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.04);
  font-size: 0.85rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg,var(--primary),var(--primary-dark));
  color: white;
  border-radius: 22px;
  margin: 2rem auto;
  max-width: var(--max-width);
}

.cta-section .btn {
  background: white;
  color: var(--primary-dark);
  box-shadow: none;
}

/* Packaging cards */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.package-card {
  background: #ffffff;
  padding: 1.2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 22px rgba(0,0,0,0.05);
}

/* Footer refinement */
footer {
  background: #f7efe3;
}
/* ===== Full Page Image Zoom Lightbox ===== */

.img-lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
}

.img-lightbox-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  animation: zoomIn 0.25s ease;
}

.img-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  color: white;
  cursor: pointer;
}

@keyframes zoomIn {
  from {transform: scale(0.8); opacity:0;}
  to   {transform: scale(1); opacity:1;}
}
