/* ==========================
   ANNJAI PACKAGING — styles.css
   ========================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;600;700;800&display=swap');

:root {
  --navy: #0f2244;
  --navy-light: #1a3560;
  --gold: #c9952a;
  --gold-light: #e8b84b;
  --white: #ffffff;
  --off-white: #f8f6f1;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --success: #16a34a;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(15,34,68,0.10);
  --shadow-lg: 0 8px 32px rgba(15,34,68,0.15);
  --shadow-xl: 0 20px 60px rgba(15,34,68,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--gray-800); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* === NAVBAR === */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15,34,68,0.97);
  backdrop-filter: blur(12px);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  transition: var(--transition);
}
.navbar.scrolled { height: 60px; background: rgba(15,34,68,1); }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 40px; width: auto; border-radius: 8px; }
.nav-logo-text .brand { font-family: 'Outfit', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--white); letter-spacing: 1px; }
.nav-logo-text .sub { font-size: 0.65rem; color: var(--gold); font-weight: 500; letter-spacing: 2px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 0.88rem; font-weight: 500; transition: color 0.2s; position: relative; padding-bottom: 4px; }
.nav-links a::after { content:''; position:absolute; bottom:0; left:0; width:0; height:2px; background:var(--gold); transition:width 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy) !important; font-weight: 700 !important;
  padding: 9px 22px; border-radius: 8px;
  transition: var(--transition) !important;
  box-shadow: 0 2px 10px rgba(201,149,42,0.35);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 18px rgba(201,149,42,0.5) !important; }
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: white; border-radius: 2px; transition: var(--transition); }

/* === BUTTONS === */
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); font-weight: 700; font-size: 0.95rem;
  padding: 14px 32px; border-radius: 10px; border: none; cursor: pointer;
  transition: var(--transition); display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(201,149,42,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,149,42,0.55); }
.btn-outline {
  background: transparent; color: var(--white); font-weight: 600; font-size: 0.95rem;
  padding: 13px 30px; border-radius: 10px; border: 2px solid rgba(255,255,255,0.35);
  cursor: pointer; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,149,42,0.08); }
.btn-outline-navy {
  background: transparent; color: var(--navy); font-weight: 600; font-size: 0.95rem;
  padding: 13px 30px; border-radius: 10px; border: 2px solid var(--navy);
  cursor: pointer; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-navy:hover { background: var(--navy); color: white; }

/* === SECTION LAYOUT === */
section { padding: 90px 5%; }
.section-center { max-width: 1280px; margin: 0 auto; }
.page-hero { padding-top: 140px; }
.section-tag {
  display: inline-block;
  color: var(--gold); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px;
}
.section-title {
  font-family: 'Outfit', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 18px;
}
.section-title span { color: var(--gold); }
.section-sub { font-size: 1.05rem; color: var(--gray-600); max-width: 600px; line-height: 1.7; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* === HERO (HOMEPAGE) === */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #0d2a5e 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 5% 80px;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,149,42,0.12) 0%, transparent 70%);
  border-radius: 50%; animation: pulse 5s ease-in-out infinite;
}
.hero::after {
  content: ''; position: absolute; bottom: -30%; left: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  border-radius: 50%;
}
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.08);opacity:0.7} }
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; max-width: 1280px; margin: 0 auto; width: 100%; position:relative; z-index:2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,149,42,0.15); border: 1px solid rgba(201,149,42,0.4);
  color: var(--gold-light); font-size: 0.78rem; font-weight: 600;
  padding: 6px 16px; border-radius: 100px; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 24px; animation: fadeUp 0.6s ease both;
}
.hero h1 {
  font-family: 'Outfit', sans-serif; font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 22px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero h1 span { color: var(--gold-light); }
.hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,0.78); line-height: 1.75;
  margin-bottom: 36px; animation: fadeUp 0.7s 0.2s ease both; max-width: 520px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp 0.7s 0.3s ease both; }
