/* ============================================================
   NEIGHBORLY CLEANING — Stylesheet
   Brand palette pulled from logo (deep + light blue, navy)
   ============================================================ */

:root {
  --brand-primary: #1E88C9;
  --brand-primary-dark: #1670AB;
  --brand-accent: #4FC3F7;
  --brand-accent-light: #8DDAF8;
  --brand-navy: #0D3F6B;
  --brand-navy-deep: #082A4A;

  --bg: #FFFFFF;
  --bg-soft: #F4FAFE;
  --bg-tint: #E8F4FB;

  --text: #1A2332;
  --text-muted: #5A6B7D;
  --text-light: #8A9AAC;
  --border: #E1ECF4;

  --shadow-sm: 0 2px 8px rgba(13, 63, 107, 0.06);
  --shadow-md: 0 8px 24px rgba(13, 63, 107, 0.08);
  --shadow-lg: 0 20px 50px rgba(13, 63, 107, 0.12);
  --shadow-xl: 0 30px 80px rgba(13, 63, 107, 0.18);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1240px;
  --header-h: 84px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: var(--brand-navy);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.85rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
p { color: var(--text-muted); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(28px, 6vw, 40px);
}

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--brand-primary);
  border-radius: 2px;
}

.section { padding: clamp(70px, 9vw, 120px) 0; }
.section-soft { background: var(--bg-soft); }
.section-tint { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head p { margin-top: 16px; font-size: 1.075rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 999px;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(30, 136, 201, 0.35);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-primary) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(30, 136, 201, 0.45);
}
.btn-primary:hover::before { opacity: 1; }

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover {
  background: #fff;
  color: var(--brand-navy);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--brand-navy);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  background: var(--brand-navy);
  color: #fff;
  border-color: var(--brand-navy);
  transform: translateY(-3px);
}

.btn svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }
.btn-call:hover svg { transform: rotate(-15deg) scale(1.1); }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: #ffffff;
  color: var(--brand-primary);
  font-size: 0.88rem;
  padding: 0;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.topbar::before,
