/* ============================================================
   GENICO TECH SOLUTIONS — MAIN STYLESHEET
   Theme: White background + Blue + Dark Blue
   Fonts: Poppins (headings) + Inter (body) — business style
   ============================================================ */

/* ---------- Theme variables ---------- */
:root {
  --blue: #1565d8; /* primary blue */
  --blue-light: #2f80ed;
  --blue-dark: #0a2a66; /* dark blue */
  --blue-darker: #061d4a;
  --accent: #00b4d8; /* cyan accent for highlights */
  --white: #ffffff;
  --bg-soft: #f3f7ff; /* very light blue tint */
  --bg-soft2: #eaf1ff;
  --text: #14213d;
  --text-soft: #5a6b86;
  --border: #d9e4f5;
  --shadow: 0 10px 30px rgba(10, 42, 102, 0.12);
  --shadow-lg: 0 20px 50px rgba(10, 42, 102, 0.22);
  --radius: 14px;
  --header-h: 130px;
  --maxw: 1200px;
  --grad: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  --grad-dark: linear-gradient(
    135deg,
    var(--blue-dark) 0%,
    var(--blue-darker) 100%
  );
}

/* ---------- Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4 {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.2;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}
.container {
  width: 92%;
  max-width: var(--maxw);
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border: none;
  border-radius: 40px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 20px rgba(21, 101, 216, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(21, 101, 216, 0.45);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.65);
}
.btn-ghost:hover {
  background: #fff;
  color: var(--blue-dark);
  transform: translateY(-3px);
}
.btn-outline {
  background: transparent;
  color: var(--blue-dark);
  border: 2px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-3px);
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition:
    box-shadow 0.3s,
    padding 0.3s;
}
.header.scrolled {
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0;
}
.logo img {
  height: 72px;
  max-width: 240px;
  width: auto;
  border-radius: 0;
  object-fit: contain;
}

/* ---------- Navigation ---------- */
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav > li > a {
  display: block;
  padding: 10px 16px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  font-size: 0.92rem;
  color: var(--blue-dark);
  border-radius: 8px;
  position: relative;
  transition: color 0.2s;
}
.nav > li > a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav > li > a:hover,
.nav > li > a.active {
  color: var(--blue);
}
.nav > li > a:hover::after,
.nav > li > a.active::after {
  transform: scaleX(1);
}

/* dropdown */
.has-drop {
  position: relative;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s ease;
  z-index: 950;
}
.has-drop:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(6px);
}
.dropdown a {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--text);
  transition:
    background 0.2s,
    color 0.2s,
    padding-left 0.2s;
}
.dropdown a:hover {
  background: var(--bg-soft);
  color: var(--blue);
  padding-left: 20px;
}

.header-enquiry {
  padding: 11px 22px;
  border-radius: 8px;
  white-space: nowrap;
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--blue-dark);
  border-radius: 3px;
  transition: 0.3s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--grad-dark);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(0, 180, 216, 0.25),
      transparent 45%
    ),
    radial-gradient(circle at 15% 80%, rgba(47, 128, 237, 0.3), transparent 45%);
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero-text .eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.hero-text h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 18px;
}
.hero-text h1 .accent {
  color: var(--accent);
}
.hero-text p {
  color: #d7e3fb;
  font-size: 1.08rem;
  max-width: 540px;
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}
.hero-visual .blob {
  width: 420px;
  height: 420px;
  max-width: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--darkble) 0%, var(--accent) 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}
.hero-visual .blob img {
  width: 72%;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.26));
}