.hero-stats { display: flex; gap: 36px; margin-top: 44px; animation: fadeUp 0.7s 0.4s ease both; }
.hero-stat .num { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 800; color: var(--gold-light); }
.hero-stat .lbl { font-size: 0.8rem; color: rgba(255,255,255,0.6); font-weight: 500; }
.hero-visual { animation: fadeRight 0.9s 0.2s ease both; position: relative; }
.hero-card-stack { position: relative; }
.hero-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px); border-radius: 20px; padding: 32px;
}
.hero-card-title { color: var(--gold-light); font-weight: 700; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
.hero-product-list { display: flex; flex-direction: column; gap: 14px; }
.hero-product {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.06); border-radius: 10px; padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.08); transition: var(--transition);
}
.hero-product:hover { background: rgba(201,149,42,0.12); border-color: rgba(201,149,42,0.3); }
.hp-name { color: var(--white); font-weight: 600; font-size: 0.9rem; }
.hp-size { color: var(--gray-400); font-size: 0.8rem; margin-top: 2px; }
.hp-price { color: var(--gold-light); font-weight: 700; font-size: 0.9rem; }
.hp-badge {
  background: rgba(22,163,74,0.2); color: #4ade80;
  font-size: 0.7rem; font-weight: 600; padding: 3px 10px; border-radius: 100px;
  border: 1px solid rgba(22,163,74,0.3);
}
.floating-badge {
  position: absolute; top: -18px; right: -18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); font-weight: 800; font-size: 0.8rem;
  padding: 10px 18px; border-radius: 100px;
  box-shadow: 0 4px 20px rgba(201,149,42,0.5); white-space: nowrap;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeRight { from{opacity:0;transform:translateX(40px)} to{opacity:1;transform:translateX(0)} }

/* === VALUE CARDS === */
.values-bg { background: var(--off-white); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 52px; }
.value-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 28px; text-align: center; border: 1px solid var(--gray-200);
  transition: var(--transition); position: relative; overflow: hidden;
}
.value-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.value-card:hover::before { transform: scaleX(1); }
.value-icon {
  width: 64px; height: 64px; border-radius: 16px; margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center; font-size: 28px;
}
.value-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.value-card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.65; }

/* === INDUSTRIES === */
.industries-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 44px; }
.industry-pill {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: 100px; padding: 12px 22px;
  font-size: 0.9rem; font-weight: 600; color: var(--navy);
  transition: var(--transition); cursor: default;
}
.industry-pill:hover { border-color: var(--gold); background: rgba(201,149,42,0.05); box-shadow: var(--shadow-sm); }
.industry-pill .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); }

/* === PRODUCT CARDS === */
.cat-header { margin-bottom: 40px; }
.cat-label {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: white; font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 8px 20px; border-radius: 100px; margin-bottom: 16px;
}
.cat-title { font-family: 'Outfit', sans-serif; font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.cat-desc { font-size: 0.95rem; color: var(--gray-600); max-width: 700px; line-height: 1.7; }
.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.product-card {
  background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--gray-200);
  overflow: hidden; transition: var(--transition); display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(201,149,42,0.3); }

.pc-image {
  width: 100%;
  height: 200px;
  background: var(--off-white);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--gray-100);
}

.pc-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.08));
}

.product-card:hover .pc-image img {
  transform: scale(1.05);
}

