@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --black:       #000000;
  --dark:        #080808;
  --dark2:       #0e0e0e;
  --dark3:       #161616;
  --dark4:       #1c1c1c;
  --border:      #1e1e1e;
  --border2:     #2a2a2a;
  --border3:     #363636;
  --white:       #ffffff;
  --offwhite:    #e8e8e8;
  --muted:       #666666;
  --muted2:      #888888;
  --muted3:      #aaaaaa;
  --green:       #4ade80;
  --glass-bg:    rgba(255,255,255,0.03);
  --glass-border:rgba(255,255,255,0.07);
  --glass-hover: rgba(255,255,255,0.055);
  --font:        'Outfit', sans-serif;
  --nav-h:       110px;
  --max:         1160px;
  --radius:      12px;
  --transition:  0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--dark4); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--border3); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ═══ LOADER ═══ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  /* Smooth, professional fade — starts after 2s, takes 0.7s to complete */
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  /* Ensure inner content never overflows viewport */
  width: 100%;
  padding: 0 24px;
}

.loader-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: loaderPulse 1.8s ease-in-out infinite alternate;
}

/* Desktop: 450px — the logo is the hero of the loader */
.loader-logo-img {
  width: 450px;
  max-width: 85vw;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center center;
}

@keyframes loaderPulse {
  from { transform: scale(0.97); opacity: 0.75; }
  to   { transform: scale(1.03); opacity: 1; }
}

.loader-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 32px;
}

.loader-bar {
  width: 3px;
  background: var(--white);
  border-radius: 2px;
  animation: loaderBar 0.85s ease-in-out infinite alternate;
}
.loader-bar:nth-child(1) { animation-delay: 0s;    height: 10px; }
.loader-bar:nth-child(2) { animation-delay: .15s;  height: 20px; }
.loader-bar:nth-child(3) { animation-delay: .30s;  height: 32px; }
.loader-bar:nth-child(4) { animation-delay: .45s;  height: 20px; }
.loader-bar:nth-child(5) { animation-delay: .60s;  height: 10px; }

@keyframes loaderBar {
  from { transform: scaleY(0.3); opacity: 0.2; }
  to   { transform: scaleY(1);   opacity: 1; }
}

/* ═══ LAYOUT ═══ */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 48px; }
.section { padding: 112px 0; }

/* ═══ NAVBAR ═══ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  /* Vertical padding gives the logo breathing room top and bottom */
  padding: 12px 48px;
  justify-content: space-between;
  transition: background var(--transition), border-color var(--transition);
}

.navbar.scrolled {
  background: rgba(0,0,0,0.96);
  border-bottom-color: var(--border2);
}

.nav-logo { display: flex; align-items: center; }

/* Header logo — large, uncropped, aspect-ratio locked */
.nav-logo-img {
  height: 86px;
  width: auto;
  max-width: 260px;
  display: block;
  object-fit: contain;
  object-position: left center;
  transition: opacity var(--transition);
}
.nav-logo:hover .nav-logo-img { opacity: 0.82; }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  color: var(--muted2);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); background: rgba(255,255,255,0.06); }

.nav-links .nav-cta {
  background: var(--white);
  color: var(--black) !important;
  font-weight: 700;
  margin-left: 8px;
  border-radius: 8px;
  padding: 9px 20px;
}
.nav-links .nav-cta:hover { background: var(--offwhite); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid var(--border2);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px 12px;
  transition: background var(--transition);
}
.hamburger span { display: block; width: 18px; height: 1.5px; background: var(--white); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.hamburger:hover { background: var(--dark3); }

/* ═══ REVEAL ═══ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease calc(var(--delay, 0s)), transform 0.65s ease calc(var(--delay, 0s));
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══ TYPOGRAPHY ═══ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted3);
  margin-bottom: 18px;
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--white); flex-shrink: 0; }

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 16px;
}

.section-sub { color: var(--muted2); font-size: 1.05rem; line-height: 1.75; max-width: 580px; }
.gradient-text { background: linear-gradient(135deg, #fff 0%, #888 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-header { margin-bottom: 64px; }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 13px 26px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary { background: var(--white); color: var(--black); }
.btn-primary:hover { background: var(--offwhite); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,255,255,0.12); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid var(--border2); }
.btn-ghost:hover { border-color: var(--border3); background: var(--dark3); transform: translateY(-1px); }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }

/* ═══ GLASS ═══ */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.glass:hover { background: var(--glass-hover); border-color: rgba(255,255,255,0.12); }

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse 75% 75% at 50% 40%, black 20%, transparent 100%);
}