.hero-stats {
  display: flex;
  gap: 26px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-stats .stat strong {
  display: block;
  font-size: 1.7rem;
  color: var(--accent);
  font-family: "Poppins";
}
.hero-stats .stat span {
  font-size: 0.82rem;
  color: #c4d4f3;
}

/* ---------- Section basics ---------- */
.section {
  padding: 80px 0;
}
.section.alt {
  background: var(--bg-soft);
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.section-head .kicker {
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.8rem;
  text-transform: uppercase;
}
.section-head h2 {
  font-size: 2.2rem;
  margin: 8px 0 12px;
}
.section-head p {
  color: var(--text-soft);
}

/* ---------- Category chips ---------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.chip {
  padding: 9px 18px;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--blue-dark);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.25s;
}
.chip:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}
.chip.active {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 18px rgba(21, 101, 216, 0.3);
}

/* ---------- Product grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}
.product-card .pc-imgwrap {
  position: relative;
  background: #fff;
  overflow: hidden;
  isolation: isolate;
}
.product-card .pc-imgwrap img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  padding: 0;
  transition: transform 0.5s ease;
}
.product-card:hover .pc-imgwrap img {
  transform: scale(1.08);
}
.product-card .pc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--grad);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}
.product-card .pc-body {
  padding: 18px 18px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card .pc-cat {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.product-card h3 {
  font-size: 1.02rem;
  margin: 6px 0 8px;
  color: var(--blue-dark);
}
.product-card p {
  color: var(--text-soft);
  font-size: 0.85rem;
  flex: 1;
}
.product-card .pc-foot {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-card .pc-link {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.product-card .pc-link .arrow {
  transition: transform 0.3s;
}
.product-card:hover .pc-link .arrow {
  transform: translateX(5px);
}
.product-card .pc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(21, 101, 216, 0.12),
    rgba(10, 42, 102, 0.86)
  );
  opacity: 0;
  display: grid;
  align-items: end;
  justify-items: center;
  padding-bottom: 80px;
  transition: opacity 0.3s;
  color: #fff;
  font-weight: 600;
}
.product-card:hover .pc-overlay {
  opacity: 1;
}
.product-card .pc-overlay .view-pill {
  background: #fff;
  color: var(--blue-dark);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
}

/* ---------- Why us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.why-card .why-ic {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 18px;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  font-size: 0;
  color: var(--blue);
  transition: 0.3s;
}
.why-card .why-ic::before {
  content: "";
  width: 34px;
  height: 34px;
  background: currentColor;
  -webkit-mask: var(--why-icon) center / contain no-repeat;
  mask: var(--why-icon) center / contain no-repeat;
}
.why-card:nth-child(1) .why-ic {
  --why-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3.5l7 3v5.2c0 4.3-2.9 7.4-7 8.8-4.1-1.4-7-4.5-7-8.8V6.5l7-3z'/%3E%3Cpath d='M8.5 12.2l2.2 2.2 4.8-5'/%3E%3C/svg%3E");
}
.why-card:nth-child(2) .why-ic {
  --why-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 8.5h14a2 2 0 0 1 2 2v6.5a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-6.5a2 2 0 0 1 2-2z'/%3E%3Cpath d='M7 8.5V6.8A1.8 1.8 0 0 1 8.8 5h6.4A1.8 1.8 0 0 1 17 6.8v1.7'/%3E%3Cpath d='M12 11v5'/%3E%3Cpath d='M9.7 13.2h4.6'/%3E%3C/svg%3E");
}
.why-card:nth-child(3) .why-ic {
  --why-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 7h11v10H3z'/%3E%3Cpath d='M14 10h3.4l3.6 3.8V17h-7z'/%3E%3Cpath d='M6.5 19a2 2 0 1 0 0-4 2 2 0 0 0 0 4z'/%3E%3Cpath d='M17.5 19a2 2 0 1 0 0-4 2 2 0 0 0 0 4z'/%3E%3Cpath d='M3 11h7'/%3E%3C/svg%3E");
}
.why-card:nth-child(4) .why-ic {
  --why-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8.5 11.5l2.2-2.2a2.2 2.2 0 0 1 3.1 0l1.7 1.7'/%3E%3Cpath d='M3.5 12.5l4.2-4.2 4.1 4.1a2 2 0 0 0 2.8 0l.9-.9'/%3E%3Cpath d='M20.5 12.5l-5.1 5.1a2.4 2.4 0 0 1-3.4 0l-4.3-4.3'/%3E%3Cpath d='M6.5 15.8l2.1 2.1'/%3E%3C/svg%3E");
}
.why-card:hover .why-ic {
  background: var(--grad);
  color: #fff;
  transform: rotate(-8deg) scale(1.05);
}
.why-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.why-card p {
  color: var(--text-soft);
  font-size: 0.88rem;
}

/* ---------- Category showcase strip ---------- */
.cat-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.cat-tile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 12px 22px;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
  color: var(--blue-dark);
}
.cat-tile:hover {
  background: var(--grad);
  color: #fff;
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.cat-tile .ct-ic {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eef5ff;
  color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(21, 101, 216, 0.14);
  transition: 0.3s;
}
.cat-tile .ct-ic svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cat-tile:hover .ct-ic {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
}
.cat-tile span {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--grad-dark);
  color: #fff;
  border-radius: 22px;
  padding: 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 80% 30%,
    rgba(0, 180, 216, 0.3),
    transparent 50%
  );
}
.cta-band > * {
  position: relative;
  z-index: 2;
}
.cta-band h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 10px;
}
.cta-band p {
  color: #d4e1fb;
  margin-bottom: 24px;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  background: var(--grad-dark);
  color: #fff;
  padding: 46px 0;
}
.breadcrumb h1 {
  color: #fff;
  font-size: 2.2rem;
}
.breadcrumb .crumbs {
  color: #bcd0f5;
  font-size: 0.88rem;
  margin-top: 6px;
}
.breadcrumb .crumbs a {
  color: var(--accent);
}

