/* =============================================================
   DP Cleaning Specialist — Stylesheet
   Fonts: Playfair Display (headings) + Inter (body)
   ============================================================= */

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  /* Palette */
  --ink:        #0f1c2e;
  --ink-2:      #2d3f54;
  --muted:      #64778f;
  --line:       #e0eaf5;
  --surface:    #ffffff;
  --soft:       #f5f8fc;
  --navy:       #031220;
  --navy-2:     #061b38;
  --navy-3:     #0a2248;
  --blue:       #0d4f9a;
  --blue-2:     #1a72d4;
  --blue-3:     #3d9de8;
  --accent:     #a8dcff;
  --green:      #1a7a52;
  --red:        #b5213c;

  /* Shadows */
  --sh-xs: 0 2px 8px rgba(10,34,72,.06);
  --sh-sm: 0 6px 22px rgba(10,34,72,.09);
  --sh-md: 0 16px 44px rgba(10,34,72,.13);
  --sh-lg: 0 28px 64px rgba(10,34,72,.18);

  /* Radii */
  --r-sm:  10px;
  --r:     16px;
  --r-lg:  24px;
  --r-xl:  32px;

  /* Motion */
  --ease:  cubic-bezier(.4, 0, .2, 1);
  --fast:  .22s;
  --mid:   .38s;
  --slow:  .65s;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--surface);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
button, input, select, textarea { font: inherit; }

/* ── SKIP LINK ───────────────────────────────────────────── */
.skip-link {
  position: absolute; left: -9999px; top: 1rem;
  background: var(--blue); color: #fff;
  padding: .6rem 1rem; border-radius: var(--r-sm); z-index: 9999;
}
.skip-link:focus { left: 1rem; }

/* ── LAYOUT HELPERS ──────────────────────────────────────── */
.container { width: min(1160px, 92%); margin: 0 auto; }
.section    { padding: 7rem 0; }
.section-white { background: var(--surface); }
.section-soft  { background: var(--soft); }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.12;
  font-weight: 700;
  color: var(--ink);
}
h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.12rem; }

.section-head {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.section-head.left { margin-left: 0; text-align: left; }
.section-head h2   { margin-bottom: .85rem; color: #0d4f9a; }
.section-head p    { color: #000000; font-size: 1.02rem; }

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: .75rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-2);
}
.section-kicker::before {
  content: '';
  display: inline-block;
  width: 22px; height: 2px;
  background: var(--blue-2);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .85rem 1.8rem;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .02em;
  border: 1.5px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--mid) var(--ease),
    box-shadow var(--mid) var(--ease),
    background var(--fast),
    border-color var(--fast),
    color var(--fast);
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0;
  transition: opacity var(--fast);
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  color: #fff;
  box-shadow: 0 8px 28px rgba(13,79,154,.3);
}
.btn-primary:hover { box-shadow: 0 14px 40px rgba(13,79,154,.42); }

.btn-ghost {
  border-color: rgba(255,255,255,.38);
  color: #fff;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(8px);
}
.btn-glass {
  border-color: rgba(255,255,255,.28);
  color: #fff;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(6px);
}
.btn-outline-dark {
  border-color: var(--blue-2);
  color: var(--blue-2);
  background: transparent;
}
.btn-outline-dark:hover { background: var(--blue-2); color: #fff; }
.btn-sm   { padding: .6rem 1.2rem; font-size: .84rem; }
.btn-full { width: 100%; }
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
  box-shadow: 0 8px 28px rgba(37,211,102,.28);
}
.btn-whatsapp:hover { box-shadow: 0 14px 40px rgba(37,211,102,.42); }