.hero-glow {
  position: absolute;
  top: 20%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; padding: 96px 0 80px; max-width: 760px; }

.hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-desc { font-size: 1.1rem; color: var(--muted2); line-height: 1.8; max-width: 580px; margin-bottom: 36px; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 40px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 24px; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 0.82rem; color: var(--muted2); font-weight: 500; }
.trust-item svg { color: var(--green); flex-shrink: 0; }

.hero-scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); }
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, transparent, var(--border3)); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.8; } }

/* ═══ VALUE PROPS (stats section) ═══ */
.stats-section { padding: 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-card {
  padding: 44px 32px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background var(--transition);
}
.stat-card:last-child { border-right: none; }
.stat-card:hover { background: var(--dark2); }

.stat-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--dark3);
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted3);
  margin-bottom: 4px;
  flex-shrink: 0;
}

.stat-title { font-size: 0.97rem; font-weight: 700; color: var(--white); letter-spacing: -0.01em; line-height: 1.3; }
.stat-desc  { font-size: 0.83rem; color: var(--muted2); line-height: 1.65; }
.stat-number { font-size: 2.2rem; font-weight: 900; letter-spacing: -0.04em; color: var(--white); line-height: 1; }
.stat-label  { font-size: 0.82rem; color: var(--muted); font-weight: 500; }

/* ═══ SERVICES GRID ═══ */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

.svc-card {
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: var(--white);
  cursor: pointer;
}
.svc-card:hover { transform: translateY(-3px); }

.svc-card-header { display: flex; align-items: flex-start; justify-content: space-between; }

.svc-icon {
  width: 52px; height: 52px;
  background: var(--dark4);
  border: 1px solid var(--border2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted3);
  transition: border-color var(--transition), color var(--transition);
}
.svc-card:hover .svc-icon { border-color: var(--border3); color: var(--white); }

.svc-number { font-size: 0.72rem; font-weight: 700; color: var(--border3); letter-spacing: 0.1em; }
.svc-card h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.02em; }
.svc-card p  { color: var(--muted2); font-size: 0.9rem; line-height: 1.75; flex: 1; }

.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.svc-tags span { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; color: var(--muted); background: var(--dark3); border: 1px solid var(--border); border-radius: 4px; padding: 3px 8px; }

.svc-arrow { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 600; color: var(--muted2); margin-top: 8px; transition: color var(--transition), gap var(--transition); }
.svc-card:hover .svc-arrow { color: var(--white); gap: 10px; }

/* ═══ EXPERTISE LIST (About page) ═══ */
.expertise-list { display: grid; gap: 0; }

.expertise-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.expertise-item:first-child { border-top: 1px solid var(--border); }

.exp-icon {
  width: 40px; height: 40px;
  background: var(--dark3);
  border: 1px solid var(--border2);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted3);
  flex-shrink: 0;
  margin-top: 2px;
}

.exp-text strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.exp-text span   { font-size: 0.87rem; color: var(--muted2); line-height: 1.65; }

/* ═══ WHY CHOOSE US ═══ */
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 40px; }

.why-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background var(--transition), border-color var(--transition);
}
.why-card:hover { background: var(--glass-hover); border-color: rgba(255,255,255,0.1); }

.why-icon {
  width: 36px; height: 36px;
  background: var(--dark3);
  border: 1px solid var(--border2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted3);
}
.why-card strong { font-size: 0.88rem; font-weight: 700; color: var(--white); line-height: 1.3; }
.why-card span   { font-size: 0.80rem; color: var(--muted2); line-height: 1.6; }

