/* ===========================
   KZ Printers – Main Stylesheet
   =========================== */

/* --- Variables --- */
:root {
  --primary: #1e6c93;
  --primary-dark: #155272;
  --primary-light: #26a0c8;
  --orange: #ff6b35;
  --orange-dark: #e8551f;
  --green: #10b981;
  --green-dark: #059669;
  --amber: #f59e0b;
  --coral: #e84c3d;
  --purple: #7c3aed;
  --dark: #0f3a52;
  --darker: #082a3d;
  --text: #1e293b;
  --text-light: #64748b;
  --bg-light: #f8fafc;
  --bg-cream: #fffbf7;
  --bg-white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.13);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
  --font: 'Poppins', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: 65px; /* Account for fixed navbar height */
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: white;
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

.btn-whatsapp {
  background: #25d366;
  color: white;
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp svg { width: 20px; height: 20px; }

/* --- Section Shared --- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header.light h2,
.section-header.light p,
.section-header.light .section-tag {
  color: white;
}
.section-header.light .section-tag {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.section-tag {
  display: inline-block;
  background: rgba(255, 107, 53, 0.1);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-header p {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: white;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 6px 0;
}
.navbar.scrolled {
  background: white;
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
  padding: 4px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo .logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-links a:hover {
  color: var(--orange);
  background: rgba(255, 107, 53, 0.07);
}
.nav-links a.nav-active {
  color: var(--orange);
  font-weight: 600;
  background: rgba(255, 107, 53, 0.1);
  position: relative;
}
.nav-links a.nav-active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.nav-cta { margin-left: 8px; }

/* ===========================
   NAV SEARCH BAR
   =========================== */
.nav-search {
  flex: 1;
  max-width: 380px;
  position: relative;
  margin: 0 16px;
}
.nav-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--text-light);
  pointer-events: none;
}
.nav-search-input {
  width: 100%;
  height: 40px;
  padding: 0 16px 0 40px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-family: var(--font);
  font-size: 0.88rem;
  color: var(--text);
  background: var(--bg-light);
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.nav-search-input::placeholder { color: var(--text-light); }
.nav-search-input:focus {
  border-color: var(--orange);
  background: white;
  box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
}
.search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  z-index: 2000;
  overflow: hidden;
  display: none;
}
.search-dropdown.open { display: block; }
.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.15s;
  border-bottom: 1px solid #f4f6f9;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: #fff5f0; color: var(--orange); }
.search-result-img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-light);
}
.search-result-img img { width: 100%; height: 100%; object-fit: cover; }
.search-no-results {
  padding: 16px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
}
@media (max-width: 768px) {
  .nav-search { display: none; }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  background: var(--darker);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(30, 108, 147, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(38, 160, 200, 0.15) 0%, transparent 50%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 29, 42, 0.6) 0%, rgba(30, 108, 147, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 24px 80px;
}

.hero-logo {
  max-width: 460px;
  width: 90%;
  margin: 0 auto 24px;
  filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.5));
}

.hero-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-scroll span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  position: relative;
}
.hero-scroll span::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

/* ===========================
   STATS BAR
   =========================== */
.stats-bar {
  background: linear-gradient(135deg, #fafbfc 0%, #f8fafc 100%);
  padding: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 36px 16px;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item:nth-child(1) .stat-number { color: var(--primary); }
.stat-item:nth-child(2) .stat-number { color: var(--orange); }
.stat-item:nth-child(3) .stat-number { color: var(--green); }
.stat-item:nth-child(4) .stat-number { color: var(--purple); }

.stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ===========================
   PRODUCTS
   =========================== */
.products {
  padding: 100px 0;
  background: var(--bg-light);
}

/* Quote Banner */
.quote-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--coral) 100%);
  border-radius: var(--radius);
  padding: 40px 48px;
  margin-bottom: 64px;
  color: white;
}
.quote-banner-tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.quote-banner-text h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: white;
  margin: 0 0 8px;
}
.quote-banner-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  margin: 0;
  max-width: 480px;
}
.quote-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.quote-banner .btn-primary {
  background: white;
  color: var(--orange);
}
.quote-banner .btn-primary:hover {
  background: rgba(255,255,255,0.9);
}
.quote-banner .btn-outline {
  border-color: rgba(255,255,255,0.6);
  color: white;
}
.quote-banner .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
}

.category-block {
  margin-bottom: 64px;
}
.category-block:last-child { margin-bottom: 0; }

