/* =========================================
    CSS VARIABLES & RESET
========================================= */
:root {
  --navy:       #0a1628;
  --blue:       #1449a0;
  --blue-mid:   #1a5fcc;
  --sky:        #3a8ef6;
  --white:      #ffffff;
  --off-white:  #f5f7fb;
  --gray:       #8a95aa;
  --text:       #1c2a42;
  --text-soft:  #4a5568;
  --border:     #dde4f0;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 12px rgba(10,22,40,.07);
  --shadow-md: 0 8px 32px rgba(10,22,40,.12);
  --shadow-lg: 0 20px 60px rgba(10,22,40,.18);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* =========================================
    UTILITIES
========================================= */
.section-pad { padding: 96px 0; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); background: rgba(20,73,160,.08);
  padding: 6px 14px; border-radius: 50px; margin-bottom: 16px;
}
.section-label::before {
  content: ''; width: 6px; height: 6px;
  background: var(--blue); border-radius: 50%; flex-shrink: 0;
}
.section-title { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--navy); margin-bottom: 16px; }
.section-sub { font-size: 1.05rem; color: var(--text-soft); max-width: 560px; line-height: 1.7; }

/* =========================================
    REVEAL ANIMATIONS
========================================= */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left {
  opacity: 0; transform: translateX(-32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-left.visible { opacity: 1; transform: none; }

/* =========================================
    NAVBAR
    Transparent over dark hero → white on scroll
========================================= */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 20px 0;
  background: transparent;  /* transparent on hero */
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 24px rgba(10,22,40,.1);
}

/* Brand */
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo-box {
  width: 44px; height: 44px; 
  background: var(--blue);
  border-radius: var(--radius-sm);
  display: flex; 
  align-items: center; 
  justify-content: center;
  color: #fff; 
  font-size: 1.2rem; 
  font-weight: 700;
  font-family: var(--font-display); 
  flex-shrink: 0;
}
.nav-brand-text { line-height: 1.15; }

/* Company name: WHITE on transparent navbar, NAVY after scroll */
.nav-brand-name {
  font-size: 1.1rem; font-weight: 700;
  color: #ffffff;                   /* white over dark hero */
  font-family: var(--font-body); letter-spacing: -.01em;
  transition: color var(--transition);
}
#navbar.scrolled .nav-brand-name { color: var(--navy); }

/* Tagline under name */
.nav-brand-tag {
  font-size: .8rem; font-weight: 500;
  color: rgba(255,255,255,.65);    /* soft white on hero */
  transition: color var(--transition);
}
#navbar.scrolled .nav-brand-tag { color: var(--gray); }

/* Desktop links */
.nav-links {
  display: flex; align-items: center;
  gap: 4px; list-style: none;
}
.nav-links a {
  font-size: .9rem; font-weight: 500;
  color: rgba(255,255,255,.85); /* white on hero */
  padding: 8px 14px; border-radius: 8px;
  position: relative;
  transition: color var(--transition), background var(--transition);
}
#navbar.scrolled .nav-links a { color: var(--text-soft); }

/* Hover */
.nav-links a:hover {
  color: #fff !important;
  background: rgba(255,255,255,.18);
}
#navbar.scrolled .nav-links a:hover {
  color: var(--blue) !important;
  background: rgba(20,73,160,.09);
}

/* Active — pill highlight + underline dot */
.nav-links a.active {
  color: #fff !important;
  background: rgba(255,255,255,.2);
  font-weight: 700;
}
#navbar.scrolled .nav-links a.active {
  color: var(--blue) !important;
  background: rgba(20,73,160,.1);
}
.nav-links a.active::after {
  content: '';
  position: absolute; bottom: 5px; left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 2.5px; border-radius: 2px;
  background: rgba(255,255,255,.9);
}
#navbar.scrolled .nav-links a.active::after { background: var(--blue); }

/* CTA button */
.btn-nav-cta {
  font-size: .88rem; font-weight: 600;
  padding: 10px 22px; border-radius: 50px;
  background: var(--blue); color: #fff; border: none;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-nav-cta:hover { background: var(--blue-mid); color: #fff; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border-radius: 8px;
  background: none; border: none;
  transition: background var(--transition);
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #ffffff;             /* white on hero */
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}
#navbar.scrolled .hamburger span { background: var(--navy); }
.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); }

/* Mobile menu */
.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  padding: 16px 0 20px;
  border-top: 1px solid rgba(255,255,255,.15);
  margin-top: 12px;
  background: rgba(10,22,40,.96);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  padding-left: 16px; padding-right: 16px;
}
#navbar.scrolled .mobile-menu {
  background: rgba(255,255,255,.98);
  border-top-color: var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: .95rem; font-weight: 500;
  color: rgba(255,255,255,.85); padding: 10px 8px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