/* ═══ PROCESS ═══ */
.process-steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 0; align-items: start; }
.process-step { display: flex; flex-direction: column; gap: 16px; padding: 28px; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--radius); }
.process-connector { width: 1px; height: 2px; background: var(--border2); align-self: center; margin: 0 8px; }
.step-num { font-size: 2rem; font-weight: 900; letter-spacing: -0.04em; color: var(--dark4); line-height: 1; }
.step-content h4 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step-content p  { font-size: 0.85rem; color: var(--muted2); line-height: 1.7; }

/* ═══ CTA SECTION ═══ */
.cta-section { padding: 80px 0; }
.cta-glass { border-radius: 20px; padding: 64px; position: relative; overflow: hidden; background: var(--glass-bg); border: 1px solid var(--glass-border); }
.cta-content { position: relative; z-index: 2; max-width: 600px; }
.cta-content h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1.15; margin-bottom: 16px; }
.cta-content p  { color: var(--muted2); margin-bottom: 32px; font-size: 1rem; line-height: 1.75; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-decoration { position: absolute; inset: 0; pointer-events: none; }
.cta-circle { position: absolute; border-radius: 50%; border: 1px solid var(--glass-border); }
.cta-circle-1 { width: 400px; height: 400px; right: -100px; top: -100px; }
.cta-circle-2 { width: 250px; height: 250px; right: 80px; top: 60px; }

/* ═══ FOOTER ═══ */
.footer { background: var(--dark); border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 56px; margin-bottom: 48px; }

.footer-brand .nav-logo { margin-bottom: 16px; display: inline-flex; }
.footer-brand p { color: var(--muted); font-size: 0.87rem; line-height: 1.75; max-width: 280px; margin-bottom: 20px; }

.footer-contact-quick { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-quick a { display: flex; align-items: center; gap: 8px; color: var(--muted2); font-size: 0.85rem; transition: color var(--transition); }
.footer-contact-quick a:hover { color: var(--white); }

.footer-col h4 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.footer-col a  { display: block; color: var(--muted2); font-size: 0.88rem; margin-bottom: 10px; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }

.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: var(--muted); font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--muted); font-size: 0.82rem; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--muted2); }

/* ═══ SOCIAL ICONS ═══ */
.social-links { display: flex; gap: 10px; margin-top: 18px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--dark3);
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted2);
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
  text-decoration: none;
  flex-shrink: 0;
}
.social-link:hover { background: var(--dark4); border-color: var(--border3); color: var(--white); transform: translateY(-2px); }
.social-link svg { display: block; flex-shrink: 0; }

/* ═══ WHATSAPP FAB ═══ */
.whatsapp-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.whatsapp-fab:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,0.45); }
.fab-tooltip {
  position: absolute; right: 68px; white-space: nowrap;
  background: var(--dark2); border: 1px solid var(--border2);
  color: var(--white); font-size: 0.78rem; font-weight: 600;
  padding: 6px 12px; border-radius: 6px;
  opacity: 0; pointer-events: none; transform: translateX(8px);
  transition: opacity var(--transition), transform var(--transition);
}
.whatsapp-fab:hover .fab-tooltip { opacity: 1; transform: translateX(0); }

/* ═══ PAGE HEADER (inner pages) ═══ */
.page-header { padding: calc(var(--nav-h) + 80px) 0 72px; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 72px 72px; opacity: 0.25;
  mask-image: radial-gradient(ellipse 60% 80% at 50% 0%, black 0%, transparent 100%);
}
.page-header h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 900; letter-spacing: -0.05em; line-height: 1.1; color: var(--white); margin-bottom: 16px; position: relative; }
.page-header p  { color: var(--muted2); font-size: 1.05rem; max-width: 540px; line-height: 1.75; position: relative; }

/* ═══ ABOUT PAGE ═══ */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-body p { color: var(--muted2); font-size: 0.97rem; line-height: 1.85; margin-bottom: 20px; }