/* Loading spinner */
.btn-spin {
  display: none;
  width: 15px; height: 15px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
.btn.loading .btn-spin  { display: block; }
.btn.loading .btn-label { opacity: .6; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── HEADER ──────────────────────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  transition:
    background var(--mid) var(--ease),
    box-shadow var(--mid) var(--ease),
    padding var(--mid) var(--ease);
  padding: .5rem 0;
}
.header.scrolled {
  background: rgba(3,18,32,.96);
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  box-shadow: 0 4px 30px rgba(0,0,0,.35);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.navbar {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.brand { display: inline-flex; align-items: center; gap: .8rem; }
.brand-logo {
  width: 62px; height: 62px; object-fit: contain;
  border-radius: 50%; flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(168,220,255,.3));
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-size: .9rem;  color: #fff; font-weight: 700; }
.brand-text span   { font-size: .72rem; color: #8bbdd9; font-weight: 500; }

.nav-menu { display: flex; align-items: center; gap: .1rem; }
.nav-link {
  display: block;
  padding: .48rem .78rem;
  color: #ffffff;
  font-size: .88rem;
  font-weight: 600;
  border-radius: var(--r-sm);
  position: relative;
  transition: color var(--fast), background var(--fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 14px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: transform var(--mid) var(--ease);
}
.nav-link:hover            { color: #fff; background: rgba(255,255,255,.06); }
.nav-link:hover::after,
.nav-link.active::after    { transform: translateX(-50%) scaleX(1); }
.nav-link.active           { color: #fff; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: .35rem;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s, width .3s;
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}
.hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 2; pointer-events: none;
}
.hero-bg {
  position: absolute; inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 1;
  z-index: 0;
  transform: scale(1.06);
  will-change: transform;
  filter: blur(3px);
}
.hero-bg-tint {
  position: absolute;
  inset: 0;
  background: rgba(3, 18, 32, 0.35);  /* Dark navy tint - adjust opacity as needed */
  z-index: 1;
  pointer-events: none;
}
.hero-blobs {
  position: absolute; inset: 0;
  overflow: hidden; z-index: 1; pointer-events: none;
}
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: .5;
  animation: blobDrift 16s ease-in-out infinite;
}
.blob-1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(26,114,212,.65), rgba(13,79,154,.2));
  top: -22%; left: -14%;
  animation-duration: 15s;
}
.blob-2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(61,157,232,.48), rgba(168,220,255,.12));
  bottom: -14%; right: -10%;
  animation-delay: -6s; animation-duration: 19s;
}
.blob-3 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(6,27,56,.9), rgba(26,114,212,.28));
  top: 30%; right: 20%;
  animation-delay: -11s; animation-duration: 13s;
}
@keyframes blobDrift {
  0%,100% { transform: translate(0,0) scale(1); }
  25%      { transform: translate(3%,5%) scale(1.05); }
  50%      { transform: translate(-4%,3%) scale(.96); }
  75%      { transform: translate(2%,-5%) scale(1.03); }
}

.hero-content {
  position: relative; z-index: 3;
  max-width: 1100px;
  text-align: center;
  padding: 9rem 0 2.5rem;
}
.hero-kicker {
  display: inline-block;
  padding: .38rem 1.1rem;
  background: rgba(168,220,255,.1);
  border: 1px solid rgba(168,220,255,.22);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.hero h1 {
  color: #fff;
  margin-bottom: 1.2rem;
  font-size: clamp(2.7rem, 6.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.1;
}
.hero-em {
  font-style: italic;
  background: linear-gradient(130deg, #a8dcff 0%, #5db4f4 55%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(255,255,255,.72);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}
.hero-tagline {
  margin-top: .9rem;
  font-size: .97rem;
  font-style: italic;
  font-weight: 500;
  color: rgba(168,220,255,.7);
}
.hero-actions {
  display: flex; flex-wrap: wrap;
  gap: 1rem; justify-content: center;
  margin-top: 2.2rem;
}
.hero-logo-float {
  position: absolute; right: 5%; bottom: 10%;
  width: min(160px, 22vw);
  opacity: .055; z-index: 2; pointer-events: none;
  animation: floatY 9s ease-in-out infinite;
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-18px); }
}
.scroll-cue {
  position: absolute; left: 50%; bottom: 1rem;
  transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: .35rem;
  color: rgba(255,255,255,.38);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
}
.scroll-mouse {
  width: 22px; height: 38px;
  border: 2px solid rgba(255,255,255,.28);
  border-radius: 999px; position: relative;
  animation: mousePulse 2.2s ease-in-out infinite;
}
.scroll-mouse span {
  position: absolute; left: 50%; top: 6px;
  width: 3.5px; height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.6);
  transform: translateX(-50%);
  animation: dotFall 2.2s infinite;
}
@keyframes dotFall {
  0%   { opacity: 0; transform: translate(-50%,0); }
  40%  { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%,15px); }
}
@keyframes mousePulse {
  0%,100% { border-color: rgba(255,255,255,.28); }
  50%      { border-color: rgba(168,220,255,.55); }
}

