/* ==========================================================
   Sparkle Management Services (SMS) - smscert.in
   Modern Frontend Stylesheet
   ========================================================== */

:root {
  --navy: #0e3a2e;
  --navy-2: #14523d;
  --navy-3: #1b6449;
  --green-tint: #e8f3ec;
  --gold: #d9a521;
  --gold-2: #f2c14e;
  --ink: #31445b;
  --ink-soft: #5a6f87;
  --muted: #8395a9;
  --line: #e7ecf2;
  --bg-light: #f4f7fb;
  --bg-soft: #eef3f9;
  --white: #ffffff;
  --shadow-sm: 0 4px 14px rgba(11, 34, 57, 0.08);
  --shadow-md: 0 12px 34px rgba(11, 34, 57, 0.12);
  --shadow-lg: 0 24px 60px rgba(11, 34, 57, 0.18);
  --radius: 14px;
  --radius-sm: 9px;
  --font-body: "Open Sans", Arial, sans-serif;
  --font-head: "Poppins", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  font-size: 15.5px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color .25s ease; }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-head); color: var(--navy); line-height: 1.25; font-weight: 700; }
p { color: var(--ink); }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 84px 0; position: relative; }
.section-sm { padding: 56px 0; }

/* Border top helpers */
.brd { border-top: 1px solid var(--line); }
.brd-b { border-bottom: 1px solid var(--line); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 14px;
  padding: 13px 26px; border-radius: 50px; border: none; cursor: pointer;
  transition: all .28s ease; white-space: nowrap; letter-spacing: .3px;
}
.btn svg { width: 16px; height: 16px; }
.btn-lg { padding: 16px 34px; font-size: 15px; }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: var(--navy); box-shadow: 0 8px 22px rgba(240, 165, 0, .35); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(240, 165, 0, .45); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-3); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.12); }
.btn-outline-navy { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: #fff; }

/* ============ SECTION HEADINGS ============ */
.section-head { text-align: center; max-width: 700px; margin: 0 auto 54px; }
.section-head.left { text-align: left; margin-left: 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 12.5px;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold);
  background: rgba(240, 165, 0, .12); padding: 7px 16px; border-radius: 50px; margin-bottom: 16px;
}
.section-head h2 { font-size: 38px; margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-size: 16px; }
@media (max-width: 767px){ .section-head h2 { font-size: 28px; } .section { padding: 60px 0; } }

/* ============ TOP BAR ============ */
.topbar { background: var(--navy); color: rgba(255,255,255,.85); font-size: 13px; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; min-height: 40px; flex-wrap: wrap; gap: 6px; }
.topbar-links { display: flex; align-items: center; gap: 22px; }
.topbar-links a, .topbar-links span { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.85); }
.topbar-links a:hover { color: var(--gold-2); }
.topbar-links svg { width: 14px; height: 14px; fill: currentColor; }
.topbar-socials { display: flex; gap: 4px; }
.topbar-socials a { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.1); }
.topbar-socials a:hover { background: var(--gold); color: var(--navy); }
.topbar-socials svg { width: 13px; height: 13px; fill: currentColor; }
.topbar-tag { color: var(--gold-2); font-weight: 600; letter-spacing: 1px; }

