/* ============================================================
   LANSAFE WEBSITE — MAIN STYLESHEET
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400&display=swap');

/* ── Variables ── */
:root {
  --accent:       #d4145a;
  --primary:      #960052;
  --accent-light: #ee377e;
  --dark:         #0a0a14;
  --navy:         #960052;
  --text:         #333333;
  --text-light:   #666666;
  --text-muted:   #808284;
  --white:        #ffffff;
  --light-bg:     #f8f8f8;
  --border:       #e5e5e5;
  --shadow:       0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:    0 12px 48px rgba(0,0,0,.18);
  --radius:       4px;
  --transition:   all .3s ease;
  --header-h:     132px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; transition: var(--transition); }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

/* Top bar */
.header-top {
  background: #960052;
  padding: 8px 0;
}
.header-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.ht-left, .ht-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.ht-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}
.ht-item:hover { color: #ffffff; opacity: .85; }
.ht-item svg { width: 13px; height: 13px; fill: #ffffff; flex-shrink: 0; }

/* Social icons */
.social-icons { display: flex; gap: 8px; }
.soc-icon {
  width: 27px; height: 27px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.soc-icon:hover { background: var(--accent); }
.soc-icon svg { width: 12px; height: 12px; fill: white; }

/* Support link */
.ht-support {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.75);
  font-size: 13px;
  padding: 4px 14px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  transition: var(--transition);
}
.ht-support:hover { background: var(--accent); border-color: var(--accent); color: white; }
.ht-support svg { width: 12px; height: 12px; fill: currentColor; }

/* Main nav bar */
.header-main {
  background: white;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  transition: var(--transition);
}
.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  transition: height .3s;
}

/* Logo */
.logo { display: flex; align-items: center; }
.logo img { height: 54px; width: auto; transition: height .3s; }

/* Nav */
.nav-menu { display: flex; align-items: center; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  color: #2d2d2d;
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active { color: var(--accent); }
.nav-link .chevron {
  width: 10px; height: 10px;
  fill: currentColor;
  transition: transform .2s;
}
.nav-item:hover .nav-link .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%; left: 0;
  min-width: 230px;
  background: white;
  box-shadow: 0 8px 32px rgba(0,0,0,.14);
  border-top: 3px solid var(--accent);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .25s ease;
  z-index: 200;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  color: #444;
  border-bottom: 1px solid #f5f5f5;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: #fff5f9; color: var(--accent); padding-left: 24px; }

/* Contact Us CTA in nav */
.nav-cta {
  margin-left: 8px;
  padding: 10px 22px;
  background: var(--accent);
  color: white !important;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.nav-cta:hover { background: var(--primary); color: white !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 25px; height: 2px;
  background: #333;
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Scrolled state */
#header.scrolled .header-top { padding: 4px 0; }
#header.scrolled .header-main .container { height: 68px; }
#header.scrolled .logo img { height: 40px; }

/* Header spacer */
.header-spacer { height: var(--header-h); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,20,90,.35);
}
.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline:hover { background: white; color: var(--accent); border-color: white; }
.btn-dark { background: var(--navy); color: white; }
.btn-dark:hover { background: var(--accent); color: white; }
.btn-white { background: white; color: var(--accent); }
.btn-white:hover { background: var(--accent); color: white; }
.btn-sm { padding: 9px 20px; font-size: 13px; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/images/hero.jpg') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.72) 100%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 35%, rgba(255,255,255,.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 20%, rgba(255,255,255,.20) 0%, transparent 100%);
  animation: particles 12s ease-in-out infinite alternate;
}
@keyframes particles {
  0%  { transform: translateY(0) scale(1); }
  100%{ transform: translateY(-20px) scale(1.02); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero-tag {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #ee377e;
  letter-spacing: .5px;
  margin-bottom: 12px;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 800;
  color: #ffffff !important;
  line-height: 1.2;
  margin-bottom: 22px;
}
.hero h1 span { color: #ee377e; }
.hero-text {
  font-size: 16px;
  color: rgba(255,255,255,.90);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 680px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
/* Mouse scroll */
.scroll-indicator {
  position: absolute;
  bottom: 38px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
}
.mouse {
  width: 26px; height: 44px;
  border: 2px solid rgba(255,255,255,.55);
  border-radius: 18px;
  position: relative;
}
.mouse::before {
  content: '';
  width: 5px; height: 5px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 7px; left: 50%;
  transform: translateX(-50%);
  animation: mouseWheel 2s infinite;
}
@keyframes mouseWheel {
  0%   { opacity: 1; top: 7px; }
  100% { opacity: 0; top: 26px; }
}
.scroll-label {
  font-size: 10px;
  color: rgba(255,255,255,.45);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============================================================
   FEATURES BAR
   ============================================================ */
#features {
  background: #000000;
  border-top: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 6px 24px rgba(0,0,0,.30);
  position: relative;
  z-index: 5;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,.12);
  transition: var(--transition);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(255,255,255,.05); }
.feat-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.feat-icon svg { width: 22px; height: 22px; fill: #ffffff; }
.feat-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}
.feat-body p {
  font-size: 12px;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}

/* ============================================================
   SECTION HELPERS
   ============================================================ */
section { padding: 96px 0; }
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title span { color: var(--accent); }
.section-text {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.section-divider {
  width: 54px; height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  border-radius: 2px;
  margin-bottom: 32px;
}

/* ============================================================
   WHY LANSAFE
   ============================================================ */
#why { background: var(--light-bg); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-image-wrap {
  position: relative;
}
.why-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.why-image-wrap::after {
  content: '';
  position: absolute;
  bottom: -16px; right: -16px;
  width: 70%;  height: 70%;
  border: 4px solid var(--accent);
  border-radius: var(--radius);
  z-index: -1;
}
.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0 36px;
}
.why-stat {
  background: white;
  padding: 22px 18px;
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow);
}
.why-stat .number {
  font-size: 30px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.why-stat .label {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 5px;
}

/* ============================================================
   SERVICES CAROUSEL
   ============================================================ */
#services { background: white; }
.carousel-outer { position: relative; }
.carousel-viewport { overflow: hidden; }
.services-track {
  display: flex;
  gap: 24px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.svc-card {
  flex: 0 0 calc(25% - 18px);
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}
.svc-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.svc-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.svc-body { padding: 24px; }
.svc-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.svc-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 20px;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: white;
  background: var(--navy);
  padding: 9px 18px;
  border-radius: 3px;
  transition: var(--transition);
}
/* Services Marquee Ticker */
.svc-ticker-wrap {
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}
.svc-ticker-wrap::before,
.svc-ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.svc-ticker-wrap::before { left: 0; background: linear-gradient(90deg, #ffffff, transparent); }
.svc-ticker-wrap::after  { right: 0; background: linear-gradient(-90deg, #ffffff, transparent); }
.svc-ticker-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: svcTicker 36s linear infinite;
}
.svc-ticker-wrap:hover .svc-ticker-track,
.svc-ticker-wrap:focus-within .svc-ticker-track,
.svc-ticker-track:hover,
.svc-ticker-track:active {
  animation-play-state: paused;
}
.svc-ticker-card {
  width: 320px;
  flex: 0 0 320px;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.svc-ticker-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
@keyframes svcTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Carousel controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
}
.car-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--accent);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.car-btn:hover { background: var(--accent); color: white; }
.car-btn svg { width: 15px; height: 15px; fill: currentColor; }
.car-dots { display: flex; gap: 8px; align-items: center; }
.car-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.car-dot.active { background: var(--accent); width: 22px; border-radius: 4px; }

/* ============================================================
   SWITCHING SECTION
   ============================================================ */
#switching { background: var(--navy); padding: 96px 0; }
.sw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sw-content .section-tag { color: var(--accent-light); }
.sw-content .section-title { color: white; }
.sw-content .section-text { color: rgba(255,255,255,.72); }
.sw-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sw-images img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
}
.sw-images img:first-child { margin-top: 32px; }

/* ============================================================
   CLIENTS TICKER
   ============================================================ */
#clients {
  padding: 60px 0;
  background: var(--light-bg);
  overflow: hidden;
}
.clients-label {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.ticker-wrap {
  overflow: hidden;
  position: relative;
}
.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.ticker-wrap::before { left: 0;  background: linear-gradient(90deg, var(--light-bg), transparent); }
.ticker-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--light-bg), transparent); }
.ticker-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker-wrap:hover .ticker-track,
.ticker-wrap:focus-within .ticker-track,
.ticker-track:hover,
.ticker-track:active {
  animation-play-state: paused;
}
.client-item {
  display: flex;
  align-items: center;
  height: 64px;
}
.client-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 8px 18px;
  border-radius: 8px;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.client-item a:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 6px 20px rgba(212, 20, 90, 0.25);
  border-color: var(--accent);
}
.client-item img {
  max-height: 42px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(60%);
  transition: filter 0.3s ease;
}
.client-item a:hover img {
  filter: grayscale(0%);
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   CASE STUDIES + TESTIMONIALS (2-column layout)
   ============================================================ */
#social-proof { background: white; }
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Case Studies carousel */
.cs-viewport { overflow: hidden; }
.cs-track {
  display: flex;
  gap: 20px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.cs-card {
  flex: 0 0 calc(100% - 0px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.cs-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.cs-img {
  width: 100%;
  height: 210px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4);
  font-size: 13px;
  overflow: hidden;
}
.cs-img img { width: 100%; height: 100%; object-fit: cover; }
.cs-body {
  padding: 24px;
  background: white;
}
.cs-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 10px;
}
.cs-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 16px;
}
.cs-title a:hover { color: var(--accent); }

/* Testimonials carousel */
.test-viewport { overflow: hidden; }
.test-track {
  display: flex;
  gap: 20px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.test-card {
  flex: 0 0 calc(100% - 0px);
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 30px;
  border-left: 4px solid var(--accent);
  position: relative;
  transition: var(--transition);
}
.test-card:hover { box-shadow: var(--shadow-lg); background: white; }
.test-quote-icon {
  font-size: 72px;
  color: var(--accent);
  line-height: .8;
  font-family: Georgia, serif;
  opacity: .15;
  position: absolute;
  top: 16px; left: 22px;
}
.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}
.stars svg { width: 15px; height: 15px; fill: #f59e0b; }
.test-text {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 22px;
}
.test-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.test-author span {
  font-size: 13px;
  color: var(--accent);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
#cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  padding: 88px 0;
  text-align: center;
}
#cta-banner h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: white;
  margin-bottom: 18px;
}
#cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,.85);
  max-width: 580px;
  margin: 0 auto 38px;
  line-height: 1.7;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--dark);
  padding: 80px 0 0;
  color: rgba(255,255,255,.65);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo {
  height: 46px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: .9;
}
.footer-brand-text {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,.55);
  margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 10px; }
.f-soc {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.f-soc:hover { background: var(--accent); }
.f-soc svg { width: 15px; height: 15px; fill: white; }
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
}
.footer-links a::before { content: '›'; color: var(--accent); font-size: 17px; line-height: 1; }
.footer-links a:hover { color: var(--accent-light); padding-left: 4px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 16px; }
.f-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,.55);
}
.f-contact-item svg { width: 16px; height: 16px; fill: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--accent); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
  padding: 148px 0 88px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 25% 55%, rgba(212,20,90,.18) 0%, transparent 65%);
}
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  margin-bottom: 26px;
}
.breadcrumb a { color: rgba(255,255,255,.45); }
.breadcrumb a:hover { color: var(--accent-light); }
.breadcrumb .bc-sep { font-size: 16px; }
.breadcrumb .bc-current { color: var(--accent-light); }
.page-hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 22px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,.72);
  max-width: 640px;
  line-height: 1.72;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.val-card {
  background: white;
  padding: 28px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent);
  transition: var(--transition);
}
.val-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.val-card svg { width: 36px; height: 36px; fill: var(--accent); margin-bottom: 14px; }
.val-card h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.val-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  text-align: center;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.team-card-body { padding: 20px 16px; }
.team-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); }
.team-card span { font-size: 13px; color: var(--accent); }

