:root{
  --navy:#0b0b09;
  --navy-2:#1c1a13;
  --charcoal:#000000;
  --amber:#c9a227;
  --amber-2:#e6c34f;
  --cream:#f8f6f0;
  --gray:#524d3f;
  --line:#e6e0cc;
  --radius:6px;
  --font-head:'Archivo',sans-serif;
  --font-body:'Inter',sans-serif;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:17px}
body{
  font-family:var(--font-body);
  color:var(--charcoal);
  background:var(--cream);
  line-height:1.65;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}
.container{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  padding:0 24px;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 28px;
  border-radius:var(--radius);
  font-family:var(--font-head);
  font-weight:600;
  font-size:0.95rem;
  letter-spacing:0.02em;
  border:2px solid transparent;
  cursor:pointer;
  transition:all .2s ease;
}
.btn-primary{
  background:var(--amber);
  color:var(--navy);
}
.btn-primary:hover{background:var(--amber-2);transform:translateY(-2px)}
.btn-ghost{
  border-color:rgba(255,255,255,0.35);
  color:#fff;
}
.btn-ghost:hover{border-color:#fff;background:rgba(255,255,255,0.08)}
.btn-block{width:100%}

/* ---------- Header ---------- */
.site-header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:100;
  background:rgba(0,0,0,0);
  transition:background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding:22px 0;
}
.site-header.scrolled{
  background:rgba(0,0,0,0.95);
  box-shadow:0 4px 24px rgba(0,0,0,0.15);
  padding:14px 0;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.logo{display:flex;align-items:center;gap:10px}
.logo-mark{
  width:44px;height:44px;
  background:var(--navy);
  border:1px solid rgba(201,162,39,0.4);
  display:flex;align-items:center;justify-content:center;
  border-radius:8px;
  flex-shrink:0;
  padding:6px;
}
.logo-mark img{width:100%;height:100%;object-fit:contain;display:block}
.logo-text{
  color:#fff;
  font-family:var(--font-head);
  font-weight:600;
  letter-spacing:0.06em;
  font-size:0.92rem;
  white-space:nowrap;
}
.logo-text strong{color:var(--amber)}
.nav{display:flex;align-items:center;gap:32px}
.nav a{
  color:#e7e9ec;
  font-size:0.92rem;
  font-weight:500;
  transition:color .2s;
}
.nav a:hover{color:var(--amber)}
.nav-cta{
  background:var(--amber);
  color:var(--navy) !important;
  padding:10px 20px;
  border-radius:var(--radius);
  font-weight:600;
}
.nav-cta:hover{background:var(--amber-2)}
.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding:6px;
}
.nav-toggle span{
  width:24px;height:2px;background:#fff;transition:.25s;
}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  color:#fff;
  padding-top:120px;
  padding-bottom:80px;
}
.hero-bg{
  position:absolute;inset:0;
  background:
    linear-gradient(135deg, rgba(4,4,3,0.97) 0%, rgba(14,12,8,0.94) 55%, rgba(0,0,0,0.98) 100%);
  z-index:0;
}
.hero-bg::after{
  content:"";
  position:absolute;inset:0;
  background-image:
    repeating-linear-gradient(45deg, rgba(201,162,39,0.05) 0 2px, transparent 2px 40px);
}
.hero-inner{position:relative;z-index:1}
.eyebrow{
  font-family:var(--font-head);
  font-weight:600;
  color:var(--amber);
  letter-spacing:0.14em;
  text-transform:uppercase;
  font-size:0.8rem;
  margin-bottom:14px;
}
.eyebrow.center{text-align:center}
.hero h1{
  font-family:var(--font-head);
  font-weight:800;
  font-size:clamp(2.8rem, 7vw, 5.2rem);
  line-height:1.05;
  letter-spacing:-0.01em;
  margin-bottom:26px;
  max-width:900px;
}
.hero-tagline{
  font-family:var(--font-head);
  font-weight:600;
  font-style:italic;
  color:var(--amber);
  font-size:1.05rem;
  letter-spacing:0.03em;
  margin-bottom:18px;
}
.hero-sub{
  font-size:1.2rem;
  color:#d8d2bd;
  max-width:620px;
  margin-bottom:36px;
}
.hero-sub em{color:var(--amber-2);font-style:italic}
.hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:64px;
}
.hero-stats{
  display:flex;
  gap:48px;
  flex-wrap:wrap;
  border-top:1px solid rgba(255,255,255,0.15);
  padding-top:32px;
}
.stat{display:flex;flex-direction:column;gap:4px}
.stat-num{
  font-family:var(--font-head);
  font-weight:800;
  font-size:2rem;
  color:var(--amber);
}
.stat-label{
  font-size:0.82rem;
  color:#b8b09a;
  text-transform:uppercase;
  letter-spacing:0.04em;
}

