/* ══════════════════════════════════════════════
   custom.css  —  GACOICert Shared Stylesheet
   Covers: index.html + verify-certificate.html
   ══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
    --navy:    #0B1F3A;
    --navy2:   #122a50;
    --gold:    #1E6FBF;
    --gold-lt: #5BA3E8;
    --gold-dim:#155da0;
    --cream:   #F8F5EF;
    --white:   #ffffff;
    --muted:   #7a8ba0;
    --light:   #EEF2F7;
    --text:    #1e2d3d;
    --border:  #e0e6ef;
    --radius:  14px;
    --shadow:  0 8px 40px rgba(11,31,58,.13);

    /* status colours (verify page) */
    --ok:      #1a9e6a;
    --ok-bg:   #e4f7f0;
    --ok-dk:   #0a4a30;
    --ok-bd:   #8edfc3;
    --warn:    #b06a10;
    --warn-bg: #fef3e2;
    --warn-dk: #3d2000;
    --warn-bd: #f8c97a;
    --err:     #c83232;
    --err-bg:  #fceaea;
    --err-dk:  #4a0f0f;
    --err-bd:  #f5b0b0;
    --sus:     #6b3fb5;
    --sus-bg:  #f0eafc;
    --sus-dk:  #2a0f5a;
    --sus-bd:  #c09eef;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
h1,h2,h3,h4,h5 { font-family: 'Poppins', sans-serif; line-height: 1.25; }

/* ── LAYOUT HELPERS ── */
.container  { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 90px 0; }
.bg-light   { background: var(--light); }
.bg-cream   { background: var(--cream); }
.bg-navy    { background: var(--navy); }
.divider    { width: 52px; height: 3px; background: var(--gold); margin: 14px auto 20px; border-radius: 4px; }
.divider.left { margin-left: 0; }
.section-heading       { text-align: center; }
.section-heading .title { font-size: clamp(26px,4vw,38px); color: var(--navy); font-weight: 700; }
.section-heading .title span { color: var(--gold); }

/* ══ TOPBAR ══ */
.topbar { background: var(--navy); color: rgba(255,255,255,.72); font-size: 13px; padding: 8px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.topbar a {color: var(--white);}
.topbar-links { display: flex; gap: 20px; }
.topbar-links a { display: flex; align-items: center; gap: 6px; transition: color .2s; font-weight: 400; }
.topbar-links a:hover {color: var(--gold-lt);}

/* ══ NAVBAR ══ */
.navbar { background: var(--white); box-shadow: 0 2px 20px rgba(11,31,58,.08); position: sticky; top: 0; z-index: 999; }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { width: 170px; display: flex; align-items: center; gap: 12px; }
.brand-name .main { font-size: 20px; font-weight: 700; color: var(--navy); }
.brand-name .sub  { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); }
.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links a { padding: 8px 14px; font-size: 14px; font-weight: 500; color: var(--text); border-radius: 8px; transition: background .2s, color .2s; }
.nav-links a:hover,
.nav-links a.active { background: var(--light); color: var(--navy); }
.nav-cta  { background: var(--gold)     !important; color: var(--white)   !important; padding: 10px 22px !important; border-radius: 8px !important; font-weight: 600 !important; }
.nav-cta:hover { background: var(--gold-dim) !important; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: .3s; }