.topbar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 32px;
  z-index: 2;
  pointer-events: none;
}
.topbar::before { left: 0; background: linear-gradient(90deg, #ffffff, rgba(255,255,255,0)); }
.topbar::after  { right: 0; background: linear-gradient(270deg, #ffffff, rgba(255,255,255,0)); }

.topbar .container { padding-top: 0; padding-bottom: 0; }

.topbar-marquee {
  position: relative;
  height: 38px;
  width: 100%;
}
.topbar-marquee .topbar-item {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(8px);
  animation: topbarRotate 12s infinite cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.topbar-marquee .topbar-item:nth-child(1) { animation-delay: 0s; }
.topbar-marquee .topbar-item:nth-child(2) { animation-delay: 4s; }
.topbar-marquee .topbar-item:nth-child(3) { animation-delay: 8s; }

.topbar-marquee .topbar-item svg {
  width: 15px;
  height: 15px;
  color: var(--brand-primary);
  flex-shrink: 0;
}
.topbar-marquee .topbar-item {
  color: var(--brand-primary);
  font-weight: 600;
}
.topbar-marquee .topbar-item a {
  color: inherit;
  font-weight: 700;
  transition: color 0.2s;
}
.topbar-marquee .topbar-item a:hover { color: var(--brand-navy); }

@keyframes topbarRotate {
  0%   { opacity: 0; transform: translateY(8px); }
  4%   { opacity: 1; transform: translateY(0); }
  29%  { opacity: 1; transform: translateY(0); }
  33%  { opacity: 0; transform: translateY(-8px); }
  100% { opacity: 0; transform: translateY(-8px); }
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(1.5) blur(14px);
  -webkit-backdrop-filter: saturate(1.5) blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: var(--brand-navy);
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}
.brand img { height: 54px; width: auto; transition: transform 0.5s var(--ease-spring); }
.brand:hover img { transform: rotate(-4deg) scale(1.05); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text small {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--brand-primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 8px; }
.nav-link {
  position: relative;
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.3s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--brand-navy), var(--brand-primary));
  border-radius: 2px;
  transition: width 0.35s var(--ease-out);
}
.nav-link:hover { color: var(--brand-navy); }
.nav-link:hover::after,
.nav-link.active::after { width: calc(100% - 32px); }
.nav-link.active { color: var(--brand-navy); }

.header-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-navy));
  box-shadow: 0 6px 16px rgba(13, 63, 107, 0.25);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease;
}
.nav-toggle:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(13, 63, 107, 0.32); }
.nav-toggle:active { transform: translateY(0); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: #ffffff;
  border-radius: 2px;
  position: relative;
  transition: all 0.3s var(--ease-out);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2.5px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(620px, 88vh, 820px);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 42, 74, 0.85) 0%, rgba(13, 63, 107, 0.7) 50%, rgba(30, 136, 201, 0.55) 100%);
  z-index: 1;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeUp 0.9s var(--ease-out) both;
}
.hero-badge .stars { color: #FFD66E; letter-spacing: 1px; }
.hero h1 {
  color: #fff;
  margin-bottom: 22px;
  animation: fadeUp 0.9s 0.15s var(--ease-out) both;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--brand-accent) 0%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 600px;
  margin-bottom: 36px;
  animation: fadeUp 0.9s 0.3s var(--ease-out) both;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.45s var(--ease-out) both;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 24px;
  margin-top: 56px;
  max-width: 540px;
  animation: fadeUp 0.9s 0.6s var(--ease-out) both;
}
.hero-stat .num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hero-stat .label {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Animated wave at hero bottom — echoes logo */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 2;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: auto; }
.hero-wave .wave-1 { animation: waveSlide 14s linear infinite; }
.hero-wave .wave-2 { animation: waveSlide 20s linear infinite reverse; opacity: 0.6; }
@keyframes waveSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Floating bubbles */
.hero-bubbles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.bubble {
  position: absolute;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.6), rgba(141, 218, 248, 0.1));
  border-radius: 50%;
  animation: floatUp 14s linear infinite;
  opacity: 0;
}
@keyframes floatUp {
  0% { transform: translateY(0) scale(0.4); opacity: 0; }
  10% { opacity: 0.7; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-120vh) scale(1); opacity: 0; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trustbar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trustbar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}
.trust-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--bg-tint);
  display: grid;
  place-items: center;
  color: var(--brand-primary);
}
.trust-icon svg { width: 22px; height: 22px; }
.trust-text { font-size: 0.92rem; font-weight: 600; color: var(--brand-navy); line-height: 1.3; }
.trust-text small { display: block; font-size: 0.78rem; font-weight: 500; color: var(--text-muted); margin-top: 2px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}
.service-card {
  position: relative;
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.service-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.service-card:hover .service-img img { transform: scale(1.08); }
.service-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8, 42, 74, 0.45) 100%);
}
.service-body { padding: 28px 28px 30px; flex: 1; display: flex; flex-direction: column; }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
  display: grid;
  place-items: center;
  color: #fff;
  margin-top: -56px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(30, 136, 201, 0.35);
  margin-bottom: 18px;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 0.95rem; margin-bottom: 18px; flex: 1; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--brand-primary);
  font-size: 0.92rem;
  transition: gap 0.3s var(--ease-out);
}
.service-link svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease-out); }
.service-link:hover { gap: 12px; }
.service-link:hover svg { transform: translateX(4px); }