#navbar.scrolled .mobile-menu a { color: var(--text); }
.mobile-menu a:hover, .mobile-menu a.active {
  color: #fff; background: rgba(255,255,255,.12);
}
#navbar.scrolled .mobile-menu a:hover,
#navbar.scrolled .mobile-menu a.active {
  color: var(--blue); background: rgba(20,73,160,.07);
}

/* =========================================
    HERO
========================================= */
#home {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--navy); padding-top: 90px;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-bg::before {
  content: ''; position: absolute; top: -20%; right: -10%;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(58,142,246,.25) 0%, transparent 65%);
  animation: pulse 8s ease-in-out infinite alternate;
}
.hero-bg::after {
  content: ''; position: absolute; bottom: -15%; left: -5%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(20,73,160,.3) 0%, transparent 65%);
  animation: pulse 10s ease-in-out infinite alternate-reverse;
}
@keyframes pulse {
  from { transform: scale(1); opacity: .7; }
  to   { transform: scale(1.15); opacity: 1; }
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  color: #a8c8ff; font-size: .8rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 50px; margin-bottom: 28px;
  backdrop-filter: blur(4px);
  animation: fadeSlideDown .8s ease forwards;
}
.hero-headline {
  font-size: clamp(2.6rem, 6vw, 4.2rem); color: #fff;
  margin-bottom: 24px; line-height: 1.1;
  animation: fadeSlideUp .9s .15s ease both;
}
.hero-headline span {
  background: linear-gradient(135deg, var(--sky), #7ab8ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: 1.15rem; color: #9db5d8; max-width: 520px;
  line-height: 1.75; margin-bottom: 40px;
  animation: fadeSlideUp .9s .3s ease both;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; animation: fadeSlideUp .9s .45s ease both; }
.btn-primary-hero {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff; font-size: .95rem; font-weight: 600;
  padding: 14px 28px; border-radius: 50px; border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 8px 32px rgba(58,142,246,.4);
}
.btn-primary-hero:hover { background: var(--sky); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(58,142,246,.55); }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #fff; font-size: .95rem; font-weight: 600;
  padding: 14px 28px; border-radius: 50px;
  transition: background var(--transition), transform var(--transition); backdrop-filter: blur(4px);
}
.btn-whatsapp:hover { background: #25D366; border-color: #25D366; color: #fff; transform: translateY(-2px); }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 32px;
  margin-top: 56px; padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,.1);
  animation: fadeSlideUp .9s .6s ease both;
}
.hero-stat-val { font-size: 1.8rem; font-weight: 700; color: #fff; font-family: var(--font-display); }
.hero-stat-label { font-size: .82rem; color: #7a98bf; font-weight: 500; text-transform: uppercase; letter-spacing: .06em; }
.hero-right-card { position: relative; z-index: 2; animation: fadeSlideUp .9s .3s ease both; }
.cert-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); padding: 32px; backdrop-filter: blur(12px);
}
.cert-card-title { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #7ab8ff; margin-bottom: 20px; }
.cert-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.cert-tag {
  background: rgba(58,142,246,.18); border: 1px solid rgba(58,142,246,.3);
  color: #a8cfff; font-size: .82rem; font-weight: 600;
  padding: 6px 14px; border-radius: 50px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.cert-tag:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }
.card-metric {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.05); border-radius: var(--radius-sm);
  padding: 14px 16px; margin-top: 16px;
}
.card-metric-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.card-metric-val { font-size: 1.1rem; font-weight: 700; color: #fff; }
.card-metric-lbl { font-size: .75rem; color: #7a98bf; }

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: none; }
}

