/* =========================================================
   REDSPY — FORENSIC INVESTIGATION
   MASTER CSS
   Keep this file beside forensic-investigation.html
   ========================================================= */

:root{
  --burgundy:#a8172b;
  --burgundy-dark:#78101f;
  --gold:#c9a24d;
  --gold-light:#ead28f;
  --black:#090708;
  --black-2:#151012;
  --ivory:#f7f3eb;
  --white:#ffffff;
  --text:#2e2928;
  --muted:#6d6762;
  --line:rgba(201,162,77,.28);
  --container:1180px;
  --shadow:0 20px 55px rgba(20,8,10,.14);
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
  overflow-x:hidden;
}

body{
  margin:0;
  background:var(--ivory);
  color:var(--text);
  font-family:Inter,Arial,sans-serif;
  line-height:1.65;
  overflow-x:hidden;
}

a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
button{font:inherit}

.container{
  width:min(var(--container),calc(100% - 64px));
  margin-inline:auto;
}

/* ---------- TOPBAR ---------- */

.topbar{
  height:38px;
  overflow:hidden;
  background:#080607;
  border-bottom:1px solid rgba(201,162,77,.35);
  color:var(--gold-light);
}

.ticker-track{
  height:100%;
  display:flex;
  width:max-content;
  animation:ticker 42s linear infinite;
}

.ticker-set{
  display:flex;
  align-items:center;
  flex-shrink:0;
  white-space:nowrap;
}

.ticker-set span{
  padding:0 18px;
  font-size:10px;
  font-weight:800;
  letter-spacing:1.25px;
}

.ticker-set b{
  color:var(--burgundy);
  font-size:8px;
}

@keyframes ticker{
  to{transform:translateX(-50%)}
}

/* ---------- HEADER ---------- */