.category-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.category-title svg {
  width: 22px;
  height: 22px;
  color: var(--orange);
  flex-shrink: 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  border-color: var(--orange);
}

.product-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-light);
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img img {
  transform: scale(1.04);
}

/* Product card hover CTA overlay */
.product-img {
  position: relative;
}
.product-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 29, 42, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.product-card:hover .product-img-overlay {
  opacity: 1;
}
.product-img-overlay-btn {
  background: var(--orange);
  color: white;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  transform: translateY(6px);
  transition: all 0.3s ease;
  white-space: nowrap;
}
.product-card:hover .product-img-overlay-btn {
  transform: translateY(0);
}
.product-img-overlay-btn:hover {
  background: var(--orange-dark);
}

.product-info {
  padding: 20px 20px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-icon-sm {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1;
}

.product-card h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.product-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-link {
  display: inline-block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--orange);
  transition: color var(--transition);
}
.card-link:hover { color: var(--orange-dark); }

/* ===========================
   VISION / MISSION
   =========================== */
.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
}
.vm-item {
  background: var(--bg-light);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 16px;
}
.vm-item h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.vm-item p {
  font-size: 0.83rem !important;
  color: var(--text-light) !important;
  margin-bottom: 0 !important;
  line-height: 1.5 !important;
}

/* ===========================
   MARKETS
   =========================== */
.markets {
  padding: 80px 0;
  background: var(--bg-white);
}
.markets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
.market-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}
.market-item:hover {
  border-color: var(--orange);
  background: rgba(255, 107, 53, 0.05);
  transform: translateY(-2px);
  color: var(--orange);
}
.market-item span { font-size: 1.2rem; }

/* ===========================
   PRINT TYPES
   =========================== */
.print-types {
  background: var(--dark);
  padding: 100px 0;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.type-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}
.type-card:hover {
  background: rgba(30, 108, 147, 0.2);
  border-color: var(--primary-light);
  transform: translateY(-4px);
}

.type-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.type-card h4 {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.type-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.87rem;
  line-height: 1.6;
}

/* ===========================
   ABOUT
   =========================== */
.about {
  padding: 100px 0;
  background: var(--bg-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.about-text .section-tag { margin-bottom: 16px; }

.about-text h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-text p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-text p strong { color: var(--text); }

.about-text .btn { margin-top: 8px; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(30, 108, 147, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.feature-item p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ===========================
   CONTACT
   =========================== */
.contact {
  padding: 100px 0;
  background: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.contact-item a,
.contact-item p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}
.contact-item a:hover { color: var(--primary); }

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 8px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: white;
}
.social-btn svg {
  width: 18px;
  height: 18px;
}
.social-btn:hover { transform: translateY(-3px); opacity: 0.85; }
.social-btn.facebook  { background: #1877f2; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.linkedin  { background: #0a66c2; }
.social-btn.tiktok    { background: #000000; }
.social-btn.youtube   { background: #ff0000; }
.social-btn.pinterest { background: #e60023; }

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 460px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--darker);
  color: rgba(255, 255, 255, 0.6);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 64px 24px 40px;
}

.footer-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

.footer-links h5,
.footer-services h5,
.footer-contact h5 {
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer-links ul li {
  margin-bottom: 10px;
}
.footer-links ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links ul li a:hover { color: var(--orange); }

.footer-services ul li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}

.footer-contact p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
  line-height: 1.6;
}
.footer-contact a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
}
.footer-bottom .container {
  display: flex;
  justify-content: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .about-grid { gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { height: 320px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-features { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  body { padding-top: 56px; }
  .nav-links { display: none; }
  .nav-cta { 
    display: inline-flex; 
    padding: 8px 16px; 
    font-size: 0.85rem;
    margin-left: auto;
    margin-right: 12px;
  }
  .hamburger { display: flex; margin-left: 0; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--darker);
    justify-content: center;
    align-items: center;
    gap: 0;
    z-index: 999;
  }
  .nav-links.open li { width: 100%; text-align: center; }
  .nav-links.open a {
    display: block;
    padding: 18px 24px;
    font-size: 1.2rem;
    border-radius: 0;
  }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-bottom: none; }

  .about-features { grid-template-columns: 1fr; }
  .vision-mission { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }

  .products { padding: 64px 0; }
  .about, .contact, .print-types { padding: 64px 0; }
  .quote-banner { flex-direction: column; align-items: flex-start; padding: 32px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .types-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }
  .section-header { margin-bottom: 36px; }
}

/* ===========================
   MULTI-PAGE ADDITIONS
   =========================== */

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
  padding: 40px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(30,108,147,0.15) 1px, transparent 1px);
  background-size: 28px 28px;
}
.page-hero .container { position: relative; }
.page-hero .section-tag { background: rgba(30,108,147,0.3); color: rgba(255,255,255,0.85); }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); color: white; font-weight: 800; margin: 12px 0 16px; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto; }