/* ============ HEADER / NAVBAR ============ */
.site-header { position: sticky; top: 0; z-index: 1000; background: var(--green-tint); border-bottom: 1px solid rgba(217,165,33,.45); transition: box-shadow .3s ease; }
.site-header::before { content:""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-2), var(--gold)); z-index: 2; }
.site-header.scrolled { box-shadow: 0 8px 30px rgba(14,58,46,.14); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 52px; height: 52px; object-fit: contain; border-radius: 10px; background: #fff; padding: 3px; }
.brand-name { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name strong { font-family: var(--font-head); font-size: 17px; color: var(--navy); letter-spacing: .3px; }
.brand-name span { font-size: 11px; color: var(--gold); font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; }

.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  position: relative; display: flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-weight: 600; font-size: 13px; color: var(--navy);
  padding: 10px 18px; border-radius: 50px; text-transform: uppercase; letter-spacing: .5px;
  transition: all .28s ease; margin: 0 1px;
}
.nav-menu > li > a:hover { background: var(--navy-2); color: #fff; }
.nav-menu > li > a.active { background: var(--navy); color: #fff; box-shadow: 0 4px 14px rgba(14,58,46,.25); }
.nav-menu > li > a.active .caret { fill: #fff; }
.nav-menu > li > a .caret { width: 11px; height: 11px; fill: currentColor; transition: transform .25s ease; }
.nav-menu > li:hover > a .caret { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 270px; background: #fff;
  border-radius: 0 0 14px 14px; box-shadow: var(--shadow-md); padding: 12px;
  visibility: hidden; opacity: 0; transform: translateY(14px); transition: all .28s ease;
  border-top: 3px solid var(--gold);
}
.nav-menu > li:hover .dropdown { visibility: visible; opacity: 1; transform: translateY(0); }
.dropdown a {
  display: flex; align-items: center; gap: 12px; padding: 12px 15px; border-radius: 10px;
  font-size: 14px; font-weight: 600; color: var(--ink); position: relative;
}
.dropdown a::before {
  content: ""; position: absolute; left: 15px; bottom: 12px; width: 0; height: 2px;
  background: var(--gold); transition: width .3s ease;
}
.dropdown a:hover { background: var(--green-tint); color: var(--navy-2); padding-left: 19px; }
.dropdown a:hover::before { width: 22px; }
.dropdown svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; }

.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-trigger { display: none; }
.mobile-close { display: none; }

/* ============ HERO SLIDER ============ */
.hero { position: relative; min-height: 640px; overflow: hidden; background: var(--navy); }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; z-index: 1;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(4,30,22,.92) 0%, rgba(9,47,35,.78) 42%, rgba(9,47,35,.25) 100%);
}
.hero-content { position: relative; z-index: 3; height: 640px; display: flex; flex-direction: column; justify-content: center; }
.hero-content .tag {
  display: inline-flex; align-items: center; gap: 8px; width: fit-content;
  background: rgba(255,197,49,.15); border: 1px solid rgba(255,197,49,.4); color: var(--gold-2);
  font-family: var(--font-head); font-size: 12.5px; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 8px 18px; border-radius: 50px; margin-bottom: 22px;
}
.hero-content h1 { color: #fff; font-size: 52px; margin-bottom: 16px; }
.hero-content h1 span { color: var(--gold-2); }
.hero-content .sub {
  color: rgba(255,255,255,.82); font-size: 15.5px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; margin-bottom: 14px;
}
.hero-content p { color: rgba(255,255,255,.85); font-size: 17px; max-width: 560px; margin-bottom: 30px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-indicators { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 9px; }
.hero-indicators button { width: 34px; height: 5px; border-radius: 4px; border: none; background: rgba(255,255,255,.35); cursor: pointer; transition: background .3s; }
.hero-indicators button.active { background: var(--gold); }
.hero-arrows { position: absolute; inset: 0; z-index: 6; pointer-events: none; }
.hero-arrows button {
  pointer-events: auto; position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 12px; border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.1); color: #fff; cursor: pointer; display: grid; place-items: center; transition: all .25s;
}
.hero-arrows button:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.hero-arrows .prev { left: 22px; }
.hero-arrows .next { right: 22px; }
.hero-arrows svg { width: 20px; height: 20px; fill: currentColor; }
@media (max-width: 991px){ .hero, .hero-content { min-height: 520px; height: 520px; } .hero-content h1 { font-size: 34px; } }
@media (max-width: 767px){ .hero, .hero-content { min-height: 460px; height: 460px; } .hero-content h1 { font-size: 27px; } .hero-content p { font-size: 15px; } }

/* trusted strip */
.trust-strip { background: var(--navy); }
.trust-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 26px 22px; color: #fff; border-right: 1px solid rgba(255,255,255,.12); }
.trust-item:last-child { border-right: none; }
.trust-item .t-ico { width: 46px; height: 46px; border-radius: 12px; background: rgba(240,165,0,.16); display: grid; place-items: center; flex-shrink: 0; }
.trust-item .t-ico svg { width: 22px; height: 22px; fill: var(--gold-2); }
.trust-item strong { font-family: var(--font-head); font-size: 19px; display: block; color: #fff; line-height: 1.2; }
.trust-item span { font-size: 12.5px; color: rgba(255,255,255,.72); }
@media (max-width: 991px){ .trust-strip .container { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px){ .trust-strip .container { grid-template-columns: 1fr; } .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); } }

/* ============ WHY CHOOSE US ============ */
.splits { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.splits.reverse .visual { order: 2; }
.visual { position: relative; }
.visual .frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.visual .frame img { width: 100%; height: 100%; object-fit: cover; }
.visual .badge-float {
  position: absolute; bottom: -20px; right: -14px; background: var(--navy); color: #fff;
  padding: 22px 26px; border-radius: var(--radius); box-shadow: var(--shadow-lg); display: flex; gap: 14px; align-items: center;
}
.visual .badge-float strong { font-family: var(--font-head); font-size: 30px; color: var(--gold-2); line-height: 1; }
.visual .badge-float span { font-size: 12.5px; line-height: 1.35; display: block; color: rgba(255,255,255,.85); }
.acc-list { margin-top: 20px; display: flex; flex-direction: column; gap: 13px; }
.acc-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--ink); }
.acc-list svg { width: 20px; height: 20px; fill: var(--gold); flex-shrink: 0; margin-top: 3px; }
.part { display: flex; gap: 12px; margin-top: 28px; align-items: center; }
.part .ava { display: flex; }
.part .ava img { width: 44px; height: 44px; border-radius: 50%; border: 3px solid #fff; box-shadow: var(--shadow-sm); margin-left: -10px; }
.part .ava img:first-child { margin-left: 0; }
.part b { font-family: var(--font-head); color: var(--navy); font-size: 14px; }
.part span { font-size: 12.5px; color: var(--muted); }
@media (max-width: 991px){ .splits { grid-template-columns: 1fr; gap: 46px; } .splits.reverse .visual { order: 0; } }

/* ============ COUNTERS ============ */
.counters { background: linear-gradient(120deg, var(--navy), var(--navy-3)); position: relative; overflow: hidden; }
.counters::before { content:""; position:absolute; width:420px; height:420px; border-radius:50%; background: radial-gradient(circle, rgba(240,165,0,.18), transparent 70%); top:-140px; right:-80px; }
.counter-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; position: relative; }
.counter-box { text-align: center; padding: 30px 16px; border-radius: var(--radius); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); transition: all .3s; }
.counter-box:hover { transform: translateY(-6px); background: rgba(255,255,255,.09); }
.counter-box .c-ico { width: 58px; height: 58px; margin: 0 auto 14px; border-radius: 14px; background: rgba(240,165,0,.18); display: grid; place-items: center; }
.counter-box .c-ico svg { width: 26px; height: 26px; fill: var(--gold-2); }
.counter-box .num { font-family: var(--font-head); font-weight: 700; font-size: 40px; color: #fff; }
.counter-box .num span { color: var(--gold-2); }
.counter-box p { color: rgba(255,255,255,.75); font-size: 14px; margin-top: 4px; }
@media (max-width: 991px){ .counter-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px){ .counter-grid { grid-template-columns: 1fr; } }

/* ============ SERVICES GRID ============ */
.bg-soft { background: var(--bg-light); }
.service-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 26px; }
.service-card {
  background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); transition: all .32s ease; display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card .sc-thumb { position: relative; }