/* ---------- Marquee ---------- */
.marquee{
  background:var(--amber);
  color:var(--navy);
  overflow:hidden;
  padding:14px 0;
}
.marquee-track{
  display:flex;
  gap:16px;
  white-space:nowrap;
  animation:scroll-left 28s linear infinite;
  font-family:var(--font-head);
  font-weight:700;
  font-size:0.95rem;
  text-transform:uppercase;
  letter-spacing:0.04em;
}
@keyframes scroll-left{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

/* ---------- Intro ---------- */
.intro{padding:64px 0 20px}
.intro-inner{max-width:820px}
.intro-text{
  font-size:1.15rem;
  color:var(--gray);
  line-height:1.75;
}

/* ---------- FAQ ---------- */
.faq-list{
  max-width:820px;
  margin:56px auto 0;
  display:flex;
  flex-direction:column;
  gap:0;
}
.faq-item{
  padding:26px 0;
  border-top:1px solid var(--line);
}
.faq-item:last-child{border-bottom:1px solid var(--line)}
.faq-item h3{
  font-family:var(--font-head);
  font-weight:700;
  color:var(--navy);
  font-size:1.15rem;
  margin-bottom:10px;
}
.faq-item p{color:var(--gray)}

/* ---------- Trust strip ---------- */
.trust-strip{
  background:var(--charcoal);
  padding:22px 0;
}
.trust-inner{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  color:#d8d2bd;
  font-family:var(--font-head);
  font-weight:600;
  font-size:0.85rem;
  letter-spacing:0.03em;
  text-transform:uppercase;
}
.trust-inner span:nth-child(even){color:var(--amber);font-size:0.6rem}

.pillars-inner{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:56px;
  flex-wrap:wrap;
}
.pillar{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  color:var(--amber);
  font-family:var(--font-head);
  font-weight:600;
  font-size:0.78rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
}
.pillar-icon{width:26px;height:26px}

/* ---------- Sections ---------- */
.section{padding:100px 0}
.section.alt{background:#efece4}
.section-title{
  font-family:var(--font-head);
  font-weight:800;
  font-size:clamp(2rem, 4vw, 3rem);
  line-height:1.12;
  color:var(--navy);
  margin-bottom:20px;
  max-width:660px;
}
.section-title.center{margin-left:auto;margin-right:auto;text-align:center}

/* ---------- Services ---------- */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
  margin-top:56px;
}
.service-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 40px rgba(13,27,42,0.1);
  border-color:var(--amber);
}
.service-media{
  height:190px;
  background-size:cover;
  background-position:center;
}
.service-body{padding:28px 30px 36px}
.service-icon{
  font-family:var(--font-head);
  font-weight:800;
  font-size:1.6rem;
  color:var(--amber);
  margin-bottom:18px;
}
.service-card h3{
  font-family:var(--font-head);
  font-weight:700;
  font-size:1.3rem;
  color:var(--navy);
  margin-bottom:12px;
}
.service-card p{color:var(--gray);font-size:1rem}

/* ---------- Process ---------- */
.process-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:28px;
  margin-top:56px;
}
.process-step{
  text-align:center;
  padding:0 12px;
}
.process-num{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:52px;height:52px;
  border-radius:50%;
  background:var(--navy);
  color:var(--amber);
  font-family:var(--font-head);
  font-weight:800;
  font-size:1.2rem;
  margin-bottom:18px;
}
.process-step h3{
  font-family:var(--font-head);
  font-weight:700;
  color:var(--navy);
  margin-bottom:10px;
}
.process-step p{color:var(--gray);font-size:0.92rem}

