/* ==========================================================================
   ZIBI DESIGNS — DESIGN SYSTEM
   Primary: #0056D2   Navy: #0F172A   Accent: #F97316
   Headings: Poppins   Body: Inter
   ========================================================================== */

:root{
  --blue: #0056D2;
  --blue-dark: #003FA0;
  --blue-light: #E8F0FE;
  --navy: #0F172A;
  --navy-soft: #1B2436;
  --orange: #F97316;
  --orange-dark: #DC5F0A;
  --white: #FFFFFF;
  --grey-bg: #F8FAFC;
  --grey-line: #E4E9F0;
  --text: #1E293B;
  --text-soft: #55617A;
  --text-on-dark: #C9D3E4;

  --font-head: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 10px rgba(15,23,42,0.06);
  --shadow-md: 0 12px 32px rgba(15,23,42,0.10);
  --shadow-lg: 0 24px 60px rgba(15,23,42,0.16);
  --shadow-blue: 0 16px 40px rgba(0,86,210,0.25);
  --shadow-orange: 0 12px 30px rgba(249,115,22,0.30);

  --container: 1200px;
  --nav-h: 84px;
  --ease: cubic-bezier(.16,.84,.44,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *, *::before, *::after{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}
body{
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; }
input, textarea, select{ font-family:inherit; font-size:1rem; }
h1,h2,h3,h4,h5{ font-family:var(--font-head); color:var(--navy); line-height:1.15; font-weight:600; }
:focus-visible{ outline:3px solid var(--orange); outline-offset:3px; border-radius:4px; }

.container{ max-width:var(--container); margin:0 auto; padding:0 24px; }
.section{ padding:112px 0; position:relative; }
.section-tight{ padding:72px 0; }
.section-grey{ background:var(--grey-bg); }
.section-navy{ background:var(--navy); color:var(--text-on-dark); }
.section-navy h2, .section-navy h3{ color:var(--white); }

/* ---------- Eyebrow / Kicker ---------- */
.kicker{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--font-head);
  font-size:0.78rem; font-weight:600; letter-spacing:0.14em; text-transform:uppercase;
  color:var(--blue);
  background: var(--blue-light);
  padding:8px 16px 8px 12px;
  border-radius:100px;
  margin-bottom:20px;
}
.kicker::before{ content:""; width:7px; height:7px; border-radius:50%; background:var(--orange); flex-shrink:0; }
.section-navy .kicker{ background:rgba(255,255,255,0.08); color:#8FB4FF; }

.section-head{ max-width:680px; margin-bottom:56px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(2rem, 3.4vw, 2.75rem); margin-bottom:16px; letter-spacing:-0.01em; }
.section-head p{ font-size:1.125rem; color:var(--text-soft); }
.section-navy .section-head p{ color:var(--text-on-dark); }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family:var(--font-head); font-weight:600; font-size:0.98rem;
  padding:16px 30px; border-radius:100px;
  transition:transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s ease;
  white-space:nowrap;
}
.btn-primary{ background:var(--orange); color:var(--white); box-shadow:var(--shadow-orange); }
.btn-primary:hover{ transform:translateY(-3px); box-shadow:0 20px 40px rgba(249,115,22,0.4); background:var(--orange-dark); }
.btn-ghost{ background:rgba(255,255,255,0.08); color:var(--white); border:1.5px solid rgba(255,255,255,0.35); backdrop-filter:blur(6px); }
.btn-ghost:hover{ background:rgba(255,255,255,0.18); transform:translateY(-3px); }
.btn-outline{ background:transparent; color:var(--navy); border:1.5px solid var(--grey-line); }
.btn-outline:hover{ border-color:var(--blue); color:var(--blue); transform:translateY(-3px); }
.btn-dark{ background:var(--navy); color:var(--white); }
.btn-dark:hover{ background:var(--blue); transform:translateY(-3px); box-shadow:var(--shadow-blue); }
.btn-sm{ padding:12px 22px; font-size:0.88rem; }
.btn svg{ width:18px; height:18px; flex-shrink:0; }


/* ---------- Navbar ---------- */
.navbar{
  position:fixed; top:0; left:0; right:0; z-index:1000;
  height:var(--nav-h);
  display:flex; align-items:center;
  background:transparent;
  transition:background 0.4s ease, box-shadow 0.4s ease, height 0.4s ease;
}
.navbar .container{ display:flex; align-items:center; justify-content:space-between; width:100%; }
.navbar.scrolled{ background:rgba(255,255,255,0.85); backdrop-filter:blur(14px); box-shadow:0 4px 24px rgba(15,23,42,0.06); height:74px; }
.brand{ display:flex; align-items:center; gap:10px; }
.brand img{ height:44px; width:auto; display:block; transition:height 0.35s ease; }
.navbar.scrolled .brand img{ height:36px; }
.brand img.logo-dark{ display:none; }
.navbar.scrolled .brand img.logo-light{ display:none; }
.navbar.scrolled .brand img.logo-dark{ display:block; }
.footer-logo img{ height:52px; width:auto; }

.nav-links{ display:flex; align-items:center; gap:40px; }
.nav-links a{
  font-family:var(--font-head); font-size:0.95rem; font-weight:500; color:rgba(255,255,255,0.9);
  position:relative; transition:color 0.3s ease; padding:6px 0;
}
.navbar.scrolled .nav-links a{ color:var(--text); }
.nav-links a::after{ content:""; position:absolute; left:0; bottom:0; width:0; height:2px; background:var(--orange); transition:width 0.3s ease; }
.nav-links a:hover::after, .nav-links a.active::after{ width:100%; }
.nav-links a.active{ color:var(--orange) !important; }
.nav-cta{ display:flex; align-items:center; gap:16px; }
.nav-call{ display:flex; align-items:center; gap:8px; color:var(--white); font-weight:600; font-size:0.92rem; }
.navbar.scrolled .nav-call{ color:var(--navy); }
.nav-call svg{ width:17px; height:17px; color:var(--orange); }

.burger{ display:none; flex-direction:column; gap:5px; width:30px; z-index:1001; }
.burger span{ height:2px; background:var(--white); border-radius:2px; transition:all 0.3s ease; }
.navbar.scrolled .burger span{ background:var(--navy); }
.burger.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity:0; }
.burger.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.mobile-menu{
  position:fixed; top:0; right:0; height:100vh; width:min(340px,84vw);
  background:var(--navy); z-index:999; padding:120px 36px 40px;
  display:flex; flex-direction:column; gap:28px;
  transform:translateX(100%); transition:transform 0.45s var(--ease);
}
.mobile-menu.open{ transform:translateX(0); }
.mobile-menu a{ font-family:var(--font-head); font-size:1.3rem; color:var(--white); font-weight:500; }
.menu-scrim{ position:fixed; inset:0; background:rgba(15,23,42,0.5); z-index:998; opacity:0; visibility:hidden; transition:opacity 0.4s ease, visibility 0.4s ease; }
.menu-scrim.open{ opacity:1; visibility:visible; }