.service-card .sc-thumb img { width: 100%; height: 178px; object-fit: cover; }
.service-card .sc-thumb::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 40%, rgba(14,58,46,.55)); }
.service-card .sc-ico {
  position: absolute; left: 20px; bottom: -24px; width: 52px; height: 52px; border-radius: 13px; z-index: 2;
  background: linear-gradient(135deg, var(--gold), var(--gold-2)); display: grid; place-items: center; box-shadow: 0 10px 22px rgba(240,165,0,.4);
}
.service-card .sc-ico svg { width: 25px; height: 25px; fill: var(--navy); }
.service-card .sc-body { padding: 42px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.service-card .sc-body h3 { font-size: 18px; margin-bottom: 9px; }
.service-card .sc-body p { font-size: 13.8px; color: var(--ink-soft); flex: 1; }
.sc-link { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 600; font-size: 13px; color: var(--gold); margin-top: 16px; }
.sc-link svg { width: 15px; height: 15px; fill: currentColor; transition: transform .25s; }
.service-card:hover .sc-link svg { transform: translateX(5px); }
@media (max-width: 991px){ .service-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .service-grid { grid-template-columns: 1fr; } }

/* ============ HOW IT WORKS ============ */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 26px; counter-reset: step; }
.step-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 24px 30px; box-shadow: var(--shadow-sm); transition: all .3s; }
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
.step-card .s-no {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 18px;
  font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--navy); background: rgba(240,165,0,.16);
}
.step-card .s-ico { position: absolute; top: 26px; right: 24px; width: 40px; height: 40px; border-radius: 10px; background: var(--bg-light); display: grid; place-items: center; }
.step-card .s-ico svg { width: 20px; height: 20px; fill: var(--navy-3); }
.step-card h3 { font-size: 17px; margin-bottom: 10px; }
.step-card p { font-size: 13.8px; color: var(--ink-soft); }
.step-line { position: absolute; top: 72px; left: calc(100% - 28px); width: 26px; bottom: auto; }
@media (max-width: 991px){ .steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .steps { grid-template-columns: 1fr; } }
.hiw-alt { display: flex; flex-direction: column; gap: 20px; max-width: 860px; margin: 0 auto; }
.hiw-alt .hp { display: flex; gap: 18px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; box-shadow: var(--shadow-sm); }
.hiw-alt .hp .ic { width: 46px; height: 46px; border-radius: 12px; background: rgba(240,165,0,.16); display: grid; place-items: center; flex-shrink: 0; }
.hiw-alt .hp .ic svg { width: 21px; height: 21px; fill: var(--gold); }
.hiw-alt .hp h4 { font-size: 16.5px; margin-bottom: 5px; }
.hiw-alt .hp p { font-size: 14.2px; color: var(--ink-soft); }