/* Accreditations */
.accred-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.accred-badge {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 30px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  min-width: 200px;
}
.accred-badge:hover { border-color: var(--accent); color: var(--accent); }
.accred-badge svg { width: 32px; height: 32px; fill: var(--accent); }

/* ============================================================
   SERVICES PAGE / FIRE-SECURITY / IT-TELECOMS
   ============================================================ */
.services-inner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.svc-inner-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.svc-inner-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.svc-inner-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.svc-inner-body { padding: 26px; }
.svc-inner-body h3 { font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.svc-inner-body p { font-size: 14px; color: var(--text-light); line-height: 1.65; margin-bottom: 20px; }
.svc-features-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.svc-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
}
.svc-feature svg { width: 16px; height: 16px; fill: var(--accent); flex-shrink: 0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.contact-info-list { margin-top: 8px; }
.c-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.c-info-item:first-child { padding-top: 0; }
.c-info-item:last-child { border-bottom: none; }
.c-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.c-icon svg { width: 22px; height: 22px; fill: white; }
.c-info-body h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.c-info-body a,
.c-info-body p { font-size: 15px; color: var(--text-light); line-height: 1.6; }
.c-info-body a:hover { color: var(--accent); }

.contact-form-card {
  background: white;
  padding: 44px;
  border-radius: var(--radius);
  box-shadow: 0 12px 48px rgba(0,0,0,.10);
}
.contact-form-card h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.contact-form-card > p { font-size: 15px; color: var(--text-light); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #444;
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: white;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212,20,90,.10);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; justify-content: center; font-size: 16px; padding: 15px; }
.form-success {
  display: none;
  text-align: center;
  padding: 30px;
  color: #22c55e;
  font-size: 18px;
  font-weight: 600;
}

