/* ========================================
   VIJAYPRO - Premium Plastic Products
   Theme: White | Royal Blue | Gold | Black
======================================== */

:root {
  --blue: #1a3c8f;
  --blue-dark: #0f2660;
  --blue-light: #2a52b8;
  --gold: #d4a017;
  --gold-light: #f0c040;
  --gold-dark: #a87c10;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --black: #111111;
  --text-dark: #1a1a2e;
  --text-gray: #555677;
  --border: #e2e6f0;
  --shadow: 0 4px 24px rgba(26,60,143,0.10);
  --shadow-lg: 0 8px 40px rgba(26,60,143,0.16);
  --radius: 14px;
  --radius-sm: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', 'Inter', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-alt { background: var(--off-white); }

.badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-title span { color: var(--gold); }

.section-sub {
  font-size: 17px;
  color: var(--text-gray);
  max-width: 620px;
}

.divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  border-radius: 2px;
  margin: 18px 0 32px;
}
.divider-center { margin: 18px auto 32px; }

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.3px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  box-shadow: 0 4px 18px rgba(26,60,143,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,60,143,0.45);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--white);
  box-shadow: 0 4px 18px rgba(212,160,23,0.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,160,23,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.8);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
}
.btn-call {
  background: linear-gradient(135deg, #ff6b35, #e55a2b);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(255,107,53,0.35);
}
.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,107,53,0.45);
}

/* ── TOP BAR ── */
.topbar {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: var(--gold-light); }
.topbar a:hover { color: var(--white); }
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar span { display: flex; align-items: center; gap: 5px; }

/* ── NAVBAR ── */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(26,60,143,0.10);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
}
.nav-logo-text strong {
  font-size: 18px;
  color: var(--blue-dark);
  line-height: 1;
}
.nav-logo-text small {
  font-size: 11px;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 0.5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.2s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  background: rgba(26,60,143,0.07);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: 0.3s;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,24,80,0.88) 0%,
    rgba(26,60,143,0.75) 55%,
    rgba(10,24,80,0.55) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,160,23,0.2);
  border: 1px solid rgba(212,160,23,0.5);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}
.hero-title span { color: var(--gold-light); }
.hero-subtitle {
  font-size: clamp(18px, 2.5vw, 24px);
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  margin-bottom: 16px;
}
.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  position: relative; z-index: 2;
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat strong {
  display: block;
  font-size: 30px;
  font-weight: 900;
  color: var(--gold-light);
}
.hero-stat span { font-size: 13px; color: rgba(255,255,255,0.7); }

/* ── MARQUEE ── */
.marquee-bar {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
  gap: 0;
}
.marquee-track span {
  font-size: 14px;
  font-weight: 600;
  padding: 0 32px;
  letter-spacing: 0.3px;
}
.marquee-track .dot {
  color: var(--gold-light);
  font-size: 18px;
  padding: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── ABOUT STRIP ── */
.about-strip .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img img {
  width: 100%; height: 380px;
  object-fit: cover;
}
.about-img::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  width: 120px; height: 120px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  z-index: -1;
  opacity: 0.3;
}
.about-year {
  position: absolute;
  bottom: 20px; left: 20px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
  padding: 12px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-year strong { display: block; font-size: 28px; font-weight: 900; color: var(--gold-light); }
.about-year span { font-size: 12px; }
.checks { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
.checks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
}
.checks li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

/* ── CATEGORY CARDS ── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.cat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}
.cat-icon {
  width: 72px; height: 72px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, rgba(26,60,143,0.1), rgba(26,60,143,0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: 0.3s;
}
.cat-card:hover .cat-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
}
.cat-card h3 { font-size: 16px; font-weight: 700; color: var(--blue-dark); margin-bottom: 8px; }
.cat-card p { font-size: 13px; color: var(--text-gray); }

/* ── PRODUCT CARDS ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-img {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--off-white);
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
  padding: 16px;
}
.product-card:hover .product-img img { transform: scale(1.06); }
.product-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}
.product-body { padding: 22px; }
.product-body h3 { font-size: 17px; font-weight: 700; color: var(--blue-dark); margin-bottom: 8px; }
.product-body p { font-size: 13px; color: var(--text-gray); margin-bottom: 16px; line-height: 1.6; }
.product-features { list-style: none; margin-bottom: 18px; display: flex; flex-wrap: wrap; gap: 6px; }
.product-features li {
  font-size: 12px;
  background: rgba(26,60,143,0.07);
  color: var(--blue);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 500;
}
.product-actions { display: flex; gap: 10px; }
.product-actions .btn { flex: 1; justify-content: center; font-size: 13px; padding: 10px 16px; }

/* ── COLOUR SWATCHES ── */
.colour-swatches { display: flex; gap: 8px; margin-bottom: 14px; align-items: center; }
.colour-swatches span { font-size: 12px; color: var(--text-gray); margin-right: 4px; }
.swatch {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.12);
  cursor: pointer;
  transition: 0.2s;
}
.swatch:hover { transform: scale(1.25); }