/* ============================================================
   FEATURE / WHY US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.why-img img { width: 100%; height: 100%; object-fit: cover; }
.why-img::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  border-radius: var(--radius-lg);
  z-index: -1;
}
.why-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-md);
}
.why-badge .big {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1;
}
.why-badge .small { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; line-height: 1.3; }

.feature-list { display: flex; flex-direction: column; gap: 22px; margin-top: 32px; }
.feature {
  display: flex;
  gap: 18px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease-out);
}
.feature:hover {
  transform: translateX(6px);
  border-color: var(--brand-accent);
  box-shadow: var(--shadow-sm);
}
.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-tint);
  color: var(--brand-primary);
  display: grid;
  place-items: center;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 4px;
}
.feature p { font-size: 0.92rem; margin: 0; }

/* ============================================================
   PROCESS / STEPS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 32px 28px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.4s var(--ease-out);
}
.step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-accent);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 10px;
}
.step h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  color: var(--brand-navy);
  margin-bottom: 8px;
}
.step p { font-size: 0.92rem; margin: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.4s var(--ease-out);
}
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-accent-light);
}
.testimonial-stars {
  color: #FFB930;
  letter-spacing: 2px;
  font-size: 1rem;
  margin-bottom: 14px;
}
.testimonial-quote {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 22px;
  font-weight: 500;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}
.author-name { font-weight: 700; color: var(--brand-navy); font-size: 0.95rem; }
.author-loc { font-size: 0.82rem; color: var(--text-muted); }
.testimonial::after {
  content: '"';
  position: absolute;
  top: 12px;
  right: 24px;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--brand-accent);
  opacity: 0.15;
  line-height: 1;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding: clamp(60px, 8vw, 100px) 0;
  background: linear-gradient(135deg, var(--brand-navy-deep) 0%, var(--brand-primary) 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.cta-banner::before,
.cta-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 195, 247, 0.35), transparent 70%);
  z-index: -1;
}
.cta-banner::before { width: 500px; height: 500px; top: -200px; right: -100px; animation: pulse 8s ease-in-out infinite; }
.cta-banner::after { width: 400px; height: 400px; bottom: -180px; left: -120px; animation: pulse 8s ease-in-out infinite 4s; }
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 0.8; }
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255, 255, 255, 0.85); font-size: 1.05rem; max-width: 540px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-banner .btn-primary {
  background: #fff;
  color: var(--brand-navy);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.cta-banner .btn-primary::before {
  background: var(--brand-accent);
}
.cta-banner .btn-primary:hover { color: #fff; }

/* ============================================================
   SERVICE DETAIL (services.html)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 100px 0 80px;
  background: linear-gradient(135deg, var(--brand-navy-deep) 0%, var(--brand-primary) 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.page-hero::before,
.page-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 195, 247, 0.3), transparent 70%);
}
.page-hero::before { width: 400px; height: 400px; top: -150px; right: -100px; animation: pulse 8s ease-in-out infinite; }
.page-hero::after { width: 350px; height: 350px; bottom: -150px; left: -50px; animation: pulse 10s ease-in-out infinite 3s; }
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.88); font-size: 1.1rem; max-width: 640px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
  font-weight: 500;
}
.breadcrumb a:hover { color: #fff; }

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  box-shadow: var(--shadow-lg);
}
.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s var(--ease-out);
}
.service-detail-img:hover img { transform: scale(1.05); }
.service-detail-img .tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.service-detail-content .eyebrow { margin-bottom: 14px; }
.service-detail-content h2 { margin-bottom: 18px; }
.service-detail-content p { margin-bottom: 24px; font-size: 1.02rem; }
.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0 32px;
}
.benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--brand-navy);
}
.benefit-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  display: grid;
  place-items: center;
  color: #fff;
}
.benefit-check svg { width: 14px; height: 14px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  aspect-ratio: 1 / 1;
}
.about-imgs > div {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.about-imgs > div:nth-child(1) { grid-row: span 2; }
.about-imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.about-imgs > div:hover img { transform: scale(1.08); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  padding: 32px 28px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.4s var(--ease-out);
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-accent);
}
.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  display: grid;
  place-items: center;
  color: #fff;
}
.value-icon svg { width: 32px; height: 32px; }
.value-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  color: var(--brand-navy);
  margin-bottom: 10px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
}
.contact-info {
  background: linear-gradient(135deg, var(--brand-navy-deep) 0%, var(--brand-primary) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.contact-info::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  top: -120px;
  right: -100px;
  background: radial-gradient(circle, rgba(79,195,247,0.3), transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: pulse 8s ease-in-out infinite;
}
.contact-info h2 { color: #fff; margin-bottom: 12px; }
.contact-info > p { color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.contact-list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 36px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item .ic {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  color: #fff;
}
.contact-item .ic svg { width: 20px; height: 20px; }
.contact-item .lbl { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.7; margin-bottom: 4px; }
.contact-item .val { font-size: 1.05rem; font-weight: 600; color: #fff; }
.contact-item .val a:hover { color: var(--brand-accent-light); }

.contact-form {
  background: var(--bg);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-soft);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 4px rgba(30, 136, 201, 0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { width: 100%; margin-top: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--brand-navy-deep);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 50px;
}
.footer-brand img { height: 50px; margin-bottom: 18px; filter: brightness(1.1); }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.92rem; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.1);
  color: #fff;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: var(--brand-accent);
  transform: translateY(-3px);
}
.footer-social svg { width: 18px; height: 18px; }
.footer h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 700;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.92rem; color: rgba(255,255,255,0.7); transition: all 0.3s ease; }
.footer-links a:hover { color: var(--brand-accent); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 14px; font-size: 0.92rem; }
.footer-contact div { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--brand-accent); margin-top: 4px; }
.footer-contact a:hover { color: var(--brand-accent); }
.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   FLOATING CALL BUTTON (mobile)
   ============================================================ */
