@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Nunito+Sans:wght@300;400;600;700&family=Roboto+Mono:wght@400;500&display=swap');

:root {
  --violet:    #2D1B5E;
  --violet-mid:#6A1B9A;
  --violet-dark:#1A0A3E;
  --gold:      #FFD700;
  --gold-dim:  #C9A84C;
  --gold-light:#FFF8DC;
  --white:     #FAFAFA;
  --off:       #F4F1FB;
  --text:      #1A1230;
  --muted:     #6B6280;
  --border:    rgba(45,27,94,0.15);
  --shadow:    0 8px 40px rgba(45,27,94,0.18);
  --shadow-lg: 0 24px 80px rgba(45,27,94,0.25);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.25rem; }
p  { line-height: 1.75; color: var(--muted); font-size: 1rem; }

a { text-decoration: none; color: inherit; }

/* ── UTILITY ── */
.container  { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.gold-line  { width: 60px; height: 3px; background: var(--gold); margin: 1rem 0 1.5rem; }
.center     { text-align: center; }
.center .gold-line { margin-left: auto; margin-right: auto; }
.tag        { display: inline-block; font-family: 'Roboto Mono', monospace; font-size: 0.72rem;
              letter-spacing: 0.12em; text-transform: uppercase; background: var(--gold-light);
              color: var(--violet); padding: 4px 12px; border-radius: 2px; font-weight: 500; }
.tag-white  { background: rgba(255,255,255,0.15); color: #fff; }
.btn        { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px;
              border-radius: 3px; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.06em;
              text-transform: uppercase; cursor: pointer; border: 2px solid transparent;
              transition: all 0.3s ease; }
.btn-gold   { background: var(--gold); color: var(--violet-dark); border-color: var(--gold); }
.btn-gold:hover { background: #e6c200; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,215,0,0.35); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-violet { background: var(--violet); color: #fff; border-color: var(--violet); }
.btn-violet:hover { background: var(--violet-mid); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 2rem;
  transition: all 0.4s ease;
  background: transparent;
}
.navbar.scrolled {
  background: var(--violet-dark);
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; flex-wrap: nowrap; overflow: visible;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-mark {
  width: 42px; height: 42px; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: 1.3rem; color: var(--violet-dark);
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text span:first-child {
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: 1.15rem; color: #fff; letter-spacing: 0.04em;
}
.nav-logo-text span:last-child {
  font-size: 0.65rem; color: var(--gold); letter-spacing: 0.18em; text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 0; flex-wrap: nowrap; white-space: nowrap; }
.nav-links a {
  color: rgba(255,255,255,0.85); font-size: 0.78rem; letter-spacing: 0.06em;
  text-transform: uppercase; font-weight: 600; padding: 28px 12px;
  position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 20px; left: 16px; right: 16px;
  height: 2px; background: var(--gold); transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 1rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; z-index: 10001; position: relative; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .25s ease; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  min-height: 100svh;
  background: linear-gradient(135deg, var(--violet-dark) 0%, #3D1F7A 40%, var(--violet-mid) 100%);
  display: flex; flex-direction: column; justify-content: center;
  align-items: flex-start;
  position: relative; overflow: hidden;
  padding: 80px 0 0 0;
  width: 100%;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-globe {
  position: absolute; right: -120px; top: 50%; transform: translateY(-50%);
  width: 700px; height: 700px; border-radius: 50%;
  border: 1px solid rgba(255,215,0,0.1);
  background: radial-gradient(circle at 30% 40%, rgba(106,27,154,0.3), transparent 60%);
  animation: globe-rotate 30s linear infinite;
  pointer-events: none;
}
.hero-globe::before, .hero-globe::after {
  content: ''; position: absolute; inset: 40px; border-radius: 50%;
  border: 1px solid rgba(255,215,0,0.06);
}
.hero-globe::after { inset: 100px; border-color: rgba(255,215,0,0.04); }
@keyframes globe-rotate { to { transform: translateY(-50%) rotate(360deg); } }

.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 2rem; width: 100%; }
.hero-tag { margin-bottom: 2rem; animation: fadeUp 0.8s ease both; }
.hero h1 {
  color: #fff; margin-bottom: 1.5rem; max-width: 780px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero h1 span { color: var(--gold); font-style: italic; }
.hero-sub {
  color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 580px;
  margin-bottom: 2.5rem; animation: fadeUp 0.8s 0.2s ease both;
}
.hero-pills {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-pill {
  padding: 6px 16px; border: 1px solid rgba(255,215,0,0.3);
  border-radius: 2px; color: rgba(255,255,255,0.8);
  font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.8s 0.4s ease both; }
.hero-stats {
  margin-top: 5rem; display: grid; grid-template-columns: repeat(4,1fr); gap: 1px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,215,0,0.15);
  animation: fadeUp 0.8s 0.5s ease both;
}
.hero-stat {
  background: rgba(255,255,255,0.04); padding: 2rem 1.5rem; text-align: center;
  backdrop-filter: blur(4px);
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.hero-stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.6); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 6px; }

/* ── DIVISIONS SECTION ── */
.divisions-grid {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 0;
}
.division-card {
  padding: 2.5rem 1.5rem; position: relative; overflow: hidden;
  cursor: pointer; transition: all 0.4s ease; border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.division-card:last-child { border-right: none; }
.division-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transition: transform 0.4s;
}
.division-card:hover::before, .division-card.active-div::before { transform: scaleX(1); }
.division-card:hover { background: rgba(255,215,0,0.05); }
.div-icon {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; border: 2px solid var(--gold); color: var(--gold);
  background: rgba(255,215,0,0.08);
}
.div-num {
  font-family: 'Roboto Mono', monospace; font-size: 0.7rem;
  color: var(--gold-dim); letter-spacing: 0.1em; margin-bottom: 0.5rem;
}
.div-name {
  font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: #fff; font-weight: 600;
}

/* ── ABOUT SECTION ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-visual {
  position: relative; height: 520px;
}
.about-card-main {
  position: absolute; top: 0; left: 0; right: 60px; bottom: 60px;
  background: linear-gradient(135deg, var(--violet) 0%, var(--violet-mid) 100%);
  border-radius: 4px; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem;
}
.about-card-main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.about-card-main-content { position: relative; z-index: 1; }
.about-card-float {
  position: absolute; bottom: 0; right: 0; width: 240px;
  background: var(--gold); padding: 1.5rem; border-radius: 4px;
}
.about-card-float-num {
  font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 700;
  color: var(--violet-dark); line-height: 1;
}
.about-card-float-label { font-size: 0.78rem; color: var(--violet); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.pillar { padding: 1.2rem; border: 1px solid var(--border); border-radius: 4px; background: var(--off); }
.pillar-icon { font-size: 1.4rem; margin-bottom: 0.5rem; }
.pillar h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: var(--violet); margin-bottom: 0.3rem; }
.pillar p { font-size: 0.82rem; }

/* ── GLOBAL MAP SECTION ── */
.global-section { background: var(--violet-dark); position: relative; overflow: hidden; }
.global-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(106,27,154,0.4) 0%, transparent 60%);
}
.global-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.global-map-svg { width: 100%; max-width: 520px; position: relative; }
.location-cards { display: flex; flex-direction: column; gap: 1rem; }
.location-card {
  display: flex; gap: 1rem; padding: 1.2rem 1.5rem;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,215,0,0.12);
  border-radius: 4px; cursor: pointer; transition: all 0.3s;
  border-left: 3px solid transparent;
}
.location-card:hover, .location-card.active-loc {
  background: rgba(255,215,0,0.06); border-left-color: var(--gold);
}
.loc-flag { font-size: 1.6rem; min-width: 32px; }
.loc-info h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: #fff; margin-bottom: 2px; }
.loc-info .loc-role { font-size: 0.75rem; color: var(--gold-dim); text-transform: uppercase; letter-spacing: 0.08em; }

/* ── PRODUCTS ── */
.products-section { background: var(--off); }
.products-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 3rem; overflow-x: auto; }
.prod-tab {
  padding: 14px 24px; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted); cursor: pointer;
  border-bottom: 3px solid transparent; margin-bottom: -2px; white-space: nowrap;
  transition: all 0.3s; background: none; border-top: none; border-left: none; border-right: none;
}
.prod-tab.active, .prod-tab:hover { color: var(--violet); border-bottom-color: var(--gold); }
.prod-panel { display: none; }
.prod-panel.active { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.prod-card {
  background: #fff; border-radius: 4px; padding: 1.8rem;
  border: 1px solid var(--border); transition: all 0.3s; position: relative; overflow: hidden;
}
.prod-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--violet), var(--gold));
  transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.prod-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.prod-card:hover::before { transform: scaleX(1); }