/* =========================================
    TRUST / STATS SECTION
========================================= */
#trust { background: var(--white); padding: 72px 0; border-bottom: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.trust-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 36px 24px; border-radius: var(--radius-md);
  border: 1px solid var(--border); background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.trust-card:hover { border-color: rgba(20,73,160,.3); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.trust-icon {
  width: 56px; height: 56px; border-radius: var(--radius-sm);
  background: rgba(20,73,160,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 1.5rem; margin-bottom: 16px;
}
.trust-number { font-size: 2.8rem; font-weight: 800; color: var(--navy); font-family: var(--font-display); line-height: 1; margin-bottom: 6px; }
.trust-label { font-size: .88rem; font-weight: 500; color: var(--text-soft); }

/* =========================================
    ABOUT SECTION
========================================= */
#about { background: var(--off-white); }

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  min-height: 420px; display: flex; align-items: center; justify-content: center;
}
.about-img-inner { padding: 48px; text-align: center; }
.about-img-icon { font-size: 5rem; color: rgba(255,255,255,.2); display: block; margin-bottom: 20px; }
.about-img-tagline { font-size: 1.4rem; font-weight: 700; color: #fff; font-family: var(--font-display); line-height: 1.3; }
.about-img-sub { font-size: .88rem; color: rgba(255,255,255,.6); margin-top: 10px; font-style: italic; }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--white); border-radius: var(--radius-md);
  padding: 20px 24px; box-shadow: var(--shadow-lg);
  text-align: center; min-width: 140px;
}
.about-badge-val { font-size: 2.2rem; font-weight: 800; color: var(--blue); font-family: var(--font-display); line-height: 1; }
.about-badge-lbl { font-size: .75rem; color: var(--text-soft); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }
.about-desc { font-size: 1rem; color: var(--text-soft); line-height: 1.8; margin-bottom: 20px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
.about-feature {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.about-feature:hover { border-color: rgba(20,73,160,.25); box-shadow: var(--shadow-sm); }
.about-feature-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(20,73,160,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 1rem; flex-shrink: 0;
}
.about-feature-title { font-size: .88rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; font-family: var(--font-body); }
.about-feature-desc { font-size: .78rem; color: var(--text-soft); line-height: 1.4; }
.btn-about {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff; font-size: .92rem; font-weight: 600;
  padding: 13px 26px; border-radius: 50px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(20,73,160,.25);
}
.btn-about:hover { background: var(--blue-mid); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(20,73,160,.4); }

/* =========================================
    SERVICES SECTION
========================================= */
#services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-top: 48px; }
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 18px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  cursor: default; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  opacity: 0; transition: opacity var(--transition); z-index: 0;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-card:hover .service-icon { background: rgba(255,255,255,.2); color: #fff; }
.service-card:hover .service-name { color: #fff; }
.service-card:hover .service-desc { color: rgba(255,255,255,.85); }
.service-card:hover .service-tag { background: rgba(255,255,255,.15); color: rgba(255,255,255,.9); }
.service-card:hover .service-arrow { color: #fff; opacity: 1; }
.service-card-inner { position: relative; z-index: 1; }
.service-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.service-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: rgba(20,73,160,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 1.4rem;
  transition: background var(--transition), color var(--transition);
}
.service-arrow { color: var(--gray); font-size: 1.1rem; opacity: 0; transition: opacity var(--transition), color var(--transition); }
.service-name { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; font-family: var(--font-body); letter-spacing: -.01em; transition: color var(--transition); }
.service-desc { font-size: .88rem; color: var(--text-soft); line-height: 1.6; transition: color var(--transition); }
.service-tag {
  display: inline-block; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  background: rgba(20,73,160,.07); color: var(--blue);
  padding: 4px 10px; border-radius: 50px; margin-top: 16px;
  transition: background var(--transition), color var(--transition);
}

/* =========================================
    PROCESS SECTION
========================================= */
#process { background: var(--off-white); }
.process-wrapper { margin-top: 56px; position: relative; }
.process-line {
  display: none; position: absolute; top: 42px;
  left: calc(12.5% + 28px); right: calc(12.5% + 28px);
  height: 2px; background: linear-gradient(90deg, var(--blue), var(--sky)); z-index: 0;
}
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 1; }
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; }
.process-node {
  width: 80px; height: 80px; border-radius: 50%; background: var(--white);
  border: 3px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--blue); margin-bottom: 20px; position: relative;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition); z-index: 1;
}
.process-step:hover .process-node { border-color: var(--blue); box-shadow: 0 0 0 8px rgba(20,73,160,.08); transform: scale(1.08); }
.process-num {
  position: absolute; top: -6px; right: -6px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-size: .7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; font-family: var(--font-body);
}
.process-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; font-family: var(--font-body); }
.process-desc { font-size: .83rem; color: var(--text-soft); line-height: 1.55; }

/* =========================================
    CLIENTS — INFINITE MARQUEE SLIDER
========================================= */
#clients { background: var(--white); }

.marquee-outer {
  overflow: hidden; position: relative; padding: 4px 0;
}
/* Fade-out edges for polish */
.marquee-outer::before,
.marquee-outer::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 130px; z-index: 2; pointer-events: none;
}
.marquee-outer::before { left: 0; background: linear-gradient(90deg, var(--white) 0%, transparent 100%); }
.marquee-outer::after  { right: 0; background: linear-gradient(270deg, var(--white) 0%, transparent 100%); }