/* Active nav link — handled by main nav rules above */

/* Hero dot pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(30,108,147,0.2) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}
.hero-overlay, .hero-content, .hero-scroll { position: relative; z-index: 1; }

/* Hero ticker */
.hero-ticker-wrap {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  margin-bottom: 32px;
}
.hero-ticker {
  display: inline-flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===========================
   ANNOUNCEMENT BAR
   =========================== */
.announce-bar {
  background: var(--orange);
  color: rgba(255,255,255,0.92);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  overflow: hidden;
  white-space: nowrap;
  height: 36px;
  display: flex;
  align-items: center;
}
.announce-track {
  display: inline-block;
  animation: marquee 35s linear infinite;
  padding-left: 100%;
}
.announce-track span { display: inline-block; padding-right: 0; }

/* ===========================
   SPLIT HERO
   =========================== */
.hero-split {
  display: flex;
  min-height: 580px;
  margin-top: 0;
  padding-top: 0;
}

/* Sidebar */
.hero-sidebar {
  width: 240px;
  flex-shrink: 0;
  background: white;
  border-right: 1px solid #e8edf2;
  display: flex;
  flex-direction: column;
}
.sidebar-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 18px 14px;
  border-bottom: 1px solid #f0f4f8;
}
.sidebar-header svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  flex-shrink: 0;
}
.sidebar-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin: 0;
  padding: 0;
  border: none;
}
.sidebar-list {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow-y: auto;
}
.sidebar-cat {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 9px 18px;
  border-bottom: 1px solid #f4f6f9;
  text-decoration: none;
  color: var(--text);
  transition: background 0.18s, color 0.18s;
  gap: 12px;
}
.sidebar-cat:hover {
  background: #fff5f0;
  color: var(--orange);
}
.sidebar-cat:hover .sidebar-cat-arrow { opacity: 1; color: var(--orange); }
.sidebar-cat-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-light);
}
.sidebar-cat-img img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-cat-name {
  flex: 1;
  font-size: 0.83rem;
  font-weight: 500;
  line-height: 1.3;
}
.sidebar-cat-arrow {
  width: 16px;
  height: 16px;
  color: #cbd5e1;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.18s;
}
.sidebar-viewall {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 13px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  border-top: 1px solid #f0f4f8;
  transition: background 0.18s;
}
.sidebar-viewall:hover { background: #fff5f0; }

/* Main hero */
.hero-mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  overflow: hidden;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}
.hero-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-main {
  flex: 1;
  background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 64px;
  gap: 32px;
}
.hero-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,107,53,0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.hero-main::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,42,61,0.82) 0%, rgba(8,42,61,0.55) 60%, rgba(8,42,61,0.3) 100%);
}
.hero-main-content { position: relative; z-index: 1; max-width: 460px; }
.hero-badge {
  display: inline-block;
  background: rgba(255,107,53,0.25);
  border: 1px solid rgba(255,107,53,0.5);
  color: rgba(255,255,255,0.92);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin: 0 0 16px;
}
.hero-headline-accent { color: var(--orange); }
.hero-main-content .hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin: 0 0 32px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Floating product cards on the right of hero */
.hero-main-cards {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
.hero-float-card {
  width: 140px;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border: 2px solid rgba(255,255,255,0.1);
}
.hero-float-card--offset { margin-left: 24px; }
.hero-float-card img { width: 100%; height: 100%; object-fit: cover; }

/* ===========================
   PROMO CARDS
   =========================== */
.promo-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  min-height: 200px;
}
.promo-card {
  position: relative;
  overflow: hidden;
  padding: 36px 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  text-decoration: none;
  min-height: 200px;
  gap: 16px;
  transition: filter 0.3s;
}
.promo-card:hover { filter: brightness(1.07); }
.promo-card--dark { background: var(--dark); }
.promo-card--teal { background: var(--orange); }
.promo-card--light { background: #e8faf4; }
.promo-card-text { position: relative; z-index: 1; }
.promo-tag {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  opacity: 0.75;
}
.promo-card--dark .promo-tag,
.promo-card--teal .promo-tag { color: rgba(255,255,255,0.75); }
.promo-card--light .promo-tag { color: var(--green); }
.promo-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 14px;
}
.promo-card--dark h3,
.promo-card--teal h3 { color: white; }
.promo-card--light h3 { color: var(--dark); }
.promo-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
}
.promo-card--dark .promo-link,
.promo-card--teal .promo-link { color: rgba(255,255,255,0.9); }
.promo-card--light .promo-link { color: var(--green); }
.promo-card-img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  opacity: 0.85;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}
.promo-card:hover .promo-card-img { transform: scale(1.05) rotate(-2deg); }