.product-card-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 22px 26px; display: flex; justify-content: space-between; align-items: flex-start;
}
.product-card-header.gold { background: linear-gradient(135deg, #7c5c0f, #c9952a); }
.product-card-header.dark { background: linear-gradient(135deg, #111827, #1f2937); }
.product-card-header.purple { background: linear-gradient(135deg, #4c1d95, #7c3aed); }
.product-card-header.green { background: linear-gradient(135deg, #065f46, #059669); }
.pc-name { font-family: 'Outfit', sans-serif; font-size: 1.15rem; font-weight: 700; color: white; margin-bottom: 4px; }
.pc-dim { font-size: 0.82rem; color: rgba(255,255,255,0.7); font-weight: 500; }
.pc-price-badge {
  background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 10px; padding: 8px 14px; text-align: center; flex-shrink: 0;
}
.pc-price { color: var(--gold-light); font-weight: 800; font-size: 1.1rem; white-space: nowrap; }
.pc-price-note { font-size: 0.65rem; color: rgba(255,255,255,0.6); white-space: nowrap; }
.product-card-body { padding: 22px 26px; flex: 1; }
.spec-row { display: flex; flex-direction: column; gap: 12px; }
.spec-item { display: flex; gap: 10px; }
.spec-label {
  font-size: 0.75rem; font-weight: 700; color: var(--gold); text-transform: uppercase;
  letter-spacing: 0.8px; min-width: 110px; padding-top: 1px;
}
.spec-val { font-size: 0.88rem; color: var(--gray-600); line-height: 1.5; }
.spec-val strong { color: var(--navy); }
.features-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--gray-100); }
.feat-tag { background: var(--gray-100); color: var(--gray-600); font-size: 0.75rem; font-weight: 600; padding: 4px 12px; border-radius: 100px; }
.feat-tag.premium { background: rgba(201,149,42,0.1); color: var(--gold); border: 1px solid rgba(201,149,42,0.25); }
.cat-divider { margin: 70px 0; border: none; border-top: 1px solid var(--gray-200); }

/* === PAGE HERO BANNER === */
.page-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 130px 5% 70px; text-align: center; position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,149,42,0.10) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.page-banner h1 {
  font-family: 'Outfit', sans-serif; font-size: clamp(2rem,4.5vw,3.2rem);
  font-weight: 800; color: var(--white); line-height: 1.15;
  margin-bottom: 16px; position: relative; z-index: 1;
}
.page-banner h1 span { color: var(--gold-light); }
.page-banner p { font-size: 1rem; color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto; line-height: 1.7; position: relative; z-index: 1; }

/* === PRODUCT CATEGORY PAGE TABS === */
.cat-tabs { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.cat-tab {
  padding: 10px 22px; border-radius: 100px; font-size: 0.88rem; font-weight: 600;
  border: 1.5px solid var(--gray-200); color: var(--gray-600); cursor: pointer;
  transition: var(--transition); background: var(--white);
}
.cat-tab:hover, .cat-tab.active { background: var(--navy); color: white; border-color: var(--navy); }

/* === WHY US CARDS === */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 52px; }
.why-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  border: 1px solid var(--gray-200); transition: var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.why-icon { font-size: 2rem; margin-bottom: 16px; }
.why-card h3 { color: var(--navy); font-weight: 700; font-size: 1.05rem; margin-bottom: 10px; }
.why-card p { color: var(--gray-600); font-size: 0.88rem; line-height: 1.65; }

/* === PROCESS STEPS === */
.process-grid {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 0;
  position: relative; margin-top: 52px;
}
.process-line {
  position: absolute; top: 40px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg,var(--navy),var(--gold)); z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg,var(--navy),var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.8rem;
  border: 4px solid var(--white); box-shadow: 0 4px 20px rgba(15,34,68,0.2);
}
.step-icon.gold-step { background: linear-gradient(135deg,var(--gold),var(--gold-light)); }
.step-num {
  background: var(--gold); color: var(--navy); font-weight: 800; font-size: 0.75rem;
  padding: 3px 12px; border-radius: 100px; display: inline-block; margin-bottom: 10px;
}
.step-num.navy { background: var(--navy); color: var(--gold-light); }
.process-step h4 { color: var(--navy); font-weight: 700; font-size: 0.95rem; margin-bottom: 8px; }
.process-step p { color: var(--gray-600); font-size: 0.82rem; line-height: 1.6; }

/* === FAQ === */
.faq-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-list details {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--gray-200); padding: 20px 24px; cursor: pointer;
  transition: var(--transition);
}
.faq-list details:hover { border-color: var(--gold); }
.faq-list summary {
  font-weight: 700; color: var(--navy); font-size: 0.95rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-list summary .plus { color: var(--gold); font-size: 1.2rem; transition: transform 0.3s; }
.faq-list details[open] summary .plus { transform: rotate(45deg); }
.faq-list details p { color: var(--gray-600); font-size: 0.88rem; line-height: 1.7; margin-top: 14px; }

/* === CONTACT FORM === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info-item { display: flex; gap: 16px; align-items: center; margin-bottom: 20px; }
.ci-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.ci-label { font-weight: 700; color: var(--navy); font-size: 0.95rem; }
.ci-val { color: var(--gray-600); font-size: 0.88rem; }
.spec-table tr:hover { background: var(--gray-50); }

.btn-detail {
  display: block;
  text-align: center;
  padding: 12px;
  background: var(--gray-50);
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 8px;
  margin-top: 20px;
  transition: all 0.2s ease;
  border: 1px solid var(--gray-200);
}

.btn-detail:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
  transform: translateY(-2px);
}
.quote-form { background: var(--gray-50); border-radius: var(--radius-lg); padding: 36px; border: 1px solid var(--gray-200); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-200);
  border-radius: 8px; font-size: 0.88rem; outline: none; font-family: inherit;
  background: white; transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; }
.form-success {
  display: none; margin-top: 16px; background: rgba(22,163,74,0.1);
  border: 1px solid rgba(22,163,74,0.3); border-radius: 8px; padding: 14px 18px;
  color: #16a34a; font-weight: 600; font-size: 0.88rem; text-align: center;
}

/* === FOOTER === */
footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 52px 5% 28px; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo img { height: 38px; width: auto; border-radius: 8px; }
.footer-brand-name { font-family: 'Outfit', sans-serif; font-size: 1.2rem; font-weight: 800; color: white; letter-spacing: 1px; }
.footer-brand-sub { font-size: 0.6rem; color: var(--gold); letter-spacing: 2px; }
.footer-desc { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-heading { color: white; font-weight: 700; font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 0.5px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li a { color: rgba(255,255,255,0.65); font-size: 0.85rem; transition: color 0.2s; }
.footer-links li a:hover { color: var(--gold-light); }
.cert-badge { background: rgba(255,255,255,0.07); border-radius: 8px; padding: 10px 14px; font-size: 0.82rem; margin-bottom: 8px; }
.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: 0.82rem; }

/* === CUSTOM PACKAGING PAGE === */
.custom-features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 52px; }
.custom-feat-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 28px; text-align: center; transition: var(--transition);
}
.custom-feat-card:hover { background: rgba(201,149,42,0.12); }
.custom-feat-icon { font-size: 2.5rem; margin-bottom: 16px; }
.custom-feat-card h3 { color: white; font-weight: 700; margin-bottom: 10px; }
.custom-feat-card p { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.6; }
.moq-row {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(255,255,255,0.06); padding: 14px 18px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08); margin-bottom: 12px;
}
.moq-label { color: rgba(255,255,255,0.8); font-size: 0.88rem; }
.moq-val { color: var(--gold-light); font-weight: 700; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 32px; }
  .process-line { display: none; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .custom-features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .values-grid, .why-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .products-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .custom-features-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
}

/* --- PRODUCT DETAIL PAGES --- */
.breadcrumb { padding: 40px 5% 20px; font-size: 0.88rem; color: var(--gray-400); }
.breadcrumb a { color: var(--navy); font-weight: 500; text-decoration: none; transition: color 0.3s ease; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 10px; }

.detail-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; padding: 0 5% 100px; align-items: start; max-width: 1400px; margin: 0 auto; }
.detail-image-box { position: sticky; top: 120px; }
.detail-image { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg); overflow: hidden; height: 500px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); }
.detail-image img { max-width: 85%; max-height: 85%; object-fit: contain; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.05)); }