.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.value-card { background: var(--dark); padding: 32px 28px; transition: background var(--transition); }
.value-card:hover { background: var(--dark2); }
.value-icon { width: 40px; height: 40px; background: var(--dark3); border: 1px solid var(--border2); border-radius: 9px; display: flex; align-items: center; justify-content: center; color: var(--muted3); margin-bottom: 14px; }
.value-card h4 { font-size: 0.93rem; font-weight: 700; color: var(--white); margin-bottom: 7px; }
.value-card p  { color: var(--muted); font-size: 0.84rem; line-height: 1.65; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.team-card { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 28px 24px; text-align: center; transition: background var(--transition); }
.team-card:hover { background: var(--glass-hover); }
.team-avatar { width: 64px; height: 64px; background: var(--dark3); border: 1px solid var(--border2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; color: var(--muted3); font-size: 1.5rem; font-weight: 700; }
.team-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.team-card p  { color: var(--muted2); font-size: 0.82rem; }

/* ═══ SERVICES PAGE ═══ */
.service-block { padding: 64px 0; border-bottom: 1px solid var(--border); display: grid; grid-template-columns: 260px 1fr; gap: 72px; align-items: start; }
.service-block:first-child { padding-top: 0; }
.service-block:last-child  { border-bottom: none; }
.svc-label { position: sticky; top: calc(var(--nav-h) + 24px); }
.svc-big-icon { width: 68px; height: 68px; background: var(--dark2); border-radius: 14px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border2); margin-bottom: 20px; color: var(--muted3); }
.svc-label h2 { font-size: 1.3rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 8px; }
.svc-label > p { color: var(--muted); font-size: 0.87rem; line-height: 1.65; }
.svc-details h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 12px; letter-spacing: -0.01em; }
.svc-details p  { color: var(--muted2); font-size: 0.95rem; line-height: 1.85; margin-bottom: 28px; }
.svc-features { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin-bottom: 28px; }
.svc-features li { display: flex; align-items: center; gap: 9px; font-size: 0.88rem; color: var(--offwhite); }
.svc-features li::before { content: ''; display: block; width: 5px; height: 5px; border-radius: 50%; background: var(--white); flex-shrink: 0; }

/* ═══ BOOKING PAGE ═══ */
.booking-layout { display: grid; grid-template-columns: 320px 1fr; gap: 56px; align-items: start; }
.booking-sidebar h2 { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 10px; }
.booking-sidebar > p { color: var(--muted2); font-size: 0.9rem; line-height: 1.75; margin-bottom: 32px; }
.how-steps { display: grid; gap: 20px; }
.how-step { display: flex; gap: 14px; align-items: flex-start; }
.step-dot { width: 26px; height: 26px; border-radius: 50%; background: var(--dark3); border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 700; color: var(--white); flex-shrink: 0; margin-top: 2px; }
.how-step strong { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 3px; }
.how-step span   { color: var(--muted); font-size: 0.82rem; line-height: 1.6; }

.form-panel { background: var(--dark); border: 1px solid var(--border); border-radius: 16px; padding: 44px 40px; }
.form-panel h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label { font-size: 0.73rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.field input, .field select, .field textarea {
  background: var(--black); border: 1px solid var(--border2); border-radius: 8px;
  padding: 12px 14px; color: var(--white); font-family: var(--font); font-size: 0.92rem;
  outline: none; transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%; -webkit-appearance: none; appearance: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--border3); box-shadow: 0 0 0 3px rgba(255,255,255,0.06); }