.prod-cat { font-family: 'Roboto Mono', monospace; font-size: 0.68rem; color: var(--gold-dim); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.8rem; }
.prod-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--violet); margin-bottom: 0.8rem; }
.prod-items { list-style: none; }
.prod-items li { font-size: 0.82rem; color: var(--muted); padding: 5px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.prod-items li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.prod-items li:last-child { border-bottom: none; }
.prod-moq { margin-top: 1rem; padding: 8px 12px; background: var(--off); border-radius: 2px; font-size: 0.75rem; color: var(--violet); font-weight: 700; }

/* ── SERVICES (Lab/Trainer/AMC) ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.svc-card {
  padding: 2.5rem 2rem; background: #fff; border-radius: 4px;
  border: 1px solid var(--border); position: relative; overflow: hidden;
  transition: all 0.4s;
}
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 0;
  background: linear-gradient(180deg, transparent, rgba(45,27,94,0.03));
  transition: height 0.4s;
}
.svc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.svc-num {
  font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 700;
  color: var(--border); line-height: 1; margin-bottom: 1rem; display: block;
}
.svc-card h3 { font-size: 1.3rem; color: var(--violet); margin-bottom: 1rem; }
.svc-card p { font-size: 0.88rem; margin-bottom: 1.5rem; }
.svc-link { font-size: 0.78rem; font-weight: 700; color: var(--violet-mid); letter-spacing: 0.08em; text-transform: uppercase; display: flex; align-items: center; gap: 6px; }
.svc-link::after { content: '→'; transition: transform 0.2s; }
.svc-card:hover .svc-link::after { transform: translateX(4px); }

/* ── CERTIFICATIONS ── */
.cert-section { background: var(--violet-dark); }
.cert-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 3rem; }
.cert-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,215,0,0.15);
  border-radius: 4px; padding: 1.8rem; text-align: center; transition: all 0.3s;
  cursor: pointer;
}
.cert-card:hover { background: rgba(255,215,0,0.08); border-color: var(--gold); transform: translateY(-4px); }
.cert-logo {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 1rem;
  background: rgba(255,215,0,0.1); border: 2px solid var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: 1.1rem; color: var(--gold);
}
.cert-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: #fff; margin-bottom: 0.5rem; }
.cert-card p { font-size: 0.78rem; color: rgba(255,255,255,0.55); }
.cert-card .cert-duration { font-family: 'Roboto Mono', monospace; font-size: 0.7rem; color: var(--gold); margin-top: 0.8rem; }