/* ============ CTA BAND ============ */
.cta-band { background: linear-gradient(115deg, var(--gold), var(--gold-2)); border-radius: var(--radius); padding: 46px 52px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; position: relative; overflow: hidden; box-shadow: 0 20px 50px rgba(240,165,0,.3); }
.cta-band::after { content:"✓"; position:absolute; font-size: 240px; color: rgba(14,58,46,.08); right: -10px; top: -60px; font-family: var(--font-head); }
.cta-band h2 { color: var(--navy); font-size: 28px; margin-bottom: 6px; }
.cta-band p { color: var(--navy); opacity: .8; font-weight: 600; }
.cta-band .btn { background: var(--navy); color: #fff; box-shadow: 0 10px 26px rgba(14,58,46,.3); }
.cta-band .btn:hover { transform: translateY(-2px); background: var(--navy-3); }

/* ============ VERIFY STRIP ============ */
.verify-band { background: var(--bg-light); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; display: flex; gap: 30px; align-items: center; flex-wrap: wrap; }
.verify-band .vb-ico { width: 62px; height: 62px; border-radius: 16px; background: rgba(240,165,0,.16); display: grid; place-items: center; flex-shrink: 0; }
.verify-band .vb-ico svg { width: 30px; height: 30px; fill: var(--gold); }
.verify-band h3 { font-size: 20px; margin-bottom: 3px; }
.verify-band p { font-size: 14px; color: var(--ink-soft); }
.verify-fields { display: flex; gap: 12px; flex: 1; min-width: 260px; flex-wrap: wrap; }
.verify-fields .field { flex: 1; min-width: 170px; }

/* ============ FORMS ============ */
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: 13px; color: var(--navy); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 14.5px; color: var(--ink); background: #fff; transition: border .25s, box-shadow .25s; outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(240,165,0,.14); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2331445b' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.field textarea { resize: vertical; min-height: 120px; }
  .field .field-hint { font-size: 12px; color: var(--ink-soft); margin: -2px 0 2px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 6px; }
.form-feedback { margin-top: 16px; padding: 14px 18px; border-radius: var(--radius-sm); font-size: 14px; display: none; }
.form-feedback.ok { display: block; background: #e9f9f0; border: 1px solid #bfe9d3; color: #156b45; }
.form-feedback svg { width: 18px; height: 18px; fill: #156b45; vertical-align: -4px; margin-right: 6px; }

/* ============ PAGE HERO (inner pages) ============ */
.page-hero { position: relative; background: var(--navy); padding: 78px 0; overflow: hidden; }
.page-hero::before { content:""; position:absolute; width:460px; height:460px; border-radius:50%; background: radial-gradient(circle, rgba(240,165,0,.22), transparent 70%); top:-160px; right:-90px; }
.page-hero::after { content:""; position:absolute; width:300px;height:300px; border-radius:50%; background: radial-gradient(circle, rgba(255,255,255,.08), transparent 70%); bottom:-120px; left:-60px; }
.page-hero h1 { color: #fff; font-size: 38px; margin-bottom: 10px; position: relative; }
.page-hero .crumb { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: rgba(255,255,255,.7); position: relative; flex-wrap: wrap; }
.page-hero .crumb a:hover { color: var(--gold-2); }
.page-hero .crumb svg { width: 13px; height: 13px; fill: var(--gold); }
.page-hero .crumb .sep { fill: rgba(255,255,255,.4); }
.page-hero .crumb .here { color: var(--gold-2); font-weight: 600; }
@media (max-width: 767px){ .page-hero { padding: 54px 0; } .page-hero h1 { font-size: 28px; } }

/* Page layout */
.page-body { display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: start; }
.page-side { position: sticky; top: 100px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 12px; box-shadow: var(--shadow-sm); }
.page-side h4 { font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); padding: 8px 14px 12px; border-bottom: 1px solid var(--line); margin-bottom: 10px; }
.page-side a { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 9px; font-size: 14px; color: var(--ink); font-weight: 600; }
.page-side a svg { width: 16px; height: 16px; fill: var(--gold); }
.page-side a:hover { background: var(--bg-light); color: var(--navy); }
.page-side a.active { background: var(--navy); color: #fff; }
.page-side a.active svg { fill: var(--gold-2); }
@media (max-width: 991px){ .page-body { grid-template-columns: 1fr; } .page-side { position: static; } }

/* content typography */
.content-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 40px 44px; box-shadow: var(--shadow-sm); }
.content-card h2 { font-size: 27px; margin-bottom: 16px; position: relative; padding-bottom: 14px; }
.content-card h2::after { content:""; position:absolute; left:0; bottom:0; width: 56px; height: 4px; border-radius: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-2)); }
.content-card h3 { font-size: 20px; margin: 26px 0 12px; color: var(--navy-2); }
.content-card p { margin-bottom: 14px; }
.content-card ul.pro { margin: 6px 0 18px; display: flex; flex-direction: column; gap: 10px; }
.content-card ul.pro li { display: flex; gap: 12px; align-items: flex-start; }
.content-card ul.pro li svg { width: 19px; height: 19px; fill: var(--gold); flex-shrink: 0; margin-top: 4px; }
.content-card ul.plain { margin: 6px 0 18px; padding-left: 4px; }
.content-card ul.plain li { position: relative; padding: 8px 0 8px 26px; border-bottom: 1px dashed var(--line); }
.content-card ul.plain li::before { content:""; position:absolute; left: 4px; top: 16px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.content-card strong { color: var(--navy); }
.lead { font-size: 17px; color: var(--ink-soft); }
@media (max-width: 600px){ .content-card { padding: 26px 22px; } }

/* ============ VERIFY PAGE ============ */
.verify-wrap { max-width: 640px; margin: 0 auto; }
.verify-shield { text-align: center; margin-bottom: 26px; }
.verify-shield svg { width: 74px; height: 74px; fill: var(--gold); filter: drop-shadow(0 10px 20px rgba(240,165,0,.35)); }
.verify-result { margin-top: 24px; display: none; }
.verify-result.ok, .verify-result.bad { display: block; padding: 20px 24px; border-radius: var(--radius-sm); font-size: 14.5px; }
.verify-result.ok { background: #e9f9f0; border: 1px solid #bfe9d3; color: #156b45; }
.verify-result.bad { background: #fdeeee; border: 1px solid #f5c2c2; color: #9c2727; }
.verify-result svg { width: 20px; height: 20px; vertical-align: -4px; margin-right: 6px; }

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: start; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.contact-card h3 { font-size: 20px; margin-bottom: 18px; }
.ci-list { display: flex; flex-direction: column; gap: 16px; }
.ci-list li { display: flex; gap: 15px; align-items: flex-start; }
.ci-list .ci-ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(240,165,0,.16); display: grid; place-items: center; flex-shrink: 0; }
.ci-list .ci-ic svg { width: 20px; height: 20px; fill: var(--gold); }
.ci-list b { display: block; font-family: var(--font-head); color: var(--navy); font-size: 14px; }
.ci-list p, .ci-list a { font-size: 14px; color: var(--ink-soft); }
.ci-list a:hover { color: var(--gold); }
.map-frame { margin-top: 20px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-frame iframe { width: 100%; height: 230px; border: 0; display: block; }
@media (max-width: 991px){ .contact-grid { grid-template-columns: 1fr; } }

/* ============ FOOTER ============ */
.site-footer { background: var(--navy); color: rgba(255,255,255,.78); margin-top: 0; }
.site-footer .f-top { padding: 66px 0 46px; }
.f-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.f-brand img { width: 58px; margin-bottom: 16px; }
.f-brand p { font-size: 14px; color: rgba(255,255,255,.72); max-width: 340px; }
.f-col h4 { color: #fff; font-size: 16px; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.f-col h4::after { content:""; position: absolute; left: 0; bottom: 0; width: 34px; height: 3px; border-radius: 3px; background: var(--gold); }
.f-col ul { display: flex; flex-direction: column; gap: 11px; }
.f-col ul a { font-size: 14px; color: rgba(255,255,255,.75); display: inline-flex; align-items: center; gap: 9px; }
.f-col ul a svg { width: 13px; height: 13px; fill: var(--gold); }
.f-col ul a:hover { color: var(--gold-2); padding-left: 4px; }
.f-contact li { display: flex; gap: 12px; font-size: 14px; color: rgba(255,255,255,.78); align-items: flex-start; }
.f-contact svg { width: 17px; height: 17px; fill: var(--gold); flex-shrink: 0; margin-top: 3px; }
.f-contact a:hover { color: var(--gold-2); }
.f-contact li + li { margin-top: 13px; }
.f-news p { font-size: 13.5px; color: rgba(255,255,255,.72); margin: 14px 0 12px; }
.f-socials { display: flex; gap: 10px; margin-top: 16px; }
.f-socials a { width: 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,.08); display: grid; place-items: center; }
.f-socials a:hover { background: var(--gold); }
.f-socials svg { width: 17px; height: 17px; fill: #fff; }
.f-socials a:hover svg { fill: var(--navy); }
.f-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.f-bottom .container { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13.5px; }
.f-bottom a { color: var(--gold-2); }
@media (max-width: 991px){ .f-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .f-grid { grid-template-columns: 1fr; } }

/* ============ REVEAL ANIMATIONS ============ */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].revealed { opacity: 1; transform: none; }
[data-reveal="left"] { transform: translateX(-34px); }
[data-reveal="right"] { transform: translateX(34px); }
[data-reveal="left"].revealed, [data-reveal="right"].revealed { transform: none; }
.stagger > * { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.stagger.in > * { opacity: 1; transform: none; }
.stagger > *:nth-child(1) { transition-delay: .05s; }
.stagger > *:nth-child(2) { transition-delay: .15s; }
.stagger > *:nth-child(3) { transition-delay: .25s; }
.stagger > *:nth-child(4) { transition-delay: .35s; }

/* ============ BACK TO TOP ============ */
.to-top { position: fixed; right: 22px; bottom: 22px; z-index: 900; width: 46px; height: 46px; border-radius: 12px; background: var(--gold); border: none; cursor: pointer; display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translateY(12px); transition: all .3s; box-shadow: 0 10px 26px rgba(240,165,0,.4); }
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top svg { width: 19px; height: 19px; fill: var(--navy); }

/* ============ RESPONSIVE / MOBILE NAV ============ */
@media (max-width: 991px) {
  .nav-trigger { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 10px; background: var(--navy); color: #fff; border: none; cursor: pointer; }
  .nav-trigger svg { width: 20px; height: 20px; fill: #fff; }
  .nav-trigger .x { display: none; }
  .mobile-close { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--line); }
  .mobile-close .brand-name strong { font-size: 15px; }
  .mobile-close button { background: none; border: none; cursor: pointer; }
  .mobile-close svg { width: 20px; height: 20px; fill: var(--navy); }
  .nav-menu {
    position: fixed; top: 0; right: -100%; width: min(84vw, 340px); height: 100%; background: #fff;
    flex-direction: column; align-items: stretch; gap: 0; z-index: 1200; transition: right .38s ease;
    padding-bottom: 40px; overflow-y: auto; box-shadow: -18px 0 60px rgba(4,30,22,.25);
  }
  .nav-menu.open { right: 0; }
  .nav-menu > li > a { padding: 15px 22px; border-bottom: 1px solid var(--line); }
  .nav-menu > li { position: static; }
  .dropdown {
    position: static; visibility: visible; opacity: 1; transform: none; box-shadow: none;
    border-top: none; border-radius: 0; display: none; padding: 0 12px 8px; background: var(--bg-light);
  }
  .nav-menu > li.open .dropdown { display: block; }
  .nav-menu > li > a .caret { margin-left: auto; }
  .nav-cta { margin-left: auto; }
  .nav-overlay { position: fixed; inset: 0; background: rgba(4,30,22,.55); z-index: 1100; opacity: 0; visibility: hidden; transition: all .3s; }
  .nav-overlay.show { opacity: 1; visibility: visible; }
}
/* ==========================================================
   ISO Enquiry Popup
   ========================================================== */
.hp { position:absolute; left:-9999px; opacity:0; height:0; width:0; }
.enq-fab {
  position: fixed; right: 26px; bottom: 26px; z-index: 1200; width: 58px; height: 58px;
  border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #fff; border: 0; cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(217,165,33,.45); transition: transform .25s ease;
}
.enq-fab svg { width: 26px; height: 26px; fill: var(--navy); }
.enq-fab:hover { transform: translateY(-4px); }
.enq-popup {
  position: fixed; inset: 0; z-index: 1300; display: flex; align-items: center; justify-content: center;
  padding: 18px; visibility: hidden; opacity: 0; transition: all .28s ease;
  background: rgba(7,32,23,.55);
}
.enq-popup.show { visibility: visible; opacity: 1; }
.enq-card {
  width: 100%; max-width: 460px; max-height: 92vh; overflow-y: auto; background: #fff;
  border-radius: 18px; padding: 28px 30px; border-top: 5px solid var(--gold);
  transform: translateY(24px); transition: transform .3s ease; box-shadow: 0 26px 70px rgba(0,0,0,.35);
}
.enq-popup.show .enq-card { transform: translateY(0); }
.enq-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.enq-head h3 { margin: 4px 0 0; color: var(--navy); font-family: var(--font-head); font-size: 21px; }
.enq-sub { color: var(--ink-soft); font-size: 13.5px; margin: 10px 0 4px; }
.enq-close {
  border: 0; background: var(--bg-light); width: 38px; height: 38px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.enq-close svg { width: 18px; height: 18px; fill: var(--ink); }
.enq-close:hover { background: rgba(217,165,33,.15); }

/* ==========================================================
   Certificate Verify Result
   ========================================================== */
.verify-result { margin-top: 22px; border-radius: 13px; padding: 18px 20px; font-size: 14px; line-height: 1.6; text-align: left; }
.verify-result > svg { width: 22px; height: 22px; vertical-align: -5px; margin-right: 6px; }
.verify-result.good { background: #e9f6ed; border: 1px solid #bce4ca; color: #15583a; }
.verify-result.bad { background: #fdf1f0; border: 1px solid #f0c9c4; color: #9c2727; }
.verify-result.good > svg { fill: #1b7a4b; }
.verify-result.bad > svg { fill: #b0302a; }
.vr-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.vr-head > svg { width: 26px; height: 26px; fill: #1b7a4b; }
.vr-head strong { font-size: 16px; font-family: var(--font-head); }
.vr-status { margin-left: auto; background: var(--navy); color: #fff; font-size: 11.5px; font-weight: 700; padding: 4px 12px; border-radius: 20px; letter-spacing: .6px; text-transform: uppercase; }
.vr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; margin: 0; }
.vr-grid dt { font-size: 11.5px; text-transform: uppercase; letter-spacing: .5px; color: #4a8a63; font-weight: 700; }
.vr-grid dd { margin: 2px 0 0; font-weight: 600; color: #14553a; word-break: break-word; }
.vr-grid .span2 { grid-column: span 2; }
.vr-foot { font-size: 12px; margin: 12px 0 0; color: #3c7a58; }

/* ==========================================================
   Enquiry form button inside popup
   ========================================================== */
.enq-card .field label { font-size: 13px; } /* ensure compact popup labels */
@media (max-width: 520px) {
  .vr-grid { grid-template-columns: 1fr; }
  .enq-card { padding: 24px 20px; }
}