.detail-info h1 { font-family: 'Outfit', sans-serif; font-size: 3rem; color: var(--navy); margin-bottom: 16px; line-height: 1.1; }
.detail-cat { font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; font-size: 0.85rem; margin-bottom: 24px; display: block; }
.detail-price-card { background: var(--off-white); padding: 32px; border-radius: var(--radius); margin-bottom: 48px; border-left: 6px solid var(--gold); position: relative; overflow: hidden; }
.pk-top { display: flex; align-items: baseline; gap: 12px; }
.price-label { font-size: 0.8rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; margin-bottom: 8px; }
.price-value { font-size: 2.8rem; font-weight: 800; color: var(--navy); }
.price-unit { color: var(--gray-400); font-weight: 400; font-size: 1.2rem; }
.price-moq { font-size: 0.9rem; color: var(--gray-500); margin-top: 8px; font-weight: 500; }

.spec-table { width: 100%; border-collapse: collapse; margin-bottom: 48px; }
.spec-table tr { border-bottom: 1px solid var(--gray-100); }
.spec-table td { padding: 20px 0; font-size: 1rem; }
.spec-table td:first-child { color: var(--gray-400); width: 40%; font-weight: 500; }
.spec-table td:last-child { color: var(--navy); font-weight: 700; text-align: right; }

.btn-detail {
  display: block;
  text-align: center;
  padding: 12px;
  background: var(--gray-50);
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 8px;
  margin-top: 20px;
  transition: all 0.2s ease;
  border: 1px solid var(--gray-200);
}

.btn-detail:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
  transform: translateY(-2px);
}

.detail-section-title { font-family: 'Outfit', sans-serif; font-size: 1.6rem; color: var(--navy); margin: 64px 0 24px; border-bottom: 2px solid var(--navy); padding-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.detail-desc { line-height: 1.8; color: var(--gray-600); margin-bottom: 40px; font-size: 1.1rem; }

.feat-grid-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 64px; }
.fd-item { display: flex; gap: 12px; align-items: flex-start; }
.fd-icon { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.fd-text span { display: block; color: var(--navy); font-weight: 700; margin-bottom: 4px; }
.fd-text p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.5; }

.detail-cta-box { background: linear-gradient(135deg, var(--navy), #0a2350); padding: 48px; border-radius: var(--radius-lg); color: var(--white); box-shadow: var(--shadow-lg); }
.dc-tag { color: var(--gold-light); font-weight: 700; font-size: 0.9rem; margin-bottom: 12px; display: block; }
.dc-title { font-family: 'Outfit', sans-serif; font-size: 2rem; margin-bottom: 16px; }
.dc-desc { color: rgba(255,255,255,0.7); margin-bottom: 32px; line-height: 1.6; }

@media (max-width: 1000px) {
  .detail-grid { grid-template-columns: 1fr; gap: 60px; }
  .detail-image-box { position: static; }
  .detail-image { height: 400px; }
  .detail-info h1 { font-size: 2.5rem; }
  .feat-grid-detail { grid-template-columns: 1fr; }
}