/* ---------- Product detail ---------- */
.detail-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: start;
}
.detail-img {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--border);
  position: sticky;
  top: 150px;
}
.detail-img img {
  width: 100%;
  object-fit: contain;
}
.detail-info .d-cat {
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
}
.detail-info h1 {
  font-size: 2rem;
  margin: 8px 0 14px;
}
.detail-info .d-brand {
  display: inline-block;
  background: var(--bg-soft);
  color: var(--blue-dark);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.detail-info .d-desc {
  color: var(--text-soft);
  margin-bottom: 26px;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 28px;
}
.spec-table th,
.spec-table td {
  text-align: left;
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.spec-table th {
  background: var(--bg-soft);
  color: var(--blue-dark);
  width: 42%;
  font-weight: 600;
}
.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: none;
}
.detail-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- About page ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-text h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
.about-text p {
  color: var(--text-soft);
  margin-bottom: 16px;
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.fact {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  text-align: center;
  transition: 0.3s;
}
.fact:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.fact strong {
  display: block;
  color: var(--blue);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.fact span {
  font-weight: 600;
  color: var(--blue-dark);
  font-size: 0.95rem;
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.mv-card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 5px solid var(--blue);
  border-radius: 12px;
  padding: 28px;
}
.mv-card h3 {
  margin-bottom: 10px;
}
.mv-card p {
  color: var(--text-soft);
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.contact-info {
  background: var(--grad-dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 36px;
}
.contact-info h3 {
  color: #fff;
  margin-bottom: 20px;
}
.contact-info .ci-row {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.contact-info .ci-ic {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-info .ci-row small {
  color: #bcd0f5;
  display: block;
  font-size: 0.75rem;
}
.contact-info .ci-row span {
  font-size: 0.95rem;
}
.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 6px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.92rem;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  background: #fbfdff;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(21, 101, 216, 0.12);
  background: #fff;
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.form-note {
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-top: 10px;
}

/* map */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 40px;
}
.map-wrap iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--grad-dark);
  color: #c7d6f5;
  padding: 60px 0 0;
  margin-top: 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
}
.footer h4 {
  color: #fff;
  margin-bottom: 18px;
  font-size: 1.05rem;
}
.footer a {
  color: #c7d6f5;
  font-size: 0.9rem;
  transition:
    color 0.2s,
    padding-left 0.2s;
  display: inline-block;
}
.footer a:hover {
  color: var(--accent);
  padding-left: 5px;
}
.footer .f-links li {
  margin-bottom: 10px;
}
.footer .f-about p {
  font-size: 0.9rem;
  margin: 14px 0;
}
.footer .f-logo {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 6px;
}
.footer .f-logo img {
  height: 78px;
  max-width: 260px;
  width: auto;
  border-radius: 0;
  object-fit: contain;
}
.footer .f-contact .fc-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
}
.footer .social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.footer .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}
.footer .social-link:hover {
  transform: translateY(-2px);
  background: var(--accent);
  color: var(--blue-dark);
  padding-left: 0;
}
.footer .social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 44px;
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: #9fb6e0;
}

/* ---------- Empty state ---------- */
.empty {
  text-align: center;
  padding: 60px;
  color: var(--text-soft);
  grid-column: 1 / -1;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cat-strip {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 860px) {
  .header-inner {
    padding: 10px 0;
    gap: 10px;
  }
  .logo {
    min-width: 0;
    gap: 0;
  }
  .logo img {
    height: 50px;
    max-width: 172px;
  }
  .nav,
  .header-enquiry {
    display: none;
  }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 14px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    align-items: stretch;
  }
  .nav.open .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 12px;
  }
  .hamburger {
    display: flex;
  }
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions,
  .hero-stats {
    justify-content: center;
  }
  .hero-visual {
    display: none;
  }
  .hero-text h1 {
    font-size: 2.2rem;
  }
  .detail-wrap,
  .about-grid,
  .contact-grid,
  .mv-grid {
    grid-template-columns: 1fr;
  }
  .detail-img {
    position: static;
  }
}
@media (max-width: 560px) {
  .header-inner {
    width: 94%;
  }
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-grid,
  .facts-grid,
  .cat-strip {
    grid-template-columns: 1fr 1fr;
  }
  .footer {
    padding-top: 42px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .footer .f-logo img {
    height: 70px;
    max-width: 230px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .section-head h2 {
    font-size: 1.7rem;
  }
  .home-page .section-head .kicker {
    display: block;
    margin-bottom: 2px;
  }
  .home-page .section-head h2 {
    margin-top: 2px;
  }
  .product-card .pc-imgwrap img {
    height: 170px;
  }
}
@media (max-width: 380px) {
  .logo img {
    height: 44px;
    max-width: 150px;
  }
  .hamburger {
    padding: 6px;
  }
}

/* ============================================================
   FAQ + BLOG (home page)
   ============================================================ */

/* ---------- FAQ accordion ---------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  transition:
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.faq-item[open] {
  box-shadow: var(--shadow);
  border-color: var(--blue);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--blue-dark);
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary .faq-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  line-height: 1;
  transition:
    transform 0.3s ease,
    background 0.3s,
    color 0.3s;
}
.faq-item[open] summary .faq-icon {
  transform: rotate(45deg);
  background: var(--grad);
  color: #fff;
}
.faq-item .faq-ans {
  padding: 0 24px 20px;
  color: var(--text-soft);
  font-size: 0.95rem;
}

/* ---------- Blog cards ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}
.blog-thumb {
  position: relative;
  background: var(--bg-soft2);
  overflow: hidden;
}
.blog-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-thumb img {
  transform: scale(1.06);
}
.blog-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--grad);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}
.blog-body {
  padding: 20px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-meta {
  color: var(--text-soft);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.blog-body h3 {
  font-size: 1.08rem;
  margin: 8px 0 10px;
  color: var(--blue-dark);
}
.blog-body p {
  color: var(--text-soft);
  font-size: 0.88rem;
  flex: 1;
}
.blog-readmore {
  margin-top: 16px;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-readmore .arrow {
  transition: transform 0.3s;
}
.blog-card:hover .blog-readmore .arrow {
  transform: translateX(5px);
}

/* ---------- Newsroom cards ---------- */
.newsroom-breadcrumb {
  position: relative;
  overflow: hidden;
}
.newsroom-breadcrumb::after {
  content: "";
  position: absolute;
  right: 8%;
  top: 20%;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}
.news-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: -18px 0 42px;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.news-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s;
}
.news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}
.news-thumb {
  position: relative;
  background: var(--bg-soft2);
  overflow: hidden;
}
.news-thumb img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-thumb img {
  transform: scale(1.06);
}
.news-source {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(6, 29, 74, 0.9);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  padding: 5px 13px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.4px;
}
.news-body {
  padding: 20px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-topic {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.news-body h3 {
  font-size: 1.08rem;
  margin: 8px 0 10px;
}
.news-body p {
  color: var(--text-soft);
  font-size: 0.9rem;
  flex: 1;
}
.news-link {
  margin-top: 18px;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.news-link .arrow {
  transition: transform 0.3s;
}
.news-card:hover .news-link .arrow {
  transform: translateX(5px);
}

/* ---------- Full blog article page ---------- */
.blog-hero {
  padding: 58px 0;
}
.blog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 42px;
  align-items: center;
}
.blog-hero .kicker {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.78rem;
  text-transform: uppercase;
  margin: 16px 0 10px;
}
.blog-hero h1 {
  color: #fff;
  font-size: 2.45rem;
  max-width: 850px;
}
.blog-hero p {
  color: #d7e3fb;
  max-width: 760px;
  margin-top: 14px;
}
.blog-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.blog-hero-meta span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
}
.blog-hero-image {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 18px;
}
.blog-hero-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
}
.blog-page {
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}
.blog-article {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 46px;
  scroll-margin-top: 115px;
}
.blog-article + .blog-article {
  margin-top: 34px;
}
.blog-article section + section {
  margin-top: 42px;
}
.blog-article h2 {
  font-size: 1.72rem;
  margin-bottom: 14px;
}
.blog-article h3 {
  font-size: 1.14rem;
  margin: 24px 0 10px;
}
.blog-article p {
  color: var(--text-soft);
  margin-bottom: 14px;
}
.blog-article li,
.blog-article td,
.article-faq p {
  color: var(--text-soft);
}
.blog-article strong {
  color: var(--blue-dark);
}
.blog-section-label {
  display: inline-block;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.blog-seo-box,
.blog-callout,
.blog-final-cta {
  border: 1px solid var(--border);
  border-left: 5px solid var(--blue);
  background: var(--bg-soft);
  border-radius: 12px;
  padding: 26px;
  margin-bottom: 38px;
}
.blog-seo-box > strong {
  display: inline-block;
  color: var(--blue);
  font-size: 0.78rem;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.blog-seo-box h2 {
  font-size: 1.28rem;
}
.blog-flow {
  overflow-x: auto;
  background: var(--blue-darker);
  color: #eaf1ff;
  border-radius: 12px;
  padding: 20px;
  margin: 18px 0 22px;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.86rem;
  line-height: 1.65;
}
.blog-list,
.blog-steps {
  display: grid;
  gap: 12px;
  margin: 16px 0 6px;
}
.blog-list li,
.blog-steps li {
  color: var(--text-soft);
  background: #fbfdff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
}
.blog-steps {
  list-style: decimal;
  padding-left: 22px;
}
.blog-steps li {
  padding-left: 12px;
}
.blog-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
}
.blog-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  background: #fff;
}
.blog-table th,
.blog-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  font-size: 0.88rem;
}
.blog-table th {
  background: var(--grad);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.blog-table tr:last-child td {
  border-bottom: none;
}
.article-faq {
  display: grid;
  gap: 12px;
}
.article-faq details {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}
.article-faq summary {
  cursor: pointer;
  padding: 16px 18px;
  color: var(--blue-dark);
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
.article-faq p {
  padding: 0 18px 18px;
}
.blog-qa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.blog-qa-grid > div {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  background: #fbfdff;
}
.blog-qa-grid h3 {
  margin-top: 0;
}
.blog-final-cta {
  margin: 24px 0 0;
  text-align: center;
}

/* ---------- FAQ + Blog responsive ---------- */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-hero-grid,
  .blog-qa-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .blog-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }
  .news-toolbar {
    justify-content: flex-start;
    margin-top: -10px;
  }
  .news-thumb img {
    height: 185px;
  }
  .blog-hero {
    padding: 42px 0;
  }
  .blog-hero h1 {
    font-size: 1.72rem;
  }
  .blog-hero-image {
    display: none;
  }
  .blog-article {
    padding: 24px 18px;
  }
  .blog-article h2 {
    font-size: 1.36rem;
  }
  .blog-seo-box,
  .blog-callout,
  .blog-final-cta {
    padding: 20px;
  }
  .faq-item summary {
    font-size: 0.95rem;
    padding: 16px 18px;
  }
  .faq-item .faq-ans {
    padding: 0 18px 18px;
  }
}