.float-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(30, 136, 201, 0.5);
  z-index: 90;
  animation: ringPulse 2.4s ease-in-out infinite;
}
.float-call svg { width: 26px; height: 26px; }
@keyframes ringPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(30, 136, 201, 0.5), 0 0 0 0 rgba(30, 136, 201, 0.4); }
  50% { box-shadow: 0 10px 30px rgba(30, 136, 201, 0.5), 0 0 0 18px rgba(30, 136, 201, 0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Bulletproof: no horizontal overflow anywhere */
html, body { overflow-x: clip; max-width: 100%; }

@media (max-width: 1024px) {
  .why-grid,
  .about-grid,
  .service-detail,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .service-detail.reverse { direction: ltr; }
  .cta-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ============ TABLET / PHONE ============ */
@media (max-width: 768px) {
  :root { --header-h: 68px; }

  /* TOPBAR — compact marquee on mobile */
  .topbar { font-size: 0.8rem; }
  .topbar-marquee { height: 34px; }
  .topbar-marquee .topbar-item svg { width: 13px; height: 13px; }
  .topbar::before, .topbar::after { width: 24px; }

  /* HEADER */
  .header-inner { gap: 8px; }
  .brand { gap: 10px; }
  .brand img { height: 40px; }
  .brand-text { font-size: 0.98rem; }
  .brand-text small { display: none; }

  /* Hide desktop phone button on mobile */
  .header-cta .btn:not(.nav-toggle) { display: none; }
  /* Show hamburger */
  .nav-toggle { display: inline-flex; }

  /* MOBILE NAV DRAWER — display:none bulletproof hide */
  .nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    z-index: 99;
    animation: none;
  }
  .nav.open {
    display: flex;
    animation: navSlide 0.32s var(--ease-out);
  }
  @keyframes navSlide {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .nav-link { padding: 13px 16px; font-size: 1.02rem; border-radius: 10px; }
  .nav-link:hover { background: var(--bg-soft); }
  .nav-link::after { display: none; }
  .nav .btn { margin-top: 8px; width: 100%; justify-content: center; }

  /* HERO — extra inner squeeze so headline + sub aren't edge-to-edge */
  .hero { min-height: 560px; }
  .hero .container { padding-left: clamp(34px, 8vw, 56px); padding-right: clamp(34px, 8vw, 56px); }
  .hero-content { padding: 50px 0 70px; max-width: 100%; }
  .hero h1 { font-size: clamp(1.85rem, 7.5vw, 2.4rem); line-height: 1.14; }
  .hero-sub { font-size: 1rem; line-height: 1.55; max-width: 100%; margin-bottom: 28px; }
  .hero-badge { font-size: 0.78rem; padding: 7px 14px; margin-bottom: 18px; }
  .hero-cta { flex-direction: column; align-items: center; gap: 12px; width: 100%; }
  .hero-cta .btn { justify-content: center; width: 100%; max-width: 360px; padding: 15px 24px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 36px; max-width: 100%; }
  .hero-stat .num { font-size: 1.55rem; }
  .hero-stat .label { font-size: 0.72rem; }

  /* TRUST BAR */
  .trustbar { padding: 22px 0; }
  .trustbar-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .trust-item { flex-direction: column; gap: 8px; text-align: center; justify-content: flex-start; }
  .trust-text { font-size: 0.85rem; }
  .trust-text small { font-size: 0.72rem; }

  /* SECTIONS */
  .section { padding: 60px 0; }
  .section-head { margin-bottom: 36px; }
  .eyebrow { font-size: 0.72rem; margin-bottom: 12px; }

  /* SERVICE CARDS */
  .services-grid { gap: 22px; }
  .service-body { padding: 24px 22px 26px; }

  /* WHY US */
  .why-img { aspect-ratio: 4 / 3; max-width: 100%; }
  .feature { padding: 16px; gap: 14px; }

  /* PROCESS */
  .steps { gap: 18px; }
  .step { padding: 26px 22px; }

  /* TESTIMONIALS */
  .testimonial { padding: 26px 22px; }

  /* CTA BANNER */
  .cta-banner h2 { font-size: 1.7rem; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; width: 100%; }

  /* PAGE HERO */
  .page-hero { padding: 56px 0 44px; }
  .page-hero h1 { font-size: 2rem; }
  .page-hero p { font-size: 1rem; }

  /* SERVICE DETAIL */
  .service-detail-img { aspect-ratio: 4 / 3; }
  .benefits { grid-template-columns: 1fr; gap: 10px; }

  /* ABOUT */
  .about-imgs { aspect-ratio: auto; grid-template-rows: 200px 200px; }

  /* VALUES */
  .values-grid { gap: 16px; }
  .value-card { padding: 26px 22px; }

  /* CONTACT */
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-info, .contact-form { padding: 26px 22px; }
  .contact-info h2 { font-size: 1.6rem; }

  /* FOOTER */
  .footer { padding: 50px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: left; padding-bottom: 36px; }
  .footer-brand img { height: 44px; }

  /* FLOAT CALL */
  .float-call { display: flex; }
}

/* ============ SMALL PHONE ============ */
@media (max-width: 480px) {
  .container { padding: 0 24px; }

  /* Topbar — tighter on tiny screens */
  .topbar { font-size: 0.74rem; }
  .topbar-marquee { height: 32px; }

  /* Header — even tighter */
  .brand img { height: 36px; }
  .brand-text { display: none; } /* logo only at very narrow */

  /* Hero */
  .hero { min-height: 520px; }
  .hero-content { padding: 36px 0 60px; }
  .hero h1 { font-size: clamp(1.65rem, 7.5vw, 2rem); line-height: 1.16; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 24px; }
  .hero-cta .btn { padding: 14px 22px; font-size: 0.95rem; }
  .hero-stats { gap: 8px; margin-top: 30px; }
  .hero-stat { padding: 12px 6px; }
  .hero-stat .num { font-size: 1.3rem; }
  .hero-stat .label { font-size: 0.66rem; }

  /* Trust bar — single column */
  .trustbar-grid { grid-template-columns: 1fr; gap: 12px; }
  .trust-item { flex-direction: row; text-align: left; justify-content: flex-start; gap: 14px; }

  /* Sections */
  .section { padding: 50px 0; }
  h2 { font-size: 1.65rem; }

  /* Service detail */
  .service-detail-content h2 { font-size: 1.6rem; }

  /* CTA */
  .cta-banner h2 { font-size: 1.5rem; }

  /* Page hero */
  .page-hero h1 { font-size: 1.75rem; }

  /* Contact */
  .contact-info, .contact-form { padding: 22px 18px; }

  /* Float call */
  .float-call { width: 54px; height: 54px; bottom: 16px; right: 16px; }
  .float-call svg { width: 22px; height: 22px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-bg img { animation: none; }
}
