/* ============================================================================
   WINWEB DIGITAL — style.css
   ----------------------------------------------------------------------------
   QUICK EDIT GUIDE
   • Brand colours ............ :root block right below (--navy, --blue, --purple,
                                 --whatsapp …). Change a value once and it updates
                                 everywhere on the site.
   • Fonts .................... --font-sans in :root (and the Google Fonts <link>
                                 in index.html <head>).
   • Section spacing .......... --section-y in :root.
   • Max content width ........ --maxw in :root (1240px by default).
   • WhatsApp number / CTA text / stats / portfolio / testimonials / social links
     .......................... js/main.js  →  SITE_CONFIG
   • Contact details .......... index.html  →  "CONTACT" section + footer
   • SEO title/description .... index.html  →  <head>
   • Mobile / tablet layout ... css/responsive.css
   ========================================================================== */

/* ---------- 1. Design tokens ---------- */
:root{
  /* Brand colours */
  --navy:        #071426;
  --navy-deep:   #0B1B33;
  --blue:        #1565FF;
  --blue-bright: #2563EB;
  --purple:      #7C3AED;
  --whatsapp:    #25D366;
  --whatsapp-dk: #1EB855;
  --white:       #FFFFFF;
  --bg-soft:     #F7F9FC;
  --text:        #0B1324;
  --text-soft:   #64748B;
  --line:        #E4EAF2;
  --danger:      #EF4444;
  --warning:     #F97316;

  --grad: linear-gradient(135deg, var(--blue-bright) 0%, var(--purple) 100%);

  /* Typography */
  --font-sans: Inter, "Segoe UI", Arial, Helvetica, sans-serif;

  /* Layout */
  --maxw: 1240px;
  --gutter: 24px;
  --section-y: 96px;

  /* Radii + shadows */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(11,27,51,.06);
  --shadow-md: 0 10px 30px rgba(11,27,51,.09);
  --shadow-lg: 0 24px 60px rgba(11,27,51,.16);

  --header-h: 76px;
}

/* ---------- 2. Base ---------- */
*,*::before,*::after{ box-sizing:border-box; }

html{ scroll-behavior:smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust:100%; }

body{
  margin:0;
  font-family:var(--font-sans);
  font-size:16px;
  line-height:1.65;
  color:var(--text);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; color:inherit; }
ul,ol{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4,p{ margin:0; }

:focus-visible{ outline:3px solid var(--blue); outline-offset:3px; border-radius:6px; }

.svg-sprite{ display:none; }

.skip-link{
  position:absolute; left:-9999px; top:0; z-index:200;
  background:var(--white); color:var(--text); padding:12px 18px; border-radius:0 0 10px 0; font-weight:600;
}
.skip-link:focus{ left:0; }

.container{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--gutter); }

.section{ padding-block:var(--section-y); }
.section--dark{ background:linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%); color:var(--white); }