/* Row 1 — scrolls left */
.marquee-track {
  display: flex; gap: 20px; width: max-content;
  animation: marqueeLeft 32s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Row 2 — scrolls right (reversed) */
.marquee-track-rev {
  display: flex; gap: 20px; width: max-content;
  margin-top: 18px;
  animation: marqueeRight 40s linear infinite;
}
.marquee-track-rev:hover { animation-play-state: paused; }
@keyframes marqueeRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.client-logo-box {
  flex-shrink: 0;
  width: 190px;
  aspect-ratio: 16 / 9; /* 🔥 main fix */

  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 12px; /* spacing inside */

  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.client-logo-box:hover {
  border-color: rgba(20,73,160,.35);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

/* Image styling */
.client-logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* 🔥 important */

  /* filter: grayscale(100%); */
  /* opacity: 0.7; */
  transition: all 0.3s ease;
}

.client-logo-box:hover img {
  /* filter: grayscale(0%); */
  /* opacity: 1; */
  transform: scale(1.05);
}


.client-logo-placeholder {
  font-size: .78rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--gray);
}

/* =========================================
    CONTACT SECTION
========================================= */
#contact { background: var(--off-white); }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; margin-top: 48px; }
.contact-info-title { font-size: 1.5rem; color: var(--navy); margin-bottom: 16px; }
.contact-info-sub { font-size: .92rem; color: var(--text-soft); line-height: 1.7; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.contact-item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 10px; background: rgba(20,73,160,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 1.1rem;
}
.contact-item-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gray); margin-bottom: 2px; }
.contact-item-val { font-size: .9rem; color: var(--text); line-height: 1.5; }
.btn-wa, .btn-call {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 50px;
  font-size: .9rem; font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition);
  margin-right: 10px; margin-top: 8px; border: none;
}
.btn-wa  { background: #25D366; color: #fff; box-shadow: 0 4px 16px rgba(37,211,102,.3); }
.btn-wa:hover  { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.45); color: #fff; }
.btn-call { background: var(--blue); color: #fff; box-shadow: 0 4px 16px rgba(20,73,160,.3); }
.btn-call:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(20,73,160,.45); color: #fff; }

.contact-form-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
}
.form-label { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--text-soft); margin-bottom: 6px; display: block; }
.form-control {
  width: 100%; border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 12px 16px; font-size: .92rem; font-family: var(--font-body);
  background: var(--white); color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(20,73,160,.12); }
.btn-submit {
  width: 100%; padding: 14px; background: var(--blue); color: #fff;
  font-size: .95rem; font-weight: 700; border: none; border-radius: 50px; cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  font-family: var(--font-body);
}
.btn-submit:hover { background: var(--blue-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(20,73,160,.35); }
.form-msg { display: none; padding: 12px 16px; border-radius: var(--radius-sm); font-size: .88rem; font-weight: 500; margin-top: 14px; }
.form-msg.success { background: #e6f9f0; border: 1px solid #b3e8cd; color: #167a44; display: block; }
.form-msg.error   { background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; display: block; }
.field-error { font-size: .78rem; color: #dc2626; margin-top: 4px; display: none; }
.field-error.show { display: block; }

/* =========================================
    FOOTER
========================================= */
#footer { background: var(--navy); color: rgba(255,255,255,.75); padding: 64px 0 32px; }
.footer-logo-text { font-size: 1.1rem; font-weight: 700; color: #fff; font-family: var(--font-body); margin-bottom: 4px; }
.footer-tagline { font-size: .82rem; color: rgba(255,255,255,.45); font-style: italic; }
.footer-desc { font-size: .88rem; line-height: 1.7; margin-top: 16px; max-width: 280px; color: rgba(255,255,255,.55); }
.footer-heading { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.4); margin-bottom: 16px; font-family: var(--font-body); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-links a:hover { color: #fff; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: .88rem; color: rgba(255,255,255,.6); }
.footer-contact-item i { color: var(--sky); margin-top: 2px; flex-shrink: 0; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.08); margin: 40px 0 24px; }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; font-size: .82rem; color: rgba(255,255,255,.35); }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: 1rem;
  transition: background var(--transition), color var(--transition);
}
.social-btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

/* Floating WhatsApp */
.fab-wa {
  position: fixed; bottom: 28px; right: 28px;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 8px 32px rgba(37,211,102,.5);
  z-index: 999; animation: waFloat 3s ease-in-out infinite;
}
.fab-wa:hover { transform: scale(1.1) !important; box-shadow: 0 12px 40px rgba(37,211,102,.6); color: #fff; }
@keyframes waFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* =========================================
    RESPONSIVE
========================================= */
@media (max-width: 991px) {
  .nav-links, .btn-nav-cta { display: none !important; }
  .hamburger { display: flex; }
  .hero-right-card { display: none; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-line { display: none !important; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { bottom: -16px; right: 16px; }
}
@media (max-width: 767px) {
  .section-pad { padding: 64px 0; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 20px; }
  .contact-form-card { padding: 24px; }
  .about-features { grid-template-columns: 1fr; }
  .marquee-outer::before, .marquee-outer::after { width: 60px; }
}
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}
@media (min-width: 992px) { .process-line { display: block; } }