/* ── ENQUIRY FORM ── */
.enquiry-section { background: var(--off); }
.enquiry-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; }
.enquiry-info h2 { margin-bottom: 1rem; }
.contact-items { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--gold-light); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--violet);
}
.contact-item h4 { font-family: 'Nunito Sans', sans-serif; font-size: 0.82rem; font-weight: 700; color: var(--violet); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.contact-item p { font-size: 0.88rem; }

.enquiry-form { background: #fff; padding: 3rem; border-radius: 4px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.78rem; font-weight: 700; color: var(--violet); text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: 3px; font-family: 'Nunito Sans', sans-serif;
  font-size: 0.9rem; color: var(--text); background: var(--white);
  transition: border-color 0.3s; outline: none; appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--violet-mid);
}
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236A1B9A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-required { color: #c0392b; }
.form-note { font-size: 0.75rem; color: var(--muted); font-style: italic; margin-top: 0.5rem; }
.form-submit { margin-top: 1rem; width: 100%; padding: 16px; font-size: 1rem; }
.form-success { display: none; text-align: center; padding: 2rem; }
.form-success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { color: var(--violet); margin-bottom: 0.5rem; }

/* ── BUY LABS ── */
.labs-section { background: var(--white); }
.labs-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 3rem; }
.lab-card {
  border-radius: 4px; overflow: hidden; transition: all 0.4s;
  border: 2px solid var(--border); position: relative;
}
.lab-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: var(--gold); }
.lab-card-header { padding: 1.5rem; text-align: center; }
.lab-card-header.junior { background: linear-gradient(135deg,#e8f5e9,#c8e6c9); }
.lab-card-header.standard { background: linear-gradient(135deg,var(--off),#e8e0f5); }
.lab-card-header.advanced { background: linear-gradient(135deg,var(--violet),var(--violet-mid)); }
.lab-card-header.individual { background: linear-gradient(135deg,#fff8e1,#ffecb3); }
.lab-tier { font-family: 'Roboto Mono', monospace; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; }
.lab-tier.junior { color: #2e7d32; }
.lab-tier.standard { color: var(--violet); }
.lab-tier.advanced { color: var(--gold); }
.lab-tier.individual { color: #e65100; }
.lab-price { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; }
.lab-price.advanced { color: #fff; }
.lab-card-body { padding: 1.5rem; }
.lab-capacity { font-size: 0.75rem; color: var(--muted); margin-bottom: 1rem; }
.lab-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.lab-features li { font-size: 0.8rem; color: var(--text); display: flex; gap: 8px; align-items: flex-start; }
.lab-features li::before { content: '✓'; color: var(--gold-dim); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.lab-cta { padding: 0 1.5rem 1.5rem; }
.lab-cta .btn { width: 100%; justify-content: center; }

/* ── DISTRIBUTOR ── */
.distributor-section { background: var(--violet); }
.distributor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.partner-types { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.partner-card {
  padding: 1.5rem; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px; cursor: pointer; transition: all 0.3s;
}
.partner-card:hover { background: rgba(255,215,0,0.1); border-color: rgba(255,215,0,0.3); }
.partner-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--gold); margin-bottom: 0.4rem; }
.partner-card p { font-size: 0.78rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.dist-benefits { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.dist-benefits li { display: flex; gap: 12px; align-items: flex-start; color: rgba(255,255,255,0.85); font-size: 0.88rem; }
.dist-benefits li::before { content: '→'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ── FOOTER ── */
.footer { background: var(--violet-dark); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-about p { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 1rem; line-height: 1.8; }
.footer-col h5 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: #fff; margin-bottom: 1.2rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0; font-size: 0.78rem; color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: var(--gold-dim); }
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 0.85rem; transition: all 0.3s; cursor: pointer;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.gold-ribbon { height: 4px; background: linear-gradient(90deg, var(--violet-mid), var(--gold), var(--violet-mid)); }

/* ── MARQUEE ── */
.marquee-section { background: var(--gold); padding: 18px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 3rem; animation: marquee 25s linear infinite; white-space: nowrap; }
.marquee-track span { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--violet-dark); }
.marquee-dot { color: var(--violet); opacity: 0.4; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── SECTION HEADER ── */
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header h2 { margin-bottom: 0.5rem; }
.section-header p { max-width: 560px; }
.section-header.center p { margin: 0 auto; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform: translateY(24px); } to { opacity:1; transform: translateY(0); } }
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── BACK TO TOP ── */
.btt {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 44px; height: 44px; background: var(--gold); color: var(--violet-dark);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer; opacity: 0; transform: translateY(10px);
  transition: all 0.3s; box-shadow: 0 4px 16px rgba(255,215,0,0.4); border: none;
}
.btt.show { opacity: 1; transform: translateY(0); }
.btt:hover { background: #e6c200; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  min-height: 340px; background: linear-gradient(135deg, var(--violet-dark), var(--violet-mid));
  display: flex; align-items: flex-end; padding: 100px 0 4rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .breadcrumb { font-size: 0.75rem; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.page-hero .breadcrumb a { color: var(--gold-dim); }
.page-hero h1 { color: #fff; max-width: 700px; }
.page-hero p { color: rgba(255,255,255,0.7); margin-top: 0.8rem; max-width: 560px; }

/* ── RESPONSIVE ── */




/* ── LOGO IMAGE ── */
.nav-logo { padding: 0 !important; gap: 0 !important; align-items: center; }
.navbar .nav-logo img {
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
}
.navbar .nav-logo img:hover { opacity: 0.88; }
footer a img,
.footer-about img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

/* ══ NEW PAGE STYLES (electronics, stem-kits, certifications, labs) ══ */

/* Ticker / marquee strip (inner pages) */
.ticker { background: var(--violet-dark); border-bottom: 1px solid rgba(255,215,0,.15); padding: 10px 0; overflow: hidden; }
.ticker-inner { display: flex; gap: 2.5rem; animation: marquee 28s linear infinite; white-space: nowrap; }
.ti { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,215,0,.7); }

/* Page hero — stat row */
.stat-row { display: flex; gap: 0; margin-top: 3rem; border: 1px solid rgba(255,215,0,.15); border-radius: 4px; overflow: hidden; }
.stat { flex: 1; padding: 1.4rem 1.2rem; background: rgba(255,255,255,.04); text-align: center; border-right: 1px solid rgba(255,215,0,.12); }
.stat:last-child { border-right: none; }
.stat-val { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-lbl { font-size: .68rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .1em; margin-top: .3rem; }

/* Breadcrumb */
.breadcrumb { font-size: .72rem; color: rgba(255,255,255,.45); letter-spacing: .08em; text-transform: uppercase; margin-bottom: .8rem; }
.breadcrumb a { color: var(--gold-dim); }
.breadcrumb span { margin: 0 .4rem; }

/* Eye (section eyebrow label) */
.eye { font-family: 'Roboto Mono', monospace; font-size: .68rem; color: var(--gold-dim); letter-spacing: .14em; text-transform: uppercase; margin-bottom: .6rem; display: block; }

/* Section light/dark variants */
.sec { padding: 80px 0; max-width: 1200px; margin: 0 auto; padding-left: 2rem; padding-right: 2rem; }
.sec.dark { background: var(--violet-dark); max-width: 100%; padding-left: 0; padding-right: 0; }
.sec.dark > * { max-width: 1200px; margin-left: auto; margin-right: auto; padding-left: 2rem; padding-right: 2rem; }
section.dark-bg { background: var(--violet-dark); padding: 80px 0; }
section.dark-bg .sec-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
section.light-bg { background: var(--off); padding: 80px 0; }
section.light-bg .sec-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
section.white-bg { background: var(--white); padding: 80px 0; }
section.white-bg .sec-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* Nav dropdown */
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dropdown > a { cursor: pointer; }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--violet-dark); border: 1px solid rgba(255,215,0,.18);
  border-radius: 6px; min-width: 230px; z-index: 9999; padding: 8px 0;
  box-shadow: 0 12px 40px rgba(0,0,0,.55);
  flex-direction: column;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: flex; }
.nav-dropdown-menu a {
  padding: 10px 18px; font-size: .82rem; color: rgba(255,255,255,.75);
  display: flex; align-items: center; gap: 10px; transition: background .2s;
  text-transform: none; letter-spacing: 0; white-space: nowrap;
  text-decoration: none;
}
.nav-dropdown-menu a:hover { background: rgba(255,215,0,.1); color: var(--gold); }
.nav-dropdown-menu a::after { display: none !important; }

/* Filter bar (electronics page) */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,215,0,.18);
  border-radius: 20px; padding: 8px 20px; font-size: .78rem; color: rgba(255,255,255,.6);
  cursor: pointer; font-family: 'Nunito Sans', sans-serif; font-weight: 600;
  transition: all .2s; letter-spacing: .04em;
}
.filter-btn:hover, .filter-btn.active {
  background: rgba(255,215,0,.12); border-color: var(--gold); color: var(--gold);
}

/* Category section */
.cat-section { margin-bottom: 60px; }
.cat-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,215,0,.12);
}
.cat-icon { font-size: 1.6rem; }
.cat-name { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 700; color: #fff; }
.cat-count {
  font-family: 'Roboto Mono', monospace; font-size: .7rem; color: var(--gold);
  background: rgba(255,215,0,.08); border: 1px solid rgba(255,215,0,.2);
  border-radius: 12px; padding: 3px 12px;
}

/* SKU grid */
.sku-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.sku-item {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,215,0,.1);
  border-radius: 8px; padding: 18px; transition: all .2s;
}
.sku-item:hover { border-color: var(--gold); background: rgba(255,215,0,.06); }
.sku-code { font-family: 'Roboto Mono', monospace; font-size: .65rem; color: var(--gold-dim); letter-spacing: .06em; margin-bottom: 6px; }
.sku-name { font-size: .82rem; font-weight: 700; color: #fff; margin-bottom: 4px; line-height: 1.4; }
.sku-spec { font-size: .72rem; color: rgba(255,255,255,.45); line-height: 1.45; }
.sku-enq {
  display: block; margin-top: 12px; text-align: center;
  border: 1px solid rgba(255,215,0,.2); border-radius: 4px;
  padding: 7px; font-size: .7rem; color: var(--gold-dim);
  font-weight: 700; letter-spacing: .04em; transition: all .2s;
}
.sku-enq:hover { background: rgba(255,215,0,.1); color: var(--gold); }

/* Category CTA bar */
.cat-cta {
  margin-top: 20px; padding: 16px 24px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,215,0,.1);
  border-radius: 8px; display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .8rem;
}
.cat-cta p { font-size: .8rem; color: rgba(255,255,255,.45); margin: 0; }
.btn-outline-sm {
  background: transparent; border: 1px solid rgba(255,215,0,.3);
  border-radius: 3px; padding: 8px 18px; font-size: .72rem; font-weight: 700;
  color: var(--gold-dim); letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer; transition: all .2s;
}
.btn-outline-sm:hover { border-color: var(--gold); color: var(--gold); }

/* Kit cards (STEM kits page) */
.cat-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.cat-tab {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,215,0,.18);
  border-radius: 6px; padding: 10px 22px; font-size: .8rem; font-weight: 700;
  color: rgba(255,255,255,.6); cursor: pointer; font-family: 'Nunito Sans', sans-serif;
  transition: all .2s; letter-spacing: .04em;
}
.cat-tab:hover, .cat-tab.active { background: rgba(255,215,0,.12); border-color: var(--gold); color: var(--gold); }
.kit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.kit-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,215,0,.12);
  border-radius: 8px; padding: 2rem; transition: all .3s;
}
.kit-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(255,215,0,.1); }
.kit-badge {
  font-family: 'Roboto Mono', monospace; font-size: .65rem; color: var(--gold);
  background: rgba(255,215,0,.08); border: 1px solid rgba(255,215,0,.2);
  border-radius: 12px; padding: 3px 12px; display: inline-block;
  margin-bottom: 14px; letter-spacing: .06em; text-transform: uppercase;
}
.kit-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; }
.kit-name { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.kit-desc { font-size: .82rem; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 16px; }
.kit-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.kit-meta span {
  font-family: 'Roboto Mono', monospace; font-size: .65rem;
  color: rgba(255,255,255,.55); background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,215,0,.12); border-radius: 5px; padding: 4px 10px;
}

/* hbox generic card */
.hbox {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,215,0,.12);
  border-radius: 8px; padding: 1.8rem;
}
.hbox h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: #fff; margin-bottom: .6rem; }
.hbox p { font-size: .82rem; color: rgba(255,255,255,.5); line-height: 1.7; margin: 0; }

/* grid-3 */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.card { background: var(--off); border: 1px solid var(--border); border-radius: 6px; padding: 2rem; }
.card-icon { font-size: 1.6rem; margin-bottom: .8rem; }
.card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--violet); margin-bottom: .5rem; }
.card p { font-size: .82rem; line-height: 1.65; }

/* CTA strip */
.strip {
  background: var(--gold); padding: 1.6rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.strip-t { font-size: .88rem; font-weight: 700; color: var(--violet-dark); letter-spacing: .04em; }
.strip-l {
  background: var(--violet-dark); color: var(--gold); padding: 10px 24px;
  border-radius: 3px; font-size: .78rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; transition: all .2s;
}
.strip-l:hover { background: var(--violet); }

/* Certification cards (new 3-column layout) */
.cert-card-new {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,215,0,.15);
  border-radius: 8px; padding: 2.2rem; transition: all .3s; position: relative; overflow: hidden;
}
.cert-card-new::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), #FFB300);
}
.cert-card-new:hover { border-color: var(--gold); transform: translateY(-4px); }
.cert-badge-tag {
  font-family: 'Roboto Mono', monospace; font-size: .65rem; color: var(--gold);
  background: rgba(255,215,0,.08); border: 1px solid rgba(255,215,0,.2);
  border-radius: 12px; padding: 3px 12px; display: inline-block;
  margin-bottom: 1rem; letter-spacing: .08em; text-transform: uppercase;
}
.cert-logo-em { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.cert-title-lg { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: .6rem; }
.cert-desc-sm { font-size: .82rem; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 1.2rem; }
.cert-modes { display: flex; gap: 8px; flex-wrap: wrap; }
.cert-mode {
  font-size: .68rem; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,215,0,.15); border-radius: 5px;
  padding: 4px 10px; color: rgba(255,255,255,.6); font-family: 'Roboto Mono', monospace;
}