/* ---------- Hero ---------- */
.hero{
  position:relative; min-height:100vh; display:flex; align-items:center;
  padding-top:var(--nav-h);
  background:var(--navy); color:var(--white); overflow:hidden;
}
.hero-bg{ position:absolute; inset:0; z-index:0; }
.hero-bg img{ width:100%; height:100%; object-fit:cover; opacity:0.28; }
.hero-bg::after{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(ellipse 900px 600px at 15% 20%, rgba(0,86,210,0.55), transparent 60%),
    radial-gradient(ellipse 700px 500px at 90% 85%, rgba(249,115,22,0.30), transparent 60%),
    linear-gradient(180deg, rgba(15,23,42,0.75), rgba(15,23,42,0.94));
}
.hero-blob{ position:absolute; border-radius:50%; filter:blur(80px); opacity:0.5; z-index:0; animation:float 12s ease-in-out infinite; }
.hero-blob.b1{ width:420px; height:420px; background:var(--blue); top:-120px; left:-100px; }
.hero-blob.b2{ width:340px; height:340px; background:var(--orange); bottom:-100px; right:-80px; animation-delay:-4s; }
@keyframes float{ 0%,100%{ transform:translate(0,0);} 50%{ transform:translate(30px,-30px);} }

.hero-grid{ position:relative; z-index:2; display:grid; grid-template-columns:1.05fr 0.95fr; gap:60px; align-items:center; padding:60px 0; }
.hero-eyebrow{ display:inline-flex; align-items:center; gap:10px; background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.15); backdrop-filter:blur(8px); padding:9px 18px; border-radius:100px; font-size:0.85rem; font-weight:600; margin-bottom:28px; }
.hero-eyebrow .pulse{ width:8px; height:8px; border-radius:50%; background:var(--orange); position:relative; }
.hero-eyebrow .pulse::after{ content:""; position:absolute; inset:0; border-radius:50%; background:var(--orange); animation:pulse 1.8s ease-out infinite; }
@keyframes pulse{ 0%{ transform:scale(1); opacity:0.7;} 100%{ transform:scale(3); opacity:0;} }

