@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500&display=swap');

/* ─── Tokens ─── */
:root {
  --orange:      #E85C0D;
  --orange-dk:   #C44C0A;
  --orange-lt:   #FF7A36;
  --orange-bg:   rgba(232,92,13,0.08);
  --navy:        #0B1D3A;
  --navy-2:      #132947;
  --navy-3:      #1E3A5F;
  --navy-lt:     rgba(11,29,58,0.06);
  --white:       #FFFFFF;
  --off:         #F7F8FA;
  --g100:        #F0F2F5;
  --g200:        #E2E5EA;
  --g300:        #CBD1DA;
  --g400:        #9BA5B4;
  --g600:        #6B7586;
  --g800:        #374151;
  --ink:         #0F1923;
  --body:        #4B5869;
  --r:           10px;
  --r-lg:        16px;
  --r-xl:        24px;
  --sh:          0 2px 16px rgba(11,29,58,0.08);
  --sh-md:       0 8px 32px rgba(11,29,58,0.13);
  --sh-lg:       0 20px 60px rgba(11,29,58,0.18);
  --ease:        cubic-bezier(0.4,0,0.2,1);
  --t:           0.25s;
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; }
body { font-family:'Inter',system-ui,sans-serif; font-weight:400; line-height:1.6; color:var(--body); background:var(--white); overflow-x:hidden; }
a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; }
button { font-family:inherit; cursor:pointer; border:none; background:none; }
::selection { background:var(--orange); color:#fff; }
::-webkit-scrollbar { width:5px; }
::-webkit-scrollbar-track { background:var(--off); }
::-webkit-scrollbar-thumb { background:var(--orange); border-radius:3px; }

/* ─── Type ─── */
h1,h2,h3,h4,h5,h6 { font-family:'Outfit',sans-serif; font-weight:700; line-height:1.15; color:var(--ink); }

/* ─── Layout ─── */
.container     { max-width:1200px; margin:0 auto; padding:0 28px; }
.container-lg  { max-width:1360px; margin:0 auto; padding:0 28px; }
.section       { padding:100px 0; }
.section-sm    { padding:64px 0; }
.section-bg    { background:var(--off); }
.section-navy  { background:var(--navy); }

/* ─── Reveal animations ─── */
.reveal { opacity:0; transform:translateY(28px); transition:opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.in  { opacity:1; transform:translateY(0); }
.d1 { transition-delay:.08s; }
.d2 { transition-delay:.16s; }
.d3 { transition-delay:.24s; }
.d4 { transition-delay:.32s; }
.d5 { transition-delay:.40s; }
.d6 { transition-delay:.48s; }

/* ─── Buttons ─── */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:'Outfit',sans-serif; font-size:.9rem; font-weight:600; letter-spacing:.01em;
  padding:14px 28px; border-radius:8px; border:none;
  white-space:nowrap; cursor:pointer; position:relative; overflow:hidden;
  transition:all var(--t) var(--ease);
}
.btn-primary   { background:var(--orange); color:#fff; }
.btn-primary:hover  { background:var(--orange-dk); transform:translateY(-2px); box-shadow:0 10px 28px rgba(232,92,13,.35); }
.btn-white     { background:#fff; color:var(--navy); }
.btn-white:hover { transform:translateY(-2px); box-shadow:0 10px 28px rgba(0,0,0,.15); }
.btn-outline   { background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,.4); }
.btn-outline:hover { border-color:#fff; background:rgba(255,255,255,.1); }
.btn-ghost     { background:transparent; color:var(--orange); border:1.5px solid var(--g200); }
.btn-ghost:hover { border-color:var(--orange); transform:translateY(-2px); }
.btn-lg        { padding:17px 36px; font-size:1rem; }
.btn-sm        { padding:10px 20px; font-size:.8125rem; }
.btn svg       { flex-shrink:0; transition:transform var(--t) var(--ease); }
.btn:hover svg { transform:translateX(3px); }

/* ─── Section label ─── */
.s-tag {
  display:inline-flex; align-items:center; gap:9px;
  font-family:'Outfit',sans-serif; font-size:.72rem; font-weight:700;
  letter-spacing:.14em; text-transform:uppercase; color:var(--orange); margin-bottom:14px;
}
.s-tag::before { content:''; display:block; width:22px; height:2px; background:var(--orange); border-radius:1px; flex-shrink:0; }
.s-title {
  font-family:'Outfit',sans-serif;
  font-size:clamp(1.9rem,3.5vw,2.8rem); font-weight:800;
  color:var(--ink); line-height:1.12; margin-bottom:16px;
}
.s-title em { color:var(--orange); font-style:normal; }
.s-title.white { color:#fff; }
.s-sub { font-size:.9375rem; line-height:1.75; color:var(--body); max-width:500px; }
.s-sub.white { color:rgba(255,255,255,.65); }
.s-header { margin-bottom:56px; }
.s-header.center { text-align:center; }
.s-header.center .s-sub { margin:0 auto; }
.s-header.center .s-tag { justify-content:center; }
.s-header.center .s-tag::before { display:none; }
.s-header.center .s-tag::after { content:''; display:block; width:22px; height:2px; background:var(--orange); border-radius:1px; flex-shrink:0; }

/* ─── Badges ─── */
.badge { display:inline-block; font-family:'Outfit',sans-serif; font-size:.68rem; font-weight:700; letter-spacing:.09em; text-transform:uppercase; padding:5px 13px; border-radius:100px; }
.badge-orange { background:var(--orange); color:#fff; }
.badge-navy   { background:var(--navy); color:#fff; }
.badge-white  { background:rgba(255,255,255,.92); color:var(--navy); }
.badge-teal   { background:#0D9488; color:#fff; }
.badge-slate  { background:var(--g600); color:#fff; }

/* ─── NAVBAR ─── */
.navbar { position:fixed; top:0; left:0; right:0; z-index:200; }
.nav-bar {
  display:flex; align-items:center; justify-content:space-between;
  height:180px; padding:0 36px;
  transition:background var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.navbar.top    .nav-bar { background:transparent; }
.navbar.scrolled .nav-bar { background:rgba(11,29,58,.97); backdrop-filter:blur(14px); box-shadow:0 2px 28px rgba(0,0,0,.3); }
.navbar.light .nav-bar   { background:#fff; box-shadow:var(--sh); }
.navbar.light.scrolled .nav-bar { background:#fff; }

.nav-logo { display:flex; align-items:center; gap:0; flex-shrink:0; }
.nav-brand { display:flex; flex-direction:column; line-height:1.1; margin-left:-65px; }
.nav-brand-name { font-family:'Outfit',sans-serif; font-size:34px; font-weight:800; color:#fff; letter-spacing:-.02em; }
.navbar.light .nav-brand-name { color:var(--navy); }
.nav-logo-icon { width:40px; height:40px; background:var(--orange); border-radius:8px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.nav-logo-icon svg { width:22px; height:22px; fill:#fff; }
.nav-logo-text { display:flex; flex-direction:column; line-height:1.1; }
.nav-logo-name { font-family:'Outfit',sans-serif; font-size:17px; font-weight:800; color:#fff; letter-spacing:-.01em; }
.nav-logo-sub  { font-size:9.5px; font-weight:500; color:rgba(255,255,255,.45); letter-spacing:.14em; text-transform:uppercase; }
.navbar.light .nav-logo-name { color:var(--navy); }
.navbar.light .nav-logo-sub  { color:var(--g400); }

.nav-links { display:flex; align-items:center; gap:4px; }
.nav-link {
  font-family:'Outfit',sans-serif; font-size:.875rem; font-weight:500;
  color:rgba(255,255,255,.78); padding:9px 15px; border-radius:7px;
  transition:all var(--t) var(--ease); position:relative;
}
.nav-link:hover    { color:#fff; background:rgba(255,255,255,.09); }
.nav-link.active   { color:#fff; }
.nav-link.active::after { content:''; position:absolute; bottom:4px; left:50%; transform:translateX(-50%); width:18px; height:2px; background:var(--orange); border-radius:1px; }
.navbar.light .nav-link         { color:var(--g600); }
.navbar.light .nav-link:hover   { color:var(--navy); background:var(--g100); }
.navbar.light .nav-link.active  { color:var(--navy); }

.nav-right { display:flex; align-items:center; gap:18px; flex-shrink:0; }
.nav-phone {
  display:flex; align-items:center; gap:7px;
  font-family:'Outfit',sans-serif; font-size:.875rem; font-weight:600;
  color:rgba(255,255,255,.65); transition:color var(--t) var(--ease);
}
.nav-phone:hover { color:#fff; }
.nav-phone svg { width:15px; height:15px; stroke:currentColor; fill:none; stroke-width:2; flex-shrink:0; }
.navbar.light .nav-phone       { color:var(--g600); }
.navbar.light .nav-phone:hover { color:var(--navy); }
.hamburger { display:none; color:#fff; padding:8px; }
.navbar.light .hamburger { color:var(--navy); }

/* Mobile menu */
.mob-menu { display:none; position:fixed; inset:0; z-index:199; background:var(--navy); flex-direction:column; align-items:center; justify-content:center; gap:8px; }
.mob-menu.open { display:flex; }
.mob-link { font-family:'Outfit',sans-serif; font-size:2.2rem; font-weight:800; color:#fff; padding:14px 48px; border-radius:8px; transition:color var(--t); }
.mob-link:hover { color:var(--orange); }
.mob-close { position:absolute; top:24px; right:24px; color:rgba(255,255,255,.5); padding:8px; }
.mob-close:hover { color:#fff; }
.mob-cta { margin-top:32px; }
.mob-phone { margin-top:16px; font-family:'Outfit',sans-serif; font-size:.9rem; color:rgba(255,255,255,.4); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Video fills the entire hero, cropped to cover */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  /* Subtle scale-up so edges are never visible on any screen ratio */
  transform: scale(1.04);
}

/*
  Inward vignette — radial gradient darkens all four edges
  so the video never visually bleeds into the page background.
  The center is kept transparent so the video reads clearly behind the content.
*/
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    /* Edges: dark navy inward from all sides */
    radial-gradient(
      ellipse 100% 100% at 50% 50%,
      transparent 30%,
      rgba(11, 29, 58, 0.55) 65%,
      rgba(11, 29, 58, 0.88) 100%
    );
  /* Layer a centre-weighted dark tint so text is always readable */
  background:
    radial-gradient(ellipse 110% 110% at 50% 50%,
      rgba(11,29,58,.38) 0%,
      rgba(11,29,58,.62) 55%,
      rgba(11,29,58,.92) 100%
    );
}

/* Hard bottom fade — blends hero cleanly into the navy stats strip */
.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  z-index: 2;
  background: linear-gradient(to bottom, transparent 0%, rgba(11,29,58,.7) 60%, var(--navy) 100%);
  pointer-events: none;
}

/* Content sits above all overlays, centered */
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 200px 60px 120px;
}

/* Centered variant */
.hero-content-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Left-aligned variant */
.hero-content-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 860px;
  margin-left: 0;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(232,92,13,.14);
  border: 1px solid rgba(232,92,13,.28);
  color: #FF8C52;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  font-family: 'Outfit', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.hero-pill-dot { width:7px; height:7px; background:var(--orange); border-radius:50%; }

.hero-h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 1.03;
  color: #fff;
  letter-spacing: -.025em;
  margin-bottom: 24px;
  max-width: 820px;
}
.hero-h1 em { color: var(--orange); font-style: normal; }

.hero-p {
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: flex-start; }
.hero-actions-center { justify-content: center; }

.hero-trust { display:flex; align-items:stretch; gap:10px; margin-top:28px; flex-wrap:nowrap; justify-content:flex-start; }
.hero-trust-center { justify-content: center; }

.hero-trust-card {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  padding: 10px 12px;
  border-radius: 10px;
  overflow: hidden;
}
.hero-trust-icon { width:32px; height:32px; background:var(--orange); border-radius:7px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.hero-trust-icon svg { width:16px; height:16px; fill:#fff; }
.hero-trust-val { font-family:'Outfit',sans-serif; font-size:.9rem; font-weight:800; color:#fff; line-height:1.1; white-space:nowrap; }
.hero-trust-lbl { font-size:.65rem; color:rgba(255,255,255,.45); margin-top:2px; }

.hero-scroll { position:absolute; bottom:36px; left:50%; transform:translateX(-50%); display:flex; flex-direction:column; align-items:center; gap:8px; animation:bob 2.2s ease-in-out infinite; z-index:4; }
@keyframes bob { 0%,100%{ transform:translateX(-50%) translateY(0); } 50%{ transform:translateX(-50%) translateY(9px); } }
.hero-scroll-line { width:1px; height:44px; background:linear-gradient(to bottom,rgba(255,255,255,.35),transparent); }
.hero-scroll span { font-size:.68rem; letter-spacing:.18em; text-transform:uppercase; color:rgba(255,255,255,.35); }

/* ─── STATS ─── */
.stats-strip { background:var(--navy); border-top:1px solid rgba(255,255,255,.05); }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); }
.stat-cell {
  padding:44px 28px; border-right:1px solid rgba(255,255,255,.06);
  display:flex; flex-direction:column; align-items:center; text-align:center; gap:6px;
}
.stat-cell:last-child { border-right:none; }
.stat-num { font-family:'Outfit',sans-serif; font-size:clamp(2.2rem,4vw,3.2rem); font-weight:900; color:var(--orange); line-height:1; }
.stat-lbl { font-size:.8rem; color:rgba(255,255,255,.5); font-weight:400; }

/* ─── SERVICE CARDS ─── */
.svc-grid { display:grid; gap:24px; }
.svc-grid-4 { grid-template-columns:repeat(4,1fr); }
.svc-grid-3 { grid-template-columns:repeat(3,1fr); }
.svc-grid-2 { grid-template-columns:repeat(2,1fr); }

.svc-img { width:100%; height:180px; object-fit:cover; border-radius:10px; margin-bottom:22px; display:block; }

.svc-card {
  background:#fff; border-radius:var(--r-lg); border:1px solid var(--g200);
  padding:28px; cursor:default; position:relative; overflow:hidden;
  transition:all var(--t) var(--ease);
}
.svc-card::before { content:''; position:absolute; bottom:0; left:0; right:0; height:3px; background:var(--orange); transform:scaleX(0); transform-origin:left; transition:transform .3s var(--ease); }
.svc-card:hover { transform:translateY(-7px); box-shadow:var(--sh-lg); border-color:transparent; }
.svc-card:hover::before { transform:scaleX(1); }

.svc-icon { width:52px; height:52px; background:var(--orange-bg); border-radius:12px; display:flex; align-items:center; justify-content:center; margin-bottom:22px; }
.svc-icon svg { width:26px; height:26px; stroke:var(--orange); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.svc-name { font-size:1.08rem; font-weight:700; color:var(--ink); margin-bottom:10px; }
.svc-desc { font-size:.875rem; line-height:1.72; color:var(--g600); margin-bottom:20px; }
.svc-more { font-family:'Outfit',sans-serif; font-size:.8rem; font-weight:700; color:var(--orange); display:inline-flex; align-items:center; gap:6px; transition:gap var(--t); }
.svc-card:hover .svc-more { gap:10px; }

/* Featured service card (large) */
.svc-card-feat {
  background:var(--navy); border-radius:var(--r-lg); padding:40px;
  position:relative; overflow:hidden; cursor:default;
}
.svc-card-feat::before { content:''; position:absolute; top:-60px; right:-60px; width:240px; height:240px; background:radial-gradient(circle,rgba(232,92,13,.25) 0%,transparent 70%); pointer-events:none; }
.svc-card-feat .svc-icon  { background:rgba(232,92,13,.2); }
.svc-card-feat .svc-name  { color:#fff; }
.svc-card-feat .svc-desc  { color:rgba(255,255,255,.6); }
.svc-card-feat .svc-more  { color:var(--orange-lt); }

/* ─── PROJECT CARDS ─── */
.proj-grid { display:grid; gap:28px; }
.proj-grid-3 { grid-template-columns:repeat(3,1fr); }
.proj-grid-2 { grid-template-columns:repeat(2,1fr); }

.proj-card { background:#fff; border-radius:var(--r-xl); overflow:hidden; box-shadow:var(--sh); transition:all var(--t) var(--ease); cursor:default; }
.proj-card:hover { transform:translateY(-9px); box-shadow:var(--sh-lg); }

.proj-img { position:relative; overflow:hidden; aspect-ratio:16/10; }
.proj-img img { width:100%; height:100%; object-fit:cover; transition:transform .55s var(--ease); }
.proj-card:hover .proj-img img { transform:scale(1.07); }
.proj-img-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(11,29,58,.55) 0%,transparent 50%); }
.proj-badge { position:absolute; top:16px; left:16px; }
.proj-year  { position:absolute; top:16px; right:16px; background:rgba(11,29,58,.7); backdrop-filter:blur(8px); color:rgba(255,255,255,.85); font-family:'Outfit',sans-serif; font-size:.72rem; font-weight:700; padding:5px 12px; border-radius:100px; }

.proj-body { padding:22px 24px; }
.proj-meta { display:flex; align-items:center; justify-content:space-between; margin-bottom:8px; }
.proj-type { font-size:.75rem; font-weight:500; color:var(--g400); font-family:'Outfit',sans-serif; letter-spacing:.04em; }
.proj-title { font-size:1.15rem; font-weight:800; color:var(--ink); margin-bottom:7px; font-family:'Outfit',sans-serif; }
.proj-loc { display:flex; align-items:center; gap:5px; font-size:.8125rem; color:var(--g600); }
.proj-loc svg { width:13px; height:13px; stroke:currentColor; fill:none; stroke-width:2; flex-shrink:0; }

.proj-foot { display:flex; align-items:center; justify-content:space-between; padding:14px 24px; border-top:1px solid var(--g100); }
.proj-stat { font-size:.8rem; color:var(--g600); }
.proj-stat strong { color:var(--ink); font-weight:700; }
.proj-arrow { width:32px; height:32px; background:var(--orange-bg); border-radius:8px; display:flex; align-items:center; justify-content:center; transition:all var(--t); }
.proj-card:hover .proj-arrow { background:var(--orange); }
.proj-arrow svg { width:15px; height:15px; stroke:var(--orange); fill:none; stroke-width:2.5; transition:stroke var(--t); }
.proj-card:hover .proj-arrow svg { stroke:#fff; }

/* ─── TESTIMONIALS ─── */
.testi-card { background:#fff; border-radius:var(--r-lg); padding:32px; border:1px solid var(--g200); transition:all var(--t) var(--ease); }
.testi-card:hover { box-shadow:var(--sh-md); border-color:transparent; transform:translateY(-5px); }
.stars { display:flex; gap:2px; margin-bottom:16px; }
.star { color:#F59E0B; font-size:15px; }
.testi-quote { font-size:.9375rem; line-height:1.75; color:var(--g600); margin-bottom:24px; font-style:italic; position:relative; }
.testi-quote::before { content:'\201C'; position:absolute; top:-10px; left:-4px; font-size:3rem; color:var(--orange); opacity:.15; font-family:'Outfit',sans-serif; font-weight:900; line-height:1; }
.testi-author { display:flex; align-items:center; gap:12px; }
.testi-av { width:44px; height:44px; border-radius:50%; overflow:hidden; flex-shrink:0; background:var(--g200); }
.testi-av img { width:100%; height:100%; object-fit:cover; }
.testi-name { font-weight:700; font-size:.9rem; color:var(--ink); }
.testi-role { font-size:.78rem; color:var(--g400); }

/* ─── CTA BANNER ─── */
.cta-band { background:var(--navy); padding:88px 0; position:relative; overflow:hidden; }
.cta-band::before { content:''; position:absolute; top:0; right:0; width:55%; height:100%; background:radial-gradient(ellipse at 80% 50%,rgba(232,92,13,.18) 0%,transparent 65%); pointer-events:none; }
.cta-band::after  { content:''; position:absolute; bottom:-100px; left:-100px; width:400px; height:400px; border:1px solid rgba(232,92,13,.1); border-radius:50%; pointer-events:none; }
.cta-inner { max-width:1200px; margin:0 auto; padding:0 28px; display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap; position:relative; z-index:1; }
.cta-text h2 { font-family:'Outfit',sans-serif; font-size:clamp(1.9rem,3.5vw,2.7rem); font-weight:900; color:#fff; line-height:1.15; margin-bottom:10px; }
.cta-text h2 em { color:var(--orange); font-style:normal; }
.cta-text p { font-size:.9375rem; color:rgba(255,255,255,.62); }
.cta-btns { display:flex; gap:12px; flex-wrap:wrap; flex-shrink:0; }

/* ─── PAGE HERO (inner pages) ─── */
.ph { padding:200px 0 88px; background:var(--navy); position:relative; overflow:hidden; }
.ph::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 75% 50%,rgba(232,92,13,.15) 0%,transparent 60%); }
.ph-content { position:relative; z-index:1; }
.breadcrumb { display:flex; align-items:center; gap:7px; font-size:.8rem; color:rgba(255,255,255,.4); margin-bottom:18px; }
.breadcrumb a { color:rgba(255,255,255,.4); transition:color var(--t); }
.breadcrumb a:hover { color:var(--orange); }
.breadcrumb-sep { color:rgba(255,255,255,.2); }
.breadcrumb-cur { color:var(--orange); }
.ph-title { font-family:'Outfit',sans-serif; font-size:clamp(2.6rem,5.5vw,4.2rem); font-weight:900; color:#fff; margin-bottom:18px; letter-spacing:-.02em; }
.ph-sub { font-size:1.05rem; color:rgba(255,255,255,.62); max-width:540px; line-height:1.75; }

/* ─── FILTER TABS ─── */
.filter-bar { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:44px; }
.f-tab { font-family:'Outfit',sans-serif; font-size:.8125rem; font-weight:600; padding:9px 22px; border-radius:100px; border:1.5px solid var(--g200); color:var(--g600); cursor:pointer; transition:all var(--t) var(--ease); background:#fff; }
.f-tab:hover, .f-tab.on { background:var(--orange); border-color:var(--orange); color:#fff; }

/* ─── ABOUT ─── */
.split { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.split-img { position:relative; }
.split-img img { width:100%; border-radius:var(--r-xl); object-fit:cover; }
.split-img .img-badge {
  position:absolute; bottom:-20px; right:-20px;
  background:var(--orange); border-radius:var(--r-lg); padding:24px 28px; text-align:center;
}
.img-badge-num { font-family:'Outfit',sans-serif; font-size:2.6rem; font-weight:900; color:#fff; line-height:1; }
.img-badge-lbl { font-size:.78rem; color:rgba(255,255,255,.75); margin-top:3px; }

.value-card { background:var(--off); border-radius:var(--r-lg); padding:28px; border-left:4px solid var(--orange); transition:all var(--t) var(--ease); }
.value-card:hover { background:#fff; box-shadow:var(--sh-md); }
.value-emo { font-size:1.8rem; margin-bottom:12px; }
.value-title { font-size:1rem; font-weight:700; color:var(--ink); margin-bottom:8px; }
.value-desc  { font-size:.875rem; line-height:1.7; color:var(--g600); }

.award-card { display:flex; align-items:center; gap:16px; background:#fff; border:1px solid var(--g200); border-radius:var(--r); padding:20px 24px; transition:all var(--t); }
.award-card:hover { box-shadow:var(--sh-md); border-color:transparent; }
.award-icon { width:44px; height:44px; background:var(--orange-bg); border-radius:10px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.award-icon svg { width:22px; height:22px; stroke:var(--orange); fill:none; stroke-width:1.75; }
.award-name { font-weight:700; font-size:.9rem; color:var(--ink); }
.award-body { font-size:.8rem; color:var(--g600); }

/* ─── PROCESS ─── */
.process-steps { display:flex; flex-direction:column; gap:32px; }
.step { display:flex; gap:20px; }
.step-n { width:48px; height:48px; background:var(--orange); border-radius:12px; display:flex; align-items:center; justify-content:center; font-family:'Outfit',sans-serif; font-size:1.15rem; font-weight:900; color:#fff; flex-shrink:0; }
.step-body { padding-top:6px; }
.step-title { font-size:1rem; font-weight:700; color:var(--ink); margin-bottom:6px; }
.step-desc  { font-size:.875rem; line-height:1.72; color:var(--g600); }

/* ─── FAQ ─── */
.faq-item { border-bottom:1px solid var(--g200); }
.faq-q { width:100%; display:flex; align-items:center; justify-content:space-between; gap:20px; padding:22px 0; background:none; border:none; cursor:pointer; text-align:left; }
.faq-q-text { font-family:'Outfit',sans-serif; font-size:1rem; font-weight:700; color:var(--ink); }
.faq-icon { width:28px; height:28px; background:var(--g100); border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:background var(--t), transform var(--t); }
.faq-item.open .faq-icon { background:var(--orange); transform:rotate(45deg); }
.faq-icon svg { width:14px; height:14px; stroke:var(--g600); fill:none; stroke-width:2.5; transition:stroke var(--t); }
.faq-item.open .faq-icon svg { stroke:#fff; }
.faq-a { max-height:0; overflow:hidden; transition:max-height .4s var(--ease); }
.faq-a-inner { padding:0 0 20px; font-size:.9375rem; line-height:1.75; color:var(--g600); }

/* ─── CONTACT ─── */
.contact-box { background:var(--navy); border-radius:var(--r-xl); padding:44px; color:#fff; }
.contact-box-title { font-family:'Outfit',sans-serif; font-size:1.6rem; font-weight:800; margin-bottom:8px; }
.contact-box-sub   { font-size:.9rem; color:rgba(255,255,255,.55); margin-bottom:40px; line-height:1.7; }
.cd { display:flex; gap:14px; margin-bottom:26px; }
.cd-icon { width:42px; height:42px; background:rgba(255,255,255,.07); border-radius:10px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.cd-icon svg { width:19px; height:19px; stroke:var(--orange); fill:none; stroke-width:1.85; }
.cd-lbl { font-size:.7rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.35); margin-bottom:3px; }
.cd-val { font-size:.9375rem; color:#fff; font-weight:500; }
.areas-title { font-size:.7rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.35); margin:28px 0 12px; }
.area-tags { display:flex; flex-wrap:wrap; gap:8px; }
.area-tag { background:rgba(255,255,255,.07); padding:6px 13px; border-radius:100px; font-size:.8rem; color:rgba(255,255,255,.65); }

.form-label { display:block; font-family:'Outfit',sans-serif; font-size:.8rem; font-weight:700; color:var(--ink); margin-bottom:8px; }
.form-ctrl { width:100%; padding:14px 16px; background:var(--off); border:1.5px solid var(--g200); border-radius:8px; font-family:'Inter',sans-serif; font-size:.9375rem; color:var(--ink); outline:none; transition:border-color var(--t), background var(--t); }
.form-ctrl:focus { border-color:var(--orange); background:#fff; }
.form-ctrl::placeholder { color:var(--g400); }
textarea.form-ctrl { resize:vertical; min-height:140px; }
select.form-ctrl { cursor:pointer; appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239BA5B4' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; padding-right:40px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group { margin-bottom:18px; }

/* ─── MAP PLACEHOLDER ─── */
.map-box { background:var(--g100); border-radius:var(--r-xl); height:320px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px; border:1px solid var(--g200); }
.map-box svg { width:40px; height:40px; stroke:var(--g300); fill:none; stroke-width:1.5; }
.map-box p { font-size:.875rem; color:var(--g400); }
.map-box a { font-size:.875rem; color:var(--orange); font-weight:600; }

/* ─── MARQUEE / SCROLLING IMAGE STRIP ─── */
.marquee-section { background: var(--navy); padding: 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,.06); }
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-img {
  width: 320px;
  height: 220px;
  object-fit: cover;
  flex-shrink: 0;
  filter: brightness(.75) saturate(.9);
  transition: filter .4s;
}
.marquee-img:hover { filter: brightness(1) saturate(1.1); }

/* ─── FOOTER ─── */
footer { background:var(--navy); color:#fff; }
.footer-top { padding:76px 0 60px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1.2fr; gap:48px; max-width:1200px; margin:0 auto; padding:0 28px; }
.footer-logo { display:flex; align-items:center; gap:11px; margin-bottom:18px; }
.footer-logo-icon { width:38px; height:38px; background:var(--orange); border-radius:8px; display:flex; align-items:center; justify-content:center; }
.footer-logo-icon svg { width:20px; height:20px; fill:#fff; }
.footer-logo-name { font-family:'Outfit',sans-serif; font-size:17px; font-weight:800; }
.footer-about { font-size:.875rem; line-height:1.75; color:rgba(255,255,255,.47); max-width:300px; margin-bottom:24px; }
.footer-contact-row { display:flex; align-items:center; gap:9px; font-size:.875rem; color:rgba(255,255,255,.55); margin-bottom:9px; transition:color var(--t); }
.footer-contact-row:hover { color:var(--orange-lt); }
.footer-contact-row svg { width:15px; height:15px; stroke:currentColor; fill:none; stroke-width:1.9; flex-shrink:0; opacity:.65; }
.footer-heading { font-family:'Outfit',sans-serif; font-size:.875rem; font-weight:700; color:#fff; margin-bottom:22px; }
.footer-links { display:flex; flex-direction:column; gap:11px; }
.footer-link { font-size:.875rem; color:rgba(255,255,255,.47); transition:color var(--t); }
.footer-link:hover { color:var(--orange); }
.footer-cert { display:flex; flex-direction:column; gap:9px; }
.footer-cert-item { display:flex; align-items:center; gap:8px; }
.footer-cert-dot { width:6px; height:6px; background:var(--orange); border-radius:50%; flex-shrink:0; }
.footer-cert-text { font-size:.8rem; color:rgba(255,255,255,.47); }
.footer-btm { border-top:1px solid rgba(255,255,255,.07); padding:22px 28px; }
.footer-btm-inner { max-width:1200px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px; }
.footer-copy { font-size:.8rem; color:rgba(255,255,255,.3); }
.footer-legal { display:flex; gap:20px; }
.footer-legal a { font-size:.8rem; color:rgba(255,255,255,.3); transition:color var(--t); }
.footer-legal a:hover { color:var(--orange); }

/* ─── UTILS ─── */
.flex { display:flex; }
.flex-between { display:flex; align-items:center; justify-content:space-between; }
.gap-2 { gap:8px; }
.gap-3 { gap:12px; }
.gap-4 { gap:16px; }
.mt-2 { margin-top:8px; }
.mt-4 { margin-top:16px; }
.mt-6 { margin-top:24px; }
.mt-8 { margin-top:32px; }
.mb-2 { margin-bottom:8px; }
.mb-4 { margin-bottom:16px; }
.text-center { text-align:center; }
.text-orange { color:var(--orange); }
.text-white  { color:#fff; }
.text-muted  { color:var(--g600); }
.fw-bold { font-weight:700; }
.ff-outfit { font-family:'Outfit',sans-serif; }

/* ─── RESPONSIVE ─── */
@media (max-width:1100px) {
  .svc-grid-4 { grid-template-columns:repeat(2,1fr); }
  .proj-grid-3 { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; gap:36px; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .stat-cell:nth-child(2) { border-right:none; }
  .stat-cell:nth-child(3) { border-top:1px solid rgba(255,255,255,.06); }
  .stat-cell:nth-child(4) { border-right:none; border-top:1px solid rgba(255,255,255,.06); }
  .split { gap:44px; }
}
@media (max-width:768px) {
  .container { padding:0 18px; }
  .section { padding:64px 0; }
  .nav-links { display:none; }
  .nav-right .nav-phone { display:none; }
  .nav-right .btn { display:none; }
  .hamburger { display:block; }
  .hero-content { padding:130px 18px 80px; }
  .hero-trust { gap:10px; }
  .hero-trust { gap:8px; }
  .hero-trust-card { padding:8px 10px; }
  .hero-trust-val { font-size:.8rem; }
  .hero-trust-lbl { font-size:.6rem; }
  .svc-grid-3 { grid-template-columns:1fr; }
  .svc-grid-2 { grid-template-columns:1fr; }
  .proj-grid-3 { grid-template-columns:1fr; }
  .proj-grid-2 { grid-template-columns:1fr; }
  .split { grid-template-columns:1fr; }
  .split-img .img-badge { right:0; bottom:-16px; }
  .form-row { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; gap:28px; }
  .footer-about { max-width:none; }
  .cta-inner { flex-direction:column; text-align:center; }
  .cta-btns { justify-content:center; }
  .stats-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:480px) {
  .stats-grid { grid-template-columns:1fr; }
  .stat-cell { border-right:none !important; border-top:1px solid rgba(255,255,255,.06); }
  .stat-cell:first-child { border-top:none; }
  .hero-h1 { font-size:2.6rem; }
}

/* ─── IMAGE STRIP ─── */
.img-strip-wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.img-strip-wrap::before,
.img-strip-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.img-strip-wrap::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.img-strip-wrap::after  { right: 0; background: linear-gradient(to left, var(--bg), transparent); }

.img-strip-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: strip-scroll 50s linear infinite;
}
.img-strip-track:hover { animation-play-state: paused; }

.img-strip-slide {
  flex-shrink: 0;
  width: 320px;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
}
.img-strip-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.img-strip-slide:hover img { transform: scale(1.05); }

@keyframes strip-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