/* Flow steps (certifications) */
.flow { display: flex; gap: 0; }
.flow-step { flex: 1; text-align: center; position: relative; padding: 0 12px; }
.flow-step::after {
  content: '→'; position: absolute; right: -10px; top: 20px;
  color: var(--gold); font-size: 1.1rem;
}
.flow-step:last-child::after { display: none; }
.fs-num {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), #FFB300);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  color: var(--violet-dark); margin: 0 auto 12px; font-size: 1rem;
}
.fs-title { font-family: 'Cormorant Garamond', serif; font-size: .9rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.fs-desc { font-size: .72rem; color: rgba(255,255,255,.45); line-height: 1.4; }

/* Programme grid */
.prog-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.prog-item {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,215,0,.1);
  border-radius: 8px; padding: 1.8rem; display: flex; gap: 1.2rem; align-items: flex-start;
}
.prog-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; flex-shrink: 0; min-width: 44px; }
.prog-title { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 5px; }
.prog-desc { font-size: .8rem; color: rgba(255,255,255,.5); line-height: 1.65; }

/* Labs — individual lab type cards */
.lab-type-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.lab-type-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 6px; overflow: hidden; transition: all .3s;
}
.lab-type-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.lab-type-head {
  padding: 1.6rem; border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 1rem;
  background: linear-gradient(135deg, var(--off), #ede8f8);
}
.lab-type-icon {
  width: 54px; height: 54px; border-radius: 8px; flex-shrink: 0;
  background: var(--gold-light); border: 2px solid rgba(255,215,0,.4);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.lab-type-head h3 { font-size: 1.1rem; color: var(--violet); margin-bottom: .2rem; }
.lab-type-sub { font-size: .72rem; color: var(--muted); font-family: 'Roboto Mono', monospace; }
.lab-type-body { padding: 1.6rem; }
.lab-tag-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 1.1rem; }
.lab-tag {
  padding: 3px 9px; background: var(--off); border: 1px solid var(--border);
  border-radius: 3px; font-size: .65rem; font-weight: 700; color: var(--violet);
  font-family: 'Roboto Mono', monospace;
}
.lab-spec-row { display: flex; gap: .6rem; font-size: .78rem; margin-bottom: .4rem; }
.lab-spec-row .spec-k { color: var(--muted); min-width: 100px; flex-shrink: 0; }
.lab-spec-row .spec-v { color: var(--text); font-weight: 600; }
.lab-equip-list { list-style: none; margin-top: .8rem; }
.lab-equip-list li { font-size: .78rem; color: var(--muted); padding: 4px 0; border-bottom: 1px solid var(--border); display: flex; gap: 8px; }
.lab-equip-list li::before { content: '✓'; color: var(--gold-dim); font-weight: 700; flex-shrink: 0; }
.lab-equip-list li:last-child { border-bottom: none; }

/* Responsive additions */




/* ── MOBILE NAV (≤1100px) ── */





/* ── 1100px: tablet + mobile nav ─────────────────────────────────── */


/* ── MOBILE NAV DRAWER (slides in from top) ─────────────────────── */


/* ── 768px: mobile ───────────────────────────────────────────────── */


/* ── 480px: small phones ─────────────────────────────────────────── */




/* ╔════════════════════════════════════════════════════════════════╗
   ║   PROCON ENTERPRISES — FULL RESPONSIVE SYSTEM                 ║
   ║   Built clean. Single source of truth.                        ║
   ╚════════════════════════════════════════════════════════════════╝ */

/* ── Base: prevent horizontal scroll on ALL pages ─────────────── */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
*, *::before, *::after {
  box-sizing: border-box;
}

/* ── HAMBURGER: always in nav-inner, never fixed ─────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 9px 8px;
  background: none;
  border: none;
  z-index: 10001;
  position: relative;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .28s ease, opacity .2s ease, background .2s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── DRAWER: class-based, full-screen overlay ─────────────────── */
.nav-links.nav-open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  inset: 0;                          /* top right bottom left = 0 */
  z-index: 9000;
  background: rgba(10, 4, 30, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 90px 2rem 2.5rem;
  overflow-y: auto;
  gap: 0;
  align-items: flex-start;
  justify-content: flex-start;
}
/* Lock body scroll when drawer open */
body.drawer-open { overflow: hidden; }

.nav-links.nav-open a {
  display: block !important;
  padding: .95rem 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: rgba(255,255,255,.82);
  border-bottom: 1px solid rgba(255,215,0,.1);
  text-transform: uppercase;
  width: 100%;
}
.nav-links.nav-open a:hover,
.nav-links.nav-open a.active { color: var(--gold); }

/* Labs dropdown inside drawer */
.nav-links.nav-open .nav-dropdown { display: block; width: 100%; }
.nav-links.nav-open .nav-dropdown > a { padding: .95rem 0; }
.nav-links.nav-open .nav-dropdown-menu {
  display: flex !important;
  flex-direction: column;
  position: static !important;
  background: rgba(255,215,0,.04);
  border: none;
  border-left: 2px solid rgba(255,215,0,.18);
  margin: .2rem 0 .5rem 1rem;
  padding: .2rem 0;
  box-shadow: none;
  min-width: unset;
  border-radius: 0;
  gap: 0;
}
.nav-links.nav-open .nav-dropdown-menu a {
  font-size: .82rem;
  font-weight: 500;
  padding: .5rem 1rem;
  border-bottom: none;
  letter-spacing: .03em;
  text-transform: none;
  color: rgba(255,255,255,.65);
}
.nav-links.nav-open .nav-dropdown-menu a:hover { color: var(--gold); border-bottom: none; }

/* ── 1100px: tablet ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .hamburger { display: flex; }

  /* Grids */
  .divisions-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .labs-grid      { grid-template-columns: repeat(2, 1fr); }
  .sku-grid       { grid-template-columns: repeat(3, 1fr); }
  .kit-grid       { grid-template-columns: repeat(2, 1fr); }
  .grid-3         { grid-template-columns: repeat(2, 1fr); }
  .lab-type-grid  { grid-template-columns: 1fr; }
  .services-grid  { grid-template-columns: 1fr 1fr; }
  .partner-types  { grid-template-columns: 1fr; }
  .flow-step      { flex: 0 0 calc(33% - 1rem); }
  .flow-step::after { display: none; }
  .flow           { flex-wrap: wrap; gap: 1.5rem; }
  .about-grid, .global-grid, .enquiry-grid,
  .distributor-grid { grid-template-columns: 1fr; }
  .about-visual   { display: none; }
  .hero-stats     { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom  { flex-direction: column; gap: 1rem; }
  .prod-panel.active { grid-template-columns: repeat(2, 1fr); }
}

/* ── 768px: mobile ────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Hero */
  .hero { padding: 80px 0 0; }
  .hero h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); max-width: 100%; }
  .hero-sub { font-size: .92rem; max-width: 100%; }
  .hero-content { max-width: 100%; padding: 0 1.25rem; }
  .hero-globe { display: none; }  /* hide on mobile - causes overflow */
  .section { padding: 3rem 0; }
  .container { padding: 0 1.1rem; }

  /* Grids → 1 col */
  .services-grid   { grid-template-columns: 1fr; }
  .sku-grid        { grid-template-columns: repeat(2, 1fr); }
  .kit-grid        { grid-template-columns: 1fr; }
  .stat-row        { flex-wrap: wrap; }
  .stat            { flex: 0 0 50%; }
  .cat-cta         { flex-direction: column; align-items: flex-start; }
  .grid-3          { grid-template-columns: 1fr; }
  .flow-step       { flex: 0 0 100%; }
  .cert-card-new   { padding: 1.5rem; }
  .footer-grid     { grid-template-columns: 1fr; }
  .footer-bottom   { flex-direction: column; gap: .8rem; }
  .divisions-grid  { grid-template-columns: 1fr 1fr; }
  .prog-grid       { grid-template-columns: 1fr; }
  .cert-grid       { grid-template-columns: 1fr; }
  .labs-grid       { grid-template-columns: 1fr; }

  /* Country cards: 2×2 */
  .country-cards-grid { grid-template-columns: repeat(5, 1fr); }

  /* Map */
  #procon-map { height: 280px !important; }

  /* Dropdown stays hidden on mobile (shown in drawer) */
  .nav-dropdown-menu { position: static; display: none; box-shadow: none; }
}