/* ============================================================
   CASE STUDIES PAGE
   ============================================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}
.filter-pill {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  background: var(--light-bg);
  border: 2px solid var(--border);
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}
.filter-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: #fff5f9;
}
.filter-pill.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(212, 20, 90, 0.3);
}

.cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cs-grid-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  background: white;
}
.cs-grid-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cs-grid-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.cs-grid-body { padding: 24px; }
.cs-grid-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 8px;
}
.cs-grid-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 12px;
}
.cs-grid-excerpt {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 20px;
}

.testimonials-inline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.rd1 { transition-delay: .1s; }
.rd2 { transition-delay: .2s; }
.rd3 { transition-delay: .3s; }
.rd4 { transition-delay: .4s; }

/* ============================================================
   MOBILE OVERLAY NAV
   ============================================================ */
#mobileNav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1500;
  opacity: 0;
  transition: opacity .3s;
}
#mobileNav.open { opacity: 1; }
.mob-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}
.mob-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(320px, 90vw);
  height: 100%;
  background: white;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s ease;
  padding-bottom: 40px;
}
#mobileNav.open .mob-panel { transform: none; }
.mob-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: white;
  z-index: 2;
}
.mob-close {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
}
.mob-close:hover { background: var(--accent); color: white; }
.mob-nav-item { border-bottom: 1px solid #f5f5f5; }
.mob-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #2d2d2d;
  cursor: pointer;
  transition: var(--transition);
}
.mob-nav-link:hover { color: var(--accent); background: #fff5f9; }
.mob-nav-link svg { width: 16px; height: 16px; fill: currentColor; transition: transform .2s; }
.mob-nav-link.mob-open svg { transform: rotate(180deg); }
.mob-sub { display: none; background: #fafafa; }
.mob-sub.mob-sub-open { display: block; }
.mob-sub a {
  display: block;
  padding: 11px 36px;
  font-size: 14px;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
  transition: var(--transition);
}
.mob-sub a:hover { color: var(--accent); }
.mob-cta {
  display: block;
  margin: 20px;
  padding: 14px;
  text-align: center;
  background: var(--accent);
  color: white;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.mob-cta:hover { background: var(--primary); color: white; }
.mob-contact-bar {
  padding: 16px 20px;
  background: var(--light-bg);
  margin: 0 20px 0;
  border-radius: var(--radius);
}
.mob-contact-bar a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.mob-contact-bar a:last-child { margin-bottom: 0; }
.mob-contact-bar svg { width: 15px; height: 15px; fill: var(--accent); }

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.text-white  { color: white; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }
.bg-light { background: var(--light-bg); }
.bg-dark  { background: var(--navy); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-item:nth-child(2n) { border-right: none; }
  .svc-card { flex: 0 0 calc(50% - 12px); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  :root { --header-h: 110px; }
  .hamburger { display: flex; }
  .nav-menu  { display: none; }
  .ht-right  { display: none; }
  .why-grid, .sw-grid, .contact-grid, .about-intro-grid,
  .proof-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-inner-grid { grid-template-columns: 1fr 1fr; }
  .cs-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .sw-images { grid-template-columns: 1fr; }
  .sw-images img:first-child { margin-top: 0; }
  .why-stats { grid-template-columns: 1fr; }
  .about-values, .services-inner-grid, .cs-grid, .testimonials-inline-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .svc-card { flex: 0 0 calc(100% - 0px); }
  .contact-form-card { padding: 24px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .page-hero { padding: 120px 0 60px; }
  .proof-grid { grid-template-columns: 1fr; }
  .ht-left .ht-item:last-child { display: none; }
}

@media (max-width: 480px) {
  .accred-grid { flex-direction: column; }
  .hero-tag { font-size: 11px; }
  .cta-btns .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   LATEST NEWS PAGE
   ============================================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.news-card-header {
  background: var(--navy);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid var(--accent);
}
.news-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: white;
  background: var(--accent);
  padding: 4px 12px;
  border-radius: 20px;
}
.news-date {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}
.news-card-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.news-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 12px;
  transition: var(--transition);
}
.news-card:hover .news-card-body h3 {
  color: var(--accent);
}
.news-card-body p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
}
.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  transition: var(--transition);
  margin-top: auto;
}
.news-read-more:hover {
  color: var(--primary);
  gap: 10px;
}
.news-read-more svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.newsletter-section {
  background: var(--navy);
  padding: 80px 0;
  color: white;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,20,90,.15) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.newsletter-card h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 14px;
}
.newsletter-card p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  line-height: 1.6;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto;
}
.newsletter-form input[type="email"] {
  flex-grow: 1;
  padding: 14px 20px;
  border-radius: var(--radius);
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: white;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}
.newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter-form input[type="email"]:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(212, 20, 90, 0.2);
}
.newsletter-form .btn {
  flex-shrink: 0;
}

/* ============================================================
   SUBPAGES UTILITY STYLES
   ============================================================ */
.subpage-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.subpage-img-wrap {
  position: relative;
}
.subpage-img-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.subpage-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 60%;
  height: 60%;
  border: 4px solid var(--accent);
  border-radius: var(--radius);
  z-index: -1;
}
.subpage-check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.subpage-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}
.subpage-check-item svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Features Grid */
.features-boxes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-box {
  background: white;
  padding: 32px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent);
  transition: var(--transition);
}
.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.feature-box-icon {
  width: 48px;
  height: 48px;
  background: #fff5f9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-box-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--accent);
}
.feature-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.feature-box p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}

/* Specifications Grid */
.specs-section {
  background: var(--light-bg);
}
.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.spec-card {
  background: white;
  padding: 36px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
}
.spec-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.spec-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}
.spec-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.spec-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.spec-list-item svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

@media (max-width: 1024px) {
  .subpage-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .features-boxes-grid { grid-template-columns: 1fr 1fr; }
  .specs-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .features-boxes-grid { grid-template-columns: 1fr; }
  .subpage-img-wrap img { height: 320px; }
}


