*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --navy: #0a1e46;
      --navy2: #1a3a7c;
      --blue: #2e6da4;
      --sky: #4fa3c7;
      --white: #ffffff;
      --off: #f7f5f0;
      --off2: #eef2f9;
      --text: #1c1c2e;
      --muted: #6a7a95;
      --light: #c8d4e8;
      --gold: #d4a843;
      --green: #3a7d44;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
    }

    /* ─── ACCENT BAR ─── */
    .accent-bar {
      height: 3px;
      background: linear-gradient(90deg, var(--navy) 0%, var(--blue) 50%, var(--sky) 100%);
    }

    /* ─── TOP STRIP ─── */
    .top-strip {
      background: var(--navy);
      padding: 7px 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 10.5px;
      font-weight: 400;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.5);
      text-transform: uppercase;
    }
    .top-strip a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color .2s; }
    .top-strip a:hover { color: #fff; }
    .strip-right { display: flex; gap: 20px; }
    .strip-dot { display: inline-block; width: 3px; height: 3px; background: rgba(255,255,255,0.2); border-radius: 50%; vertical-align: middle; margin: 0 4px; }

    /* ─── HEADER ─── */
    header {
      background: var(--white);
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 1px 0 rgba(10,30,70,0.08), 0 4px 20px rgba(10,30,70,0.06);
    }

    .header-inner {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      padding: 12px 5%;
      gap: 20px;
    }

    .nav-left, .nav-right {
      display: flex;
      align-items: center;
      gap: 0;
    }
    .nav-right { justify-content: flex-end; }

    .nav-item {
      position: relative;
      padding: 8px 16px;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.14em;
      color: #3a3a55;
      text-transform: uppercase;
      cursor: pointer;
      text-decoration: none;
      white-space: nowrap;
      transition: color .25s;
    }
    .nav-item::after {
      content: '';
      position: absolute;
      bottom: 2px; left: 14px; right: 14px;
      height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transform: scaleX(0);
      transition: transform .3s;
    }
    .nav-item:hover { color: var(--navy); }
    .nav-item:hover::after { transform: scaleX(1); }
    .nav-item.active { color: var(--navy); font-weight: 600; }
    .nav-item.active::after { transform: scaleX(1); }

    /* Dropdown */
    .nav-dropdown { position: relative; }
    .nav-dropdown .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: var(--white);
      border: 1px solid var(--off2);
      box-shadow: 0 8px 32px rgba(10,30,70,0.12);
      min-width: 180px;
      border-radius: 6px;
      overflow: hidden;
      z-index: 999;
    }
    .nav-dropdown:hover .dropdown-menu { display: block; }
    .dropdown-menu a {
      display: block;
      padding: 10px 18px;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.1em;
      color: var(--text);
      text-decoration: none;
      transition: background .2s, color .2s;
    }
    .dropdown-menu a:hover { background: var(--off2); color: var(--navy); }

    .nav-sep { width: 1px; height: 14px; background: #d8dde8; margin: 0 2px; }

    .nav-cta {
      padding: 9px 18px;
      background: var(--navy);
      color: var(--white) !important;
      border-radius: 4px;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      cursor: pointer;
      text-decoration: none;
      transition: background .25s;
      white-space: nowrap;
    }
    .nav-cta::after { display: none !important; }
    .nav-cta:hover { background: var(--navy2) !important; color: var(--white) !important; }

    /* Logo */
    .logo {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      text-decoration: none;
      cursor: pointer;
    }
    .logo-icon { width: 56px; height: 56px; }
    .logo-img { height: 100px; width: auto; object-fit: contain; display: block; }
    .logo-name {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      font-weight: 700;
      letter-spacing: 0.1em;
      color: var(--navy);
      text-transform: uppercase;
      line-height: 1;
    }
    .logo-name span { color: var(--blue); }
    .logo-tag {
      font-size: 7.5px;
      font-weight: 500;
      letter-spacing: 0.4em;
      color: var(--muted);
      text-transform: uppercase;
      margin-top: 2px;
    }

    /* Header footer line */
    .header-foot {
      display: flex;
      align-items: center;
      padding: 0 5% 12px;
      gap: 12px;
    }
    .hfoot-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--light)); }
    .hfoot-line.r { background: linear-gradient(90deg, var(--light), transparent); }
    .hfoot-badge {
      font-size: 8.5px;
      font-weight: 500;
      letter-spacing: 0.3em;
      color: var(--muted);
      text-transform: uppercase;
    }

    /* ─── HERO SLIDER ─── */
    .hero {
      position: relative;
      height: 580px;
      overflow: hidden;
      background: var(--navy);
    }
    .hero-slides { display: flex; width: 300%; height: 100%; transition: transform .7s cubic-bezier(.77,0,.18,1); }
    .hero-slide {
      width: calc(100% / 3);
      height: 100%;
      position: relative;
      display: flex;
      align-items: center;
    }
    .hero-slide-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
    }
    .hero-slide-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }
    .hero-slide-bg::after { display: none; }

    /* Fallback if images not loaded */
    .slide-1 .hero-slide-bg,
    .slide-2 .hero-slide-bg,
    .slide-3 .hero-slide-bg { background: #f5f5f5; }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 0 8%;
      max-width: 600px;
    }
    .hero-tag {
      display: inline-block;
      padding: 5px 14px;
      background: rgba(212,168,67,0.2);
      border: 1px solid rgba(212,168,67,0.5);
      border-radius: 20px;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.25em;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 18px;
    }
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: 52px;
      font-weight: 700;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 18px;
    }
    .hero-title em { font-style: italic; color: var(--sky); }
    .hero-desc {
      font-size: 14px;
      font-weight: 300;
      color: rgba(255,255,255,0.75);
      line-height: 1.7;
      margin-bottom: 32px;
    }
    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-primary {
      padding: 13px 28px;
      background: var(--gold);
      color: var(--navy);
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      border-radius: 4px;
      text-decoration: none;
      transition: background .25s, transform .15s;
      display: inline-block;
    }
    .btn-primary:hover { background: #e8bc55; transform: translateY(-1px); }
    .btn-outline {
      padding: 13px 28px;
      border: 1.5px solid rgba(255,255,255,0.5);
      color: var(--white);
      font-weight: 500;
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      border-radius: 4px;
      text-decoration: none;
      transition: border-color .25s, background .25s;
      display: inline-block;
    }
    .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

    /* Slider controls */
    .hero-dots {
      position: absolute;
      bottom: 28px;
      left: 8%;
      display: flex;
      gap: 8px;
      z-index: 3;
    }
    .hero-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.3);
      cursor: pointer;
      transition: background .3s, width .3s;
      border: none;
    }
    .hero-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

    .hero-arrows {
      position: absolute;
      right: 5%;
      bottom: 24px;
      display: flex;
      gap: 10px;
      z-index: 3;
    }
    .hero-arrow {
      width: 40px; height: 40px;
      border: 1.5px solid rgba(255,255,255,0.4);
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      color: white;
      font-size: 16px;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background .25s, border-color .25s;
      user-select: none;
    }
    .hero-arrow:hover { background: rgba(255,255,255,0.2); border-color: #fff; }

    /* ─── PROMO BANNERS ─── */
    .promo-strip {
      padding: 40px 5%;
      background: var(--off);
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .promo-card {
      border-radius: 10px;
      overflow: hidden;
      position: relative;
      height: auto;
      aspect-ratio: 4 / 3;
      cursor: pointer;
    }
    .promo-card-bg {
      position: absolute;
      inset: 0;
      overflow: hidden;
      background-size: cover;
      background-position: center;
      transition: transform .4s ease;
    }
    .promo-card-bg img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      display: block;
    }
    .promo-card:hover .promo-card-bg { transform: scale(1.05); }
    /* Fallback if images not loaded */
    .promo-p1 .promo-card-bg,
    .promo-p2 .promo-card-bg,
    .promo-p3 .promo-card-bg { background: #f5f5f5; }
    .promo-card-overlay { display: none; }
    .promo-card-label {
      position: relative;
      z-index: 2;
      padding: 16px 20px;
      width: 100%;
    }
    .promo-card-label h3 {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 4px;
    }
    .promo-card-label span {
      font-size: 10.5px;
      font-weight: 500;
      letter-spacing: 0.15em;
      color: rgba(255,255,255,0.7);
      text-transform: uppercase;
    }

    /* ─── SECTION BASE ─── */
    .section { padding: 80px 5%; }
    .section-label {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.35em;
      color: var(--blue);
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: 38px;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .section-desc {
      font-size: 14px;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.8;
      max-width: 540px;
    }
    .section-divider {
      width: 50px;
      height: 3px;
      background: linear-gradient(90deg, var(--navy), var(--blue));
      border-radius: 2px;
      margin: 18px 0;
    }

    /* ─── VALUES ─── */
    .values-section { background: var(--off2); }
    .values-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 50px;
    }
    .value-card {
      background: var(--white);
      border-radius: 12px;
      padding: 32px 24px;
      text-align: center;
      border: 1px solid var(--light);
      transition: transform .3s, box-shadow .3s;
    }
    .value-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(10,30,70,0.1); }
    .value-icon {
      width: 60px; height: 60px;
      border-radius: 50%;
      background: var(--off2);
      margin: 0 auto 18px;
      display: flex; align-items: center; justify-content: center;
      font-size: 26px;
    }
    .value-card h4 {
      font-family: 'Playfair Display', serif;
      font-size: 17px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 10px;
    }
    .value-card p {
      font-size: 12.5px;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.7;
    }

    /* ─── ABOUT ─── */
    .about-section { background: var(--white); }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      align-items: center;
    }
    .about-img-wrap {
      position: relative;
      height: 420px;
      border-radius: 12px;
      overflow: hidden;
    }
    .about-img-bg {
      width: 100%; height: 100%;
      background: linear-gradient(135deg, #0a1e46 0%, #1a3a7c 40%, #2e6da4 70%, #3a7d44 100%);
      overflow: hidden;
    }
    .about-img-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }
    .about-img-badge {
      position: absolute;
      bottom: 28px;
      right: -20px;
      background: var(--white);
      border-radius: 10px;
      padding: 18px 22px;
      box-shadow: 0 8px 32px rgba(10,30,70,0.15);
      text-align: center;
    }
    .about-img-badge .big-num {
      font-family: 'Playfair Display', serif;
      font-size: 38px;
      font-weight: 700;
      color: var(--navy);
      line-height: 1;
    }
    .about-img-badge .big-label {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.2em;
      color: var(--muted);
      text-transform: uppercase;
      margin-top: 4px;
    }
    .about-text p {
      font-size: 14px;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.85;
      margin-bottom: 16px;
    }
    .about-stats {
      display: flex;
      gap: 32px;
      margin: 32px 0;
    }
    .stat { text-align: center; }
    .stat .num {
      font-family: 'Playfair Display', serif;
      font-size: 32px;
      font-weight: 700;
      color: var(--navy);
    }
    .stat .lbl {
      font-size: 10.5px;
      font-weight: 500;
      letter-spacing: 0.18em;
      color: var(--muted);
      text-transform: uppercase;
      margin-top: 2px;
    }
    .btn-navy {
      padding: 13px 28px;
      background: var(--navy);
      color: var(--white);
      font-weight: 600;
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      border-radius: 4px;
      text-decoration: none;
      transition: background .25s;
      display: inline-block;
    }
    .btn-navy:hover { background: var(--navy2); }

    /* ─── PRODUCTS ─── */
    .products-section { background: var(--off); }
    .products-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 40px;
    }
    .products-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 18px;
    }
    .product-card {
      background: var(--white);
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid var(--light);
      transition: transform .3s, box-shadow .3s;
      cursor: pointer;
    }
    .product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(10,30,70,0.1); }
    .product-img {
      height: 160px;
      background: #f8f8f8;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 42px;
      position: relative;
      overflow: hidden;
    }
    .product-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }
    .product-card:hover .product-img img {
      transform: scale(1.06);
    }
    .product-img .product-badge {
      z-index: 2;
    }
    .product-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      padding: 3px 9px;
      border-radius: 20px;
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .badge-sale { background: #fee2e2; color: #b91c1c; }
    .badge-new { background: #dcfce7; color: #15803d; }
    .badge-hot { background: #fff7ed; color: #c2410c; }
    .product-info { padding: 14px 16px; }
    .product-info h4 {
      font-family: 'Playfair Display', serif;
      font-size: 14px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 5px;
    }
    .product-info .weight {
      font-size: 10.5px;
      color: var(--muted);
      font-weight: 300;
      margin-bottom: 10px;
    }
    .product-price {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .product-price .price {
      font-family: 'Playfair Display', serif;
      font-size: 17px;
      font-weight: 700;
      color: var(--navy);
    }
    .add-btn {
      width: 30px; height: 30px;
      border-radius: 50%;
      background: var(--navy);
      color: white;
      border: none;
      cursor: pointer;
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s;
    }
    .add-btn:hover { background: var(--navy2); }

    /* ─── WHY US ─── */
    .whyus-section {
      background: var(--navy);
      color: var(--white);
      padding: 80px 5%;
    }
    .whyus-section .section-title { color: var(--white); }
    .whyus-section .section-label { color: var(--sky); }
    .whyus-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 50px;
    }
    .why-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 10px;
      padding: 28px 22px;
      transition: background .3s;
    }
    .why-card:hover { background: rgba(255,255,255,0.1); }
    .why-icon { font-size: 28px; margin-bottom: 14px; }
    .why-card h4 {
      font-family: 'Playfair Display', serif;
      font-size: 15px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 8px;
    }
    .why-card p {
      font-size: 12.5px;
      font-weight: 300;
      color: rgba(255,255,255,0.6);
      line-height: 1.7;
    }

    /* ─── STATS STRIP ─── */
    .stats-strip {
      background: var(--gold);
      padding: 40px 5%;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .stats-item { text-align: center; }
    .stats-item .num {
      font-family: 'Playfair Display', serif;
      font-size: 44px;
      font-weight: 700;
      color: var(--navy);
      line-height: 1;
    }
    .stats-item .lbl {
      font-size: 10.5px;
      font-weight: 600;
      letter-spacing: 0.2em;
      color: rgba(10,30,70,0.65);
      text-transform: uppercase;
      margin-top: 6px;
    }

    /* ─── CTA BANNER ─── */
    .cta-banner {
      background: linear-gradient(135deg, #0a1e46 0%, #1a3a7c 50%, #2e6da4 100%);
      padding: 80px 5%;
      text-align: center;
      color: var(--white);
    }
    .cta-banner h2 {
      font-family: 'Playfair Display', serif;
      font-size: 42px;
      font-weight: 700;
      margin-bottom: 16px;
    }
    .cta-banner h2 em { font-style: italic; color: var(--sky); }
    .cta-banner p {
      font-size: 14px;
      font-weight: 300;
      color: rgba(255,255,255,0.7);
      margin-bottom: 36px;
    }
    .cta-banner .btn-primary { font-size: 12px; padding: 15px 36px; }

    /* ─── VISION MISSION ─── */
    .vm-section { background: var(--off); padding-bottom: 40px; }
    .vm-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 0;
    }
    .vm-card {
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
    }
    .vm-bg {
      width: 100%;
      transition: transform .4s;
    }
    .vm-bg img {
      width: 100%;
      height: auto;
      display: block;
    }
    .vm-card:hover .vm-bg { transform: scale(1.02); }

    /* ─── CHAIRMAN ─── */
    .chairman-section { background: var(--white); }
    .chairman-grid {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 60px;
      align-items: center;
    }
    .chairman-photo {
      width: 200px;
      text-align: center;
    }
    .chairman-avatar {
      width: 160px; height: 160px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--navy), var(--blue));
      margin: 0 auto 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 60px;
    }
    .chairman-photo h4 {
      font-family: 'Playfair Display', serif;
      font-size: 17px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 4px;
    }
    .chairman-photo span {
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.1em;
      color: var(--muted);
      text-transform: uppercase;
    }
    .chairman-message {
      border-left: 3px solid var(--light);
      padding-left: 36px;
    }
    .chairman-message blockquote {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-style: italic;
      font-weight: 400;
      color: var(--navy);
      line-height: 1.65;
      margin-bottom: 20px;
    }
    .chairman-message p {
      font-size: 13.5px;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.85;
    }

    /* ─── CERTIFICATIONS ─── */
    .certs-section { background: var(--off2); }
    .certs-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      margin-top: 40px;
    }
    .cert-card {
      background: var(--white);
      border: 1px solid var(--light);
      border-radius: 10px;
      padding: 18px 24px;
      min-width: 120px;
      text-align: center;
      transition: box-shadow .3s;
    }
    .cert-card:hover { box-shadow: 0 6px 20px rgba(10,30,70,0.1); }
    .cert-card .cert-icon { font-size: 28px; margin-bottom: 8px; }
    .cert-card span {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      color: var(--navy);
      text-transform: uppercase;
      display: block;
    }

    /* ─── AVAILABLE ON ─── */
    .avail-section { background: var(--white); text-align: center; }
    .avail-logos {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      justify-content: center;
      align-items: center;
      margin-top: 40px;
    }
    .avail-logo {
      background: #fff;
      border: 1px solid var(--light);
      border-radius: 10px;
      padding: 16px 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: box-shadow .2s, transform .2s;
      cursor: pointer;
    }
    .avail-logo:hover {
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
      transform: translateY(-3px);
    }
    .avail-logo img {
      height: 36px;
      width: auto;
      object-fit: contain;
      display: block;
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--navy);
      color: rgba(255,255,255,0.65);
      padding: 60px 5% 30px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.8fr 1fr 1fr 1fr;
      gap: 50px;
      padding-bottom: 50px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .footer-brand .logo-name { color: var(--white); font-size: 22px; margin-bottom: 14px; }
    .footer-logo-img { height: 80px; width: auto; object-fit: contain; margin-bottom: 16px; display: block; }
    .footer-brand p {
      font-size: 12.5px;
      font-weight: 300;
      line-height: 1.8;
      margin-bottom: 22px;
    }
    .footer-social { display: flex; gap: 10px; }
    .social-btn {
      width: 36px; height: 36px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 14px;
      cursor: pointer;
      transition: border-color .2s, background .2s;
    }
    .social-btn:hover { border-color: var(--sky); background: rgba(79,163,199,0.15); }

    .footer-col h5 {
      font-family: 'Playfair Display', serif;
      font-size: 15px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 18px;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li {
      margin-bottom: 10px;
    }
    .footer-col ul li a {
      font-size: 12.5px;
      font-weight: 300;
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      transition: color .2s;
    }
    .footer-col ul li a:hover { color: var(--white); }
    .footer-contact-item {
      display: flex;
      gap: 10px;
      margin-bottom: 14px;
      font-size: 12.5px;
      font-weight: 300;
      line-height: 1.6;
    }
    .footer-contact-item .icon { font-size: 14px; flex-shrink: 0; margin-top: 1px; }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 28px;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom p { font-size: 11.5px; font-weight: 300; }
    .footer-bottom a {
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      transition: color .2s;
    }
    .footer-bottom a:hover { color: var(--white); }
    .footer-links { display: flex; gap: 20px; }

    /* ─── MOBILE MENU ─── */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      z-index: 1100;
      position: relative;
    }
    .hamburger span {
      display: block;
      width: 22px; height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: all .3s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-nav {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100vh;
      background: #fff;
      z-index: 1050;
      flex-direction: column;
      padding: 80px 32px 32px;
      gap: 4px;
      overflow-y: auto;
      transform: translateX(100%);
      transition: transform 0.35s ease;
    }
    .mobile-nav.open {
      display: flex;
      transform: translateX(0);
    }
    .mobile-nav a {
      display: block;
      padding: 14px 0;
      font-size: 16px;
      font-weight: 600;
      color: var(--navy);
      text-decoration: none;
      border-bottom: 1px solid #f0f0f0;
      letter-spacing: 0.05em;
    }
    .mobile-nav a:hover { color: var(--accent, #c9a84c); }
    .mobile-nav-close {
      position: absolute;
      top: 20px; right: 20px;
      font-size: 28px;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--navy);
      line-height: 1;
    }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .hero-content > * {
      opacity: 0;
      animation: fadeUp .7s ease forwards;
    }
    .hero-content > *:nth-child(1) { animation-delay: .1s; }
    .hero-content > *:nth-child(2) { animation-delay: .25s; }
    .hero-content > *:nth-child(3) { animation-delay: .4s; }
    .hero-content > *:nth-child(4) { animation-delay: .55s; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .products-grid { grid-template-columns: repeat(3, 1fr); }
      .values-grid, .whyus-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .header-inner { grid-template-columns: auto 1fr auto; }
      .nav-left, .nav-right { display: none; }
      .hamburger { display: flex; }
      .hero-title { font-size: 34px; }
      .hero { height: 440px; }
      .promo-strip { grid-template-columns: 1fr; }
      .about-grid, .chairman-grid { grid-template-columns: 1fr; }
      .about-img-badge { right: 20px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .vm-grid { grid-template-columns: 1fr; }
      .products-grid { grid-template-columns: repeat(2, 1fr); }
      .stats-strip { grid-template-columns: repeat(2, 1fr); }
      .whyus-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 600px) {
      /* Header */
      .top-strip { display: none; }
      .accent-bar { height: 3px; }
      .header-inner { padding: 10px 16px; }
      .logo-img { height: 44px; }
      .header-foot { display: none; }

      /* Hero */
      .hero { height: auto; min-height: 320px; padding: 60px 20px; }
      .hero-title { font-size: 26px; line-height: 1.2; }
      .hero-desc { font-size: 13px; }
      .hero-btns { flex-direction: column; gap: 10px; align-items: center; }
      .btn-primary, .btn-outline { width: 100%; max-width: 260px; text-align: center; }
      .hero-tag { font-size: 11px; }

      /* Promo */
      .promo-strip { grid-template-columns: 1fr; gap: 12px; padding: 20px 16px; }
      .promo-card { height: 160px; }

      /* Sections */
      .section { padding: 40px 16px; }
      .section-title { font-size: 22px; }
      .section-label { font-size: 11px; }

      /* Values / Why Us */
      .values-grid, .whyus-grid { grid-template-columns: 1fr; gap: 16px; }
      .value-card, .why-card { padding: 20px 16px; }

      /* About */
      .about-grid { grid-template-columns: 1fr; gap: 24px; }
      .about-img-wrap { height: 220px; }
      .about-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .about-text { padding: 0; }

      /* Products */
      .products-section { padding: 40px 16px; }
      .cat-tabs { gap: 8px; }
      .cat-tab { padding: 8px 14px; font-size: 12px; }
      .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .product-card { border-radius: 8px; }
      .product-img { font-size: 28px; height: 120px; }
      .product-info { padding: 10px; }
      .product-info h4 { font-size: 13px; }
      .weight { font-size: 11px; }
      .price { font-size: 14px; }
      .products-header { flex-direction: column; gap: 12px; align-items: flex-start; }

      /* Vision / Mission */
      .vm-grid { grid-template-columns: 1fr; gap: 16px; }
      .vm-card { height: 220px; }

      /* Stats */
      .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 0; }
      .stats-item { padding: 20px 10px; }
      .stats-item .num { font-size: 26px; }

      /* CTA Banner */
      .cta-banner { padding: 40px 20px; }
      .cta-banner h2 { font-size: 22px; }
      .cta-banner p { font-size: 13px; }

      /* Chairman */
      .chairman-grid { grid-template-columns: 1fr; gap: 24px; }
      .chairman-photo { padding: 20px; }
      blockquote { font-size: 15px; }

      /* Certifications */
      .certs-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
      .cert-card { padding: 14px 8px; }

      /* Available on */
      .avail-logos { grid-template-columns: repeat(2, 1fr); gap: 12px; }

      /* Footer */
      .footer-grid { grid-template-columns: 1fr; gap: 28px; padding: 32px 16px; }
      .footer-bottom { flex-direction: column; text-align: center; gap: 10px; padding: 16px; }
      .footer-links { flex-wrap: wrap; justify-content: center; gap: 8px; }
      .footer-logo-img { height: 60px; }
    }

    @media (max-width: 380px) {
      .products-grid { grid-template-columns: 1fr; }
      .hero-title { font-size: 22px; }
      .cat-tab { padding: 7px 11px; font-size: 11px; }
    }

/* ── CATEGORY TABS ── */
.cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}

.cat-tab {
  padding: 10px 22px;
  border: 1.5px solid #ddd;
  background: #fff;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  color: #555;
  transition: all 0.2s;
}

.cat-tab:hover {
  border-color: var(--accent, #c9a84c);
  color: var(--accent, #c9a84c);
}

.cat-tab.active {
  background: var(--navy, #0a1e46);
  border-color: var(--navy, #0a1e46);
  color: #fff;
}

/* ── CATEGORY PANELS ── */
.cat-panel { display: none; }
.cat-panel.active { display: block; }

/* ── PRODUCT CODE ── */
.prod-code {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #aaa;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* ── VIEW MORE ── */
.view-more-wrap {
  text-align: center;
  margin: 24px 0 8px;
}

.btn-view-more {
  padding: 11px 32px;
  border: 1.5px solid var(--navy, #0a1e46);
  background: transparent;
  color: var(--navy, #0a1e46);
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.05em;
}

.btn-view-more:hover {
  background: var(--navy, #0a1e46);
  color: #fff;
}

.more-products { margin-top: 24px; }
.hidden { display: none !important; }