.hero-bg-gradient-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.18);
  z-index: 1;
  pointer-events: none;
}


/* ── ABOUT BG LAYER ──────────────────────────────────────── */
.about-section { position: relative; }
.about-bg-layer {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 40% at 8% 20%, rgba(26,114,212,.055) 0%, transparent 70%),
    radial-gradient(ellipse 45% 50% at 90% 75%, rgba(61,157,232,.045) 0%, transparent 65%),
    var(--soft);
}
.about-section .container { position: relative; z-index: 1; }

/* ── ABOUT ───────────────────────────────────────────────── */
.about-grid {
  display: grid;
  gap: 3.5rem;
  align-items: center;
}
.about-text .section-kicker { margin-bottom: .65rem; }
.about-text h2 { margin-bottom: 1.2rem; color: #0d4f9a; }  /* Dark blue added */
.about-text p  { color: #000000; margin-bottom: .95rem; font-size: 1.02rem; }  /* Changed to black */
.about-text p:last-of-type { margin-bottom: 0; }

.about-features { margin-top: 2.2rem; display: flex; flex-direction: column; gap: 1.3rem; }
.af-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--soft);
  transition: border-color var(--mid), box-shadow var(--mid);
}
.af-row:hover {
  border-color: var(--blue-2);
  box-shadow: var(--sh-sm);
  background: var(--blue-2) !important;
}
.af-row:hover .af-icon-wrap,
.af-row:hover .af-body strong,
.af-row:hover .af-body span { color: #fff; }
.af-icon-wrap { font-size: 1.5rem; flex-shrink: 0; line-height: 1; margin-top: .1rem; }
.af-body { display: flex; flex-direction: column; gap: .25rem; }
.af-body strong { font-size: .97rem; font-weight: 700; color: #0d4f9a; }  /* Changed to dark blue */
.af-body span   { font-size: .9rem;  color: #000000; line-height: 1.55; }  /* Changed to black */

.about-visual { border-radius: var(--r-xl); overflow: hidden; }
.about-visual-img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
  border-radius: var(--r-xl);
}
.about-visual-inner {
  position: relative;
  min-height: 560px;
  background-position: center;
  background-size: cover;
  display: flex; align-items: flex-end;
}
.about-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(165deg, rgba(3,18,32,.8) 0%, rgba(13,79,154,.45) 100%);
}
.about-visual-body {
  position: relative; z-index: 1;
  padding: 2.5rem;
  width: 100%;
}
/* Brand quote inside about visual panel */
.about-brand-quote {
  margin-bottom: 2rem;
  padding: 1.6rem 1.8rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-lg);
  backdrop-filter: blur(10px);
}
.aq-mark {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: .6;
  color: var(--accent);
  margin-bottom: .6rem;
}
.about-brand-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.22rem;
  font-style: italic;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
  margin: 0 0 .7rem;
}
.aq-brand {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.about-coverage { margin-bottom: 1.8rem; }
.about-coverage h4 {
  font-size: .8rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: .7rem;
}
.about-coverage ul { padding: 0; }
.about-coverage li {
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  padding: .3rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-left: 1.1rem;
  position: relative;
}
.about-coverage li:last-child { border-bottom: none; }
.about-coverage li::before { content: '›'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ── SERVICES ────────────────────────────────────────────── */
.services-grid { display: grid; gap: 1.5rem; }
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xs);
  transition: transform var(--mid) var(--ease), box-shadow var(--mid);
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); }
.svc-img-wrap { position: relative; overflow: hidden; height: 210px; }
.svc-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s var(--ease);
}
.service-card:hover .svc-img-wrap img { transform: scale(1.07); }
.svc-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(3,18,32,.32) 0%, transparent 50%);
}
.svc-body { padding: 1.5rem; }
.svc-icon { font-size: 1.6rem; margin-bottom: .5rem; }
.svc-body h3 { font-size: 1.1rem; margin: 0 0 .45rem; color: #0d4f9a; }
.svc-body > p { color: #000000; font-size: .92rem; margin: 0 0 .85rem; line-height: 1.6; }

/* Always-visible service feature list */
.svc-list {
  padding: 0;
  display: flex; flex-direction: column; gap: .28rem;
  margin: 0;
}
.svc-list li {
  position: relative;
  padding: .32rem 0 .32rem 1.3rem;
  color: #000000;
  font-size: .87rem;
  line-height: 1.5;
  border-bottom: 1px solid var(--line);
}
.svc-list li:last-child { border-bottom: none; }
.svc-list li::before {
  content: '›';
  position: absolute; left: 0;
  color: var(--blue-2);
  font-weight: 800;
  font-size: 1.05rem;
}

/* ... (keep all other code the same until More services accordion) ... */

/* More services accordion */
.more-svc-wrap {
  margin-top: 2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xs);
}
.more-svc-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.6rem;
  background: none; border: none; cursor: pointer;
  font-weight: 700; font-size: 1rem; color: #0d4f9a;
  transition: background var(--fast);
}
.more-svc-btn:hover { background: var(--soft); }
.more-svc-btn[aria-expanded="true"] .arr { transform: rotate(180deg); }
.more-svc-body {
  max-height: 0; overflow: hidden;
  transition: max-height .48s var(--ease);
}
.more-svc-body.open { max-height: 400px; }
.more-svc-list {
  display: grid; gap: .4rem;
  padding: 0 1.6rem 1.6rem;
  padding-left: 2.8rem;
  list-style: disc;
  color: #000000;
  font-size: .92rem;
}
.more-svc-list li::marker { color: var(--blue-2); }