.site-header{
  position:relative;
  z-index:100;
  background:linear-gradient(110deg,#070405,#180a0d 55%,#090506);
  border-bottom:1px solid rgba(201,162,77,.6);
}

.nav-wrap{
  min-height:92px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.brand{
  flex:0 0 auto;
}

.brand img{
  width:155px;
}

.main-nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:22px;
}

.main-nav>a,
.dropdown-toggle{
  color:#fff;
  font-size:13px;
  font-weight:700;
  white-space:nowrap;
}

.main-nav>a:hover,
.main-nav>a.current,
.dropdown-toggle:hover{
  color:var(--gold);
}

.nav-dropdown{
  position:relative;
}

.dropdown-toggle{
  padding:0;
  border:0;
  background:none;
  cursor:pointer;
}

.dropdown-toggle i{
  margin-left:4px;
  font-size:9px;
}

.dropdown-menu{
  position:absolute;
  top:calc(100% + 18px);
  left:-15px;
  min-width:255px;
  padding:8px;
  display:none;
  background:#10080a;
  border:1px solid rgba(201,162,77,.55);
  box-shadow:0 18px 35px rgba(0,0,0,.35);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu{
  display:block;
}

.dropdown-menu a{
  display:block;
  padding:10px 12px;
  color:#fff;
  font-size:12px;
  border-bottom:1px solid rgba(201,162,77,.12);
}

.dropdown-menu a:last-child{border-bottom:0}

.dropdown-menu a:hover,
.dropdown-menu a.current{
  color:var(--gold-light);
  background:rgba(201,162,77,.08);
}

.consult-btn{
  padding:13px 18px;
  color:#fff!important;
  border:1px solid #d22a42;
  border-radius:4px;
  background:linear-gradient(135deg,#a8172b,#c21d35);
  font-weight:800!important;
}

.menu-toggle{
  display:none;
  width:44px;
  height:42px;
  border:1px solid var(--gold);
  border-radius:4px;
  color:#fff;
  background:transparent;
}

/* ---------- HERO ---------- */

.hero{
  min-height:720px;
  position:relative;
  display:flex;
  align-items:stretch;
  overflow:hidden;
  color:#fff;
  background:#0b0809;
}

.hero-image{
  position:absolute;
  inset:0 0 0 40%;
  background-image:url("../images/hero/forensic-investigation-hero.webp");
  background-size:cover;
  background-position:100% center;
  background-repeat:no-repeat;
  z-index:0;
}

.hero-shade{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(
      90deg,
      rgba(7,4,5,.99) 0%,
      rgba(9,4,6,.96) 28%,
      rgba(11,5,7,.78) 45%,
      rgba(11,5,7,.34) 67%,
      rgba(11,5,7,.08) 100%
    );
}

.hero-inner{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  min-height:600px;
}

.hero-copy{
  max-width:760px;
  padding:90px 0 110px;
}

.eyebrow,
.kicker,
.section-label{
  color:var(--gold-light);
  font-size:12px;
  font-weight:800;
  letter-spacing:2.7px;
}

.eyebrow{
  display:flex;
  align-items:center;
  gap:11px;
}

.eyebrow span{
  width:32px;
  height:1px;
  background:var(--gold);
}

.hero h1{
  margin:20px 0 0;
  font:700 clamp(58px,6.8vw,88px)/.88 "Cormorant Garamond",Georgia,serif;
  letter-spacing:-1px;
}

.hero h1 em,
.section-heading h2 em,
.copy h2 em,
.cta h2 em{
  color:var(--gold);
  font-style:normal;
}

.hero h2{
  margin:25px 0 0;
  color:#fff;
  font:600 clamp(25px,3vw,34px)/1.1 "Cormorant Garamond",Georgia,serif;
}

.hero-copy>p{
  max-width:665px;
  margin:18px 0 0;
  color:rgba(255,255,255,.85);
  font-size:17px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:13px;
  margin-top:32px;
}

.btn{
  min-height:53px;
  padding:14px 22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:5px;
  font-size:14px;
  font-weight:800;
  transition:transform .25s ease,background .25s ease;
}

.btn:hover{transform:translateY(-3px)}

.btn-red{
  color:#fff;
  border:1px solid #d22a42;
  background:linear-gradient(135deg,#a8172b,#c51e36);
}

.btn-outline{
  color:var(--gold-light);
  border:1px solid var(--gold);
  background:rgba(10,4,6,.42);
}

.btn-outline:hover{
  color:#18120c;
  background:var(--gold);
}

.btn-gold{
  color:#18120c;
  border:1px solid var(--gold-light);
  background:linear-gradient(135deg,#c9a24d,#e8cf8c);
}

/* ---------- HERO TRUST ---------- */

.hero-trust{
  position:absolute;
  z-index:3;
  left:50%;
  bottom:0;
  transform:translateX(-50%);
  display:grid;
  grid-template-columns:repeat(4,1fr);
  width:min(var(--container),calc(100% - 64px));
  background:rgba(10,8,8,.94);
  border-top:1px solid rgba(201,162,77,.65);
}

.hero-trust article{
  min-height:104px;
  padding:18px;
  display:flex;
  align-items:center;
  gap:13px;
  border-right:1px solid rgba(201,162,77,.25);
}

.hero-trust article:last-child{border-right:0}

.hero-trust article>i{
  flex:0 0 44px;
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border:1px solid var(--gold);
  border-radius:50%;
  color:var(--gold);
}

.hero-trust strong{
  display:block;
  color:#fff;
  font-size:13px;
}

.hero-trust small{
  display:block;
  margin-top:3px;
  color:rgba(255,255,255,.62);
  font-size:11px;
  line-height:1.45;
}

/* ---------- COMMON SECTIONS ---------- */

.section{
  padding:90px 0;
}

.narrow{
  max-width:900px;
}

.intro{
  background:var(--ivory);
}

.section-label{
  margin-bottom:15px;
  color:var(--burgundy);
}

.intro h2{
  margin:0;
  color:#181516;
  font-size:clamp(28px,4vw,45px);
  letter-spacing:.5px;
}

.intro h3{
  margin:25px 0 18px;
  font-size:22px;
}

.intro h3 em{
  font-family:"Cormorant Garamond",Georgia,serif;
  color:var(--burgundy);
}

.intro p{
  margin:0 0 16px;
  font-size:16px;
  color:var(--text);
}

.section-heading{
  max-width:780px;
  margin:0 auto 48px;
  text-align:center;
}

.section-heading .kicker{
  color:var(--burgundy);
  margin-bottom:13px;
}

.section-heading h2{
  margin:0;
  font:700 clamp(42px,5vw,62px)/.98 "Cormorant Garamond",Georgia,serif;
}

.section-heading p{
  max-width:680px;
  margin:18px auto 0;
  color:var(--muted);
  font-size:16px;
}

/* ---------- EXAMINE ---------- */

.examine{
  background:#fff;
}

.card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:17px;
}

.service-card{
  min-height:210px;
  padding:25px;
  background:linear-gradient(145deg,#fff,#faf7f1);
  border:1px solid rgba(75,49,31,.14);
  border-top:2px solid var(--gold);
  box-shadow:0 8px 22px rgba(35,21,15,.06);
  transition:transform .28s ease,box-shadow .28s ease;
}

.service-card:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow);
}

.icon{
  width:50px;
  height:50px;
  display:grid;
  place-items:center;
  margin-bottom:17px;
  border-radius:50%;
  color:#fff;
  background:linear-gradient(145deg,#a8172b,#7e1020);
}

.service-card h3{
  margin:0 0 7px;
  font:600 22px/1 "Cormorant Garamond",Georgia,serif;
}

.service-card p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.65;
}

/* ---------- APPROACH ---------- */

.approach{
  background:var(--ivory);
}

.two-column{
  display:grid;
  grid-template-columns:1fr .95fr;
  gap:70px;
  align-items:center;
}

.visual{
  position:relative;
  min-height:450px;
  overflow:hidden;
  border:1px solid rgba(201,162,77,.4);
  box-shadow:var(--shadow);
  background:#161012;
}

.visual img{
  width:100%;
  height:450px;
  object-fit:cover;
}

.visual:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(145deg,rgba(12,6,8,.05),rgba(8,5,6,.55));
  pointer-events:none;
}

.visual-caption{
  position:absolute;
  z-index:2;
  left:20px;
  bottom:20px;
  padding:13px 16px;
  color:#fff;
  font-size:9px;
  letter-spacing:1.5px;
  background:rgba(9,5,7,.88);
  border-left:3px solid var(--gold);
}

.copy .kicker{
  margin-bottom:14px;
  color:var(--burgundy);
}

.copy h2{
  margin:0;
  font:700 clamp(42px,5vw,62px)/.98 "Cormorant Garamond",Georgia,serif;
}

.copy>p{
  margin:20px 0 0;
  color:var(--muted);
  font-size:16px;
}

.check-list{
  list-style:none;
  padding:0;
  margin:24px 0 0;
}

.check-list li{
  margin:11px 0;
  font-size:14px;
  font-weight:600;
}

.check-list i{
  margin-right:9px;
  color:var(--burgundy);
}

/* ---------- PROCESS ---------- */

.process{
  position:relative;
  overflow:hidden;
  color:#fff;
  background:linear-gradient(110deg,#080708,#171113 55%,#080708);
}

.process-pattern{
  position:absolute;
  inset:0;
  opacity:.28;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
  background-size:55px 55px;
}

.process>.container{
  position:relative;
  z-index:2;
}

.section-heading.dark h2{color:#fff}
.section-heading.dark p{color:rgba(255,255,255,.66)}
.section-heading.dark .kicker{color:#dfc06e}

.process-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:15px;
}

.process-grid article{
  text-align:center;
}

.process-grid article>b{display:none}

.step{
  width:58px;
  height:58px;
  margin:0 auto 14px;
  display:grid;
  place-items:center;
  border:2px solid var(--gold);
  border-radius:50%;
  color:#fff;
  font-weight:800;
  font-size:13px;
  background:linear-gradient(145deg,#a8172b,#71101c);
}

.process-grid h3{
  margin:0 0 8px;
  color:var(--gold-light);
  font:600 20px/1 "Cormorant Garamond",Georgia,serif;
}

.process-grid p{
  margin:0;
  color:rgba(255,255,255,.66);
  font-size:11px;
}

/* ---------- STANDARD ---------- */

.standard{
  background:#fff;
}

.standard-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border:1px solid rgba(75,49,31,.14);
}

.standard-grid article{
  padding:30px 25px;
  border-right:1px solid rgba(75,49,31,.14);
}

.standard-grid article:last-child{border-right:0}

.standard-icon{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  margin-bottom:15px;
  border-radius:50%;
  color:#fff;
  background:linear-gradient(145deg,#a8172b,#7d1020);
}

.standard-grid h3{
  margin:0 0 8px;
  font:600 22px/1 "Cormorant Garamond",Georgia,serif;
}

.standard-grid p{
  margin:0;
  color:var(--muted);
  font-size:12px;
}

/* ---------- CTA ---------- */

.cta{
  min-height:390px;
  position:relative;
  display:flex;
  align-items:center;
  overflow:hidden;
  color:#fff;
  border-top:1px solid var(--gold);
  border-bottom:1px solid var(--gold);
  background:#100709;
}

.cta-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(8,3,5,.94),rgba(19,5,9,.76) 52%,rgba(80,8,18,.35)),
    url("assets/images/services/process-forensic-evidence-search.webp") center/cover no-repeat;
}

.cta-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(8,3,5,.5),rgba(8,3,5,.08));
}

.cta-inner{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
  padding:70px 0;
}

.kicker.light{color:#dfc06e}

.cta h2{
  margin:12px 0 0;
  font:700 clamp(40px,5vw,60px)/.98 "Cormorant Garamond",Georgia,serif;
}

.cta p{
  max-width:620px;
  margin:18px 0 0;
  color:rgba(255,255,255,.78);
  font-size:15px;
}

.cta-actions{
  min-width:270px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

/* ---------- SERVICE NAV ---------- */

.service-nav{
  color:#fff;
  background:#11100f;
}

.service-nav-grid{
  min-height:110px;
  display:grid;
  grid-template-columns:1fr 180px 1fr;
}

.service-nav-grid>a{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:20px 28px;
}

.service-nav-grid>a:first-child{
  border-right:1px solid var(--line);
}

.service-nav-grid>a.next{
  text-align:right;
}

.service-nav-grid small{
  color:var(--gold);
  font-size:9px;
  letter-spacing:1.8px;
}

.service-nav-grid strong{
  margin-top:5px;
  font:600 22px/1.2 "Cormorant Garamond",Georgia,serif;
}

.service-nav-brand{
  display:grid;
  place-items:center;
  color:var(--gold);
  font-size:12px;
  font-weight:800;
  letter-spacing:2.5px;
}

/* ---------- FOOTER ---------- */

.footer{
  color:rgba(255,255,255,.72);
  background:linear-gradient(115deg,#080809,#131112 55%,#080809);
}

.footer-grid{
  display:grid;
  grid-template-columns:1.45fr .8fr 1.2fr 1fr;
  gap:45px;
  padding:65px 0 50px;
}

.footer-brand img{
  width:165px;
  margin-bottom:17px;
}

.footer p{
  font-size:13px;
  line-height:1.7;
}

.footer-col h3{
  margin:0 0 18px;
  color:var(--gold-light);
  font:600 22px/1 "Cormorant Garamond",Georgia,serif;
}

.footer-col a{
  display:block;
  margin:8px 0;
  color:rgba(255,255,255,.62);
  font-size:12px;
}

.footer-col a:hover{color:var(--gold)}

.contact-col p{
  margin:10px 0;
}

.contact-col i{
  width:20px;
  color:var(--gold);
}

.footer-consult{
  width:max-content;
  margin-top:16px!important;
  padding:10px 13px;
  color:var(--gold-light)!important;
  border:1px solid var(--gold);
}

.footer-bottom{
  border-top:1px solid var(--line);
}

.footer-bottom .container{
  min-height:58px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  font-size:10px;
}

/* ---------- FLOATING BUTTONS ---------- */

.floating{
  position:fixed;
  z-index:1200;
  right:20px;
  bottom:22px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.floating a{
  width:50px;
  height:50px;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:#fff;
  font-size:20px;
  box-shadow:0 12px 30px #0004;
}

.whatsapp{background:#1fc66b}
.phone{background:#b5162c}

/* ---------- TABLET ---------- */

@media (max-width:1050px){
  .container{width:min(920px,calc(100% - 44px))}
  .main-nav{gap:13px}
  .main-nav>a,.dropdown-toggle{font-size:11px}
  .card-grid{grid-template-columns:repeat(2,1fr)}
  .process-grid{grid-template-columns:repeat(3,1fr);gap:28px}
  .footer-grid{grid-template-columns:1.2fr .8fr 1.1fr}
  .contact-col{grid-column:1/-1}
  .hero-trust{width:min(920px,calc(100% - 44px))}
  .hero-image{inset:0 0 0 34%}
}

/* ---------- MOBILE ---------- */

@media (max-width:760px){
  .container{width:min(100% - 32px,560px)}

  .topbar{height:34px}
  .ticker-set span{font-size:9px;padding:0 12px}

  .nav-wrap{min-height:70px}
  .brand img{width:130px}

  .menu-toggle{
    display:grid;
    place-items:center;
    margin-left:auto;
  }

  .main-nav{
    position:absolute;
    left:16px;
    right:16px;
    top:calc(100% + 8px);
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:10px;
    background:#10080a;
    border:1px solid rgba(201,162,77,.5);
    box-shadow:0 18px 35px rgba(0,0,0,.35);
  }

  .main-nav.open{display:flex}

  .main-nav>a,
  .dropdown-toggle{
    padding:13px 12px;
    font-size:13px;
    text-align:left;
  }

  .consult-btn{text-align:center!important}

  .dropdown-menu{
    position:static;
    display:none;
    min-width:0;
    padding:0 0 0 10px;
    border:0;
    border-top:1px solid rgba(201,162,77,.2);
    box-shadow:none;
  }

  .nav-dropdown.open .dropdown-menu{display:block}

  .hero{
    min-height:760px;
  }

  .hero-image{
    inset:0;
    background-position:center;
    opacity:.7;
  }

  .hero-shade{
    background:linear-gradient(90deg,rgba(7,4,5,.96),rgba(9,4,6,.78) 60%,rgba(11,5,7,.48));
  }

  .hero-inner{
    min-height:620px;
    align-items:flex-start;
  }

  .hero-copy{
    padding:75px 0 190px;
  }

  .hero h1{
    font-size:clamp(50px,14vw,72px);
  }

  .hero-copy>p{
    font-size:15px;
  }

  .hero-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .btn{width:100%}

  .hero-trust{
    position:absolute;
    bottom:0;
    left:16px;
    transform:none;
    width:calc(100% - 32px);
    grid-template-columns:1fr;
  }

  .hero-trust article{
    min-height:72px;
    padding:13px 15px;
    border-right:0;
    border-bottom:1px solid rgba(201,162,77,.22);
  }

  .hero-trust article:last-child{border-bottom:0}

  .section{padding:65px 0}

  .card-grid{grid-template-columns:1fr}

  .two-column{
    grid-template-columns:1fr;
    gap:40px;
  }

  .visual,
  .visual img{
    min-height:340px;
    height:340px;
  }

  .process-grid{grid-template-columns:repeat(2,1fr)}

  .standard-grid{grid-template-columns:1fr}

  .standard-grid article{
    border-right:0;
    border-bottom:1px solid rgba(75,49,31,.14);
  }

  .standard-grid article:last-child{border-bottom:0}

  .cta{min-height:520px}

  .cta-inner{
    flex-direction:column;
    align-items:stretch;
    padding:65px 0;
  }

  .cta-actions{width:100%}

  .service-nav-grid{
    grid-template-columns:1fr;
  }

  .service-nav-grid>a:first-child{
    border-right:0;
    border-bottom:1px solid var(--line);
  }

  .service-nav-grid>a.next{text-align:left}

  .service-nav-brand{
    min-height:65px;
    border-bottom:1px solid var(--line);
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:30px;
  }

  .contact-col{grid-column:auto}

  .footer-bottom .container{
    min-height:80px;
    flex-direction:column;
    justify-content:center;
    text-align:center;
    padding:14px;
  }

  .floating{
    right:13px;
    bottom:14px;
  }

  .floating a{
    width:46px;
    height:46px;
    font-size:18px;
  }
}

@media (max-width:430px){
  .hero h1{font-size:49px}
  .section-heading h2,
  .copy h2{font-size:43px}
  .process-grid{grid-template-columns:1fr}
}