.hero h1{ font-size:clamp(2.5rem, 5vw, 4rem); letter-spacing:-0.02em; color:var(--white); margin-bottom:24px; }
.hero h1 em{ font-style:normal; color:var(--orange); position:relative; }
.hero p.lead{ font-size:1.2rem; color:var(--text-on-dark); max-width:520px; margin-bottom:38px; }
.hero-actions{ display:flex; gap:18px; flex-wrap:wrap; margin-bottom:52px; }
.hero-trust{ display:flex; gap:32px; flex-wrap:wrap; }
.hero-trust div{ }
.hero-trust strong{ display:block; font-family:var(--font-head); font-size:1.6rem; color:var(--white); }
.hero-trust span{ font-size:0.85rem; color:var(--text-on-dark); }

/* Hero image (static — swap the <img src> in HTML for your own photo anytime) */
.hero-image-card{
  position:relative; border-radius:var(--radius-lg); overflow:hidden;
  box-shadow:var(--shadow-lg); aspect-ratio:4/4.6;
  border:1px solid rgba(255,255,255,0.12);
}
.hero-image-card img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.hero-image-card::after{ content:""; position:absolute; inset:0; background:linear-gradient(0deg, rgba(15,23,42,0.55), transparent 45%); }
.hero-image-badge{
  position:absolute; bottom:24px; left:24px; z-index:2;
  background:rgba(15,23,42,0.55); backdrop-filter:blur(10px); border:1px solid rgba(255,255,255,0.18);
  border-radius:var(--radius-md); padding:16px 22px; color:#fff;
}
.hero-image-badge strong{ display:block; font-family:var(--font-head); font-size:1.6rem; }
.hero-image-badge span{ font-size:0.78rem; color:var(--text-on-dark); }

/* ---------- Trust / logo strip ---------- */
.trust-strip{ padding:36px 0; border-bottom:1px solid var(--grey-line); }
.trust-strip .container{ display:flex; align-items:center; gap:40px; flex-wrap:wrap; justify-content:space-between; }
.trust-strip .ts-label{ font-family:var(--font-head); font-size:0.82rem; font-weight:600; color:var(--text-soft); letter-spacing:0.04em; white-space:nowrap; }
.ts-icons{ display:flex; gap:36px; flex-wrap:wrap; align-items:center; flex:1; justify-content:space-around; }
.ts-icon{ display:flex; flex-direction:column; align-items:center; gap:8px; color:var(--text-soft); opacity:0.75; transition:opacity 0.3s ease, color 0.3s ease; }
.ts-icon:hover{ opacity:1; color:var(--blue); }
.ts-icon svg{ width:26px; height:26px; }
.ts-icon span{ font-size:0.72rem; font-weight:600; font-family:var(--font-head); }

/* ---------- Stats ---------- */
.stats{ background:var(--navy); padding:80px 0; }
.stats-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:32px; }
.stat{ text-align:center; }
.stat strong{ display:block; font-family:var(--font-head); font-size:clamp(2.2rem,4vw,3rem); color:var(--white); }
.stat strong .plus{ color:var(--orange); }
.stat span{ font-size:0.92rem; color:var(--text-on-dark); }

/* ---------- Cards: services ---------- */
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.grid-2{ display:grid; grid-template-columns:repeat(2,1fr); gap:28px; }

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 360px));
    justify-content: center;
    gap: 2rem;
}

