*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0B1F3A;
  --navy-light: #162E52;
  --gold: #C9952A;
  --gold-light: #E8B84B;
  --silver: #8EA3B8;
  --silver-light: #C5D2DD;
  --bg: #F6F8FA;
  --white: #FFFFFF;
  --text: #0B1F3A;
  --text-muted: #4A6080;
  --border: #D8E3ED;
  --foil-1: #B8C8D8;
  --foil-2: #9AAFC2;
  --radius: 12px;
}
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
a { color: inherit; text-decoration: none; }

/* NAV */
nav {
  background: white;
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 64px;
  border-bottom: 2px solid var(--gold);
  flex-wrap: wrap;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-icon {
  width: 38px; height: 38px;
  background: var(--gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; color: var(--navy);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.nav-logo-text { color: #000000; }
.nav-logo-text strong { font-size: 15px; display: block; font-weight: 700; line-height: 1.1; }
.nav-logo-text span { font-size: 11px; color: var(--silver-light); letter-spacing: 0.5px; }

.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--silver-light); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
  background: var(--gold); color: var(--navy);
  padding: 8px 20px; border-radius: 8px;
  font-size: 13px; font-weight: 700;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-light); }

/* Hamburger Button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px; height: 36px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--silver-light);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hamburger → X animation */
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile CTA inside menu — hidden on desktop */
.nav-cta-mobile { display: none; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav {
    height: auto;
    padding: 0 5%;
    align-items: center;
    position: sticky; top: 0;
  }

  /* Keep logo + hamburger on one row at 64px */
  .nav-logo { height: 64px; }

  .nav-hamburger {
    display: flex;
    margin-left: auto;
  }

  /* Desktop CTA hidden on mobile */
  .nav-cta-desktop { display: none; }

  /* Mobile CTA shown inside dropdown */
  .nav-cta-mobile {
    display: block;
    text-align: center;
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    background: var(--gold);
    color: var(--navy) !important;
    font-weight: 700;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    background: var(--navy-light);
    padding: 12px 0 16px;
    border-top: 1px solid rgba(201,149,42,0.3);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 20px;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .nav-links a:last-child {
    border-bottom: none;
    margin-top: 8px;
    padding: 0 20px;
  }
}


/* OVERLAY */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
  backdrop-filter: blur(2px);
  transition: opacity 0.3s;
  opacity: 0;
}
.nav-overlay.active {
  display: block;
  opacity: 1;
}

/* SIDE DRAWER */
.side-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 300px;
  height: 100vh;
  background: var(--navy);
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--gold);
  overflow-y: auto;
}
.side-drawer.open {
  transform: translateX(0);
}

/* DRAWER HEADER */
.drawer-header {
    background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(201,149,42,0.3);
  min-height: 64px;
}
.drawer-header .nav-logo-text strong { font-size: 14px; }
.drawer-header .nav-logo-text span { font-size: 10px; }

.drawer-close {
  background: rgba(0, 0, 0);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 34px; height: 34px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}


/* DRAWER NAV LINKS */
.drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
}
.drawer-nav a {
  color: #000000;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
}
.drawer-nav a:hover {
  background: rgba(201,149,42,0.08);
  color: var(--gold-light);
  padding-left: 30px;
}
.drawer-nav a.active {
  color: var(--gold-light);
  background: rgba(201,149,42,0.1);
  border-left: 3px solid var(--gold);
}

