:root {
  --blue: #0b63c5;
  --blue-dark: #08478f;
  --navy: #0d2440;
  --teal: #0e9f8f;
  --green: #1d9d55;
  --white: #ffffff;
  --gray-50: #f4f7fb;
  --gray-100: #e9eef5;
  --gray-200: #d8e0ea;
  --gray-600: #5b6b7b;
  --gray-800: #243b52;
  --text: #33475b;
  --heading: #0f2438;
  --shadow: 0 6px 24px rgba(13, 36, 64, 0.08);
  --shadow-lg: 0 18px 48px rgba(13, 36, 64, 0.16);
  --radius: 14px;
  --radius-sm: 8px;
  --maxw: 1200px;
}

@media (min-width: 1360px) { :root { --maxw: min(1500px, 95vw); } }

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

html { scroll-behavior: smooth; }

html, body { overflow-x: hidden; }

body {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--heading);
  line-height: 1.25;
  font-weight: 600;
}

img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--teal); }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

.section { padding: 72px 0; }
.section-gray { background: var(--gray-50); }
.section-navy { background: var(--navy); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(11, 99, 197, .08);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-title { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 12px; }
.section-sub { color: var(--gray-600); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); color: #fff; }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: #0b8578; color: #fff; }
.btn-outline { border-color: rgba(255,255,255,.5); color: #fff; background: transparent; }
.btn-outline:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn-ghost { border-color: var(--blue); color: var(--blue); background: transparent; }
.btn-ghost:hover { background: var(--blue); color: #fff; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy);
  color: #cfe0f5;
  font-size: 13px;
  padding: 8px 0;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topbar-left { display: flex; align-items: center; gap: 18px; }
.social-links { display: flex; gap: 14px; }
.social-links a { color: #cfe0f5; font-size: 13px; display: flex; align-items: center; gap: 5px; }
.social-links a:hover { color: #fff; }
.topbar-actions { display: flex; align-items: center; gap: 18px; }
.topbar-actions a { color: #cfe0f5; }
.topbar-actions a:hover { color: #fff; }
.bulk-badge {
  background: var(--green);
  color: #fff !important;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
}
.bulk-badge:hover { background: #177d44; }
.topbar-phone { font-weight: 600; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 90; background: #fff; box-shadow: 0 1px 0 var(--gray-100); }
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 76px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 44px; }
.logo-text { font-family: "Poppins", sans-serif; font-weight: 700; font-size: 20px; color: var(--heading); line-height: 1.1; }
.logo-text small { display: block; font-size: 10.5px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-600); }

.main-nav > ul { display: flex; align-items: center; gap: 4px; }
.main-nav > ul > li { position: relative; }
.main-nav a.nav-link {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14.5px;
  color: var(--heading);
  padding: 10px 14px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav a.nav-link:hover, .main-nav a.nav-link.active { color: var(--blue); background: rgba(11,99,197,.07); }
.caret { font-size: 10px; margin-top: 2px; }

.dropdown { position: absolute; top: calc(100% + 10px); left: 0; min-width: 260px; background: #fff; box-shadow: var(--shadow-lg); border-radius: var(--radius-sm); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .2s ease; z-index: 100; }
.dropdown li a { display: flex; gap: 10px; align-items: flex-start; padding: 9px 12px; border-radius: 6px; font-size: 14px; color: var(--text); }
.dropdown li a:hover { background: var(--gray-50); color: var(--blue); }
.dropdown li a b { display: block; font-size: 14px; font-weight: 600; color: var(--heading); font-family: "Poppins", sans-serif; }
.dropdown li a span { font-size: 12px; color: var(--gray-600); }
.dropdown li a small { display: block; color: var(--blue); font-weight: 600; font-size: 12.5px; margin-top: 4px; }
.main-nav li:hover > .dropdown, .main-nav li:focus-within > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-call { display: flex; align-items: center; gap: 10px; padding: 8px 14px; border: 1.5px solid var(--gray-200); border-radius: 50px; }
.header-call svg { color: var(--blue); }
.header-call small { display: block; font-size: 11px; color: var(--gray-600); }
.header-call strong { font-family: "Poppins", sans-serif; color: var(--heading); font-size: 14px; white-space: nowrap; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { width: 24px; height: 2.5px; background: var(--heading); border-radius: 2px; transition: all .25s ease; }

.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: 300px; max-width: 86vw; background: #fff; z-index: 120;
  transform: translateX(100%); transition: transform .3s ease; overflow-y: auto; box-shadow: -12px 0 40px rgba(13,36,64,.2);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--gray-100); }
.mobile-menu .close-btn { background: none; border: none; font-size: 26px; cursor: pointer; color: var(--heading); }
.mobile-menu nav { padding: 10px 20px 20px; }
.mobile-menu a.mm-link { display: block; padding: 12px 6px; font-family: "Poppins", sans-serif; font-weight: 500; color: var(--heading); border-bottom: 1px solid var(--gray-50); font-size: 15px; }
.mobile-menu a.mm-link.active { color: var(--blue); }
.mm-drop { display: none; padding-left: 14px; }
.mm-drop a { display: block; padding: 9px 6px; font-size: 14px; color: var(--text); }
.mobile-menu-foot { padding: 14px 20px 24px; display: flex; flex-direction: column; gap: 10px; }
.mm-toggle { cursor: pointer; display: flex; justify-content: space-between; align-items: center; }

.overlay { position: fixed; inset: 0; background: rgba(13,36,64,.5); z-index: 110; opacity: 0; visibility: hidden; transition: all .25s ease; }
.overlay.show { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--navy); }
.hero-slide {
  position: absolute; inset: 0; display: flex; align-items: center;
  opacity: 0; visibility: hidden; transition: opacity .6s ease; background: var(--navy);
}
.hero-slide.active { position: relative; opacity: 1; visibility: visible; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, rgba(11,99,197,.94), rgba(13,36,64,.88)); }
.hero-content { position: relative; z-index: 2; padding: 92px 0 110px; max-width: 640px; color: #fff; }
.hero-kicker {
  display: inline-block; font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase;
  color: #bfe1ff; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  padding: 7px 16px; border-radius: 30px; margin-bottom: 18px;
}
.hero h1 { color: #fff; font-size: clamp(28px, 4.6vw, 48px); font-weight: 700; margin-bottom: 16px; }
.hero p { color: #d7e7f8; font-size: 17px; margin-bottom: 28px; max-width: 520px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-arrows { position: absolute; top: 50%; transform: translateY(-50%); left: 0; right: 0; z-index: 5; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; display: none; justify-content: space-between; pointer-events: none; }
.hero-arrows button { pointer-events: all; }
.hero-nav { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 8px; }
.hero-dot { width: 10px; height: 10px; border-radius: 20px; border: none; background: rgba(255,255,255,.4); cursor: pointer; transition: all .3s ease; }
.hero-dot.active { width: 30px; background: #fff; }
.hero-arrow { width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.4); background: rgba(255,255,255,.1); color: #fff; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.hero-arrow:hover { background: #fff; color: var(--navy); }

/* ---------- Categories grid ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cat-card {
  background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius);
  padding: 24px 20px; text-align: center; transition: all .25s ease; box-shadow: var(--shadow);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.cat-img { width: 96px; height: 96px; margin: 0 auto 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-family: "Poppins", sans-serif; font-weight: 700; font-size: 30px; letter-spacing: .5px; box-shadow: 0 10px 24px rgba(11,99,197,.25); overflow: hidden; }
.cat-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.cat-card h3 { font-size: 17px; margin-bottom: 6px; }
.cat-card p { font-size: 13px; color: var(--gray-600); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cat-card a.more { display: inline-block; margin-top: 12px; font-size: 13px; font-weight: 600; color: var(--blue); }
.cat-card a.more:hover { color: var(--teal); }

/* ---------- Product tabs & grid ---------- */
.tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }
.tab-btn {
  border: 1.5px solid var(--gray-200); background: #fff; color: var(--text);
  font-family: "Poppins", sans-serif; font-weight: 500; font-size: 13.5px; padding: 9px 18px; border-radius: 50px; cursor: pointer; transition: all .2s;
}
.tab-btn:hover { border-color: var(--blue); color: var(--blue); }
.tab-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card {
  background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius);
  overflow: hidden; transition: all .25s ease; display: flex; flex-direction: column; box-shadow: 0 2px 12px rgba(13,36,64,.05);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--gray-50); }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-media img { transform: scale(1.06); }
.product-cat-tag { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,.95); color: var(--blue); font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; box-shadow: var(--shadow); }
.product-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 16px; margin-bottom: 6px; line-height: 1.35; }
.product-body p { font-size: 13px; color: var(--gray-600); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 14px; }
.product-actions { margin-top: auto; display: flex; gap: 10px; }
.product-actions .btn { flex: 1; justify-content: center; padding: 9px 10px; font-size: 12.5px; }

/* ---------- Product banner strip ---------- */
.banner-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.banner-card {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 200px;
  display: flex; align-items: flex-end; padding: 22px; background: var(--navy); color: #fff;
}
.banner-card.bg-blue { background: linear-gradient(135deg, #0b63c5, #16a4d8); }
.banner-card.bg-teal { background: linear-gradient(135deg, #0e9f8f, #39c9ad); }
.banner-card.bg-navy { background: linear-gradient(135deg, #0d2440, #0b63c5); }
.banner-card.bg-green { background: linear-gradient(135deg, #1d9d55, #61d795); }
.banner-card.bg-violet { background: linear-gradient(135deg, #5e35b1, #9367e8); }
.banner-card.bg-rose { background: linear-gradient(135deg, #c2185b, #ef6091); }
.banner-card.bg-orange { background: linear-gradient(135deg, #d84315, #ff7a59); }
.banner-card.bg-brown { background: linear-gradient(135deg, #b5651d, #e39a57); }
.banner-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.35)); }
.banner-inner { position: relative; z-index: 2; }
.banner-inner h3 { color: #fff; font-size: 20px; margin-bottom: 4px; }
.banner-inner p { color: rgba(255,255,255,.9); font-size: 13px; margin-bottom: 12px; }
.banner-inner a { color: #fff; font-weight: 600; font-size: 13.5px; border-bottom: 2px solid rgba(255,255,255,.5); padding-bottom: 2px; }
.banner-inner a:hover { border-color: #fff; }
.banner-card .view { color: #fff; font-weight: 600; font-size: 13.5px; border-bottom: 2px solid rgba(255,255,255,.5); padding-bottom: 2px; }

/* ---------- About & stats ---------- */
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.about-img { position: relative; }
.about-img img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.about-badge { position: absolute; bottom: -22px; right: -22px; background: var(--teal); color: #fff; border-radius: var(--radius); padding: 16px 22px; text-align: center; box-shadow: var(--shadow-lg); }
.about-badge strong { font-family: "Poppins", sans-serif; font-size: 26px; display: block; }
.about-badge span { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.about-content h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 14px; }
.about-content p { margin-bottom: 16px; }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 18px 0 26px; }
.about-points li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.about-points li svg { color: var(--teal); flex-shrink: 0; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card {
  background: #fff; border-radius: var(--radius); padding: 30px 22px; text-align: center;
  border: 1px solid var(--gray-100); box-shadow: var(--shadow); transition: all .25s;
}
.stat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.stat-value { font-family: "Poppins", sans-serif; font-size: 40px; font-weight: 700; color: var(--blue); }
.stat-value .suffix { color: var(--teal); }
.stat-label { font-size: 14px; color: var(--gray-600); }

/* ---------- Why choose us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { background: #fff; padding: 30px 26px; border-radius: var(--radius); text-align: center; border: 1px solid var(--gray-100); transition: all .25s; }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.why-icon {
  width: 62px; height: 62px; border-radius: 18px; margin: 0 auto 18px;
  background: rgba(11,99,197,.1); color: var(--blue); display: flex; align-items: center; justify-content: center;
}
.why-card h3 { font-size: 18px; margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--gray-600); }

/* ---------- Logo strips (certificates / clients) ---------- */
.logo-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.logo-item {
  background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius-sm);
  padding: 26px 14px; text-align: center; color: var(--gray-600); font-weight: 600;
  font-family: "Poppins", sans-serif; font-size: 14px; transition: all .25s; display: flex; align-items: center; justify-content: center; min-height: 84px;
}
.logo-item:hover { border-color: var(--blue); color: var(--blue); box-shadow: var(--shadow); }
.logo-item .cert-mark { font-size: 11px; letter-spacing: 1px; }
.logo-item .cert-name { font-size: 13px; line-height: 1.4; }
.logo-item.client { min-height: 70px; font-size: 13px; color: var(--gray-600); }
.logo-item.client:hover { color: var(--navy); }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 14px; font-family: "Poppins", sans-serif; font-weight: 500; font-size: 15.5px; color: var(--heading); }
.faq-q .faq-icon { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--gray-100); color: var(--gray-600); display: flex; align-items: center; justify-content: center; font-size: 16px; line-height: 1; transition: all .25s; }
.faq-item.open .faq-q { color: var(--blue); }
.faq-item.open .faq-icon { background: var(--blue); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 22px 18px; color: var(--gray-600); font-size: 14.5px; }

/* ---------- Blog cards ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.blog-card { background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius); overflow: hidden; transition: all .25s; box-shadow: 0 2px 12px rgba(13,36,64,.05); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-media { aspect-ratio: 16/9; overflow: hidden; background: var(--gray-100); }
.blog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-media img { transform: scale(1.05); }
.blog-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.blog-meta { display: flex; gap: 12px; font-size: 12px; color: var(--gray-600); margin-bottom: 10px; }
.blog-meta .blog-cat { color: var(--blue); font-weight: 600; }
.blog-body h3 { font-size: 16.5px; line-height: 1.4; margin-bottom: 8px; }
.blog-body p { font-size: 13.5px; color: var(--gray-600); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 14px; }
.blog-body a.read-more { margin-top: auto; font-size: 13px; font-weight: 600; color: var(--blue); display: inline-flex; align-items: center; gap: 6px; }
.blog-body a.read-more:hover { color: var(--teal); }

/* ---------- Page banner (inner pages) ---------- */
.page-banner { background: linear-gradient(120deg, var(--navy), var(--blue)); color: #fff; padding: 64px 0; text-align: center; }
.page-banner h1 { color: #fff; font-size: clamp(28px, 4vw, 42px); }
.page-banner .breadcrumb { color: #bfd7f3; font-size: 14px; margin-top: 10px; }
.page-banner .breadcrumb a { color: #bfd7f3; }
.page-banner .breadcrumb a:hover { color: #fff; }

/* ---------- Shop sidebar layout ---------- */
.shop-layout { display: grid; grid-template-columns: 280px 1fr; gap: 36px; align-items: start; }
.sidebar-card { background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; box-shadow: var(--shadow); }
.sidebar-card h3 { font-size: 16px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--gray-100); }
.sidebar-cats li a { display: flex; align-items: center; justify-content: space-between; padding: 9px 10px; border-radius: 6px; font-size: 14px; color: var(--text); }
.sidebar-cats li a:hover, .sidebar-cats li a.active { background: var(--gray-50); color: var(--blue); }
.sidebar-cats .count { font-size: 12px; color: var(--gray-600); background: var(--gray-50); border-radius: 12px; padding: 2px 9px; }
.sidebar-cats li a.active .count { background: var(--blue); color: #fff; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-btn { font-size: 12.5px; padding: 6px 12px; border: 1px solid var(--gray-200); border-radius: 20px; color: var(--gray-600); background: #fff; }
.tag-btn:hover { border-color: var(--blue); color: var(--blue); }

/* ---------- Product detail ---------- */
.product-detail { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.product-detail-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.pd-cat { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--blue); background: rgba(11,99,197,.08); padding: 5px 12px; border-radius: 20px; margin-bottom: 12px; }
.product-detail h1 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 12px; }
.product-detail .pd-desc { color: var(--gray-600); margin-bottom: 22px; }
.spec-table { width: 100%; border-collapse: collapse; margin: 8px 0 24px; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.spec-table th, .spec-table td { text-align: left; padding: 12px 16px; font-size: 14px; border-bottom: 1px solid var(--gray-100); }
.spec-table th { background: var(--gray-50); color: var(--heading); font-family: "Poppins", sans-serif; font-weight: 600; width: 45%; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: none; }
.spec-table td.val { color: var(--text); }

/* ---------- Contact ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.contact-card { background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 30px 26px; text-align: center; box-shadow: var(--shadow); }
.contact-card .why-icon { margin-bottom: 14px; }
.contact-card h3 { font-size: 17px; margin-bottom: 6px; }
.contact-card p, .contact-card a { font-size: 14px; color: var(--text); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.contact-form { background: #fff; border-radius: var(--radius); padding: 34px; border: 1px solid var(--gray-100); box-shadow: var(--shadow); }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 13.5px; font-weight: 600; color: var(--heading); margin-bottom: 7px; }
.form-row input, .form-row textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 14.5px; color: var(--text); transition: all .2s; background: var(--gray-50);
}
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--blue); background: #fff; }
.form-row textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 12.5px; color: var(--gray-600); margin-top: 10px; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; background: var(--gray-100); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after { content: attr(data-label); position: absolute; left: 0; right: 0; bottom: 0; padding: 14px; background: linear-gradient(transparent, rgba(13,36,64,.8)); color: #fff; font-size: 13px; font-weight: 600; font-family: "Poppins", sans-serif; }
.lightbox { position: fixed; inset: 0; background: rgba(13,36,64,.94); z-index: 150; display: none; align-items: center; justify-content: center; padding: 30px; }
.lightbox.show { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); }
.lightbox-close { position: absolute; top: 22px; right: 30px; background: none; border: none; color: #fff; font-size: 40px; cursor: pointer; }

/* ---------- Careers ---------- */
.career-card { background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.career-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.career-card h3 { font-size: 17px; margin-bottom: 4px; }
.career-card .dept { color: var(--blue); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.career-card p { font-size: 13.5px; color: var(--gray-600); margin: 10px 0; }

/* ---------- Terms / text pages ---------- */
.prose { max-width: 820px; }
.prose h2 { font-size: 22px; margin: 26px 0 10px; }
.prose h3 { font-size: 17px; margin: 20px 0 8px; }
.prose p, .prose li { font-size: 15px; margin-bottom: 12px; }
.prose ul { list-style: disc; padding-left: 22px; }
.prose ol { list-style: decimal; padding-left: 22px; }

/* ---------- FAQ dup for contact ---------- */

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #b9cde3; }
.footer-top { padding: 64px 0 40px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 40px; }
.footer-about .logo { margin-bottom: 16px; }
.footer-about .logo-text { color: #fff; }
.footer-about .logo-text small { color: #8fa9c4; }
.footer-about p { font-size: 14px; line-height: 1.7; }
.footer-title { color: #fff; font-size: 16px; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #b9cde3; font-size: 14px; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-contact li { display: flex; gap: 10px; font-size: 14px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact svg { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.footer-contact a { color: #b9cde3; }
.footer-contact a:hover { color: #fff; }
.footer-quote input, .footer-quote textarea {
  width: 100%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.18); color: #fff;
  padding: 11px 14px; border-radius: var(--radius-sm); margin-bottom: 12px; font-family: inherit; font-size: 14px;
}
.footer-quote input::placeholder, .footer-quote textarea::placeholder { color: #8fa9c4; }
.footer-quote textarea { min-height: 74px; resize: vertical; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); display: flex; align-items: center; justify-content: center; color: #b9cde3; font-size: 12px; font-weight: 600; transition: all .2s; }
.footer-social a:hover { background: var(--teal); border-color: var(--teal); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; font-size: 13.5px; text-align: center; color: #8fa9c4; }

/* ---------- Floating widgets + modal ---------- */
.widgets { position: fixed; right: 22px; bottom: 22px; z-index: 130; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.widget-btn { width: 52px; height: 52px; border-radius: 50%; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 24px; box-shadow: var(--shadow-lg); transition: transform .2s; }
.widget-btn:hover { transform: translateY(-3px); }
.widget-wa { background: #25d366; }
.widget-enq { background: var(--blue); font-size: 20px; }
.widget-top { background: var(--navy); font-size: 20px; }
.widget-foot { position: fixed; left: 22px; bottom: 22px; z-index: 130; display: flex; flex-direction: column; gap: 12px; }
.widget-wa-label { position: absolute; right: 60px; top: 50%; transform: translateY(-50%); background: #fff; color: var(--heading); font-size: 13px; font-weight: 600; padding: 7px 14px; border-radius: 8px; box-shadow: var(--shadow); white-space: nowrap; opacity: 0; visibility: hidden; transition: all .2s; display: none; }
.widget-wa:hover .widget-wa-label { opacity: 1; visibility: visible; }

.modal { position: fixed; inset: 0; z-index: 160; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.show { display: flex; }
.modal-bg { position: absolute; inset: 0; background: rgba(13,36,64,.6); }
.modal-box { position: relative; background: #fff; width: 100%; max-width: 460px; border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-lg); max-height: 92vh; overflow-y: auto; }
.modal-close { position: absolute; top: 14px; right: 16px; background: none; border: none; font-size: 26px; color: var(--gray-600); cursor: pointer; }
.modal-box h3 { font-size: 22px; margin-bottom: 6px; }
.modal-box > p { font-size: 14px; color: var(--gray-600); margin-bottom: 22px; }

.toast { position: fixed; bottom: 24px; left: 50%; transform: translate(-50%, 140%); background: var(--green); color: #fff; padding: 14px 28px; border-radius: 50px; font-weight: 600; font-size: 14.5px; z-index: 200; box-shadow: var(--shadow-lg); transition: transform .35s ease; }
.toast.show { transform: translate(-50%, 0); }

/* ---------- Pagination ---------- */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.page-btn { min-width: 42px; height: 42px; border-radius: 10px; border: 1.5px solid var(--gray-200); background: #fff; color: var(--text); display: flex; align-items: center; justify-content: center; font-size: 14px; cursor: pointer; padding: 0 12px; transition: all .2s; font-family: "Poppins", sans-serif; }
.page-btn:hover { border-color: var(--blue); color: var(--blue); }
.page-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.page-btn.disabled { opacity: .45; pointer-events: none; }

/* ---------- Blog single ---------- */
.blog-single { max-width: 860px; margin: 0 auto; }
.blog-single .blog-hero { aspect-ratio: 16/8; border-radius: var(--radius); overflow: hidden; margin-bottom: 28px; }
.blog-single .blog-hero img { width: 100%; height: 100%; object-fit: cover; }
.blog-single .blog-body { padding: 0; }
.blog-single h1 { font-size: clamp(26px, 3.6vw, 36px); margin-bottom: 12px; }
.blog-meta-lg { display: flex; gap: 16px; font-size: 13.5px; color: var(--gray-600); margin-bottom: 24px; flex-wrap: wrap; }
.blog-meta-lg span { display: inline-flex; align-items: center; gap: 7px; }

/* ---------- 404 ---------- */
.notfound { text-align: center; padding: 90px 20px; }
.notfound .code { font-family: "Poppins", sans-serif; font-size: clamp(90px, 16vw, 170px); font-weight: 700; color: var(--gray-100); line-height: 1; }
.notfound h1 { margin: 10px 0 12px; }
.notfound p { color: var(--gray-600); margin-bottom: 26px; }

/* ---------- Misc / utilities ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--gray-600); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .cat-grid, .product-grid, .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid, .why-grid, .banner-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-strip { grid-template-columns: repeat(4, 1fr); }
  .shop-layout { grid-template-columns: 240px 1fr; gap: 26px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .main-nav, .header-call { display: none; }
  .hamburger { display: flex; }
  .hero-arrows { display: flex; }
  .product-detail { grid-template-columns: 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .section { padding: 52px 0; }
  .cat-grid, .product-grid, .blog-grid, .why-grid, .stats-grid, .banner-grid, .career-list { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: 1fr; }
  .logo-strip { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .about-points { grid-template-columns: 1fr; }
  .topbar-left .social-links { display: none; }
}

@media (max-width: 420px) {
  .cat-grid, .product-grid, .blog-grid { grid-template-columns: 1fr; }
  .stats-grid, .why-grid { grid-template-columns: 1fr; }
  .logo-strip { grid-template-columns: repeat(2, 1fr); }
  .hero-content { padding: 60px 0 84px; }
}