/* ===========================
   CLIENTS (updated)
   =========================== */
.clients { padding: 80px 0 0; background: white; overflow: hidden; }
.clients .section-header { margin-bottom: 40px; }
.clients-marquee { overflow: hidden; padding: 8px 0 64px; mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%); -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%); }
.clients-track { display: flex; gap: 14px; width: max-content; animation: marquee 50s linear infinite; align-items: center; }
.clients-track:hover { animation-play-state: paused; }
.client-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px 22px 14px 14px;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  cursor: default;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.client-pill:hover { background: #f0f7fc; border-color: #1e6c93; box-shadow: 0 4px 12px rgba(30,108,147,0.1); }
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  flex-shrink: 0;
  text-transform: uppercase;
}
.client-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: contain;
  flex-shrink: 0;
  background: #f8fafc;
  padding: 4px;
  border: 1px solid #e2e8f0;
}

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Why Us */
.why-us { padding: 100px 0; background: var(--bg-cream); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.why-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--coral));
  opacity: 0;
  transition: opacity var(--transition);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  border-color: transparent;
}
.why-card:hover::before {
  opacity: 1;
}
.why-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}
.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Featured products on homepage */
.featured-products { padding: 100px 0; background: var(--bg-light); }
.featured-products .products-grid { grid-template-columns: repeat(4, 1fr); }
.featured-cta { text-align: center; margin-top: 48px; }
.featured-cta .btn { padding: 14px 36px; font-size: 1rem; }

/* ===========================
   TRUST STRIP
   =========================== */
.trust-strip {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.trust-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.trust-check {
  color: var(--green);
  font-weight: 800;
  font-size: 0.95rem;
}

/* ===========================
   SECTION HEADER LEFT VARIANT
   =========================== */
.section-header--left {
  text-align: left;
}
.section-header--left p {
  margin: 0;
}

/* ===========================
   PRODUCT BADGES
   =========================== */
.product-img { position: relative; }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
}
.product-badge--orange { background: var(--orange); color: white; }
.product-badge--green  { background: var(--green);  color: white; }
.product-badge--blue   { background: var(--primary); color: white; }
.product-badge--purple { background: var(--purple); color: white; }

/* ===========================
   CORPORATE CTA DARK
   =========================== */
.corp-cta {
  background: var(--darker);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.corp-cta::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.corp-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.corp-cta-text { max-width: 560px; }
.corp-cta-tag {
  display: inline-block;
  background: rgba(255,107,53,0.15);
  border: 1px solid rgba(255,107,53,0.3);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.corp-cta-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 14px;
}
.corp-cta-text p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.corp-cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-corp-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 2px solid rgba(255,255,255,0.25);
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-corp-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  color: white;
}
.corp-cta-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  flex-shrink: 0;
}
.corp-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}

/* ===========================
   PRE-FOOTER STRIP
   =========================== */