/* DRAWER FOOTER */
.drawer-footer {
  padding: 20px;
  border-top: 1px solid rgba(201,149,42,0.3);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.drawer-cta {
  display: block;
  text-align: center;
  background: var(--gold);
  color: var(--navy);
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  transition: background 0.2s;
}
.drawer-cta:hover { background: var(--gold-light); }

.drawer-wa {
  display: block;
  text-align: center;
  background: #25D366;
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  transition: background 0.2s;
}
.drawer-wa:hover { background: #1DA855; }

.drawer-addr {
  font-size: 12px;
  color: var(--silver);
  text-align: center;
  margin-top: 4px;
}

/* HAMBURGER — only on mobile */
.nav-hamburger { display: none; }

@media (max-width: 768px) {
  .nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    width: 36px; height: 36px;
  }
  .nav-hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: #000000;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-links { display: none; }
  .nav-cta-desktop { display: none; }
}

  /* HERO */
  .hero {
    background: var(--navy);
    padding: 80px 5% 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    right: -60px; top: -80px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,149,42,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-badge {
    display: inline-block;
    background: rgba(201,149,42,0.18);
    color: var(--gold-light);
    padding: 6px 14px; border-radius: 999px;
    font-size: 12px; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(201,149,42,0.35);
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
  }
  .hero h1 em { color: var(--gold-light); font-style: normal; }
  .hero p {
    color: var(--silver-light);
    font-size: 16px; line-height: 1.75;
    margin-bottom: 32px;
    max-width: 480px;
  }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--gold); color: var(--navy);
    padding: 13px 28px; border-radius: 10px;
    font-weight: 700; font-size: 15px;
    transition: background 0.2s, transform 0.1s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
  .btn-outline {
    border: 1.5px solid rgba(255,255,255,0.3); color: #fff;
    padding: 12px 28px; border-radius: 10px;
    font-weight: 600; font-size: 15px;
    transition: border-color 0.2s, background 0.2s;
    display: inline-block;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

  /* HERO VISUAL */
  .hero-visual { position: relative; }
  .foil-stack {
    position: relative; height: 360px;
  }
  .foil-card {
    position: absolute;
    border-radius: 16px;
    padding: 28px;
    backdrop-filter: blur(4px);
  }
  .foil-card-main {
    background: linear-gradient(145deg, #1E3A5C, #0F2540);
    border: 1px solid rgba(201,149,42,0.4);
    width: 100%; height: 260px; top: 30px; left: 0;
    display: flex; flex-direction: column; justify-content: space-between;
  }
  .foil-card-float {
    background: linear-gradient(135deg, #C9952A, #A8781A);
    width: 180px; height: 110px;
    bottom: 0; right: -10px;
    display: flex; flex-direction: column; justify-content: center;
    box-shadow: 0 12px 40px rgba(201,149,42,0.35);
  }
  .foil-label {
    font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--gold-light); font-weight: 600;
  }
  .foil-title {
    font-size: 22px; font-weight: 700; color: #fff;
    margin: 8px 0 4px; line-height: 1.2;
  }
  .foil-sub {
    font-size: 13px; color: var(--silver);
  }
  .foil-specs {
    display: flex; gap: 20px;
  }
  .foil-spec { text-align: center; }
  .foil-spec-val { font-size: 20px; font-weight: 700; color: var(--gold-light); }
  .foil-spec-label { font-size: 11px; color: var(--silver); margin-top: 2px; }
  .foil-float-val { font-size: 28px; font-weight: 900; color: var(--navy); }
  .foil-float-label { font-size: 11px; color: rgba(11,31,58,0.7); font-weight: 600; margin-top: 2px; }

  /* STATS BAR */
  .stats-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    display: flex; justify-content: center;
    flex-wrap: wrap;
  }
  .stat-item {
    padding: 28px 48px;
    text-align: center;
    border-right: 1px solid var(--border);
  }
  .stat-item:last-child { border-right: none; }
  .stat-num { font-size: 32px; font-weight: 700; color: var(--navy); font-family: 'Playfair Display', serif; }
  .stat-num span { color: var(--gold); }
  .stat-lbl { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

  /* SECTION */
  section { padding: 80px 5%; }
  .section-eyebrow {
    font-size: 12px; text-transform: uppercase; letter-spacing: 2px;
    color: var(--gold); font-weight: 700; margin-bottom: 10px;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700; color: var(--navy);
    margin-bottom: 14px; line-height: 1.25;
  }
  .section-title em { color: var(--gold); font-style: normal; }
  .section-sub {
    font-size: 16px; color: var(--text-muted);
    max-width: 560px; line-height: 1.75; margin-bottom: 48px;
  }

  /* PRODUCTS */
  #products { background: var(--bg); }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
  .product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.2s;
    display: flex; flex-direction: column;
  }
  .product-card:hover {
    box-shadow: 0 8px 32px rgba(11,31,58,0.1);
    transform: translateY(-4px);
  }
  .product-thumb {
    height: 160px;
    display: flex; align-items: center; justify-content: center;
    font-size: 56px;
    position: relative; overflow: hidden;
  }
  .product-thumb.induction { background: linear-gradient(135deg, #162E52, #0B1F3A); }
  .product-thumb.alu { background: linear-gradient(135deg, #B8C8D8, #8EA3B8); }
  .product-thumb.liner { background: linear-gradient(135deg, #1E3A5C, #162E52); }
  .product-thumb.bopp { background: linear-gradient(135deg, #A8781A, #C9952A); }
  .product-thumb.woven { background: linear-gradient(135deg, #0F4C1E, #166430); }
  .product-thumb.pouches { background: linear-gradient(135deg, #4A1B5E, #6B2B8A); }
  .product-thumb-icon { font-size: 52px; z-index: 1; }
  .product-thumb-shimmer {
    position: absolute; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent 20%, rgba(255,255,255,0.08) 50%, transparent 80%);
    animation: shimmer 2.5s infinite;
  }
  @keyframes shimmer { 0%{transform:translateX(-100%)} 100%{transform:translateX(100%)} }
  .product-badge {
    position: absolute; top: 10px; right: 10px;
    background: var(--gold); color: var(--navy);
    font-size: 10px; font-weight: 700;
    padding: 3px 10px; border-radius: 999px;
    text-transform: uppercase; letter-spacing: 0.5px;
  }
  .product-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
  .product-name {
    font-size: 18px; font-weight: 700; color: var(--navy);
    margin-bottom: 8px;
  }
  .product-desc {
    font-size: 14px; color: var(--text-muted); line-height: 1.65;
    flex: 1; margin-bottom: 16px;
  }
  .product-features {
    display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px;
  }
  .product-tag {
    background: #EEF3F8; color: var(--navy);
    font-size: 11px; font-weight: 600;
    padding: 3px 10px; border-radius: 999px;
    border: 1px solid var(--border);
  }
  .product-enquire {
    display: block; text-align: center;
    background: var(--navy); color: #fff;
    padding: 10px; border-radius: 8px;
    font-size: 13px; font-weight: 600;
    transition: background 0.2s;
  }
  .product-enquire:hover { background: var(--navy-light); }

  .product-thumb-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }

  /* ABOUT */
  #about { background: var(--white); }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
  }
  .about-points { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
  .about-point {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 15px; color: var(--text-muted); line-height: 1.6;
  }
  .about-point-dot {
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--gold); flex-shrink: 0; margin-top: 2px;
    display: flex; align-items: center; justify-content: center;
  }
  .about-point-dot svg { width: 11px; height: 11px; fill: var(--navy); }
  .about-visual {
    background: linear-gradient(145deg, var(--navy), var(--navy-light));
    border-radius: 20px; padding: 40px;
    border: 1px solid rgba(201,149,42,0.3);
  }
  .about-logo-big {
    font-family: 'Playfair Display', serif;
    font-size: 48px; font-weight: 900; color: #fff;
    line-height: 1; margin-bottom: 6px;
  }
  .about-logo-sub { font-size: 13px; color: var(--gold-light); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 32px; }
  .about-stats-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .about-stat-box {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(201,149,42,0.2);
    border-radius: 12px; padding: 16px;
  }
  .about-stat-box-val { font-size: 28px; font-weight: 700; color: var(--gold-light); font-family: 'Playfair Display', serif; }
  .about-stat-box-lbl { font-size: 12px; color: var(--silver); margin-top: 4px; }
  .about-addr {
    margin-top: 28px; padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px; color: var(--silver-light); line-height: 1.8;
  }
  .about-addr strong { color: var(--gold-light); }

  /* WHY US */
  #why { background: var(--navy); }
  #why .section-eyebrow { color: var(--gold-light); }
  #why .section-title { color: #fff; }
  #why .section-sub { color: var(--silver); }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
  .why-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,149,42,0.2);
    border-radius: var(--radius); padding: 28px;
    transition: border-color 0.25s, background 0.25s;
  }
  .why-card:hover { border-color: var(--gold); background: rgba(201,149,42,0.07); }
  .why-icon {
    width: 48px; height: 48px; background: rgba(201,149,42,0.15);
    border-radius: 12px; font-size: 22px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px; border: 1px solid rgba(201,149,42,0.25);
  }
  .why-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
  .why-desc { font-size: 14px; color: var(--silver); line-height: 1.65; }

  /* INDUSTRIES */
  #industries { background: var(--bg); }
  .industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
  }
  .ind-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
    cursor: default;
  }
  .ind-card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(201,149,42,0.12);
  }
  .ind-icon { font-size: 36px; margin-bottom: 10px; }
  .ind-name { font-size: 13px; font-weight: 600; color: var(--navy); }

  /* CONTACT */
  #contact { background: var(--white); }
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: start;
  }
  .contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
  .contact-card {
    display: flex; gap: 16px; align-items: flex-start;
    background: var(--bg); border-radius: 12px;
    padding: 20px; border: 1px solid var(--border);
  }
  .contact-card-icon {
    width: 44px; height: 44px; background: var(--navy);
    border-radius: 10px; font-size: 20px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .contact-card-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); font-weight: 600; margin-bottom: 4px; }
  .contact-card-value { font-size: 15px; font-weight: 600; color: var(--navy); }
  .contact-card-value a { color: var(--navy); }
  .contact-card-value a:hover { color: var(--gold); }
  .contact-card-sub { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
  .wa-btn {
    display: flex; align-items: center; gap: 10px;
    background: #25D366; color: #fff;
    padding: 14px 24px; border-radius: 10px;
    font-weight: 700; font-size: 15px;
    margin-top: 8px; width: fit-content;
    transition: background 0.2s;
    text-decoration: none;
  }
  .wa-btn:hover { background: #1DA855; }
  .form-box {
    background: var(--bg); border-radius: 16px;
    padding: 36px; border: 1px solid var(--border);
  }
  .form-box h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
  .form-group label { font-size: 13px; font-weight: 600; color: var(--text); }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px; font-size: 14px;
    font-family: 'Inter', sans-serif;
    background: var(--white); color: var(--text);
    transition: border-color 0.2s;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none; border-color: var(--gold);
  }
  .form-group textarea { resize: vertical; min-height: 90px; }
  .form-submit {
    width: 100%; padding: 13px;
    background: var(--navy); color: #fff;
    border: none; border-radius: 10px;
    font-size: 15px; font-weight: 700; cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background 0.2s;
  }
  .form-submit:hover { background: var(--navy-light); }
  .form-note { font-size: 12px; color: var(--text-muted); margin-top: 10px; text-align: center; }

  /* FOOTER */
  footer {
    background: var(--navy);
    color: var(--silver);
    padding: 60px 5% 30px;
  }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px; margin-bottom: 48px;
  }
  .footer-brand p { font-size: 14px; line-height: 1.75; color: var(--silver); margin: 14px 0 20px; max-width: 280px; }
  .footer-contact-mini { font-size: 14px; color: var(--silver-light); line-height: 2; }
  .footer-contact-mini a { color: var(--silver-light); }
  .footer-contact-mini a:hover { color: var(--gold-light); }
  .footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a { font-size: 14px; color: var(--silver); transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--gold-light); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
    font-size: 13px;
  }
  .footer-bottom span { color: var(--silver); }
  .footer-bottom .footer-gold { color: var(--gold-light); }

  /* FOIL SHIMMER SVG strip */
  .foil-strip {
    height: 6px;
    background: linear-gradient(90deg, var(--navy), var(--gold), #E8D5A0, var(--gold), var(--navy));
    background-size: 200% 100%;
    animation: foilMove 3s linear infinite;
  }
  @keyframes foilMove { 0%{background-position:0% 50%} 100%{background-position:200% 50%} }

 



  /* About Page */


  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --navy: #0B1F3A;
    --navy-light: #162E52;
    --gold: #C9952A;
    --gold-light: #E8B84B;
    --silver: #8EA3B8;
    --silver-light: #C5D2DD;
    --bg: #F6F8FA;
    --white: #FFFFFF;
    --text: #0B1F3A;
    --text-muted: #4A6080;
    --border: #D8E3ED;
    --radius: 12px;
  }
  body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
  a { color: inherit; text-decoration: none; }

 
 
  /* PAGE HERO */
  .page-hero {
    background: var(--navy);
    padding: 64px 5% 56px;
    position: relative; overflow: hidden;
    text-align: center;
  }
  .page-hero::before {
    content: '';
    position: absolute;
    right: -80px; top: -100px;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(201,149,42,0.14) 0%, transparent 70%);
    pointer-events: none;
  }
  .page-hero::after {
    content: '';
    position: absolute;
    left: -100px; bottom: -120px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(201,149,42,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .breadcrumb {
    font-size: 13px; color: var(--silver-light); margin-bottom: 16px;
    position: relative; z-index: 1;
  }
  .breadcrumb a { color: var(--gold-light); font-weight: 600; }
  .breadcrumb span { color: var(--silver); }
  .page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900; color: #fff;
    margin-bottom: 14px;
    position: relative; z-index: 1;
  }
  .page-hero h1 em { color: var(--gold-light); font-style: normal; }
  .page-hero p {
    color: var(--silver-light); font-size: 16px;
    max-width: 600px; margin: 0 auto;
    position: relative; z-index: 1;
  }

  section { padding: 80px 5%; }
  .section-eyebrow {
    font-size: 12px; text-transform: uppercase; letter-spacing: 2px;
    color: var(--gold); font-weight: 700; margin-bottom: 10px;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700; color: var(--navy);
    margin-bottom: 14px; line-height: 1.25;
  }
  .section-title em { color: var(--gold); font-style: normal; }
  .section-sub {
    font-size: 16px; color: var(--text-muted);
    max-width: 620px; line-height: 1.75; margin-bottom: 48px;
  }

  /* STORY / ABOUT */
  #story { background: var(--white); }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
  }
  .about-grid p { color: var(--text-muted); font-size: 16px; line-height: 1.75; margin-bottom: 16px; }
  .about-points { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
  .about-point {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 15px; color: var(--text-muted); line-height: 1.6;
  }
  .about-point-dot {
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--gold); flex-shrink: 0; margin-top: 2px;
    display: flex; align-items: center; justify-content: center;
  }
  .about-point-dot svg { width: 11px; height: 11px; fill: var(--navy); }
  .about-visual {
    background: linear-gradient(145deg, var(--navy), var(--navy-light));
    border-radius: 20px; padding: 40px;
    border: 1px solid rgba(201,149,42,0.3);
  }
  .about-logo-big {
    font-family: 'Playfair Display', serif;
    font-size: 48px; font-weight: 900; color: #fff;
    line-height: 1; margin-bottom: 6px;
  }
  .about-logo-sub { font-size: 13px; color: var(--gold-light); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 32px; }
  .about-stats-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .about-stat-box {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(201,149,42,0.2);
    border-radius: 12px; padding: 16px;
  }
  .about-stat-box-val { font-size: 28px; font-weight: 700; color: var(--gold-light); font-family: 'Playfair Display', serif; }
  .about-stat-box-lbl { font-size: 12px; color: var(--silver); margin-top: 4px; }
  .about-addr {
    margin-top: 28px; padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px; color: var(--silver-light); line-height: 1.8;
  }
  .about-addr strong { color: var(--gold-light); }

  /* MISSION / VISION */
  #mv { background: var(--bg); }
  .mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
  .mv-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: box-shadow 0.25s, transform 0.2s, border-color 0.2s;
  }
  .mv-card:hover {
    box-shadow: 0 8px 32px rgba(11,31,58,0.1);
    transform: translateY(-4px);
    border-color: var(--gold);
  }
  .mv-icon {
    width: 52px; height: 52px; background: #EEF3F8;
    border-radius: 12px; font-size: 24px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px; border: 1px solid var(--border);
  }
  .mv-title { font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
  .mv-desc { font-size: 14.5px; color: var(--text-muted); line-height: 1.7; }

  /* JOURNEY / MILESTONES */
  #journey { background: var(--navy); }
  #journey .section-eyebrow { color: var(--gold-light); }
  #journey .section-title { color: #fff; }
  #journey .section-sub { color: var(--silver); }
  .timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  .tl-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,149,42,0.2);
    border-radius: var(--radius); padding: 28px;
    transition: border-color 0.25s, background 0.25s;
  }
  .tl-card:hover { border-color: var(--gold); background: rgba(201,149,42,0.07); }
  .tl-year {
    font-family: 'Playfair Display', serif;
    font-size: 26px; font-weight: 900; color: var(--gold-light);
    margin-bottom: 10px;
  }
  .tl-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
  .tl-desc { font-size: 13.5px; color: var(--silver); line-height: 1.65; }

  /* VALUES */
  #values { background: var(--white); }
  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
  .val-card {
    border: 1px solid var(--border);
    border-radius: var(--radius); padding: 26px;
    text-align: left;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .val-card:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(201,149,42,0.12); }
  .val-icon { font-size: 30px; margin-bottom: 12px; }
  .val-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
  .val-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; }

  /* CTA BAND */
  #cta-band {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    padding: 56px 5%;
    text-align: center;
    position: relative; overflow: hidden;
  }
  #cta-band::before {
    content: '';
    position: absolute; left: 50%; top: -150px; transform: translateX(-50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(201,149,42,0.15) 0%, transparent 70%);
  }
  #cta-band h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: #fff; font-weight: 700; margin-bottom: 14px;
    position: relative; z-index: 1;
  }
  #cta-band h2 em { color: var(--gold-light); font-style: normal; }
  #cta-band p { color: var(--silver-light); font-size: 15px; margin-bottom: 28px; position: relative; z-index: 1; }
  .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
  .btn-primary {
    background: var(--gold); color: var(--navy);
    padding: 13px 28px; border-radius: 10px;
    font-weight: 700; font-size: 15px;
    transition: background 0.2s, transform 0.1s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
  .btn-outline {
    border: 1.5px solid rgba(255,255,255,0.3); color: #fff;
    padding: 12px 28px; border-radius: 10px;
    font-weight: 600; font-size: 15px;
    transition: border-color 0.2s, background 0.2s;
    display: inline-block;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

  /* FOOTER */
  footer {
    background: var(--navy);
    color: var(--silver);
    padding: 60px 5% 30px;
  }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px; margin-bottom: 48px;
  }
  .footer-brand p { font-size: 14px; line-height: 1.75; color: var(--silver); margin: 14px 0 20px; max-width: 280px; }
  .footer-contact-mini { font-size: 14px; color: var(--silver-light); line-height: 2; }
  .footer-contact-mini a { color: var(--silver-light); }
  .footer-contact-mini a:hover { color: var(--gold-light); }
  .footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a { font-size: 14px; color: var(--silver); transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--gold-light); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
    font-size: 13px;
  }
  .footer-bottom span { color: var(--silver); }
  .footer-bottom .footer-gold { color: var(--gold-light); }

  /* FOIL STRIP */
  .foil-strip {
    height: 6px;
    background: linear-gradient(90deg, var(--navy), var(--gold), #E8D5A0, var(--gold), var(--navy));
    background-size: 200% 100%;
    animation: foilMove 3s linear infinite;
  }
  @keyframes foilMove { 0%{background-position:0% 50%} 100%{background-position:200% 50%} }




  /* Products Page */


  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --navy: #0B1F3A;
    --navy-light: #162E52;
    --gold: #C9952A;
    --gold-light: #E8B84B;
    --silver: #8EA3B8;
    --silver-light: #C5D2DD;
    --bg: #F6F8FA;
    --white: #FFFFFF;
    --text: #0B1F3A;
    --text-muted: #4A6080;
    --border: #D8E3ED;
    --radius: 12px;
  }
  body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
  a { color: inherit; text-decoration: none; }

  /* NAV */
  nav {
    background: white !important;
    position: sticky; top: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%;
    height: 64px;
    border-bottom: 2px solid var(--gold);
  }
  .nav-logo { display: flex; align-items: center; gap: 10px; }
  .nav-logo-icon {
    width: 38px; height: 38px;
    background: var(--gold);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 16px; color: var(--navy);
    letter-spacing: -0.5px;
    flex-shrink: 0;
  }
  .nav-logo-text { color: #000000; }
  .nav-logo-text strong { font-size: 15px; display: block; font-weight: 700; line-height: 1.1; }
  .nav-logo-text span { font-size: 11px; color: #000000; letter-spacing: 0.5px; }
  .nav-links { display: flex; gap: 28px; }
  .nav-links a { color: #000000; font-size: 14px; font-weight: 500; transition: color 0.2s; }
  .nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
  .nav-cta {
    background: var(--gold); color: var(--navy);
    padding: 8px 20px; border-radius: 8px;
    font-size: 13px; font-weight: 700;
    transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--gold-light); }

  /* PAGE HERO */
  .page-hero {
    background: var(--navy);
    padding: 64px 5% 56px;
    position: relative; overflow: hidden;
    text-align: center;
  }
  .page-hero::before {
    content: '';
    position: absolute;
    right: -80px; top: -100px;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(201,149,42,0.14) 0%, transparent 70%);
    pointer-events: none;
  }
  .page-hero::after {
    content: '';
    position: absolute;
    left: -100px; bottom: -120px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(201,149,42,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .breadcrumb {
    font-size: 13px; color: var(--silver-light); margin-bottom: 16px;
    position: relative; z-index: 1;
  }
  .breadcrumb a { color: var(--gold-light); font-weight: 600; }
  .breadcrumb span { color: var(--silver); }
  .page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900; color: #fff;
    margin-bottom: 14px;
    position: relative; z-index: 1;
  }
  .page-hero h1 em { color: var(--gold-light); font-style: normal; }
  .page-hero p {
    color: var(--silver-light); font-size: 16px;
    max-width: 600px; margin: 0 auto;
    position: relative; z-index: 1;
  }

  section { padding: 80px 5%; }
  .section-eyebrow {
    font-size: 12px; text-transform: uppercase; letter-spacing: 2px;
    color: var(--gold); font-weight: 700; margin-bottom: 10px;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700; color: var(--navy);
    margin-bottom: 14px; line-height: 1.25;
  }
  .section-title em { color: var(--gold); font-style: normal; }
  .section-sub {
    font-size: 16px; color: var(--text-muted);
    max-width: 620px; line-height: 1.75; margin-bottom: 48px;
  }

  /* CATEGORY FILTER PILLS */
  .filter-bar {
    display: flex; gap: 10px; flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .filter-pill {
    background: var(--white); border: 1.5px solid var(--border);
    color: var(--text-muted); font-size: 13px; font-weight: 600;
    padding: 9px 18px; border-radius: 999px;
    cursor: pointer; transition: all 0.2s;
    font-family: 'Inter', sans-serif;
  }
  .filter-pill:hover { border-color: var(--gold); color: var(--navy); }
  .filter-pill.active { background: var(--navy); color: #fff; border-color: var(--navy); }

  /* PRODUCTS */
  #products { background: var(--bg); }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
  .product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.2s;
    display: flex; flex-direction: column;
  }
  .product-card:hover {
    box-shadow: 0 8px 32px rgba(11,31,58,0.1);
    transform: translateY(-4px);
  }
  .product-thumb {
    height: 230px;
    display: flex; align-items: center; justify-content: center;
    font-size: 56px;
    position: relative; overflow: hidden;
  }
  .product-thumb.induction { background: linear-gradient(135deg, #162E52, #0B1F3A); }
  .product-thumb.alu { background: linear-gradient(135deg, #B8C8D8, #8EA3B8); }
  .product-thumb.liner { background: linear-gradient(135deg, #1E3A5C, #162E52); }
  .product-thumb.bopp { background: linear-gradient(135deg, #A8781A, #C9952A); }
  .product-thumb.woven { background: linear-gradient(135deg, #0F4C1E, #166430); }
  .product-thumb.pouches { background: linear-gradient(135deg, #4A1B5E, #6B2B8A); }
  .product-thumb.roll { background: linear-gradient(135deg, #5E2B0E, #8A4A1B); }
  .product-thumb.tape { background: linear-gradient(135deg, #3A4750, #2C3640); }
  .product-thumb-icon { font-size: 52px; z-index: 1; }
  .product-thumb-shimmer {
    position: absolute; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent 20%, rgba(255,255,255,0.08) 50%, transparent 80%);
    animation: shimmer 2.5s infinite;
  }
  @keyframes shimmer { 0%{transform:translateX(-100%)} 100%{transform:translateX(100%)} }
  .product-badge {
    position: absolute; top: 10px; right: 10px;
    background: var(--gold); color: var(--navy);
    font-size: 10px; font-weight: 700;
    padding: 3px 10px; border-radius: 999px;
    text-transform: uppercase; letter-spacing: 0.5px;
  }
  .product-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
  .product-name {
    font-size: 18px; font-weight: 700; color: var(--navy);
    margin-bottom: 8px;
  }
  .product-desc {
    font-size: 14px; color: var(--text-muted); line-height: 1.65;
    flex: 1; margin-bottom: 16px;
  }
  .product-features {
    display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px;
  }
  .product-tag {
    background: #EEF3F8; color: var(--navy);
    font-size: 11px; font-weight: 600;
    padding: 3px 10px; border-radius: 999px;
    border: 1px solid var(--border);
  }
  .product-enquire {
    display: block; text-align: center;
    background: var(--navy); color: #fff;
    padding: 10px; border-radius: 8px;
    font-size: 13px; font-weight: 600;
    transition: background 0.2s;
  }
  .product-enquire:hover { background: var(--navy-light); }

  /* PROCESS / CUSTOMISATION */
  #customise { background: var(--navy); }
  #customise .section-eyebrow { color: var(--gold-light); }
  #customise .section-title { color: #fff; }
  #customise .section-sub { color: var(--silver); }
  .cust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
  .cust-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,149,42,0.2);
    border-radius: var(--radius); padding: 28px;
    transition: border-color 0.25s, background 0.25s;
  }
  .cust-card:hover { border-color: var(--gold); background: rgba(201,149,42,0.07); }
  .cust-icon {
    width: 48px; height: 48px; background: rgba(201,149,42,0.15);
    border-radius: 12px; font-size: 22px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px; border: 1px solid rgba(201,149,42,0.25);
  }
  .cust-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
  .cust-desc { font-size: 14px; color: var(--silver); line-height: 1.65; }

  /* BULK ORDER PROCESS */
  #process { background: var(--white); }
  .process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    position: relative;
  }
  .process-step { text-align: center; position: relative; }
  .process-num {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--navy); color: var(--gold-light);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 900;
    margin: 0 auto 16px;
    border: 2px solid var(--gold);
  }
  .process-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
  .process-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; max-width: 220px; margin: 0 auto; }

  /* CTA BAND */
  #cta-band {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    padding: 56px 5%;
    text-align: center;
    position: relative; overflow: hidden;
  }
  #cta-band::before {
    content: '';
    position: absolute; left: 50%; top: -150px; transform: translateX(-50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(201,149,42,0.15) 0%, transparent 70%);
  }
  #cta-band h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: #fff; font-weight: 700; margin-bottom: 14px;
    position: relative; z-index: 1;
  }
  #cta-band h2 em { color: var(--gold-light); font-style: normal; }
  #cta-band p { color: var(--silver-light); font-size: 15px; margin-bottom: 28px; position: relative; z-index: 1; }
  .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
  .btn-primary {
    background: var(--gold); color: var(--navy);
    padding: 13px 28px; border-radius: 10px;
    font-weight: 700; font-size: 15px;
    transition: background 0.2s, transform 0.1s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
  .btn-outline {
    border: 1.5px solid rgba(255,255,255,0.3); color: #fff;
    padding: 12px 28px; border-radius: 10px;
    font-weight: 600; font-size: 15px;
    transition: border-color 0.2s, background 0.2s;
    display: inline-block;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

  /* FOOTER */
  footer {
    background: var(--navy);
    color: var(--silver);
    padding: 60px 5% 30px;
  }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px; margin-bottom: 48px;
  }
  .footer-brand p { font-size: 14px; line-height: 1.75; color: var(--silver); margin: 14px 0 20px; max-width: 280px; }
  .footer-contact-mini { font-size: 14px; color: var(--silver-light); line-height: 2; }
  .footer-contact-mini a { color: var(--silver-light); }
  .footer-contact-mini a:hover { color: var(--gold-light); }
  .footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a { font-size: 14px; color: var(--silver); transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--gold-light); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
    font-size: 13px;
  }
  .footer-bottom span { color: var(--silver); }
  .footer-bottom .footer-gold { color: var(--gold-light); }

  /* FOIL STRIP */
  .foil-strip {
    height: 6px;
    background: linear-gradient(90deg, var(--navy), var(--gold), #E8D5A0, var(--gold), var(--navy));
    background-size: 200% 100%;
    animation: foilMove 3s linear infinite;
  }
  @keyframes foilMove { 0%{background-position:0% 50%} 100%{background-position:200% 50%} }

  

  /* ============================================
   PI PACKAGING — RESPONSIVE CSS
   Covers: index.php, about.php, products.php
   Breakpoints: 1024px | 768px | 480px | 360px
   ============================================ */

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

  /* NAV */
  nav { padding: 0 4%; }

  /* HERO */
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 60px 5% 48px; }
  .hero::before { display: none; }
  .hero p { max-width: 100%; }
  .foil-stack { height: 280px; }
  .foil-card-main { height: 210px; }
  .foil-card-float { width: 150px; height: 95px; }

  /* STATS BAR */
  .stat-item { padding: 22px 32px; }

  /* ABOUT GRID (homepage + about page) */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }

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

  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

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

  /* NAV — hamburger */
  nav {
    height: auto;
    padding: 0 5%;
    flex-wrap: wrap;
    align-items: center;
  }
  .nav-logo { height: 64px; }
  .nav-hamburger { display: flex; margin-left: auto; }
  .nav-cta-desktop { display: none; }
  .nav-cta-mobile {
    display: block;
    text-align: center;
    width: 100%;
    padding: 10px 20px;
    margin: 0 20px 4px;
    border-radius: 8px;
    background: var(--gold);
    color: var(--navy) !important;
    font-weight: 700;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    background: var(--navy-light);
    padding: 12px 0 16px;
    border-top: 1px solid rgba(201,149,42,0.3);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 12px 20px;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-links a:last-child { border-bottom: none; margin-top: 8px; }

  /* HERO */
  .hero { padding: 48px 5% 40px; gap: 32px; }
  .hero h1 { font-size: 1.9rem; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; }
  .foil-stack { height: 240px; }
  .foil-card-main { height: 180px; padding: 20px; }
  .foil-card-float { width: 130px; height: 85px; right: 0; }
  .foil-float-val { font-size: 22px; }
  .foil-title { font-size: 18px; }

  /* STATS BAR */
  .stats-bar { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 18px 24px; }
  .stat-item:last-child { border-bottom: none; }

  /* SECTIONS */
  section { padding: 56px 5%; }
  .section-sub { margin-bottom: 32px; }

  /* PRODUCTS GRID */
  .products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* WHY / CUSTOMISE / VALUES */
  .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .cust-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .values-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }

  /* TIMELINE */
  .timeline { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* MISSION/VISION */
  .mv-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* ABOUT VISUAL */
  .about-logo-big { font-size: 36px; }
  .about-stats-mini { grid-template-columns: 1fr 1fr; }

  /* PROCESS */
  .process-grid { grid-template-columns: 1fr 1fr; gap: 20px; }

  /* CONTACT FORM */
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-box { padding: 24px; }

  /* FILTER BAR */
  .filter-bar { gap: 8px; }
  .filter-pill { font-size: 12px; padding: 7px 14px; }

  /* PAGE HERO */
  .page-hero { padding: 48px 5% 40px; }
  .page-hero h1 { font-size: 1.8rem; }

  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand p { max-width: 100%; }

  /* CTA BAND */
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn-primary,
  .cta-btns .btn-outline { width: 100%; max-width: 320px; text-align: center; }
}

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

  /* HERO */
  .hero h1 { font-size: 1.6rem; }
  .foil-stack { height: 200px; }
  .foil-card-main { height: 160px; padding: 16px; }
  .foil-card-float { display:none; }
  .foil-float-val { font-size: 18px; }
  .foil-specs { gap: 12px; }
  .foil-spec-val { font-size: 16px; }

  /* STATS */
  .stat-num { font-size: 26px; }

  /* PRODUCTS GRID → 1 col */
  .products-grid { grid-template-columns: 1fr; }

  /* OTHER GRIDS → 1 col */
  .why-grid { grid-template-columns: 1fr; }
  .cust-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }

  /* ABOUT STATS */
  .about-stats-mini { grid-template-columns: 1fr; }
  .about-visual { padding: 28px; }

  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr; }

  /* CONTACT */
  .contact-card { flex-direction: column; gap: 10px; }
  .wa-btn { width: 100%; justify-content: center; }

  /* PAGE HERO */
  .page-hero h1 { font-size: 1.5rem; }
  .page-hero p { font-size: 14px; }
}

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

  nav { padding: 0 4%; }
  .nav-logo-text strong { font-size: 13px; }

  .hero h1 { font-size: 1.4rem; }
  .hero p { font-size: 14px; }

  .foil-card-float { display: none; }

  .stat-num { font-size: 22px; }
  .stat-lbl { font-size: 11px; }

  .section-title { font-size: 1.4rem; }

  .industries-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }

  .filter-pill { font-size: 11px; padding: 6px 12px; }
}

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

  nav { padding: 0 3%; }
  .nav-logo-icon { width: 32px; height: 32px; font-size: 13px; }
  .nav-logo-text strong { font-size: 12px; }
  .nav-logo-text span { display: none; }

  .hero { padding: 36px 4% 32px; }
  .hero h1 { font-size: 1.25rem; }
  .hero p { font-size: 13px; }
  .hero-badge { font-size: 10px; padding: 5px 10px; }
  .foil-stack { display: none; }

  .stat-num { font-size: 20px; }
  .stat-lbl { font-size: 10px; }
  .stat-item { padding: 14px 16px; }

  section { padding: 40px 4%; }
  .section-title { font-size: 1.25rem; }
  .section-sub { font-size: 14px; }
  .section-eyebrow { font-size: 10px; }

  .products-grid { grid-template-columns: 1fr; gap: 12px; }
  .product-name { font-size: 16px; }
  .product-desc { font-size: 13px; }

  .why-grid, .cust-grid, .values-grid,
  .mv-grid, .timeline, .process-grid { grid-template-columns: 1fr; }

  .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .ind-icon { font-size: 28px; }
  .ind-name { font-size: 12px; }

  .about-visual { padding: 20px; }
  .about-logo-big { font-size: 28px; }
  .about-stats-mini { grid-template-columns: 1fr; gap: 10px; }
  .about-stat-box-val { font-size: 22px; }

  .page-hero { padding: 36px 4% 32px; }
  .page-hero h1 { font-size: 1.3rem; }
  .page-hero p { font-size: 13px; }

  .filter-bar { gap: 6px; }
  .filter-pill { font-size: 10px; padding: 5px 10px; }

  .form-box { padding: 18px; }
  .contact-card { padding: 14px; }
  .wa-btn { font-size: 13px; padding: 12px 16px; }

  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; font-size: 11px; }
  .footer-col h4 { font-size: 11px; }
  .footer-col ul li a { font-size: 13px; }

  .btn-primary, .btn-outline { font-size: 13px; padding: 11px 20px; }

  .tl-year { font-size: 22px; }
  .process-num { width: 46px; height: 46px; font-size: 18px; }
}