/* ══ MOBILE MENU ══ */
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--white); z-index: 1000; flex-direction: column; padding: 24px; gap: 10px; overflow-y: auto; }
.mobile-menu.open { display: flex; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.close-btn { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--navy); }
.mobile-menu a { padding: 14px 16px; font-size: 15px; font-weight: 500; color: var(--text); border-radius: 10px; border-bottom: 1px solid var(--light); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .nav-cta { background: var(--gold) !important; color: var(--white) !important; text-align: center; margin-top: 10px; }

/* ══ HERO (index) ══ */
.hero { background: var(--navy); position: relative; overflow: hidden; padding: 100px 0 80px; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg::before { content:''; position:absolute; top:-200px; right:-200px; width:700px; height:700px; border-radius:50%; background:radial-gradient(circle, rgba(30,111,191,.18) 0%, transparent 65%); }
.hero-bg::after  { content:''; position:absolute; bottom:-100px; left:-100px; width:400px; height:400px; border-radius:50%; background:radial-gradient(circle, rgba(30,111,191,.1) 0%, transparent 65%); }
.hero-grid { position:absolute; inset:0; background-image: linear-gradient(rgba(30,111,191,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(30,111,191,.04) 1px, transparent 1px); background-size:60px 60px; }
.hero .container { position: relative; z-index: 1; }
.hero-inner { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; }

/* ── Hero eyebrow (shared) ── */
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(30,111,191,.12); border: 1px solid rgba(30,111,191,.3); border-radius: 30px; padding: 7px 18px; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 22px; }
.hero-eyebrow .dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }

.hero h1 { font-size: clamp(32px,5vw,54px); color: var(--white); font-weight: 800; margin-bottom: 10px; line-height: 1.18; }
.hero h1 span { color: var(--gold-lt); }
.hero-divider { width: 60px; height: 3px; background: var(--gold); border-radius: 4px; margin: 18px 0; }
.hero-body  { font-size: 16px; color: rgba(255,255,255,.78); line-height: 1.8; margin-bottom: 32px; max-width: 540px; font-weight: 400; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.07); border: 1px solid rgba(30,111,191,.3); border-radius: 30px; padding: 8px 18px; font-size: 12px; color: rgba(255,255,255,.85); font-weight: 500; transition: background .2s, border-color .2s; cursor: default; }
.pill i { color: var(--gold-lt); font-size: 11px; }
.pill:hover { background: rgba(30,111,191,.14); border-color: rgba(30,111,191,.5); }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Hero form card ── */
.hero-card { background: var(--white); border-radius: 20px; padding: 36px 32px; box-shadow: 0 24px 80px rgba(0,0,0,.35); }
.hero-card h3 { font-size: 20px; color: var(--navy); margin-bottom: 4px; font-weight: 700; }
.hero-card p  { font-size: 13px; color: var(--muted); margin-bottom: 24px; font-weight: 400; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 11px; font-weight: 600; color: var(--navy); margin-bottom: 6px; letter-spacing: .5px; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; border: 1.5px solid #e0e6ef; border-radius: 9px; padding: 11px 14px; font-size: 13px; font-family: 'Poppins', sans-serif; color: var(--text); background: var(--white); transition: border-color .2s; outline: none; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.btn-submit { width: 100%; background: var(--navy); color: var(--white); border: none; border-radius: 10px; padding: 13px; font-size: 14px; font-weight: 600; font-family: 'Poppins', sans-serif; cursor: pointer; transition: background .2s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-submit:hover { background: var(--navy2); }

/* ══ PAGE HERO (verify page) ══ */
.hero.page-hero { padding: 80px 0 64px; text-align: center; }
.hero.page-hero .hero-grid { background: #000; }
.page-hero .hero-divider { margin: 18px auto 18px; }
.page-hero p { font-size: 15px; color: rgba(255,255,255,.7); max-width: 610px; margin: 0 auto; line-height: 1.8; font-weight: 400; }

/* ══ BUTTONS (shared) ══ */
.btn-gold    { background: var(--gold); color: var(--white); padding: 14px 30px; border-radius: 10px; font-size: 14px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; transition: background .2s, transform .2s; font-family: 'Poppins', sans-serif; }
.btn-gold:hover    { background: var(--gold-dim); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.3); padding: 14px 30px; border-radius: 10px; font-size: 14px; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; transition: border-color .2s, background .2s; font-family: 'Poppins', sans-serif; }
.btn-outline:hover { border-color: var(--gold); background: rgba(30,111,191,.08); }
.btn-navy    { background: var(--navy); color: var(--white); padding: 13px 28px; border-radius: 10px; font-size: 14px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; transition: background .2s; font-family: 'Poppins', sans-serif; border: none; cursor: pointer; }
.btn-navy:hover    { background: var(--navy2); }
.btn-ghost   { display: inline-flex; align-items: center; gap: 7px; padding: 10px 20px; border-radius: 10px; font-size: 13px; font-weight: 600; font-family: 'Poppins', sans-serif; cursor: pointer; transition: .2s; border: 1.5px solid var(--border); color: var(--navy); background: transparent; }
.btn-ghost:hover   { background: var(--light); border-color: #b0bfd0; }

/* ══ TRUST BAR ══ */
.trust-bar { background: var(--gold); padding: 18px 0; }
.trust-bar .container {display: flex;justify-content: space-between;align-items: center;gap: 50px;flex-wrap: wrap;}
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--white); }
.trust-item i   { font-size: 40px; margin-right: 10px; }
.trust-item .num { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.trust-item .lbl { font-size: 11px; font-weight: 600; line-height: 1.2; }

/* ══ SERVICES ══ */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.service-card { background: var(--white); border: 1.5px solid #e8ecf3; border-radius: var(--radius); padding: 32px 28px; transition: transform .3s, box-shadow .3s, border-color .3s; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold); }
.service-icon { width: 56px; height: 56px; background: #fff; border: 1.5px solid #e8ecf3; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-icon i { color: var(--gold-lt); font-size: 22px; }
.service-card h3 { font-size: 17px; color: var(--navy); margin-bottom: 8px; font-weight: 600; }
.service-code { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; color: var(--gold); text-transform: uppercase; margin-bottom: 10px; display: block; }
.service-card p { font-size: 13px; color: #556; line-height: 1.75; margin-bottom: 18px; font-weight: 400; }
.kbtn { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--navy); border-bottom: 1.5px solid var(--gold); padding-bottom: 2px; transition: color .2s, gap .2s; }
.kbtn:hover { color: var(--gold); gap: 10px; }

/* ══ ABOUT ══ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-bg { position: absolute; top: -18px; left: -18px; width: 100%; height: 100%; background: linear-gradient(135deg, var(--gold), var(--gold-dim)); border-radius: 20px; opacity: .15; }
.about-img-wrap img { position: relative; border-radius: 18px; width: 100%; object-fit: cover; box-shadow: var(--shadow); }
.about-badge { position: absolute; bottom: -20px; right: -20px; background: var(--navy); color: var(--white); border-radius: 16px; padding: 18px 22px; box-shadow: 0 12px 30px rgba(11,31,58,.3); text-align: center; }
.about-badge .num { font-size: 34px; font-weight: 700; color: var(--gold-lt); line-height: 1; }
.about-badge .lbl { font-size: 11px; color: rgba(255,255,255,.7); margin-top: 4px; font-weight: 500; }
.about-text .section-heading { text-align: left; }
.about-text .divider { margin-left: 0; }
.about-text p { font-size: 14px; color: #445; line-height: 1.85; margin-bottom: 14px; font-weight: 400; }
.about-list { list-style: none; margin: 18px 0 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.about-list li { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--navy); }
.about-list li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ══ WHY GACOI ══ */
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 48px; }
.why-card { background: var(--white); border-radius: var(--radius); padding: 28px; display: flex; gap: 20px; align-items: flex-start; border: 1.5px solid #e8ecf3; transition: box-shadow .3s, border-color .3s; }
.why-card:hover { box-shadow: var(--shadow); border-color: rgba(30,111,191,.4); }
.why-icon { width: 50px; height: 50px; flex-shrink: 0; background: #fff; border: 1.5px solid #e8ecf3; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.why-icon i { color: var(--gold-lt); font-size: 20px; }
.why-card h4 { font-size: 16px; color: var(--navy); margin-bottom: 6px; font-weight: 600; }
.why-card p  { font-size: 13px; color: #667; line-height: 1.75; font-weight: 400; }

/* ══ PROCESS ══ */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 56px; position: relative; }
.process-steps::before { content:''; position:absolute; top:40px; left:12.5%; right:12.5%; height:2px; background: linear-gradient(90deg, var(--gold) 0%, rgba(30,111,191,.2) 100%); z-index:0; }
.step { text-align: center; position: relative; z-index: 1; padding: 0 16px; }
.step-num { width: 80px; height: 80px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; border: 3px solid var(--gold); }
.step-num span { font-size: 24px; font-weight: 700; color: var(--gold-lt); }
.step h4 { font-size: 15px; color: var(--navy); margin-bottom: 8px; font-weight: 600; }
.step p  { font-size: 13px; color: #667; line-height: 1.7; font-weight: 400; }

/* ══ STATS ══ */
.stats-section { background: var(--navy); padding: 70px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat-card { text-align: center; padding: 30px 20px; border: 1px solid rgba(30,111,191,.3); border-radius: var(--radius); transition: border-color .3s; }
.stat-card:hover { border-color: rgba(30,111,191,.7); }
.stat-card .num { font-size: 44px; font-weight: 700; color: #fff; line-height: 1; }
.stat-card .lbl { font-size: 13px; color: rgba(255,255,255,.65); margin-top: 8px; font-weight: 400; }
.stat-card i { font-size: 28px; color: #fff; margin-bottom: 12px; }

/* ══ TESTIMONIALS ══ */
.tcard-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 48px; }
.tcard { background: var(--white); border: 1.5px solid #e8ecf3; border-radius: var(--radius); padding: 30px 26px; transition: transform .3s, box-shadow .3s; }
.tcard:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.tcard-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.tcard-stars i { color: var(--gold); font-size: 13px; }
.tcard-tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); background: rgba(30,111,191,.07); border: 1px solid rgba(30,111,191,.2); padding: 4px 12px; border-radius: 20px; margin-bottom: 14px; }
.tcard-body { font-size: 14px; font-style: italic; color: #445; line-height: 1.8; margin-bottom: 24px; font-weight: 400; }
.tcard-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid #f0f3f8; padding-top: 18px; }
.avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 700; color: var(--white); flex-shrink: 0; }
.av1 { background: linear-gradient(135deg,#0B1F3A,#1e3a6b); }
.av2 { background: linear-gradient(135deg,#1E6FBF,#155da0); }
.av3 { background: linear-gradient(135deg,#1a5e3a,#2a8a5a); }
.author-name { font-size: 14px; font-weight: 600; color: var(--navy); }
.author-meta { font-size: 12px; color: var(--muted); font-weight: 400; }

/* ══ CTA BANNER ══ */
.cta-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%); padding: 90px 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content:''; position:absolute; top:-100px; right:-100px; width:400px; height:400px; border-radius:50%; background:radial-gradient(circle,rgba(30,111,191,.15) 0%,transparent 70%); }
.cta-banner h2 { font-size: clamp(28px,4vw,44px); color: var(--white); margin-bottom: 16px; position: relative; font-weight: 700; }
.cta-banner h2 span { color: var(--gold-lt); }
.cta-banner p  { font-size: 16px; color: rgba(255,255,255,.72); margin-bottom: 36px; position: relative; font-weight: 400; }
.cta-banner .cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }

/* ══ FAQ ══ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 50px; margin-top: 48px; }
.accordion-item { border-bottom: 1px solid #e0e6ef; }
.accordion-btn { width: 100%; background: none; border: none; text-align: left; padding: 18px 0; font-size: 14px; font-weight: 600; font-family: 'Poppins', sans-serif; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.accordion-btn .icon { width: 28px; height: 28px; background: var(--light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s, transform .3s; }
.accordion-btn .icon i { font-size: 12px; color: var(--navy); transition: transform .3s; }
.accordion-btn.active .icon { background: var(--gold); }
.accordion-btn.active .icon i { color: var(--white); transform: rotate(45deg); }
.accordion-body { font-size: 13px; color: #556; line-height: 1.8; padding: 0 0 18px; display: none; font-weight: 400; }
.accordion-body.open { display: block; }

/* ══ VERIFY PAGE — FORMAT HINT STRIP ══ */
.main { max-width: 1180px; margin: 0 auto; padding: 50px 0; }

.fmt-strip { background: var(--navy); border-radius: var(--radius); padding: 18px 24px; margin-bottom: 22px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.fmt-icon { width: 40px; height: 40px; flex-shrink: 0; background: rgba(30,111,191,.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.fmt-icon i { color: var(--gold-lt); font-size: 16px; }
.fmt-text { flex: 1; min-width: 180px; }
.fmt-text h4 { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.fmt-text p  { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.5; margin: 0; }
.fmt-pill-row { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.fp        { font-size: 12.5px; font-weight: 600; padding: 4px 10px; border-radius: 6px; }
.fp-brand  { background: rgba(30,111,191,.25); color: var(--gold-lt); }
.fp-std    { background: rgba(255,255,255,.12); color: rgba(255,255,255,.8); }
.fp-yr     { background: rgba(255,255,255,.08); color: rgba(255,255,255,.55); }
.fp-seq    { background: rgba(255,255,255,.05); color: rgba(255,255,255,.4); }
.fp-sep    { color: rgba(255,255,255,.2); font-size: 15px; }

/* ── Search card ── */
.search-card { background: var(--white); border: 1.5px solid #e8ecf3; border-radius: var(--radius); padding: 40px 44px 36px; box-shadow: var(--shadow); margin-bottom: 22px; }
.sc-title { font-size: 22px; color: var(--navy); font-weight: 700; margin-bottom: 4px; }
.sc-sub   { font-size: 13px; color: var(--muted); margin-bottom: 28px; line-height: 1.65; font-weight: 400; }
.sc-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
.sc-row   { display: flex; gap: 10px; }
.sc-input { flex: 1; height: 50px; border: 1.5px solid var(--border); border-radius: 10px; padding: 0 18px; font-size: 14.5px; font-family: 'Poppins', sans-serif; color: var(--text); background: #fafbfd; outline: none; letter-spacing: .3px; transition: border-color .2s, box-shadow .2s, background .2s; }
.sc-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(30,111,191,.12); background: var(--white); }
.sc-input::placeholder { color: #b0bcc9; }
.sc-btn { height: 50px; padding: 0 28px; background: var(--navy); color: var(--white); border: none; border-radius: 10px; font-size: 14px; font-weight: 600; font-family: 'Poppins', sans-serif; cursor: pointer; white-space: nowrap; display: flex; align-items: center; gap: 8px; transition: background .2s, transform .15s; }
.sc-btn:hover { background: var(--navy2); transform: translateY(-1px); }
.sc-btn:disabled { opacity: .45; cursor: not-allowed; transform: none !important; }
.sc-hint { font-size: 12px; color: var(--muted); margin-top: 10px; font-weight: 400; }
.sc-hint a { color: var(--gold); font-weight: 500; }

.sc-sep { display: flex; align-items: center; gap: 14px; margin: 24px 0 16px; }
.sc-sep::before,
.sc-sep::after { content:''; flex:1; height:1px; background: var(--border); }
.sc-sep span { font-size: 10.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip  { font-size: 12px; padding: 6px 14px; border-radius: 20px; border: 1.5px solid var(--border); color: var(--muted); cursor: pointer; background: #fafbfd; transition: border-color .15s, color .15s, background .15s; display: flex; align-items: center; gap: 6px; }
.chip:hover { border-color: var(--gold); color: var(--navy); background: rgba(30,111,191,.05); }
.cdot     { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.cdot-ok  { background: var(--ok); }
.cdot-exp { background: var(--warn); }
.cdot-sus { background: var(--sus); }
.cdot-err { background: var(--err); }

/* ── Loader ── */
.loader { display: none; text-align: center; padding: 44px 0; }
.loader.show { display: block; }
.spin-ring { width: 44px; height: 44px; border-radius: 50%; border: 3px solid #e2e8f2; border-top-color: var(--gold); animation: spin .75s linear infinite; margin: 0 auto 14px; }
.loader p { font-size: 13px; color: var(--muted); font-weight: 400; }

/* ── Result card ── */
.result { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 22px; display: none; animation: slideUp .38s cubic-bezier(.22,.68,0,1.2) both; border: 1.5px solid transparent; }
.result.show { display: block; }
.r-ok  { border-color: var(--ok-bd); }
.r-exp { border-color: var(--warn-bd); }
.r-sus { border-color: var(--sus-bd); }
.r-err { border-color: var(--err-bd); }

.r-head { display: flex; align-items: flex-start; gap: 16px; padding: 22px 28px; border-bottom: 1.5px solid; }
.r-ok  .r-head { background: var(--ok-bg);   border-bottom-color: var(--ok-bd); }
.r-exp .r-head { background: var(--warn-bg);  border-bottom-color: var(--warn-bd); }
.r-sus .r-head { background: var(--sus-bg);   border-bottom-color: var(--sus-bd); }
.r-err .r-head { background: var(--err-bg);   border-bottom-color: var(--err-bd); }

.r-icon { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.r-ok  .r-icon { background: var(--ok); }
.r-exp .r-icon { background: var(--warn); }
.r-sus .r-icon { background: var(--sus); }
.r-err .r-icon { background: var(--err); }
.r-icon i { color: #fff; font-size: 16px; }

.r-htxt { flex: 1; }
.r-title { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.r-ok  .r-title { color: var(--ok-dk); }
.r-exp .r-title { color: var(--warn-dk); }
.r-sus .r-title { color: var(--sus-dk); }
.r-err .r-title { color: var(--err-dk); }
.r-sub { font-size: 13px; line-height: 1.55; font-weight: 400; }
.r-ok  .r-sub { color: var(--ok); }
.r-exp .r-sub { color: var(--warn); }
.r-sus .r-sub { color: var(--sus); }
.r-err .r-sub { color: var(--err); }

.r-body { background: var(--white); padding: 28px; }
.r-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 28px; }
.rf-label {font-size: 15px;font-weight: 700;letter-spacing: 1px;text-transform: uppercase;color: var(--muted);margin-bottom: 10px;display: flex;align-items: center;gap: 5px;}
.rf-label i { font-size: 10px; color: var(--gold); }
.rf-val {font-size: 17px;color: var(--navy);font-weight: 500;line-height: 1.5;}
.rf-val.mono  {font-family: monospace;font-size: 17px;letter-spacing: .5px;background: var(--light);display: inline-block;padding: 3px 10px;border-radius: 6px;}
.rf-val.light { font-weight: 400; color: #455; font-size: 13px; }
.r-div { height: 1px; background: var(--light); margin: 22px 0; }

.s-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 20px; }
.sb-ok  { background: var(--ok-bg);   color: var(--ok); }
.sb-exp { background: var(--warn-bg); color: var(--warn); }
.sb-sus { background: var(--sus-bg);  color: var(--sus); }
.sb-dot { width: 7px; height: 7px; border-radius: 50%; }
.sb-ok  .sb-dot { background: var(--ok); }
.sb-exp .sb-dot { background: var(--warn); }
.sb-sus .sb-dot { background: var(--sus); }

.timeline { margin: 8px 0 4px; }
.tl-bar  { height: 6px; background: var(--light); border-radius: 4px; overflow: hidden; margin-bottom: 6px; }
.tl-fill { height: 100%; border-radius: 4px; transition: width .6s ease; }
.tl-fill.ok  { background: linear-gradient(90deg, var(--ok), #4dcba0); }
.tl-fill.exp { background: linear-gradient(90deg, var(--warn), #f8c46e); }
.tl-fill.sus { background: var(--sus); }
.tl-meta { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); font-weight: 400; }

.r-actions { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }

.nf-reasons  { margin: 10px 0 16px; padding-left: 18px; }
.nf-reasons li { font-size: 13px; color: #556; line-height: 2.1; font-weight: 400; }
.nf-contact  { font-size: 13px; color: var(--muted); line-height: 1.7; font-weight: 400; }
.nf-contact a { color: var(--gold); font-weight: 500; }

/* ── Recent lookups ── */
.recent { background: var(--white); border: 1.5px solid #e8ecf3; border-radius: var(--radius); padding: 22px 26px; box-shadow: 0 2px 14px rgba(11,31,58,.06); margin-bottom: 22px; display: none; }
.recent.show { display: block; }
.rec-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.rec-head h3 { font-size: 10.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
.rec-clear { font-size: 12px; font-family: 'Poppins', sans-serif; background: none; border: none; color: var(--muted); cursor: pointer; transition: color .2s; }
.rec-clear:hover { color: var(--err); }
.rec-list { display: flex; flex-direction: column; gap: 7px; }
.rec-item  { display: flex; align-items: center; justify-content: space-between; padding: 9px 13px; border-radius: 9px; background: var(--light); cursor: pointer; transition: background .15s; border: 1px solid transparent; }
.rec-item:hover { background: #dce5f2; border-color: #c0d0e4; }
.rec-left  { display: flex; align-items: center; gap: 10px; }
.rec-dot   { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.rec-id    { font-size: 12.5px; font-weight: 500; color: var(--navy); letter-spacing: .2px; }
.rec-right { display: flex; align-items: center; gap: 10px; }
.rec-badge { font-size: 10px; font-weight: 700; padding: 2px 9px; border-radius: 10px; }
.rec-time  { font-size: 11px; color: var(--muted); font-weight: 400; }

/* ── Info panels (verify page) ── */
.info-panels { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.ip { background: var(--white); border: 1.5px solid #e8ecf3; border-radius: var(--radius); padding: 24px 20px; box-shadow: 0 2px 14px rgba(11,31,58,.06); transition: box-shadow .3s, border-color .3s; }
.ip:hover { box-shadow: var(--shadow); border-color: rgba(30,111,191,.3); }
.ip-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--light); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.ip-icon i { color: var(--gold); font-size: 17px; }
.ip h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.ip p  { font-size: 12.5px; color: var(--muted); line-height: 1.7; font-weight: 400; }
.ip p a { color: var(--gold); font-weight: 500; }

/* ══ FOOTER ══ */
footer { background: var(--navy); color: rgba(255,255,255,.75); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 40px; margin-bottom: 50px; }
footer h5   { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 18px; }
footer p,
footer li   { font-size: 13px; line-height: 1.8; font-weight: 400; }
footer ul   { list-style: none; }
footer ul li { margin-bottom: 8px; }
footer ul li a { color: rgba(255,255,255,.65); transition: color .2s; }
footer ul li a:hover { color: var(--gold-lt); }
.footer-brand img {padding: 5px 18px;background: #fff;border-radius: 5px;width: 210px;margin-bottom: 10px;}
.footer-brand p   { margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.social-link   { width: 38px; height: 38px; border-radius: 9px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); transition: background .2s, color .2s; }
.social-link:hover { background: var(--gold); color: var(--white); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; color: rgba(255,255,255,.7); }
.footer-contact li i { color: var(--gold-lt); margin-top: 4px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 12px; color: rgba(255,255,255,.45); }
.footer-bottom a { color: var(--gold-lt); }

/* ══ ANIMATIONS ══ */
@keyframes pulse   { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
@keyframes spin    { to { transform: rotate(360deg); } }
@keyframes slideUp { from { opacity:0; transform:translateY(22px) scale(.98); } to { opacity:1; transform:none; } }
@keyframes fadeUp  { from { opacity:0; transform:translateY(20px);} to { opacity:1; transform:translateY(0);} }
@keyframes floatY  { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

.fade-up  { animation: fadeUp .7s ease both; }
.delay-1  { animation-delay: .1s; }
.delay-2  { animation-delay: .2s; }
.delay-3  { animation-delay: .3s; }
.delay-4  { animation-delay: .4s; }
.float    { animation: floatY 4s ease-in-out infinite; }

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {
    .hero-inner   { grid-template-columns: 1fr; }
    .hero-card    { max-width: 500px; margin: 0 auto; }
    .services-grid { grid-template-columns: repeat(2,1fr); }
    .about-grid   { grid-template-columns: 1fr; }
    .about-img-wrap { display: none; }
    .process-steps { grid-template-columns: repeat(2,1fr); }
    .process-steps::before { display: none; }
    .stats-grid   { grid-template-columns: repeat(2,1fr); }
    .footer-grid  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .topbar        { display: none; }
    .nav-links     { display: none; }
    .hamburger     { display: block; }
    .search-card   { padding: 26px 20px; }
    .sc-row        { flex-direction: column; }
    .sc-btn        { justify-content: center; }
    .r-grid        { grid-template-columns: 1fr; }
    .info-panels   { grid-template-columns: 1fr; }
    .fmt-strip     { flex-direction: column; gap: 12px; }
    .services-grid,
    .tcard-grid,
    .why-grid      { grid-template-columns: 1fr; }
    .faq-grid      { grid-template-columns: 1fr; gap: 0; }
    .about-list    { grid-template-columns: 1fr; }
    .hero-btns     { flex-direction: column; }
    .trust-bar .container { gap: 24px; }
    .stats-grid    { grid-template-columns: repeat(2,1fr); }
    .footer-grid   { grid-template-columns: 1fr; }
    .r-actions     { flex-direction: column; }
    .btn-ghost,
    .btn-navy      { justify-content: center; }
}
@media (max-width: 480px) {
    .process-steps { grid-template-columns: 1fr; }
    .stats-grid    { grid-template-columns: 1fr 1fr; }
}
@media print {
    .topbar, .navbar, footer, .search-card, .fmt-strip,
    .recent, .info-panels, .r-actions, .trust-bar { display: none !important; }
    body { background: #fff; }
    .result { box-shadow: none !important; border: 1px solid #ccc; }
}