/* ---------- Projects ---------- */
.projects-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:24px;
  margin-top:56px;
}
.project-card{
  border-radius:var(--radius);
  overflow:hidden;
  background:#fff;
  border:1px solid var(--line);
}
.project-media{
  height:220px;
  background-size:cover;
  background-position:center;
}
.ph-1{background:linear-gradient(135deg,#0b0b09,#3a2f10)}
.ph-2{background:linear-gradient(135deg,#141310,#4a3d18)}
.ph-3{background:linear-gradient(135deg,#000000,#332a10)}
.ph-4{background:linear-gradient(135deg,#0e0d0a,#5a4a1c)}
.project-info{padding:20px 22px}
.project-tag{
  display:inline-block;
  font-size:0.72rem;
  font-weight:700;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--amber);
  margin-bottom:8px;
}
.project-info h3{
  font-family:var(--font-head);
  font-weight:700;
  color:var(--navy);
  font-size:1.05rem;
}
.projects-note{
  text-align:center;
  margin-top:36px;
  color:var(--gray);
}
.projects-note a{color:var(--amber);font-weight:600}

/* ---------- Government ---------- */
.gov-intro{
  max-width:760px;
  margin:0 auto 48px;
  text-align:center;
  color:var(--gray);
  font-size:1.05rem;
}
.gov-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
  margin-bottom:48px;
}
.gov-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:32px 28px;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.gov-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 40px rgba(13,27,42,0.1);
  border-color:var(--amber);
}
.gov-card h3{
  font-family:var(--font-head);
  font-weight:700;
  color:var(--navy);
  font-size:1.15rem;
  margin-bottom:10px;
}
.gov-card p{color:var(--gray);font-size:0.95rem}
.gov-actions{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
}
.btn-ghost-dark{
  border-color:var(--navy);
  color:var(--navy);
}
.btn-ghost-dark:hover{background:var(--navy);color:#fff}

/* ---------- Certifications ---------- */
.cert-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
  margin-top:56px;
}
.cert-card{
  background:var(--navy);
  color:#fff;
  border-radius:var(--radius);
  padding:26px 22px;
  text-align:center;
}
.cert-label{
  display:block;
  font-family:var(--font-head);
  font-weight:700;
  color:var(--amber);
  font-size:1rem;
  letter-spacing:0.03em;
  margin-bottom:8px;
}
.cert-card p{color:#d8d2bd;font-size:0.9rem}
.cert-note{
  text-align:center;
  margin-top:36px;
  color:var(--gray);
}
.cert-note a{color:var(--amber);font-weight:600}

/* ---------- About ---------- */
.about-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:60px;
  align-items:start;
}
.about-copy p{color:var(--gray);margin-bottom:18px}
.about-list{margin-top:20px;display:flex;flex-direction:column;gap:10px}
.about-list li{
  padding-left:24px;
  position:relative;
  color:var(--navy);
  font-weight:500;
  font-size:0.95rem;
}
.about-list li::before{
  content:"";
  position:absolute;
  left:0;top:9px;
  width:10px;height:10px;
  background:var(--amber);
}
.about-card{
  background:var(--navy);
  color:#fff;
  padding:40px 34px;
  border-radius:var(--radius);
}
.about-card h3{
  font-family:var(--font-head);
  font-weight:700;
  margin-bottom:24px;
  font-size:1.2rem;
}
.about-feature{
  padding:18px 0;
  border-top:1px solid rgba(255,255,255,0.15);
}
.about-feature span{
  display:block;
  font-family:var(--font-head);
  font-weight:700;
  color:var(--amber);
  margin-bottom:6px;
  font-size:0.98rem;
}
.about-feature p{color:#d8d2bd;font-size:0.9rem}

/* ---------- CTA band ---------- */
.cta-band{
  background:var(--navy);
  color:#fff;
  padding:80px 0;
}
.cta-inner{text-align:center}
.cta-inner h2{
  font-family:var(--font-head);
  font-weight:800;
  font-size:clamp(1.6rem,3.4vw,2.3rem);
  margin-bottom:14px;
}
.cta-inner p{color:#d8d2bd;margin-bottom:30px}

/* ---------- Contact ---------- */
.contact-grid{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:60px;
}
.contact-info p{color:var(--gray);margin-bottom:28px}
.contact-item{
  padding:18px 0;
  border-top:1px solid var(--line);
  display:flex;
  flex-direction:column;
  gap:4px;
}
.contact-label{
  font-size:0.75rem;
  text-transform:uppercase;
  letter-spacing:0.06em;
  color:var(--amber);
  font-weight:700;
}
.contact-item a{font-weight:600;color:var(--navy)}
.contact-form{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:36px;
  display:flex;
  flex-direction:column;
  gap:18px;
}
.form-row{display:flex;flex-direction:column;gap:6px}
.form-row label{
  font-size:0.82rem;
  font-weight:600;
  color:var(--navy);
}
.form-row input,.form-row textarea{
  font-family:var(--font-body);
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:4px;
  font-size:0.95rem;
  background:#fbfaf7;
  resize:vertical;
}
.form-row input:focus,.form-row textarea:focus{
  outline:none;
  border-color:var(--amber);
}
.form-note{font-size:0.88rem;color:var(--gray);min-height:1.2em}
.form-note.success{color:#2e7d4f}

/* ---------- Footer ---------- */
.site-footer{
  background:var(--charcoal);
  color:#aab1ba;
  padding:48px 0;
}
.footer-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  text-align:center;
}
.footer-brand{display:flex;align-items:center;gap:10px}
.footer-tag{font-size:0.98rem;color:var(--amber);font-family:var(--font-head);font-weight:600;font-style:italic}
.footer-sub{font-size:0.85rem;color:#8a8672}
.footer-contact{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
  font-size:0.85rem;
  color:#8a8672;
}
.footer-contact a{color:#c9c4ac;transition:color .2s}
.footer-contact a:hover{color:var(--amber)}
.footer-copy{font-size:0.8rem;color:#5c5946}

/* ---------- AI Chat Widget ---------- */
.chat-launcher{
  position:fixed;
  right:96px;
  bottom:24px;
  z-index:200;
  width:60px;height:60px;
  border-radius:50%;
  background:var(--amber);
  color:var(--navy);
  border:none;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 10px 30px rgba(0,0,0,0.35);
  transition:transform .2s ease, background .2s ease;
}
.chat-launcher:hover{background:var(--amber-2);transform:translateY(-2px)}
.chat-launcher svg{width:26px;height:26px}
.chat-launcher .chat-close-icon{display:none}
.chat-widget.open .chat-launcher .chat-open-icon{display:none}
.chat-widget.open .chat-launcher .chat-close-icon{display:block}

/* ---------- WhatsApp floating button ---------- */
.whatsapp-launcher{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:199;
  width:60px;height:60px;
  border-radius:50%;
  background:#25D366;
  color:#fff;
  border:none;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 10px 30px rgba(0,0,0,0.35);
  transition:transform .2s ease, background .2s ease;
}
.whatsapp-launcher:hover{background:#1ebe5a;transform:translateY(-2px)}
.whatsapp-launcher svg{width:30px;height:30px}

/* Small inline WhatsApp icon next to text links */
.whatsapp-icon{
  width:1em;height:1em;
  vertical-align:-0.15em;
  margin-right:6px;
  fill:#25D366;
  flex-shrink:0;
}

.chat-panel{
  position:fixed;
  right:96px;
  bottom:96px;
  z-index:200;
  width:360px;
  max-width:calc(100vw - 48px);
  height:480px;
  max-height:calc(100vh - 140px);
  background:#fff;
  border-radius:12px;
  box-shadow:0 20px 60px rgba(0,0,0,0.35);
  display:flex;
  flex-direction:column;
  overflow:hidden;
  opacity:0;
  transform:translateY(16px) scale(0.98);
  pointer-events:none;
  transition:opacity .2s ease, transform .2s ease;
}
.chat-widget.open .chat-panel{
  opacity:1;
  transform:translateY(0) scale(1);
  pointer-events:auto;
}
.chat-header{
  background:var(--navy);
  color:#fff;
  padding:16px 18px;
  display:flex;
  align-items:center;
  gap:10px;
}
.chat-header-icon{
  width:32px;height:32px;
  border-radius:50%;
  background:var(--amber);
  color:var(--navy);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.chat-header-icon svg{width:18px;height:18px}
.chat-header-text strong{
  display:block;
  font-family:var(--font-head);
  font-size:0.95rem;
}
.chat-header-text span{
  font-size:0.76rem;
  color:#b8b09a;
}
.chat-messages{
  flex:1;
  overflow-y:auto;
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:12px;
  background:#fbfaf7;
}
.chat-msg{
  max-width:85%;
  padding:10px 13px;
  border-radius:10px;
  font-size:0.9rem;
  line-height:1.5;
  white-space:pre-wrap;
}
.chat-msg.bot{
  align-self:flex-start;
  background:#efece4;
  color:var(--charcoal);
  border-bottom-left-radius:2px;
}
.chat-msg.user{
  align-self:flex-end;
  background:var(--navy);
  color:#fff;
  border-bottom-right-radius:2px;
}
.chat-msg.typing{
  display:flex;
  gap:4px;
  align-items:center;
}
.chat-msg.typing span{
  width:6px;height:6px;
  border-radius:50%;
  background:var(--gray);
  opacity:0.5;
  animation:chatTyping 1s infinite ease-in-out;
}
.chat-msg.typing span:nth-child(2){animation-delay:.15s}
.chat-msg.typing span:nth-child(3){animation-delay:.3s}
@keyframes chatTyping{
  0%,60%,100%{opacity:0.3;transform:translateY(0)}
  30%{opacity:1;transform:translateY(-3px)}
}
.chat-input-row{
  border-top:1px solid var(--line);
  padding:10px;
  display:flex;
  gap:8px;
  background:#fff;
}
.chat-input-row input{
  flex:1;
  border:1px solid var(--line);
  border-radius:20px;
  padding:10px 14px;
  font-family:var(--font-body);
  font-size:0.88rem;
  background:#fbfaf7;
}
.chat-input-row input:focus{outline:none;border-color:var(--amber)}
.chat-send{
  width:38px;height:38px;
  border-radius:50%;
  background:var(--amber);
  color:var(--navy);
  border:none;
  cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
  transition:background .2s ease;
}
.chat-send:hover{background:var(--amber-2)}
.chat-send:disabled{opacity:0.5;cursor:default}
.chat-send svg{width:16px;height:16px}

@media (max-width:480px){
  .chat-panel{
    right:12px;
    bottom:144px;
    width:calc(100vw - 24px);
  }
  .chat-launcher{right:16px;bottom:80px;width:52px;height:52px}
  .whatsapp-launcher{right:16px;bottom:16px;width:52px;height:52px}
}

/* ---------- Reveal animation ---------- */
.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .6s ease, transform .6s ease;
}
.reveal.in-view{opacity:1;transform:translateY(0)}

/* ---------- Responsive ---------- */
@media (max-width:960px){
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .process-grid{grid-template-columns:repeat(2,1fr)}
  .about-grid,.contact-grid{grid-template-columns:1fr}
  .projects-grid{grid-template-columns:1fr}
  .gov-grid{grid-template-columns:repeat(2,1fr)}
  .cert-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:720px){
  .nav{
    position:fixed;
    top:0;right:0;
    height:100vh;
    width:78%;
    max-width:320px;
    background:var(--navy);
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
    gap:28px;
    padding:40px;
    transform:translateX(100%);
    transition:transform .3s ease;
  }
  .nav.open{transform:translateX(0)}
  .nav-toggle{display:flex}
  .nav a{font-size:1.05rem}
  .services-grid{grid-template-columns:1fr}
  .process-grid{grid-template-columns:1fr}
  .gov-grid{grid-template-columns:1fr}
  .cert-grid{grid-template-columns:1fr}
  .hero-stats{gap:28px}
}