.service-card{
  background:var(--white); border:1px solid var(--grey-line); border-radius:var(--radius-md);
  padding:38px 32px; transition:transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color .4s ease;
  position:relative; overflow:hidden;
}
.service-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-lg); border-color:transparent; }
.service-card .icon-box{
  width:58px; height:58px; border-radius:16px; background:var(--blue-light); color:var(--blue);
  display:flex; align-items:center; justify-content:center; margin-bottom:24px; transition:background .4s ease, color .4s ease;
}
.service-card .icon-box svg{ width:28px; height:28px; }
.service-card:hover .icon-box{ background:var(--orange); color:#fff; }
.service-card h3{ font-size:1.3rem; margin-bottom:12px; }
.service-card p{ color:var(--text-soft); margin-bottom:20px; font-size:0.98rem; }
.service-card ul{ margin-bottom:22px; }
.service-card ul li{ display:flex; align-items:center; gap:10px; font-size:0.9rem; color:var(--text-soft); padding:5px 0; }
.service-card ul li::before{ content:""; width:6px; height:6px; border-radius:50%; background:var(--orange); flex-shrink:0; }
.card-link{ display:inline-flex; align-items:center; gap:8px; font-family:var(--font-head); font-weight:600; color:var(--blue); font-size:0.92rem; }
.card-link svg{ width:16px; height:16px; transition:transform .3s ease; }
.card-link:hover svg{ transform:translateX(5px); }

/* ---------- Portfolio preview / grid ---------- */
.folio-filters{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom:44px; }
.folio-filters button{
  font-family:var(--font-head); font-weight:600; font-size:0.88rem; padding:11px 22px;
  border-radius:100px; border:1.5px solid var(--grey-line); color:var(--text-soft); transition:all 0.3s ease;
}
.folio-filters button:hover{ border-color:var(--blue); color:var(--blue); }
.folio-filters button.active{ background:var(--navy); border-color:var(--navy); color:#fff; }

.folio-grid{ column-count:3; column-gap:24px; }
.folio-item{
  break-inside:avoid; margin-bottom:24px; border-radius:var(--radius-md); overflow:hidden;
  position:relative; cursor:pointer; box-shadow:var(--shadow-sm); transition:opacity .4s ease, transform .5s var(--ease);
}
.folio-item.hidden-item{ display:none; }
.folio-item img{ width:100%; transition:transform 0.6s var(--ease); }
.folio-item:hover img{ transform:scale(1.06); }
.folio-overlay{
  position:ralative; inset:0; background:linear-gradient(0deg, rgba(15,23,42,0.92) 0%, rgba(15,23,42,0.2) 55%, transparent 100%);
  display:flex; flex-direction:column; justify-content:flex-end; padding:24px; opacity:0; transition:opacity 0.4s ease;
}
.folio-item:hover .folio-overlay{ opacity:1; }
.folio-tag{ align-self:flex-start; font-family:var(--font-head); font-size:0.68rem; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; background:var(--orange); color:#fff; padding:5px 12px; border-radius:100px; margin-bottom:12px; }
.folio-overlay h4{ color:#fff; font-size:1.15rem; margin-bottom:4px; }
.folio-overlay p{ color:var(--text-on-dark); font-size:0.85rem; }

/* concept badge always visible (honesty requirement) */
.concept-badge{
  position:absolute; top:16px; left:16px; z-index:2;
  background:rgba(15,23,42,0.75); backdrop-filter:blur(4px); color:#fff;
  font-family:var(--font-head); font-size:0.66rem; font-weight:700; letter-spacing:0.06em; text-transform:uppercase;
  padding:6px 12px; border-radius:100px; border:1px solid rgba(255,255,255,0.25);
}

/* Case study modal */
.modal-scrim{ position:fixed; inset:0; background:rgba(15,23,42,0.72); backdrop-filter:blur(4px); z-index:1100; opacity:0; visibility:hidden; transition:opacity .35s ease, visibility .35s ease; display:flex; align-items:center; justify-content:center; padding:24px; }
.modal-scrim.open{ opacity:1; visibility:visible; }
.modal-box{ background:#fff; border-radius:var(--radius-lg); max-width:820px; width:100%; max-height:88vh; overflow-y:auto; transform:translateY(30px); transition:transform .4s var(--ease); }
.modal-scrim.open .modal-box{ transform:translateY(0); }
.modal-box img{ width:100%; height:320px; object-fit:cover; border-radius:var(--radius-lg) var(--radius-lg) 0 0; }
.modal-body{ padding:36px 40px 40px; }
.modal-close{ position:absolute; top:24px; right:24px; width:42px; height:42px; border-radius:50%; background:#fff; color:var(--navy); display:flex; align-items:center; justify-content:center; font-size:1.3rem; box-shadow:var(--shadow-md); z-index:5; }
.modal-tag{ display:inline-block; background:var(--blue-light); color:var(--blue); font-family:var(--font-head); font-weight:700; font-size:0.72rem; letter-spacing:0.05em; text-transform:uppercase; padding:6px 14px; border-radius:100px; margin-bottom:16px; }
.modal-meta{ display:flex; gap:32px; margin-top:24px; padding-top:24px; border-top:1px solid var(--grey-line); flex-wrap:wrap; }
.modal-meta div span{ display:block; font-size:0.75rem; color:var(--text-soft); text-transform:uppercase; letter-spacing:0.05em; margin-bottom:4px; }
.modal-meta div strong{ font-family:var(--font-head); color:var(--navy); }

.zd-live-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  border: 1.5px solid #F97316 !important;
  color: #F97316 !important;
  background: transparent !important;
  border-radius: 8px !important;
  padding: 8px 16px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  box-shadow: none !important;
  transition: background 0.2s ease !important;
}

.zd-live-btn:hover {
  background: rgba(249, 115, 22, 0.1) !important;
  transform: none !important;
  box-shadow: none !important;
}

.zd-live-btn--hidden {
  display: none !important;
}
/* ---------- Why choose us ---------- */
.why-grid{ display:grid; grid-template-columns:0.9fr 1.1fr; gap:64px; align-items:center; }
.why-media{ position:relative; border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-lg); }
.why-media img{ width:100%; height:520px; object-fit:cover; }
.why-badge{ position:absolute; bottom:-1px; right:-1px; background:var(--orange); color:#fff; padding:26px 30px; border-radius:var(--radius-lg) 0 0 0; text-align:center; }
.why-badge strong{ display:block; font-family:var(--font-head); font-size:2rem; }
.why-badge span{ font-size:0.78rem; font-weight:600; }
.why-list{ display:flex; flex-direction:column; gap:28px; }
.why-row{ display:flex; gap:20px; }
.why-num{ flex-shrink:0; width:48px; height:48px; border-radius:14px; background:var(--blue-light); color:var(--blue); font-family:var(--font-head); font-weight:700; display:flex; align-items:center; justify-content:center; }
.why-row h4{ font-size:1.1rem; margin-bottom:6px; }
.why-row p{ color:var(--text-soft); font-size:0.96rem; }

/* ---------- Industries ---------- */
.industries-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:20px; }
.industry-chip{
  background:var(--white); border:1px solid var(--grey-line); border-radius:var(--radius-md);
  padding:28px 18px; text-align:center; transition:all .35s var(--ease);
}
.industry-chip:hover{ transform:translateY(-6px); border-color:var(--blue); box-shadow:var(--shadow-md); }
.industry-chip svg{ width:30px; height:30px; color:var(--blue); margin-bottom:14px; }
.industry-chip span{ display:block; font-family:var(--font-head); font-weight:600; font-size:0.88rem; }

/* ---------- Testimonials ---------- */
.testi-track{ position:relative; max-width:820px; margin:0 auto; }
.testi-slide{ display:none; text-align:center; }
.testi-slide.active{ display:block; animation:fadeUp .6s var(--ease); }
@keyframes fadeUp{ from{opacity:0; transform:translateY(16px);} to{opacity:1; transform:translateY(0);} }
.testi-stars{ display:flex; justify-content:center; gap:4px; margin-bottom:24px; color:var(--orange); }
.testi-stars svg{ width:20px; height:20px; }
.testi-slide p.quote{ font-family:var(--font-head); font-size:1.5rem; font-weight:500; color:var(white); line-height:1.5; margin-bottom:32px; }
.testi-person{ display:flex; align-items:center; justify-content:center; gap:14px; }
.testi-avatar{ width:52px; height:52px; border-radius:50%; object-fit:cover; }
.testi-person strong{ display:block; font-family:var(--font-head); font-size:0.98rem; }
.testi-person span{ font-size:0.82rem; color:var(--text-soft); }
.testi-dots{ display:flex; justify-content:center; gap:10px; margin-top:36px; }
.testi-dots button{ width:9px; height:9px; border-radius:50%; background:var(--grey-line); transition:all .3s ease; }
.testi-dots button.active{ background:var(--orange); width:26px; border-radius:6px; }
.testi-nav{ position:absolute; top:50%; transform:translateY(-50%); width:46px; height:46px; border-radius:50%; background:#fff; box-shadow:var(--shadow-md); display:flex; align-items:center; justify-content:center; color:var(--navy); }
.testi-nav.prev{ left:-70px; } .testi-nav.next{ right:-70px; }
.testi-nav:hover{ background:var(--orange); color:#fff; }

/* ---------- FAQ ---------- */
.faq-list{ max-width:820px; margin:0 auto; display:flex; flex-direction:column; gap:14px; }
.faq-item{ background:#fff; border:1px solid var(--grey-line); border-radius:var(--radius-md); overflow:hidden; }
.faq-q{ width:100%; display:flex; align-items:center; justify-content:space-between; gap:20px; padding:22px 26px; text-align:left; font-family:var(--font-head); font-weight:600; color:var(--navy); }
.faq-q .plus{ flex-shrink:0; width:30px; height:30px; border-radius:50%; background:var(--blue-light); color:var(--blue); display:flex; align-items:center; justify-content:center; transition:transform .35s ease, background .35s ease, color .35s ease; font-size:1.1rem; }
.faq-item.open .faq-q .plus{ transform:rotate(45deg); background:var(--orange); color:#fff; }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .4s var(--ease); }
.faq-a p{ padding:0 26px 24px; color:var(--text-soft); }

/* ---------- CTA banner ---------- */
.cta-band{
  background:linear-gradient(120deg, var(--blue) 0%, var(--blue-dark) 60%, var(--navy) 100%);
  border-radius:var(--radius-lg); padding:64px 56px; display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap;
  position:relative; overflow:hidden; color:#fff;
}
.cta-band::before{ content:""; position:absolute; width:340px; height:340px; background:rgba(249,115,22,0.35); border-radius:50%; filter:blur(70px); top:-120px; right:-60px; }
.cta-band h2{ color:#fff; font-size:clamp(1.7rem,3vw,2.3rem); margin-bottom:10px; max-width:520px; position:relative; }
.cta-band p{ color:var(--text-on-dark); max-width:480px; position:relative; }
.cta-band .cta-actions{ display:flex; gap:16px; flex-wrap:wrap; position:relative; }

/* ---------- Footer ---------- */
footer{ background:var(--navy); color:var(--text-on-dark); padding-top:80px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.3fr; gap:50px; padding-bottom:56px; border-bottom:1px solid rgba(255,255,255,0.08); }
.footer-brand p{ margin:20px 0 24px; font-size:0.92rem; line-height:1.7; max-width:320px; }
.footer-social{ display:flex; gap:12px; }
.footer-social a{ width:40px; height:40px; border-radius:50%; background:rgba(255,255,255,0.06); display:flex; align-items:center; justify-content:center; transition:background .3s ease, transform .3s ease; }
.footer-social a:hover{ background:var(--orange); transform:translateY(-3px); }
.footer-social svg{ width:17px; height:17px; }
.footer-col h5{ color:#fff; font-family:var(--font-head); font-size:1rem; margin-bottom:22px; }
.footer-col ul{ display:flex; flex-direction:column; gap:12px; }
.footer-col a{ font-size:0.92rem; transition:color .3s ease, padding-left .3s ease; }
.footer-col a:hover{ color:var(--orange); padding-left:4px; }
.footer-contact li{ display:flex; gap:10px; font-size:0.92rem; margin-bottom:14px; }
.footer-contact svg{ width:18px; height:18px; flex-shrink:0; color:var(--orange); margin-top:2px; }
.newsletter-form{ display:flex; margin-top:16px; border-radius:100px; overflow:hidden; background:rgba(255,255,255,0.06); padding:5px; }
.newsletter-form input{ flex:1; background:transparent; border:none; padding:10px 16px; color:#fff; font-size:0.88rem; }
.newsletter-form input::placeholder{ color:rgba(255,255,255,0.4); }
.newsletter-form button{ background:var(--orange); color:#fff; padding:10px 20px; border-radius:100px; font-family:var(--font-head); font-weight:600; font-size:0.85rem; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding:26px 0; flex-wrap:wrap; gap:14px; font-size:0.85rem; }
.footer-bottom .legal-links{ display:flex; gap:22px; }
.footer-bottom a:hover{ color:var(--orange); }

/* ---------- Floating buttons ---------- */
.whatsapp-float{
  position:fixed; bottom:28px; right:28px; z-index:900; width:60px; height:60px; border-radius:50%;
  background:#25D366; display:flex; align-items:center; justify-content:center; box-shadow:0 10px 28px rgba(37,211,102,0.5);
  transition:transform .3s ease;
}
.whatsapp-float:hover{ transform:scale(1.08); }
.whatsapp-float svg{ width:30px; height:30px; fill:#fff; }
.back-top{
  position:fixed; bottom:28px; right:100px; z-index:900; width:48px; height:48px; border-radius:50%;
  background:var(--navy); color:#fff; display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-md);
  opacity:0; visibility:hidden; transform:translateY(10px); transition:all .35s ease;
}
.back-top.show{ opacity:1; visibility:visible; transform:translateY(0); }
.back-top svg{ width:20px; height:20px; }

/* ---------- Scroll reveal ---------- */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in{ opacity:1; transform:translateY(0); }
.reveal-stagger > *{ opacity:0; transform:translateY(24px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-stagger.in > *{ opacity:1; transform:translateY(0); }
.reveal-stagger.in > *:nth-child(1){ transition-delay:0s; }
.reveal-stagger.in > *:nth-child(2){ transition-delay:.1s; }
.reveal-stagger.in > *:nth-child(3){ transition-delay:.2s; }
.reveal-stagger.in > *:nth-child(4){ transition-delay:.3s; }
.reveal-stagger.in > *:nth-child(5){ transition-delay:.4s; }

/* ---------- Inner page hero (about/services/portfolio/contact) ---------- */
.page-hero{
  background:var(--navy); color:#fff; padding:calc(var(--nav-h) + 90px) 0 90px; position:relative; overflow:hidden;
}
.page-hero::after{ content:""; position:absolute; inset:0; background:radial-gradient(ellipse 800px 500px at 85% 0%, rgba(0,86,210,0.45), transparent 60%); }
.page-hero .container{ position:relative; }
.breadcrumb{ display:flex; align-items:center; gap:8px; font-size:0.88rem; color:var(--text-on-dark); margin-bottom:20px; }
.breadcrumb a:hover{ color:var(--orange); }
.page-hero h1{ color:#fff; font-size:clamp(2.2rem,4.5vw,3.2rem); max-width:700px; margin-bottom:18px; }
.page-hero p{ color:var(--text-on-dark); font-size:1.1rem; max-width:600px; }

/* ---------- Misc components used across inner pages ---------- */
.value-card{ background:#fff; border:1px solid var(--grey-line); border-radius:var(--radius-md); padding:34px; text-align:left; transition:all .35s var(--ease); }
.value-card:hover{ box-shadow:var(--shadow-md); transform:translateY(-6px); }
.value-card .icon-box{ width:52px; height:52px; border-radius:14px; background:var(--blue-light); color:var(--blue); display:flex; align-items:center; justify-content:center; margin-bottom:20px; }
.value-card .icon-box svg{ width:26px; height:26px; }

.process-track{ position:relative; }
.process-track::before{ content:""; position:absolute; top:36px; left:0; right:0; height:2px; background:var(--grey-line); }
.process-steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; position:relative; }
.process-step{ text-align:center; }
.process-circle{ width:74px; height:74px; border-radius:50%; background:#fff; border:2px solid var(--blue); color:var(--blue); font-family:var(--font-head); font-weight:700; font-size:1.4rem; display:flex; align-items:center; justify-content:center; margin:0 auto 22px; position:relative; z-index:2; transition:all .35s ease; }
.process-step:hover .process-circle{ background:var(--orange); border-color:var(--orange); color:#fff; }
.process-step h4{ font-size:1.05rem; margin-bottom:8px; }
.process-step p{ font-size:0.88rem; color:var(--text-soft); }

.director-card{ display:grid; grid-template-columns:0.8fr 1.2fr; gap:56px; align-items:center; background:var(--grey-bg); border-radius:var(--radius-lg); padding:56px; }
.director-photo{ border-radius:var(--radius-md); overflow:hidden; box-shadow:var(--shadow-lg); }
.director-photo img{ width:100%; height:440px; object-fit:cover; }
.director-name{ font-size:1.5rem; margin-bottom:4px; }
.director-role{ color:var(--blue); font-family:var(--font-head); font-weight:600; font-size:0.92rem; margin-bottom:20px; display:block; }
.director-quote{ font-size:1.15rem; color:var(--navy); font-style:italic; line-height:1.6; border-left:3px solid var(--orange); padding-left:20px; margin-bottom:20px; }

/* Services detail page */
.service-detail{ border:1px solid var(--grey-line); border-radius:var(--radius-lg); padding:48px; margin-bottom:32px; }
.service-detail-head{ display:flex; justify-content:space-between; align-items:flex-start; gap:24px; flex-wrap:wrap; margin-bottom:28px; }
.service-detail-head .icon-box{ width:64px; height:64px; border-radius:18px; background:var(--blue-light); color:var(--blue); display:flex; align-items:center; justify-content:center; }
.service-detail-head .icon-box svg{ width:32px; height:32px; }
.price-tag{ background:var(--grey-bg); border:1px solid var(--grey-line); border-radius:14px; padding:14px 22px; text-align:center; }
.price-tag span{ display:block; font-size:0.72rem; text-transform:uppercase; letter-spacing:0.05em; color:var(--text-soft); }
.price-tag strong{ font-family:var(--font-head); font-size:1.3rem; color:var(--blue); }
.service-detail-grid{ display:grid; grid-template-columns:1fr 1fr; gap:36px; margin-bottom:28px; }
.detail-block h5{ font-family:var(--font-head); font-size:0.95rem; text-transform:uppercase; letter-spacing:0.04em; color:var(--navy); margin-bottom:16px; }
.detail-block ul li{ display:flex; gap:10px; padding:7px 0; font-size:0.95rem; color:var(--text-soft); }
.detail-block ul li svg{ width:18px; height:18px; color:var(--orange); flex-shrink:0; margin-top:2px; }
.tab-buttons{ display:flex; gap:10px; margin-bottom:20px; flex-wrap:wrap; }
.tab-buttons button{ padding:10px 20px; border-radius:100px; border:1.5px solid var(--grey-line); font-family:var(--font-head); font-weight:600; font-size:0.85rem; color:var(--text-soft); }
.tab-buttons button.active{ background:var(--blue); border-color:var(--blue); color:#fff; }
.tab-panel{ display:none; }
.tab-panel.active{ display:block; }

/* Contact page */
.contact-grid{ display:grid; grid-template-columns:1fr 1.15fr; gap:50px; align-items:start; }
.contact-info-card{ background:var(--navy); color:#fff; border-radius:var(--radius-lg); padding:44px; margin-bottom:24px; }
.contact-info-card h3{ color:#fff; margin-bottom:24px; }
.contact-row{ display:flex; gap:16px; margin-bottom:22px; }
.contact-row .icon-box{ width:46px; height:46px; border-radius:12px; background:rgba(255,255,255,0.08); color:var(--orange); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-row .icon-box svg{ width:22px; height:22px; }
.contact-row span{ display:block; font-size:0.78rem; color:var(--text-on-dark); text-transform:uppercase; letter-spacing:0.04em; margin-bottom:4px; }
.contact-row strong{ font-family:var(--font-head); font-weight:600; font-size:0.98rem; }
.hours-list li{ display:flex; justify-content:space-between; padding:8px 0; border-bottom:1px solid rgba(255,255,255,0.08); font-size:0.9rem; }
.map-frame{ border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-md); height:260px; }
.map-frame iframe{ width:100%; height:100%; border:0; }

.form-card{ background:#fff; border:1px solid var(--grey-line); border-radius:var(--radius-lg); padding:48px; box-shadow:var(--shadow-md); }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-bottom:20px; }
.field{ display:flex; flex-direction:column; gap:8px; }
.field.full{ grid-column:1/-1; }
.field label{ font-family:var(--font-head); font-size:0.85rem; font-weight:600; color:var(--navy); }
.field label .req{ color:var(--orange); }
.field input, .field select, .field textarea{
  border:1.5px solid var(--grey-line); border-radius:12px; padding:13px 16px; font-size:0.95rem; color:var(--text); transition:border-color .3s ease, box-shadow .3s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color:var(--blue); box-shadow:0 0 0 4px var(--blue-light); outline:none; }
.field textarea{ resize:vertical; min-height:120px; }
.field.error input, .field.error select, .field.error textarea{ border-color:#DC2626; }
.error-msg{ font-size:0.78rem; color:#DC2626; display:none; }
.field.error .error-msg{ display:block; }
.form-success{ display:none; text-align:center; padding:40px 20px; }
.form-success.show{ display:block; }
.form-success .icon-box{ width:70px; height:70px; border-radius:50%; background:#DCFCE7; color:#16A34A; display:flex; align-items:center; justify-content:center; margin:0 auto 20px; }
.form-success .icon-box svg{ width:34px; height:34px; }

/* ---------- Animated counter helper ---------- */
[data-count]{ }

/* ---------- Responsive ---------- */
@media (max-width: 1080px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-image-card{ max-width:460px; margin:0 auto; }
  .why-grid{ grid-template-columns:1fr; }
  .why-media img{ height:380px; }
  .director-card{ grid-template-columns:1fr; padding:36px; }
  .director-photo img{ height:320px; }
  .industries-grid{ grid-template-columns:repeat(3,1fr); }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .contact-grid{ grid-template-columns:1fr; }
}
@media (max-width: 860px){
  .grid-3, .grid-2, .stats-grid, .process-steps{ grid-template-columns:repeat(2,1fr); }
  .service-detail-grid{ grid-template-columns:1fr; }
  .folio-grid{ column-count:2; }
  .nav-links, .nav-call{ display:none; }
  .burger{ display:flex; }
  .process-track::before{ display:none; }
  .testi-nav{ display:none; }
}
@media (max-width: 620px){
  .section{ padding:76px 0; }
  .grid-3, .grid-2, .grid-4, .stats-grid, .process-steps, .industries-grid{ grid-template-columns:repeat(2,1fr); }
  .folio-grid{ column-count:1; }
  .cta-band{ padding:44px 28px; flex-direction:column; text-align:center; }
  .cta-band .cta-actions{ justify-content:center; }
  .footer-grid{ grid-template-columns:1fr; }
  .footer-bottom{ flex-direction:column; text-align:center; }
  .form-row{ grid-template-columns:1fr; }
  .whatsapp-float{ width:52px; height:52px; bottom:18px; right:18px; }
  .back-top{ width:42px; height:42px; bottom:18px; right:82px; }
  .service-detail{ padding:28px; }
  .service-detail-head{ flex-direction:column; }
}