/* ── HIGHLIGHTS ── */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.highlight-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: 0.3s;
}
.highlight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.highlight-icon { font-size: 36px; margin-bottom: 14px; }
.highlight-card strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 6px;
}
.highlight-card p { font-size: 13px; color: var(--text-gray); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-light) 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: rgba(212,160,23,0.12);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: rgba(212,160,23,0.08);
  border-radius: 50%;
}
.cta-banner h2 {
  font-size: clamp(26px, 4vw, 40px);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 14px;
  position: relative; z-index: 1;
}
.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  margin-bottom: 32px;
  position: relative; z-index: 1;
}
.cta-banner .btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* ── ART FRAME BANNER (homepage promo) ── */
.art-frame-promo {
  padding: 60px 0;
  background: linear-gradient(135deg, #fff8e6, #fffdf0);
}
.art-frame-promo .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.art-frame-promo img {
  width: 100%;
  max-width: 1000px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(212,160,23,0.2);
}
.art-frame-promo-text { text-align: center; }

/* ── FOOTER ── */
.footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand img {
  height: 54px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(1.1);
}
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; color: rgba(255,255,255,0.7); }
.footer h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(212,160,23,0.3);
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer ul li a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.footer-contact .icon {
  min-width: 20px;
  color: var(--gold-light);
  font-size: 16px;
  margin-top: 1px;
}
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: 0.3s;
  color: var(--white);
}
.footer-social a:hover { background: var(--gold); color: var(--black); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom span { color: var(--gold-light); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.whatsapp-float a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: 0.3s;
  text-decoration: none;
}
.whatsapp-float a:hover { transform: scale(1.05); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
.whatsapp-float svg { width: 24px; height: 24px; fill: white; flex-shrink: 0; }
.wa-pulse {
  position: absolute;
  top: -4px; right: -4px;
  width: 14px; height: 14px;
  background: #ff4444;
  border-radius: 50%;
  border: 2px solid white;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  background: rgba(212,160,23,0.1);
  border-radius: 50%;
}
.page-hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  position: relative; z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  position: relative; z-index: 1;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* ── PRODUCT DETAIL PAGE ── */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.product-gallery { position: sticky; top: 90px; }
.product-gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--off-white);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.product-gallery-main img { max-height: 100%; object-fit: contain; padding: 20px; }
.product-gallery-thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.product-gallery-thumbs img {
  width: 72px; height: 72px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  cursor: pointer;
  padding: 4px;
  background: var(--off-white);
  transition: 0.2s;
}
.product-gallery-thumbs img:hover,
.product-gallery-thumbs img.active { border-color: var(--blue); }
.product-info h1 { font-size: 28px; font-weight: 800; color: var(--blue-dark); margin-bottom: 10px; }
.product-info .tagline { font-size: 15px; color: var(--text-gray); margin-bottom: 20px; }
.features-list { list-style: none; margin: 20px 0; }
.features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.features-list li::before {
  content: '✓';
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: white;
  border-radius: 50%;
  font-size: 13px; font-weight: 800;
  flex-shrink: 0;
}
.inquiry-box {
  background: linear-gradient(135deg, var(--off-white), white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 28px;
}
.inquiry-box h3 { font-size: 17px; color: var(--blue-dark); margin-bottom: 16px; font-weight: 700; }
.inquiry-box .btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── ABOUT PAGE ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.mvv-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.mvv-card .icon { font-size: 40px; margin-bottom: 16px; }
.mvv-card h3 { font-size: 18px; font-weight: 700; color: var(--blue-dark); margin-bottom: 12px; }
.mvv-card p { font-size: 14px; color: var(--text-gray); line-height: 1.7; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.value-item {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.value-item .icon { font-size: 32px; margin-bottom: 12px; }
.value-item strong { font-size: 14px; color: var(--blue-dark); font-weight: 700; }
.mfg-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.mfg-item {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  color: white;
}
.mfg-item .icon { font-size: 30px; margin-bottom: 12px; }
.mfg-item strong { font-size: 14px; font-weight: 700; }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: start;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}
.contact-info-icon {
  width: 52px; height: 52px;
  min-width: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
}
.contact-info-card h4 { font-size: 15px; color: var(--blue-dark); font-weight: 700; margin-bottom: 6px; }
.contact-info-card p,
.contact-info-card a { font-size: 14px; color: var(--text-gray); line-height: 1.6; }
.contact-info-card a:hover { color: var(--blue); }

/* ── FORM ── */
.contact-form { background: var(--white); border-radius: var(--radius); padding: 36px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.contact-form h3 { font-size: 22px; font-weight: 700; color: var(--blue-dark); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-dark);
  font-family: inherit;
  outline: none;
  transition: 0.2s;
  background: var(--off-white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); background: white; box-shadow: 0 0 0 3px rgba(26,60,143,0.08); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  background: linear-gradient(135deg, #e6f9f0, #f0fff8);
  border: 1px solid #25d366;
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  color: #1a7a44;
  font-weight: 600;
  margin-top: 16px;
}
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 40px;
}
.map-embed iframe { width: 100%; height: 300px; border: none; display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid, .mfg-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .about-strip .container,
  .about-grid,
  .product-detail-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mvv-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 24px; }
}
@media (max-width: 768px) {
  .topbar-left { display: none; }
  .nav-links, .nav-cta .btn-primary { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: white;
    padding: 16px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 999;
    gap: 4px;
  }
  .products-grid { grid-template-columns: 1fr; }
  .hero { min-height: 520px; }
  .hero-stats { flex-wrap: wrap; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .mfg-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .section { padding: 50px 0; }
  .categories-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .btn { justify-content: center; }
  .whatsapp-float { bottom: 20px; right: 16px; }
  .whatsapp-float a span { display: none; }
  .whatsapp-float a { padding: 14px; border-radius: 50%; }
}