.field input::placeholder, .field textarea::placeholder { color: #3a3a3a; }
.field select option { background: #111; color: var(--white); }
.field textarea { min-height: 120px; resize: vertical; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #ff4444; }
.field-error-msg { font-size: 0.73rem; color: #ff6666; font-weight: 500; display: none; }
.field.has-error .field-error-msg { display: block; }
.form-submit { width: 100%; justify-content: center; margin-top: 4px; font-size: 0.95rem; padding: 15px; }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.confirm-msg { display: none; margin-top: 20px; padding: 16px 20px; background: rgba(74,222,128,0.06); border: 1px solid rgba(74,222,128,0.2); border-radius: 8px; color: #4ade80; font-size: 0.9rem; font-weight: 500; align-items: center; gap: 10px; }
.confirm-msg.show { display: flex; }

/* ═══ CONTACT PAGE ═══ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.contact-info-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.contact-info > p { color: var(--muted2); font-size: 0.9rem; margin-bottom: 32px; line-height: 1.75; }
.contact-list { display: grid; gap: 10px; }
.contact-item { display: flex; align-items: center; gap: 14px; padding: 18px 20px; background: var(--dark); border: 1px solid var(--border); border-radius: 10px; transition: border-color var(--transition), background var(--transition); text-decoration: none; color: inherit; }
.contact-item:hover { border-color: var(--border2); background: var(--dark2); }
.c-icon { width: 40px; height: 40px; background: var(--dark3); border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--muted3); }
.contact-item strong { display: block; font-size: 0.72rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 3px; }
.contact-item span { font-size: 0.9rem; color: var(--white); }
.whatsapp-contact { margin-top: 24px; display: flex; align-items: center; gap: 12px; padding: 16px 20px; background: rgba(37,211,102,0.07); border: 1px solid rgba(37,211,102,0.2); border-radius: 10px; font-size: 0.88rem; color: #4ade80; font-weight: 500; transition: background var(--transition); text-decoration: none; }
.whatsapp-contact:hover { background: rgba(37,211,102,0.12); }

/* ═══ DIVIDER ═══ */
.divider { height: 1px; background: var(--border); }

/* ═══ HONEYPOT — must never be visible to real users ═══ */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  tab-index: -1 !important;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1100px) {
  .navbar { padding: 10px 28px; }
  .wrap { padding: 0 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card:nth-child(2) { border-right: none; }
  .stat-card:nth-child(3) { border-top: 1px solid var(--border); }
  .stat-card:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .process-steps { grid-template-columns: 1fr; gap: 12px; }
  .process-connector { display: none; }
  .service-block { grid-template-columns: 1fr; gap: 28px; }
  .svc-label { position: static; }
  .booking-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 88px; }
  .navbar { padding: 10px 20px; }
  .wrap { padding: 0 20px; }
  .section { padding: 72px 0; }
  /* Tablet: logo 64px height with room to breathe */
  .nav-logo-img { height: 64px; max-width: 210px; }
  /* Tablet: loader 350px */
  .loader-logo-img { width: 350px; max-width: 82vw; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    background: rgba(0,0,0,0.98);
    border-bottom: 1px solid var(--border);
    padding: 12px 20px 20px;
    gap: 2px;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .hero-content { padding: 64px 0; }
  .hero-trust { flex-direction: column; gap: 12px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-panel { padding: 28px 22px; }
  .values-grid { grid-template-columns: 1fr; }
  .svc-features { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .cta-glass { padding: 40px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  :root { --nav-h: 80px; }
  .nav-logo-img { height: 54px; max-width: 180px; }
  /* Mobile: loader 280px */
  .loader-logo-img { width: 280px; max-width: 80vw; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-card { border-right: none; border-top: 1px solid var(--border); }
  .stat-card:first-child { border-top: none; }
  .why-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   UTILITY CLASSES
   Replaces former inline styles so markup stays free of style="".
═══════════════════════════════════════════════════════════════ */

/* Staggered reveal delays (was style="--delay:.05s" etc.) */
.reveal.d-1  { --delay: .05s; }
.reveal.d-2  { --delay: .1s; }
.reveal.d-3  { --delay: .2s; }
.reveal.d-4  { --delay: .3s; }

/* Footer brand logo spacing (was style="margin-bottom:16px") */
.nav-logo.footer-logo { margin-bottom: 16px; }

/* Footer contact paragraph (was inline color/size/line-height) */
.footer-contact-note {
  color: var(--muted2);
  font-size: .87rem;
  line-height: 1.7;
}

/* Footer CTA button (was style="margin-top:12px;display:inline-flex") */
.btn.footer-cta { margin-top: 12px; display: inline-flex; }

/* About intro: section label spacing (was style="margin-bottom:20px") */
.eyebrow.mb-20 { margin-bottom: 20px; }

/* About intro: button row (was style="margin-top:32px;display:flex;...") */
.btn-row {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Inline form-panel heading icon (was display:inline-block;vertical-align…) */
.panel-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  color: var(--muted3);
}

/* Booking sidebar "Prefer WhatsApp?" card (was a long inline style) */
.side-card {
  margin-top: 36px;
  padding: 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}
.side-card-label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--muted3);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
/* WhatsApp link inside the side card had margin-top:0 override */
.side-card .whatsapp-contact { margin-top: 0; }