/* ── 480px: small phones ──────────────────────────────────────── */
@media (max-width: 480px) {
  .hero h1   { font-size: 1.6rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-btns  { flex-direction: column; gap: .7rem; }
  .form-grid  { grid-template-columns: 1fr; }
  .sku-grid   { grid-template-columns: 1fr; }
  .stat       { flex: 0 0 100%; }
  .divisions-grid { grid-template-columns: 1fr; }
  .country-cards-grid { grid-template-columns: 1fr !important; }
  #procon-map { height: 220px !important; }
}


/* ═══════════════════════════════════════════════════════════
   PREMIUM IMAGE SYSTEM
   ═══════════════════════════════════════════════════════════ */

/* Page hero with image */
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: .32;
}
.page-hero { position: relative; }
.page-hero-content { position: relative; z-index: 1; }

/* Homepage hero with image */
.hero-img-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: .18;
}
.hero > *:not(.hero-globe):not(.hero-img-bg) { position: relative; z-index: 1; }

/* Two-column image+text layout */
.img-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.img-text-grid.reverse { direction: rtl; }
.img-text-grid.reverse > * { direction: ltr; }

.section-img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  height: 380px;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
}

/* Full bleed cinematic banner */
.cinematic-banner {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
  margin: 2rem 0;
}
.cinematic-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cinematic-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,27,94,.85) 0%, rgba(106,27,154,.6) 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 2.5rem 3rem;
}

/* Lab card with image header */
.lab-img-header {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 8px 8px 0 0;
  margin-bottom: 1.2rem;
}
.lab-type-card { overflow: hidden; }

/* Category image strip */
.cat-img-strip {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin-bottom: 1.5rem;
}

/* Location card with image */
.location-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
  display: block;
}

/* About split layout */
.about-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0,0,0,.15);
  display: block;
}

/* Kit card image */
.kit-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  display: block;
  margin: -1.5rem -1.5rem 1.2rem -1.5rem;
  width: calc(100% + 3rem);
}

@media (max-width: 768px) {
  .img-text-grid { grid-template-columns: 1fr; gap: 2rem; }
  .img-text-grid.reverse { direction: ltr; }
  .section-img { height: 260px; }
  .cinematic-banner { height: 280px; }
  .cinematic-banner-overlay { padding: 1.5rem; }
  .about-img { height: 280px; }
}