/* ---------- 3. Typography helpers ---------- */
.h2{
  font-size:clamp(28px, 3.1vw, 42px);
  line-height:1.18;
  font-weight:800;
  letter-spacing:-.02em;
}
.h2--sm{ font-size:clamp(23px, 2.2vw, 30px); }
.lead{ color:var(--text-soft); font-size:17px; margin-top:14px; max-width:62ch; }
.section--dark .lead{ color:#A7B6CC; }
.center{ text-align:center; }
.narrow{ margin-inline:auto; }

.grad-text{
  background:var(--grad);
  -webkit-background-clip:text; background-clip:text;
  color:transparent;
}
.section--dark .grad-text,
.hero .grad-text{
  background:linear-gradient(135deg,#60A5FA 0%, #A78BFA 100%);
  -webkit-background-clip:text; background-clip:text;
}
.grad-bg{ background:var(--grad); color:var(--white); }

.eyebrow{
  display:inline-block;
  font-size:12px; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  color:#9FC0FF;
  border:1px solid rgba(96,165,250,.35);
  background:rgba(37,99,235,.12);
  padding:7px 14px; border-radius:999px;
  margin-bottom:22px;
}

.section-head{
  display:flex; align-items:flex-end; justify-content:space-between; gap:28px; flex-wrap:wrap;
  margin-bottom:44px;
}

/* ---------- 4. Icons ---------- */
.ico{ width:20px; height:20px; flex:0 0 auto; }

/* ---------- 5. Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:13px 22px;
  border:1px solid transparent;
  border-radius:999px;
  font-weight:600; font-size:15px; line-height:1;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
  text-align:center;
}
.btn:hover{ transform:translateY(-2px); }
.btn:active{ transform:translateY(0); }
.btn--lg{ padding:16px 28px; font-size:16px; }
.btn--block{ display:flex; width:100%; }

.btn--wa{ background:var(--whatsapp); color:#05300f; box-shadow:0 8px 22px rgba(37,211,102,.28); }
.btn--wa:hover{ background:var(--whatsapp-dk); color:#03260c; box-shadow:0 12px 28px rgba(37,211,102,.38); }

.btn--primary{ background:var(--grad); color:var(--white); box-shadow:0 10px 24px rgba(37,99,235,.28); }
.btn--ghost{ background:rgba(255,255,255,.06); color:var(--white); border-color:rgba(255,255,255,.28); }
.btn--ghost:hover{ background:rgba(255,255,255,.14); }
.btn--outline{ background:var(--white); color:var(--blue-bright); border-color:#BFD4FF; }
.btn--outline:hover{ border-color:var(--blue-bright); box-shadow:var(--shadow-sm); }
.btn--light{ background:var(--white); color:var(--navy-deep); }

/* ---------- 6. Header ---------- */
.header{
  position:fixed; inset:0 0 auto 0; z-index:100;
  height:var(--header-h);
  display:flex; align-items:center;
  background:rgba(255,255,255,.97);
  backdrop-filter:saturate(160%) blur(14px);
  -webkit-backdrop-filter:saturate(160%) blur(14px);
  box-shadow:0 1px 0 rgba(11,27,51,.08);
  transition:box-shadow .3s ease;
}
.header.is-scrolled{
  box-shadow:0 10px 30px rgba(11,27,51,.12);
}
.header__inner{ display:flex; align-items:center; gap:28px; }

.logo{ display:flex; flex-direction:column; line-height:1; color:var(--text); }
.logo__mark{ font-size:21px; font-weight:800; letter-spacing:.04em; }
.logo__mark span{ color:#3B82F6; }
.logo__sub{ font-size:9.5px; font-weight:600; letter-spacing:.42em; color:var(--text-soft); margin-top:5px; }

/* Header logo image (replaces the text logo above) */
.logo--img{ flex-direction:row; align-items:center; }
.logo--img img{ height:38px; width:auto; display:block; }

.nav{ display:flex; align-items:center; gap:28px; margin-left:auto; }
.nav__list{ display:flex; align-items:center; gap:26px; }
.nav__link{
  color:#3C4A5E; font-size:14.5px; font-weight:600; position:relative; padding-block:6px;
  transition:color .2s ease;
}
.nav__link::after{
  content:""; position:absolute; left:0; bottom:0; height:2px; width:0; border-radius:2px;
  background:var(--grad); transition:width .25s ease;
}
.nav__link:hover, .nav__link.is-active{ color:var(--blue-bright); }
.nav__link:hover::after, .nav__link.is-active::after{ width:100%; }
.nav__cta{ display:none; }

.header__cta{ flex:0 0 auto; }

.nav-toggle{
  display:none;
  width:44px; height:44px; border-radius:12px;
  background:#F1F5FB; border:1px solid var(--line);
  color:var(--text); align-items:center; justify-content:center; cursor:pointer;
}
.nav-toggle .ico{ width:24px; height:24px; }
.nav-toggle .ico--close{ display:none; }
.nav-toggle[aria-expanded="true"] .ico--menu{ display:none; }
.nav-toggle[aria-expanded="true"] .ico--close{ display:block; }

.nav-backdrop{
  position:fixed; inset:0; z-index:90; background:rgba(4,12,24,.42);
  backdrop-filter:blur(2px);
}

/* ---------- 7. Hero ---------- */
.hero{
  position:relative;
  background:
    radial-gradient(900px 480px at 78% 12%, rgba(37,99,235,.35), transparent 62%),
    radial-gradient(700px 420px at 12% 88%, rgba(124,58,237,.22), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 60%, #0d2247 100%);
  color:var(--white);
  padding-top:calc(var(--header-h) + 52px);
  padding-bottom:78px;
  overflow:hidden;
}
.hero::after{
  content:""; position:absolute; left:0; right:0; bottom:-1px; height:1px; background:rgba(255,255,255,.08);
}
.hero__glow{
  position:absolute; width:620px; height:620px; right:-120px; top:-160px; border-radius:50%;
  background:radial-gradient(circle, rgba(59,130,246,.34), transparent 66%);
  filter:blur(10px); pointer-events:none;
}
.hero__inner{
  position:relative; z-index:1;
  display:grid; grid-template-columns:minmax(0,1.02fr) minmax(0,1fr);
  gap:42px; align-items:center;
}
.hero__title{
  font-size:clamp(34px, 4.3vw, 58px);
  line-height:1.1; font-weight:800; letter-spacing:-.025em;
}
.hero__text{ color:#B6C6DC; font-size:17px; margin-top:20px; max-width:52ch; }

.tag-row{ display:flex; flex-wrap:wrap; gap:10px 22px; margin-top:24px; }
.tag-row li{ display:flex; align-items:center; gap:8px; font-size:14px; color:#CBD8E9; }
.tag-row .ico{ width:18px; height:18px; color:#60A5FA; }

.hero__actions{ display:flex; flex-wrap:wrap; gap:14px; margin-top:32px; }

.hero__trust{ display:flex; align-items:center; gap:14px; margin-top:30px; }
.hero__trust p{ font-size:14px; color:#B6C6DC; }
.avatars{ display:flex; }
.avatar{
  width:38px; height:38px; border-radius:50%; border:2px solid var(--navy-deep);
  margin-left:-10px; background:#334155;
}
.avatar:first-child{ margin-left:0; }
.avatar--1{ background:linear-gradient(135deg,#3B82F6,#1D4ED8); }
.avatar--2{ background:linear-gradient(135deg,#A78BFA,#7C3AED); }
.avatar--3{ background:linear-gradient(135deg,#34D399,#059669); }
.avatar--4{ background:linear-gradient(135deg,#FBBF24,#D97706); }

/* ---------- 8. Hero visual ---------- */
.hero__visual{ position:relative; min-height:430px; }

.laptop{ position:relative; width:86%; margin:26px auto 0; }
.laptop__screen{
  background:#0f1e36; border:8px solid #16233c; border-radius:14px;
  box-shadow:var(--shadow-lg);
  overflow:hidden;
}
.laptop__base{
  height:14px; border-radius:0 0 14px 14px;
  background:linear-gradient(180deg,#26374f,#16233c);
  width:112%; margin-left:-6%;
  box-shadow:0 14px 30px rgba(0,0,0,.4);
}
.dash{ background:var(--white); color:var(--text); }
.dash__bar{
  display:flex; align-items:center; gap:6px; padding:9px 12px; background:#EEF3FA; border-bottom:1px solid #DDE6F2;
}
.dash__bar .dot{ width:8px; height:8px; border-radius:50%; background:#C6D2E2; }
.dash__url{ flex:1; height:12px; border-radius:6px; background:#DCE6F4; margin-left:8px; }
.dash__body{ padding:16px 18px 18px; }
.dash__title{ font-weight:700; font-size:15px; }
.dash__kpis{ display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin:12px 0 14px; }
.kpi{ background:#F3F7FD; border:1px solid #E2EAF6; border-radius:10px; padding:8px 10px; }
.kpi span{ display:block; font-size:10px; color:var(--text-soft); }
.kpi strong{ font-size:15px; }
.dash__chart{ width:100%; height:108px; display:block; }

.mobile-mock{
  position:absolute; right:-6px; bottom:-6px; width:132px;
  background:#16233c; border:6px solid #1d2c47; border-radius:20px;
  box-shadow:var(--shadow-lg);
}
.mobile-mock__screen{
  background:linear-gradient(170deg,#12294f,#1c3a6d);
  border-radius:14px; padding:14px 12px; min-height:210px;
  display:flex; flex-direction:column; gap:8px;
}
.mm-bar{ height:6px; width:34px; border-radius:3px; background:rgba(255,255,255,.35); }
.mm-title{ font-size:13px; font-weight:700; line-height:1.3; color:#fff; }
.mm-line{ height:5px; border-radius:3px; background:rgba(255,255,255,.22); }
.mm-line--short{ width:60%; }
.mm-cta{
  margin-top:auto; background:var(--blue); color:#fff; font-size:11px; font-weight:600;
  text-align:center; padding:7px 10px; border-radius:8px;
}

.float-card{
  position:absolute; z-index:3;
  background:rgba(255,255,255,.97); color:var(--text);
  border-radius:14px; padding:11px 14px;
  box-shadow:var(--shadow-lg);
  display:flex; flex-direction:column; gap:2px;
  min-width:148px;
  animation:floaty 6s ease-in-out infinite;
}
.float-card__icon{
  width:26px; height:26px; border-radius:8px; display:grid; place-items:center; color:#fff; margin-bottom:4px;
}
.float-card__icon .ico{ width:15px; height:15px; }
.fc-blue{ background:var(--blue); }
.fc-purple{ background:var(--purple); }
.fc-green{ color:#16A34A; }
.float-card__label{ font-size:11px; color:var(--text-soft); font-weight:600; }
.float-card__value{ font-size:14px; font-weight:800; }
.float-card--meta{ top:2%; left:-2%; animation-delay:.2s; }
.float-card--google{ top:-2%; right:22%; animation-delay:1.4s; }
.float-card--traffic{ top:22%; right:-4%; animation-delay:.8s; }
.spark{ width:100%; height:26px; margin-top:4px; }

.orbit{
  position:absolute; width:44px; height:44px; border-radius:14px;
  display:grid; place-items:center; color:#fff;
  box-shadow:var(--shadow-md);
  animation:floaty 7s ease-in-out infinite;
}
.orbit--fb{ background:#1877F2; left:12%; bottom:6%; animation-delay:.5s; }
.orbit--ig{ background:linear-gradient(135deg,#F58529,#DD2A7B,#8134AF); left:32%; bottom:-2%; animation-delay:1.1s; }
.orbit--chart{ background:var(--grad); right:6%; bottom:24%; animation-delay:1.8s; }

@keyframes floaty{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-10px); }
}

/* ---------- 9. Capability strip ---------- */
.strip{ background:var(--white); border-bottom:1px solid var(--line); }
.strip__list{
  display:flex; align-items:center; justify-content:space-between; gap:18px;
  padding-block:20px;
}
.strip__list li{
  display:flex; align-items:center; gap:10px;
  font-size:14.5px; font-weight:600; color:#1E293B; white-space:nowrap;
}
.strip__list .ico{ color:var(--blue-bright); }

/* ---------- 10. Problem / solution ---------- */
.problem{ background:var(--bg-soft); }
.problem__inner{ display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1.05fr); gap:52px; align-items:center; }

.pain-list{ margin-top:26px; display:grid; gap:12px; }
.pain-list li{ display:flex; align-items:center; gap:12px; font-size:15.5px; font-weight:500; }
.pain-list .ico{ color:var(--danger); width:22px; height:22px; }
.pain-list li:nth-child(even) .ico{ color:var(--warning); }

.funnel{ display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.funnel__step{
  background:var(--white); border:1px solid var(--line); border-radius:var(--r-md);
  padding:20px 14px; text-align:center; box-shadow:var(--shadow-sm);
  position:relative;
}
.funnel__step:not(:last-child)::after{
  content:""; position:absolute; top:50%; right:-12px; width:12px; height:2px; background:#C7D6EC;
}
.funnel__icon{ width:44px; height:44px; border-radius:14px; display:grid; place-items:center; margin:0 auto 12px; }
.funnel__step h3{ font-size:16px; font-weight:700; }
.funnel__step p{ font-size:12.5px; color:var(--text-soft); margin-top:4px; line-height:1.45; }

.solution-note{
  display:flex; gap:14px; align-items:center;
  margin-top:20px; padding:18px 20px;
  background:linear-gradient(120deg, rgba(37,99,235,.08), rgba(124,58,237,.08));
  border:1px solid rgba(37,99,235,.18); border-radius:var(--r-md);
}
.solution-note__icon{
  width:42px; height:42px; border-radius:12px; background:var(--grad); color:#fff;
  display:grid; place-items:center; flex:0 0 auto;
}
.solution-note p{ font-size:15px; }
.solution-note strong{ color:var(--blue-bright); }

/* ---------- 11. Cards + services ---------- */
.grid{ display:grid; gap:24px; }
.grid--3{ grid-template-columns:repeat(3, minmax(0,1fr)); }

.card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  padding:28px 26px;
  box-shadow:var(--shadow-sm);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card{ display:flex; flex-direction:column; }
.service-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:#BFD4FF; }
.service-card:hover .card__icon{ transform:translateY(-3px) scale(1.04); }

.card__icon{
  width:52px; height:52px; border-radius:16px;
  display:grid; place-items:center; margin-bottom:18px;
  background:linear-gradient(135deg, rgba(37,99,235,.12), rgba(124,58,237,.14));
  color:var(--blue-bright);
  transition:transform .25s ease;
}
.card__icon .ico{ width:26px; height:26px; }
.service-card h3{ font-size:19px; font-weight:700; letter-spacing:-.01em; }
.service-card > p{ color:var(--text-soft); font-size:15px; margin-top:10px; }

.ticks{ margin-top:16px; display:grid; gap:9px; }
.ticks li{ display:flex; align-items:center; gap:9px; font-size:14px; }
.ticks .ico{ width:16px; height:16px; color:#16A34A; }

.link-more{
  margin-top:20px; padding-top:16px; border-top:1px solid var(--line);
  display:inline-flex; align-items:center; gap:8px;
  font-weight:600; font-size:14.5px; color:var(--blue-bright);
}
.service-card .link-more{ margin-top:auto; }
.link-more .ico{ width:17px; height:17px; transition:transform .2s ease; }
.link-more:hover .ico{ transform:translateX(4px); }

/* ---------- 12. Why us ---------- */
.why__grid{
  display:grid; grid-template-columns:repeat(5, minmax(0,1fr)); gap:18px; margin-top:48px;
}
.why-card{
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.1);
  border-radius:var(--r-md);
  padding:26px 22px;
  transition:transform .25s ease, background-color .25s ease, border-color .25s ease;
}
.why-card:hover{ transform:translateY(-5px); background:rgba(255,255,255,.08); border-color:rgba(96,165,250,.4); }
.why-card__num{ font-size:12px; font-weight:800; color:#60A5FA; letter-spacing:.12em; }
.why-card__icon{
  display:grid; place-items:center; width:46px; height:46px; border-radius:14px;
  background:linear-gradient(135deg, rgba(59,130,246,.22), rgba(167,139,250,.22));
  color:#93C5FD; margin:12px 0 16px;
}
.why-card__icon .ico{ width:24px; height:24px; }
.why-card h3{ font-size:17px; font-weight:700; }
.why-card p{ font-size:14px; color:#A7B6CC; margin-top:8px; }

/* ---------- 13. Industries ---------- */
.industry-grid{
  display:grid; grid-template-columns:repeat(5, minmax(0,1fr)); gap:18px; margin-top:44px;
}
.industry-card{
  position:relative; border-radius:var(--r-md); overflow:hidden;
  box-shadow:var(--shadow-sm); background:#0B1B33;
  transition:transform .25s ease, box-shadow .25s ease;
}
.industry-card img{ width:100%; aspect-ratio:4/3; object-fit:cover; transition:transform .4s ease; }
.industry-card span{
  position:absolute; left:0; right:0; bottom:0; padding:12px 14px;
  color:#fff; font-size:14px; font-weight:600;
  background:linear-gradient(180deg, transparent, rgba(4,12,24,.85));
}
.industry-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow-md); }
.industry-card:hover img{ transform:scale(1.06); }

/* ---------- 14. Process ---------- */
.process{ background:var(--bg-soft); }
.steps{
  display:grid; grid-template-columns:repeat(4,1fr); gap:24px; margin-top:52px; position:relative;
}
.steps::before{
  content:""; position:absolute; top:31px; left:12%; right:12%; height:2px;
  background:repeating-linear-gradient(90deg,#C3D4EC 0 8px, transparent 8px 16px);
}
.step{ position:relative; text-align:center; }
.step__icon{
  width:62px; height:62px; border-radius:50%; display:grid; place-items:center; margin:0 auto 18px;
  background:var(--grad); color:#fff; box-shadow:0 10px 24px rgba(37,99,235,.28);
  position:relative; z-index:1;
}
.step__icon .ico{ width:26px; height:26px; }
.step__num{ font-size:13px; font-weight:800; color:var(--blue-bright); letter-spacing:.1em; }
.step h3{ font-size:18px; font-weight:700; margin-top:2px; }
.step p{ font-size:14px; color:var(--text-soft); margin-top:8px; max-width:30ch; margin-inline:auto; }

/* ---------- 15. Results ---------- */
.results{ background:var(--white); }
.results__panel{
  background:
    radial-gradient(700px 300px at 85% 0%, rgba(37,99,235,.35), transparent 60%),
    linear-gradient(140deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius:28px; color:var(--white);
  padding:64px 40px;
  box-shadow:var(--shadow-lg);
}
.metrics{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:44px; }
.metric{
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12);
  border-radius:var(--r-md); padding:26px 20px; text-align:center;
}
.metric__icon{
  display:grid; place-items:center; width:44px; height:44px; border-radius:12px; margin:0 auto 12px;
  background:rgba(59,130,246,.2); color:#93C5FD;
}
.metric__value{ display:block; font-size:clamp(30px,3.4vw,42px); font-weight:800; letter-spacing:-.02em; }
.metric__label{ font-size:14px; color:#A7B6CC; }

/* ---------- 16. Portfolio ---------- */
.filters{ display:flex; flex-wrap:wrap; gap:8px; }
.filter{
  background:var(--white); border:1px solid var(--line); border-radius:999px;
  padding:9px 18px; font-size:14px; font-weight:600; color:var(--text-soft); cursor:pointer;
  transition:all .2s ease;
}
.filter:hover{ border-color:#BFD4FF; color:var(--blue-bright); }
.filter.is-active{ background:var(--grad); border-color:transparent; color:#fff; }

.portfolio-card{
  border:1px solid var(--line); border-radius:var(--r-lg); overflow:hidden; background:var(--white);
  box-shadow:var(--shadow-sm);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display:flex; flex-direction:column;
}
.portfolio-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:#BFD4FF; }
.portfolio-card__media{ position:relative; overflow:hidden; background:#0B1B33; }
.portfolio-card__media img{ width:100%; aspect-ratio:4/3; object-fit:cover; transition:transform .4s ease; }
.portfolio-card:hover .portfolio-card__media img{ transform:scale(1.05); }
.portfolio-card__tag{
  position:absolute; top:12px; left:12px;
  background:rgba(255,255,255,.94); color:var(--blue-bright);
  font-size:11.5px; font-weight:700; padding:5px 11px; border-radius:999px;
}
.portfolio-card__body{ padding:22px 22px 24px; display:flex; flex-direction:column; flex:1; }
.portfolio-card__body h3{ font-size:18px; font-weight:700; }
.portfolio-card__services{ font-size:13px; color:var(--blue-bright); font-weight:600; margin-top:4px; }
.portfolio-card__body p{ font-size:14.5px; color:var(--text-soft); margin-top:10px; }
.portfolio__empty{ text-align:center; color:var(--text-soft); padding:40px 0; }

/* ---------- 17. Testimonials ---------- */
.testimonials{ background:var(--bg-soft); }
.testimonials__grid{ margin-top:40px; }
.testimonial__head{ display:flex; align-items:center; gap:12px; }
.testimonial__avatar{
  width:46px; height:46px; border-radius:50%; display:grid; place-items:center;
  background:#E7EEFA; color:#7C93B4;
}
.testimonial__name{ font-weight:700; font-size:15.5px; }
.testimonial__biz{ font-size:13px; color:var(--text-soft); }
.stars{ display:flex; gap:3px; margin:14px 0 10px; color:#F59E0B; }
.stars .ico{ width:17px; height:17px; }
.testimonial blockquote{ margin:0; }
.testimonial blockquote p{ font-size:15px; color:#334155; font-style:italic; }

/* ---------- 18. FAQ + booking ---------- */
.faq-booking__inner{ display:grid; grid-template-columns:minmax(0,1.15fr) minmax(0,.85fr); gap:44px; align-items:start; }

.accordion{ margin-top:30px; display:grid; gap:10px; }
.acc-item{ border:1px solid var(--line); border-radius:var(--r-sm); background:var(--white); overflow:hidden; }
.acc-item h3{ margin:0; font-size:inherit; font-weight:inherit; }
.acc-btn{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px;
  background:none; border:0; cursor:pointer; text-align:left;
  padding:17px 20px; font-size:15.5px; font-weight:600;
  transition:background-color .2s ease, color .2s ease;
}
.acc-btn:hover{ background:#F4F8FE; color:var(--blue-bright); }
.acc-icon{
  width:26px; height:26px; border-radius:8px; display:grid; place-items:center; flex:0 0 auto;
  background:#EEF3FC; color:var(--blue-bright); transition:transform .25s ease, background-color .2s ease;
}
.acc-icon .ico{ width:16px; height:16px; }
.acc-btn[aria-expanded="true"]{ color:var(--blue-bright); }
.acc-btn[aria-expanded="true"] .acc-icon{ transform:rotate(45deg); background:var(--grad); color:#fff; }
.acc-panel{
  max-height:0; overflow:hidden; transition:max-height .3s ease;
}
.acc-panel p{ padding:0 20px 18px; font-size:15px; color:var(--text-soft); }

.booking{
  background:
    radial-gradient(500px 240px at 90% 0%, rgba(124,58,237,.4), transparent 62%),
    linear-gradient(150deg, var(--navy) 0%, #12305e 100%);
  color:#fff; border-radius:24px; padding:36px 32px;
  box-shadow:var(--shadow-lg);
  position:relative; overflow:hidden;
}
.booking__steps{ display:grid; gap:14px; margin:24px 0 26px; }
.booking__steps li{ display:flex; align-items:center; gap:13px; font-size:15px; color:#D6E2F2; }
.booking__steps span{
  width:28px; height:28px; border-radius:50%; background:var(--blue); color:#fff;
  display:grid; place-items:center; font-size:13px; font-weight:700; flex:0 0 auto;
}
.booking__chat{ margin-top:22px; display:flex; justify-content:flex-end; }
.booking__bubble{
  background:#fff; color:#334155; font-size:13px; line-height:1.5;
  padding:12px 14px; border-radius:14px 14px 4px 14px; max-width:270px;
  box-shadow:var(--shadow-md);
}

/* ---------- 19. Final CTA ---------- */
.final-cta{ padding-block:0 var(--section-y); }
.final-cta__panel{
  position:relative;
  background:var(--grad);
  border-radius:26px; padding:48px 44px; color:#fff;
  display:flex; align-items:center; justify-content:space-between; gap:36px; flex-wrap:wrap;
  box-shadow:0 30px 70px rgba(67,56,202,.35);
  overflow:hidden;
}
.final-cta__panel::before{
  content:""; position:absolute; width:420px; height:420px; right:-90px; top:-190px; border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.28), transparent 65%);
}
.final-cta__panel > *{ position:relative; }
.final-cta__panel p{ margin-top:10px; font-size:16.5px; color:rgba(255,255,255,.9); max-width:56ch; }
.final-cta__actions{ display:flex; flex-wrap:wrap; gap:12px; }

/* ---------- 20. Contact ---------- */
.contact{ background:var(--bg-soft); }
.contact__inner{ display:grid; grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr); gap:44px; align-items:start; }
.contact__brand{ font-size:26px; font-weight:800; letter-spacing:.04em; margin-top:30px; }
.contact__tag{ font-size:14px; color:var(--text-soft); }
.contact__list{ margin:24px 0 26px; display:grid; gap:14px; }
.contact__list li{ display:flex; align-items:center; gap:12px; font-size:15.5px; font-weight:500; }
.contact__ico{
  width:40px; height:40px; border-radius:12px; display:grid; place-items:center; flex:0 0 auto;
  background:#E8F0FE; color:var(--blue-bright);
}
.contact__ico--green{ background:rgba(37,211,102,.14); color:#15803D; }
.contact__list a:hover{ color:var(--blue-bright); }

.contact__form-wrap{
  background:var(--white); border:1px solid var(--line); border-radius:24px;
  padding:32px 30px; box-shadow:var(--shadow-md);
}
.enquiry-form{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; }
.field{ display:flex; flex-direction:column; gap:7px; }
.field--full{ grid-column:1 / -1; }
.field label{ font-size:13.5px; font-weight:600; }
.field label span{ color:var(--danger); }
.field input, .field select, .field textarea{
  font:inherit; font-size:15px; color:var(--text);
  padding:12px 14px; border:1px solid var(--line); border-radius:10px;
  background:#FBFCFE; width:100%;
  transition:border-color .2s ease, box-shadow .2s ease;
}
.field textarea{ resize:vertical; min-height:110px; }
.field input:focus, .field select:focus, .field textarea:focus{
  border-color:var(--blue-bright); box-shadow:0 0 0 3px rgba(37,99,235,.14); outline:none;
}
.field input.is-invalid, .field select.is-invalid{ border-color:var(--danger); background:#FEF6F6; }
.error{ font-size:12.5px; color:var(--danger); font-weight:500; }
.form-note{ font-size:12.5px; color:var(--text-soft); margin-top:10px; text-align:center; }
.form-success{
  margin-top:12px; padding:12px 14px; border-radius:10px;
  background:rgba(37,211,102,.12); border:1px solid rgba(37,211,102,.35);
  color:#15803D; font-size:14px; font-weight:600;
}
.form-success a{ text-decoration:underline; }

/* ---------- 21. Footer ---------- */
.footer{ background:var(--navy); color:#9FB0C7; padding-top:66px; }
.footer__inner{
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1.1fr; gap:36px; padding-bottom:42px;
}
.logo__mark--footer{ color:#fff; font-size:23px; font-weight:800; letter-spacing:.04em; }
.logo__mark--footer span{ color:#3B82F6; }
.footer__tagline{ margin-top:14px; font-size:14.5px; }
.footer__title{ color:#fff; font-size:15px; font-weight:700; margin-bottom:16px; }
.footer__col ul{ display:grid; gap:10px; }
.footer__col a{ font-size:14.5px; transition:color .2s ease; }
.footer__col a:hover{ color:#fff; }
.footer__contact li a, .footer__contact li span{ display:flex; align-items:center; gap:10px; font-size:14.5px; }
.footer__contact .ico{ width:18px; height:18px; color:#3B82F6; }

.socials{ display:flex; gap:10px; margin-top:20px; }
.socials a{
  width:38px; height:38px; border-radius:10px; display:grid; place-items:center;
  background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.12); color:#C7D5E6;
  transition:background-color .2s ease, color .2s ease, transform .2s ease;
}
.socials a:hover{ background:var(--grad); color:#fff; transform:translateY(-2px); border-color:transparent; }

.footer__bottom{
  border-top:1px solid rgba(255,255,255,.1);
  padding-block:22px;
  display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap;
  font-size:13.5px;
}
.footer__legal{ display:flex; gap:20px; }
.footer__legal a:hover{ color:#fff; }

/* ---------- 22. Floating WhatsApp + mobile bar ---------- */
.whatsapp-float{
  position:fixed; right:22px; bottom:22px; z-index:95;
  width:58px; height:58px; border-radius:50%;
  background:var(--whatsapp); color:#fff;
  display:grid; place-items:center;
  box-shadow:0 12px 28px rgba(37,211,102,.45);
  transition:transform .2s ease;
}
.whatsapp-float .ico{ width:31px; height:31px; }
.whatsapp-float::before{
  content:""; position:absolute; inset:0; border-radius:50%;
  box-shadow:0 0 0 0 rgba(37,211,102,.55);
  animation:pulse 2.6s infinite;
}
.whatsapp-float:hover{ transform:scale(1.06); }
.whatsapp-float__tip{
  position:absolute; right:70px; top:50%; transform:translateY(-50%);
  background:var(--navy-deep); color:#fff; font-size:13px; font-weight:600;
  padding:8px 13px; border-radius:9px; white-space:nowrap;
  opacity:0; pointer-events:none; transition:opacity .2s ease;
  box-shadow:var(--shadow-md);
}
.whatsapp-float:hover .whatsapp-float__tip,
.whatsapp-float:focus-visible .whatsapp-float__tip{ opacity:1; }

@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(37,211,102,.5); }
  70%{ box-shadow:0 0 0 18px rgba(37,211,102,0); }
  100%{ box-shadow:0 0 0 0 rgba(37,211,102,0); }
}

.mobile-bar{ display:none; }

/* ---------- 23. Scroll reveal ---------- */
.reveal{ opacity:0; transform:translateY(22px); transition:opacity .6s ease, transform .6s ease; }
.reveal.is-visible{ opacity:1; transform:none; }

/* ---------- 24. Multi-page additions: sub-page headers, explore grid, legal ---------- */

/* Extra top space for the first section on every page that isn't the hero,
   since the fixed header now sits directly above it. */
.pt-header{ padding-top:calc(var(--header-h) + 48px) !important; }

/* Eyebrow used above an <h1> on a light background (services / faq / contact) */
.eyebrow--onlight{
  color:var(--blue-bright);
  background:rgba(37,99,235,.08);
  border-color:rgba(37,99,235,.22);
}

/* Home page "Explore" link-cards */
.explore-card{ display:flex; flex-direction:column; cursor:pointer; }
.explore-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:#BFD4FF; }
.explore-card h3{ font-size:19px; font-weight:700; letter-spacing:-.01em; }
.explore-card > p{ color:var(--text-soft); font-size:15px; margin-top:10px; }
.explore-card .link-more{ margin-top:auto; pointer-events:none; }

/* Legal pages (Privacy Policy / Terms & Conditions) */
.legal{ background:var(--bg-soft); }
.legal__inner{ max-width:760px; }
.legal__updated{ color:var(--text-soft); font-size:14px; margin-top:10px; }
.legal-content{ margin-top:32px; display:grid; gap:20px; }
.legal-content h2{ font-size:19px; font-weight:700; margin-top:6px; }
.legal-content p{ color:#334155; font-size:15.5px; line-height:1.7; }
.legal-content em{ color:var(--text-soft); }

/* Footer logo: a light card behind the logo image, since the logo's dark
   lettering needs a light background to stay readable on the dark footer. */
.footer__logo-badge{
  display:inline-flex; background:var(--white); border-radius:12px;
  padding:10px 16px; box-shadow:0 8px 22px rgba(0,0,0,.25);
}
.footer__logo-badge img{ height:34px; width:auto; display:block; }

/* ---------- 25. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{
    animation-duration:.001ms !important; animation-iteration-count:1 !important;
    transition-duration:.001ms !important;
  }
  .reveal{ opacity:1; transform:none; }
}