/* ── WHY CHOOSE US ───────────────────────────────────────── */
.why-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 7rem 0;
}
.why-bg {
  position: absolute; inset: 0;
  background-position: center;
  background-size: cover;
  z-index: 0;
}
.why-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(3,18,32,.92) 0%, rgba(6,30,72,.87) 100%);
  z-index: 1;
}
.why-inner { position: relative; z-index: 2; }
.why-section .section-kicker { color: var(--accent); }
.why-section .section-kicker::before { background: var(--accent); }
.why-section .section-head .section-kicker { color: #ffffff; }  /* "Why Choose Us" in white */
.why-section .section-head h2 { color: #7ecbff; }  /* "Dependable Service Backed by Practical Standards" in light blue */
.why-section .section-head p  { color: #ffffff; }  /* "Trusted by businesses..." in white */

.why-grid { display: grid; gap: 1.2rem; }
.why-card {
  padding: 1.8rem 1.6rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r);
  backdrop-filter: blur(6px);
  transition: background var(--mid), transform var(--mid) var(--ease), border-color var(--mid);
}
.why-card:hover {
  background: rgba(255,255,255,.11);
  transform: translateY(-5px);
  border-color: rgba(168,220,255,.28);
}
.why-card-icon { font-size: 1.9rem; margin-bottom: .75rem; }
.why-card h3 { font-size: 1.05rem; margin-bottom: .5rem; color: #7ecbff; }  /* Bright blue */
.why-card p  { color: #ffffff; font-size: .92rem; margin: 0; line-height: 1.6; }  /* Pure white */

/* ── STANDARDS ───────────────────────────────────────────── */
/* Section background */
.standards-section { position: relative; overflow: hidden; }
.standards-bg-layer {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: url('images/safetybg.png') center/cover no-repeat;
  opacity: 0.12; /* Keeps the background subtle so text is readable */
}
.standards-section .container { position: relative; z-index: 1; }

.standards-grid { display: grid; gap: 1.5rem; }
.std-card {
  padding: 2rem 1.8rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-xs);
  position: relative;
  overflow: hidden;
  transition: transform var(--mid) var(--ease), box-shadow var(--mid);
  z-index: 2;
}
.std-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.standards-section .std-card .std-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: #000000 !important; 
  opacity: 1 !important; /* Ensure no fade is inherited */
  position: absolute;
  top: -1rem; right: 1.2rem;
  line-height: 1;
  user-select: none;
}
.std-icon { font-size: 1.8rem; margin-bottom: .7rem; }
.std-card h3 { font-size: 1.05rem; margin-bottom: 1rem; color: #0d4f9a; }  /* Title to dark blue */
.clean-list { padding: 0; }
.clean-list li {
  position: relative;
  padding: .48rem 0 .48rem 1.5rem;
  border-bottom: 1px solid var(--line);
  color: #000000;  /* Changed to black */
  font-size: .91rem;
  line-height: 1.55;
}
.clean-list li:last-child { border-bottom: none; }
.clean-list li::before { content: '✓'; position: absolute; left: 0; color: var(--blue-2); font-weight: 800; }
/* ── CLIENTS ─────────────────────────────────────────────── */
.clients-section {
  position: relative;
  background: linear-gradient(135deg, var(--navy-2) 0%, var(--navy-3) 55%, var(--navy) 100%);
  color: #fff;
}
.clients-bg-layer {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(168,220,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.clients-section .container { position: relative; z-index: 1; }
.clients-section .section-kicker       { color: #ffffff; }
.clients-section .section-kicker::before { background: #7ecbff; }  /* White line */
.clients-section .section-head h2      { color: #7ecbff; }  /* "Proudly serving clients..." in light blue *//* Keep as is or remove if not needed */
.clients-section .section-head { margin-bottom: 2.5rem; }

.ticker-wrap { overflow: hidden; padding: .75rem 0; position: relative; z-index: 1; }
.ticker {
  display: flex;
  width: max-content;
  animation: tickerRun 60s linear infinite;
  will-change: transform;
}
.ticker:hover { animation-play-state: paused; }
.ticker-inner { 
  display: flex; 
  gap: 2rem; 
  padding-right: 2rem; /* Matches gap for perfect seamless loop */
}
.client-logo-card {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  width: 260px;
  padding: 0 1.4rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(168,220,255,.15);
  border-radius: var(--r-sm);
  backdrop-filter: blur(4px);
  transition: transform var(--fast), border-color var(--fast), background var(--fast);
}
.client-logo-card img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.client-logo-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  background: rgba(168,220,255,.12);
}
@keyframes tickerRun {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* ── MAP BLOCK ───────────────────────────────────────────── */
.map-block {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,.07);
}
.map-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.map-header-text .section-kicker { color: var(--accent); }
.map-header-text .section-kicker::before { background: var(--accent); }
.map-header-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: #fff;
  margin: .3rem 0 .5rem;
}
.map-header-text p {
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  margin: 0;
  max-width: 440px;
}
.map-open-btn {
  flex-shrink: 0;
  white-space: nowrap;
}
.map-embed-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.07);
}
.map-embed-wrap iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
}
@media (max-width: 640px) {
  .map-embed-wrap iframe { height: 300px; }
  .map-header { align-items: flex-start; }
}

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-section {
  background: linear-gradient(135deg, var(--navy-2) 0%, var(--navy-3) 60%, var(--navy-2) 100%);
  color: #fff;
}
.contact-section .section-kicker       { color: #ffffff; }
.contact-section .section-kicker::before { background: #7ecbff; }
.contact-section .section-head h2      { color: #7ecbff; }
.contact-section .section-head p       { color: #ffffff; }

.contact-grid { display: grid; gap: 2rem; align-items: start; }

.contact-card {
  padding: 2.2rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  backdrop-filter: blur(8px);
}
.contact-card h3 { color: #fff; font-size: 1.2rem; margin-bottom: 1.4rem; }
.contact-list { padding: 0; }
.contact-list li {
  display: flex; align-items: flex-start; gap: .7rem;
  padding: .55rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .9rem;
  color: rgba(255,255,255,.75);
}
.contact-list li:last-child { border-bottom: none; }
.ci { font-size: 1rem; flex-shrink: 0; margin-top: .1rem; }
.contact-list strong { color: #ffffff; font-weight: 600; margin-right: .3rem; }
.contact-list a { color: var(--accent); text-decoration: none; }
.contact-list a:hover { color: #fff; }
.contact-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.6rem; }

.contact-form {
  padding: 2.2rem;
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
}
.field-grid { display: grid; gap: 1rem; margin-bottom: 1rem; }
.field { margin-bottom: 1rem; }

/* Floating label fields */
.float-field { position: relative; margin-bottom: 1rem; }
.float-field input  { padding: 1.45rem 1rem .55rem; }
.float-field textarea { padding: 1.45rem 1rem .55rem; resize: vertical; }
.float-field label {
  position: absolute;
  left: 1rem; top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: .92rem; font-weight: 600;
  pointer-events: none;
  transition: all .22s var(--ease);
}
.float-ta label { top: 1.4rem; transform: none; }
.float-field input:focus ~ label,
.float-field input:not(:placeholder-shown) ~ label,
.float-field textarea:focus ~ label,
.float-field textarea:not(:placeholder-shown) ~ label {
  top: .48rem; transform: none;
  font-size: .68rem; font-weight: 800;
  color: var(--blue-2);
  letter-spacing: .06em; text-transform: uppercase;
}
.field:not(.float-field) label {
  display: block;
  margin-bottom: .45rem;
  font-weight: 700; font-size: .9rem;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1.5px solid #d2e3f5;
  background: #fff;
  color: var(--ink);
  border-radius: var(--r-sm);
  padding: .88rem 1rem;
  outline: none;
  transition: border-color var(--fast), box-shadow var(--fast), background var(--fast);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-2);
  box-shadow: 0 0 0 4px rgba(26,114,212,.1);
  background: #f9fbff;
}
.form-msg { margin-top: .8rem; font-weight: 700; font-size: .9rem; }
.form-msg.success { color: var(--green); }
.form-msg.error   { color: var(--red); }


/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: linear-gradient(180deg, var(--navy) 0%, #020b14 100%);
  color: #e4f0fb;
  padding-top: 4rem;
}
.footer-grid { display: grid; gap: 2.5rem; }
.footer-brand .brand-text strong { color: #fff; }
.footer-copy { color: rgba(255,255,255,.42); font-size: .88rem; margin: .8rem 0 1.2rem; line-height: 1.6; }
.footer-col h4 {
  font-size: .7rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}
.footer-col ul { padding: 0; }
.footer-col li { margin-bottom: .55rem; }
.footer-col a  { color: rgba(255,255,255,.58); font-size: .88rem; transition: color var(--fast); }
.footer-col a:hover { color: #fff; }
.footer-col li:not(:has(a)) { color: rgba(255,255,255,.45); font-size: .88rem; }
.footer-contact-list { padding: 0; }
.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .65rem;
  color: rgba(255,255,255,.55);
  font-size: .88rem;
}
.footer-contact-list .fc-icon {
  flex-shrink: 0;
  width: 16px; height: 16px;
  color: rgba(255,255,255,.38);
}
.footer-contact-list a {
  color: rgba(255,255,255,.58);
  font-size: .88rem;
  transition: color var(--fast);
  text-decoration: none;
}
.footer-contact-list a:hover { color: #fff; }
.footer-socials { display: flex; gap: .6rem; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: grid; place-items: center;
  color: rgba(255,255,255,.65);
  transition: background var(--fast), color var(--fast), transform var(--fast);
}
.footer-socials a:hover { background: var(--blue-2); color: #fff; transform: translateY(-2px); }

/* Footer Map */
.footer-map-col h4 { margin-bottom: .8rem; }
.footer-map-wrap {
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  margin-bottom: .8rem;
}
.footer-map-wrap iframe {
  display: block; width: 100%; height: 160px; border: 0;
}
.footer-map-link {
  width: 100%; text-align: center;
}
.footer-bottom {
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.4rem 0;
  text-align: center;
  color: rgba(255,255,255,.28);
  font-size: .82rem;
}

/* ── FLOATING WHATSAPP ───────────────────────────────────── */
.float-wa {
  position: fixed; right: 1.25rem; bottom: 5.5rem;
  z-index: 990;
  background: #25d366; color: #fff;
  border-radius: 999px;
  padding: .72rem 1.1rem;
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; font-size: .84rem;
  box-shadow: 0 6px 22px rgba(37,211,102,.35);
  transition: transform var(--mid) var(--ease), box-shadow var(--mid);
}
.float-wa:hover { transform: translateY(-4px); box-shadow: 0 14px 38px rgba(37,211,102,.44); }

/* ── MOBILE ACTION BAR ───────────────────────────────────── */
.mob-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 995;
  display: grid; grid-template-columns: repeat(4,1fr);
  background: rgba(3,18,32,.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,.06);
}
.mob-bar a {
  display: flex; flex-direction: column; align-items: center; gap: .2rem;
  text-align: center;
  padding: .65rem .2rem;
  font-size: .7rem; font-weight: 700;
  color: rgba(255,255,255,.65);
  transition: color var(--fast), background var(--fast);
}
.mob-bar a:hover { color: #fff; background: rgba(255,255,255,.05); }
.mob-bar a + a   { border-left: 1px solid rgba(255,255,255,.06); }
.mob-bar a span  { font-size: 1rem; }

/* ── SCROLL ANIMATIONS ───────────────────────────────────── */

/* Hero on-load */
.anim-hero {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.anim-hero.vis { opacity: 1; transform: none; }

/* Scroll reveal variants */
.rv-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .72s var(--ease), transform .72s var(--ease);
}
.rv-up.vis { opacity: 1; transform: none; }

.rv-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .72s var(--ease), transform .72s var(--ease);
}
.rv-left.vis { opacity: 1; transform: none; }

.rv-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .72s var(--ease), transform .72s var(--ease);
}
.rv-right.vis { opacity: 1; transform: none; }

/* Stagger delays — used as modifier classes */
.d1 { transition-delay: .12s; }
.d2 { transition-delay: .24s; }
.d3 { transition-delay: .36s; }
.d4 { transition-delay: .48s; }
.d5 { transition-delay: .60s; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (min-width: 560px) {
  .freq-grid  { grid-template-columns: repeat(4,1fr); }
}
@media (min-width: 700px) {
  .services-grid   { grid-template-columns: repeat(2,1fr); }
  .standards-grid  { grid-template-columns: repeat(3,1fr); }
  .field-grid      { grid-template-columns: repeat(2,1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 3rem 2rem; } /* Stack to 2 columns for tablet */
  .mob-bar         { display: none; }
  .float-wa        { bottom: 1.5rem; }
}
@media (min-width: 960px) {
  .about-grid    { grid-template-columns: 1.05fr .95fr; }
  .contact-grid  { grid-template-columns: 1fr 1.15fr; } /* Contact card and form side-by-side */
  .why-grid      { grid-template-columns: repeat(3,1fr); }
  .services-grid { grid-template-columns: repeat(3,1fr); }
}
@media (min-width: 1024px) {
  /* Side-by-side positioning for footer columns on desktop */
  .footer-grid { grid-template-columns: 1.5fr 0.7fr 1.1fr 1.4fr; }
}

@media (max-width: 860px) {
  .menu-toggle { display: flex; }
  .nav-menu {
    position: fixed; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: .6rem;
    background: rgba(3,18,32,.97);
    backdrop-filter: blur(24px);
    opacity: 0; pointer-events: none; z-index: 999;
    transition: opacity .3s var(--ease);
  }
  .nav-menu.open  { opacity: 1; pointer-events: all; }
  .nav-link       { font-size: 1.12rem; padding: .8rem 2.2rem; max-width: 260px; width: 100%; text-align: center; }
}
@media (max-width: 640px) {
  .section       { padding: 5rem 0; }
  .hero h1       { font-size: 2.3rem; }
  .hero-actions  { flex-direction: column; }
  .btn           { width: 100%; }
  .footer-grid {
    grid-template-columns: 1fr; /* Stack footer columns on small screens */
  }
  .freq-grid     { grid-template-columns: repeat(2,1fr); }
  .schedule-strip { padding: 1.5rem; }
  .about-visual-inner { min-height: 420px; }
}

/* New styles for video background */
.section-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden; /* Ensure video doesn't spill out */
}
.section-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover the entire area without distortion */
  opacity: 0.15; /* Adjust opacity for subtlety */
}

/* Remove redundant layer styles */
.about-bg-layer, .services-bg-layer { display: none; }

/* FIXED BACKGROUND LAYERS - No empty space */
.section-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.section-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}
.bubble-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  display: block;
}
.about-section .container,
.services-section .container {
  position: relative;
  z-index: 2;
}
.about-section,
.services-section {
  position: relative;
  background: transparent;
}
/* Remove old background layers */
.about-bg-layer,
.services-bg-layer {
  display: none;
}
/* Card backgrounds with slight transparency for readability */
.af-row,
.service-card,
.more-svc-wrap {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(2px);
}
/* ── CLIENTS SLIDER WITH MANUAL CONTROLS ───────────────────────────────── */
.clients-slider-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.slider-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(168, 220, 255, 0.3);
  color: var(--accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  z-index: 10;
}

.slider-btn:hover {
  background: rgba(168, 220, 255, 0.25);
  transform: scale(1.05);
  border-color: var(--accent);
}

.slider-btn:active {
  transform: scale(0.95);
}

.ticker-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
  padding: 0.75rem 0;
}

.ticker {
  display: flex;
  width: max-content;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Pause animation when hovering over ticker */
.ticker-wrap:hover .ticker {
  animation-play-state: paused !important;
}

/* Default animation - only active when not manually controlled */
.ticker.auto-scroll {
  animation: tickerRunSlow 45s linear infinite;
}

@keyframes tickerRunSlow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.client-logo-card {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 220px;
  padding: 0 1rem;
  margin: 0 0.5rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(168, 220, 255, 0.15);
  border-radius: var(--r-sm);
  backdrop-filter: blur(4px);
  transition: transform 0.3s var(--fast), border-color 0.3s var(--fast), background 0.3s var(--fast);
}

.client-logo-card img {
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: brightness(0.9) contrast(1.1);
  transition: filter 0.3s ease;
}

.client-logo-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  background: rgba(168, 220, 255, 0.12);
}

.client-logo-card:hover img {
  filter: brightness(1) contrast(1.2);
}

/* Progress bar for slider position */
.slider-progress {
  max-width: 1400px;
  margin: 1.5rem auto 0;
  padding: 0 1rem;
}

.progress-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--blue-2));
  width: 0%;
  border-radius: 3px;
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .clients-slider-container {
    gap: 0.5rem;
  }
  
  .slider-btn {
    width: 36px;
    height: 36px;
  }
  
  .slider-btn svg {
    width: 18px;
    height: 18px;
  }
  
  .client-logo-card {
    width: 160px;
    height: 70px;
    margin: 0 0.35rem;
  }
}

@media (max-width: 640px) {
  .client-logo-card {
    width: 130px;
    height: 60px;
  }
}
.hero-title {
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  line-height: 1.18;
  font-weight: 700;
  text-align: center;
  color: #fff;
  white-space: nowrap;
}

.hero-title .tagline {
  display: block;
  font-size: 48px;
  font-style: italic;
  margin-top: 10px;
  margin-bottom: 5px;
  padding-bottom: 8px;
  line-height: 1.2;
  background: linear-gradient(135deg, #7ecbff, #a8dcff, #e0f4ff, #7ecbff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 3s ease infinite;
  background-size: 300% auto;
  text-shadow: 0 0 10px rgba(126, 203, 255, 0.3);
}

@keyframes gradientShift {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    white-space: normal;
  }
}
@media (max-width: 768px) {
  .hero-title .tagline {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
    margin-bottom: 5px;
    padding-bottom: 5px;
    line-height: 1.3;
    background: linear-gradient(135deg, #3d9de8, #7ecbff, #3d9de8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
  }
}
.services-section .section-head h2 {
  white-space: nowrap;
}
/* ================= MOBILE MENU FIX ================= */

@media (max-width: 768px) {

  /* Show hamburger */
  .menu-toggle {
    display: flex;
    z-index: 1101;
  }

  /* Hide normal nav */
  .nav-menu {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: rgba(2, 16, 35, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    z-index: 1100;
    transition: all 0.3s ease;
  }

  /* OPEN STATE */
  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Make links bigger (like your screenshot) */
  .nav-link {
    font-size: 1.8rem;
  }
}
body.menu-open {
  overflow: hidden;
}