.prefooter-strip {
  background: #f8fafc;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.prefooter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.prefooter-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  text-decoration: none;
  color: var(--text);
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}
.prefooter-box:last-child { border-right: none; }
.prefooter-box:hover { background: white; }
.prefooter-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: background var(--transition);
}
.prefooter-box:hover .prefooter-icon { background: rgba(255,107,53,0.1); }
.prefooter-info h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.prefooter-info p {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, var(--coral) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; z-index: 1; }
.cta-section h2 { font-size: clamp(1.4rem, 3vw, 2rem); color: white; font-weight: 700; margin-bottom: 8px; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1rem; }
.cta-btns { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }
.cta-section .btn-primary { background: white; color: var(--orange); }
.cta-section .btn-primary:hover { background: rgba(255,255,255,0.92); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.cta-section .btn-outline { border-color: rgba(255,255,255,0.7); color: white; }
.cta-section .btn-outline:hover { background: rgba(255,255,255,0.15); border-color: white; }

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 20px; }
  .featured-products .products-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .hero-split { flex-direction: column-reverse; }
  .hero-sidebar { width: 100%; border-right: none; border-bottom: 1px solid #e8edf2; }
  .sidebar-header { background: #f8fafc; cursor: pointer; }
  .sidebar-list { display: none; flex-direction: row; flex-wrap: wrap; }
  .sidebar-list.open { display: flex; }
  .sidebar-cat { width: 50%; border-right: 1px solid #f4f6f9; }
  .sidebar-cat:nth-child(even) { border-right: none; }
  .hero-main { padding: 48px 32px; min-height: 400px; }
  .hero-main-cards { display: none; }
  .promo-cards { grid-template-columns: 1fr; }
  .promo-card { min-height: 160px; }
  .trust-grid { gap: 8px; }
  .corp-cta-inner { flex-direction: column; }
  .corp-cta-badges { grid-template-columns: repeat(3, 1fr); width: 100%; }
  .prefooter-grid { grid-template-columns: repeat(2, 1fr); }
  .prefooter-box:nth-child(2) { border-right: none; }
  .prefooter-box:nth-child(3) { border-top: 1px solid var(--border); }
  .prefooter-box:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
}
@media (max-width: 480px) {
  .featured-products .products-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 40px 0 48px; }
  .sidebar-cat { width: 100%; }
  .sidebar-cat:nth-child(even) { border-right: none; }
  .hero-main { padding: 40px 24px; }
  .hero-headline { font-size: 2rem; }
  .trust-item { font-size: 0.78rem; padding: 6px 12px; }
  .prefooter-grid { grid-template-columns: 1fr; }
  .prefooter-box { border-right: none !important; border-top: 1px solid var(--border); }
  .prefooter-box:first-child { border-top: none; }
  .corp-cta-badges { grid-template-columns: repeat(2, 1fr); }
}

/* ===========================
   FLOATING WHATSAPP BUTTON
   =========================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}
.whatsapp-float-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: waPulse 2.2s ease-out infinite;
  z-index: -1;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ===========================
   HOW IT WORKS
   =========================== */
.how-it-works {
  padding: 100px 0;
  background: var(--bg-white);
}
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.hiw-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5%);
  width: calc(75%);
  height: 2px;
  background: linear-gradient(to right, var(--orange), var(--primary), var(--green), var(--purple));
  z-index: 0;
}
.hiw-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.hiw-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--coral) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 18px;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
  flex-shrink: 0;
}
.hiw-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.hiw-step p {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.65;
}
@media (max-width: 768px) {
  .hiw-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hiw-steps::before { display: none; }
}
@media (max-width: 480px) {
  .hiw-steps { grid-template-columns: 1fr; gap: 32px; }
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials {
  padding: 100px 0;
  background: var(--bg-light);
  overflow: hidden;
}
.testimonials-track-wrap {
  overflow: hidden;
  margin-top: 56px;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.testimonials-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.testimonials-track:hover { animation-play-state: paused; }
.testi-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  width: 340px;
  flex-shrink: 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.3s;
}
.testi-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.testi-stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
  font-size: 1rem;
}
.testi-quote {
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  font-size: 0.85rem;
}
.testi-author-info h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.testi-author-info p {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ===========================
   CONTACT FORM
   =========================== */
.contact-form-card {
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-form-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.contact-form-card > p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg-light);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: white;
  box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}
.form-group select { cursor: pointer; }
.form-submit {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  margin-top: 4px;
  justify-content: center;
}
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 12px;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 20px; }
}

/* ===========================
   PRODUCTS CATEGORY JUMP NAV
   =========================== */
.cat-jump-nav {
  position: sticky;
  top: 64px;
  z-index: 100;
  background: white;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.cat-jump-nav .container {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-top: 0;
  padding-bottom: 0;
}
.cat-jump-nav .container::-webkit-scrollbar { display: none; }
.cat-jump-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-light);
  white-space: nowrap;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.cat-jump-link:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}
.cat-jump-link.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* ===========================
   POLISHED ICON PRODUCT CARDS
   =========================== */
.product-icon-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 0;
}
.product-icon-card span {
  font-size: 3.5rem;
  line-height: 1;
}
.pic--folders  { background: linear-gradient(135deg, #e8f4fd 0%, #c9e5f5 100%); }
.pic--catalogue{ background: linear-gradient(135deg, #fef3e2 0%, #fde68a 100%); }
.pic--envelope { background: linear-gradient(135deg, #f0fdf4 0%, #bbf7d0 100%); }
.pic--flyers   { background: linear-gradient(135deg, #fff1f2 0%, #fecdd3 100%); }
.pic--flex     { background: linear-gradient(135deg, #f5f3ff 0%, #ddd6fe 100%); }
.pic--stickers { background: linear-gradient(135deg, #fffbeb 0%, #fed7aa 100%); }
.pic--wedding  { background: linear-gradient(135deg, #fdf2f8 0%, #f5d0fe 100%); }
.pic--caps     { background: linear-gradient(135deg, #f0fdf4 0%, #a7f3d0 100%); }
.pic--vehicle  { background: linear-gradient(135deg, #eff6ff 0%, #bfdbfe 100%); }
.pic--signage  { background: linear-gradient(135deg, #fef9c3 0%, #fde047 40%, #fef9c3 100%); }
.pic--exhibit  { background: linear-gradient(135deg, #fdf4ff 0%, #e9d5ff 100%); }
.pic--idcard   { background: linear-gradient(135deg, #ecfeff 0%, #a5f3fc 100%); }

/* ===========================
   FOOTER SOCIAL ICONS
   =========================== */
.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.footer-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: white;
  opacity: 0.7;
}
.footer-social-btn:hover { opacity: 1; transform: translateY(-2px); }
.footer-social-btn svg { width: 16px; height: 16px; }
.footer-social-btn.facebook  { background: #1877f2; }
.footer-social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.footer-social-btn.linkedin  { background: #0a66c2; }
.footer-social-btn.tiktok    { background: #333; }
.footer-social-btn.youtube   { background: #ff0000; }
.footer-social-btn.pinterest { background: #e60023; }

/* ===========================
   PRODUCT DETAIL PAGES
   =========================== */
.product-breadcrumb {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  font-size: 0.82rem;
  color: var(--text-light);
}
.product-breadcrumb a { color: var(--primary); }
.product-breadcrumb a:hover { text-decoration: underline; }
.product-breadcrumb span { margin: 0 6px; color: var(--border); }

.product-detail {
  padding: 60px 0 80px;
  background: var(--bg-white);
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Image panel */
.pd-image-wrap {
  position: sticky;
  top: 90px;
}
.pd-main-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-light);
  border: 1px solid var(--border);
  margin-bottom: 12px;
}
.pd-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Info panel */
.pd-category-tag {
  display: inline-block;
  background: rgba(30,108,147,0.08);
  color: var(--primary);
  border: 1px solid rgba(30,108,147,0.2);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.pd-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 14px;
}
.pd-tagline {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 28px;
}

.pd-cta-box {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
}
.pd-cta-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 8px;
}
.pd-cta-box h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.pd-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pd-cta-btns .btn {
  justify-content: center;
  width: 100%;
}
.pd-wa-btn {
  background: #25d366;
  color: white;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.pd-wa-btn:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

/* Specs */
.pd-section-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.pd-specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.pd-spec-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
}
.pd-spec-row::before {
  content: '✓';
  color: var(--primary);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.pd-spec-row span { color: var(--text); line-height: 1.5; }

/* Finish chips */
.pd-finishes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.pd-finish-chip {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
}

/* Use cases */
.pd-usecases {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.pd-usecase {
  background: rgba(30,108,147,0.06);
  border: 1px solid rgba(30,108,147,0.15);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

/* Process steps on product page */
.pd-process {
  background: var(--bg-light);
  padding: 64px 0;
  border-top: 1px solid var(--border);
}
.pd-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.pd-step {
  text-align: center;
}
.pd-step-num {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 14px;
}
.pd-step h4 { font-size: 0.92rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.pd-step p  { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }

/* Related products on product page */
.pd-related {
  padding: 64px 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
}

/* Responsive */
@media (max-width: 900px) {
  .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .pd-image-wrap { position: static; }
  .pd-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .pd-steps { grid-template-columns: 1fr; }
  .product-detail { padding: 40px 0 60px; }
}
