/* ═══════════════════════════════════════════════════════
   SYNQ.WORK — MAIN STYLESHEET
   Colors: #000000 Black · #FFFFFF White · #FFDE59 Yellow · #404852 Grey
   ═══════════════════════════════════════════════════════ */

:root {
  --black:   #000000;
  --white:   #FFFFFF;
  --yellow:  #FFDE59;
  --grey:    #404852;
  --grey-lt: #6B7280;
  --grey-bg: #F5F5F3;
  --border:  rgba(0,0,0,0.1);

  --font-body:    'Poppins', system-ui, sans-serif;
  --font-display: 'Montserrat', Georgia, serif;

  --nav-h: 72px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

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

img, video { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

.container {
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

/* ══════ BUTTONS ══════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }

.btn--sm  { padding: 8px 18px; font-size: 13px; }
.btn--lg  { padding: 14px 32px; font-size: 16px; }
.btn--full { width: 100%; justify-content: center; }

.btn--yellow {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.btn--yellow:hover { background: #f0ce3a; border-color: #f0ce3a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,222,89,0.4); }

.btn--black {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn--black:hover { background: #1a1a1a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); transform: translateY(-2px); }

.btn--ghost-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn--ghost-dark:hover { background: var(--black); color: var(--white); transform: translateY(-2px); }

.btn--outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn--outline:hover { background: var(--black); color: var(--white); transform: translateY(-2px); }

/* Magnetic wrapper — JS adds transform */
.magnetic { transition: transform 0.4s var(--ease-back), box-shadow 0.25s; }

/* ══════ TYPOGRAPHY HELPERS ══════ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 16px;
}
.eyebrow--yellow { color: var(--yellow); }
.eyebrow--white  { color: rgba(255,255,255,0.7); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-title em { font-style: italic; font-weight: 400; }
.section-title--white { color: var(--white); }

.section-header { margin-bottom: clamp(40px, 6vw, 80px); }
.section-header--light .eyebrow { color: var(--yellow); }

/* ══════ REVEAL ANIMATIONS ══════ */
/* Content always visible; only transform animates on scroll */
[data-reveal] {
  opacity: 1;
  transform: translateY(24px);
  transition: transform 0.8s var(--ease);
}
[data-reveal].revealed {
  transform: none;
}

/* ══════ NAV ══════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(255,255,255,0.0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-color: var(--border);
}
.nav.nav--dark {
  background: rgba(0,0,0,0.0);
}
.nav.nav--dark.scrolled {
  background: rgba(0,0,0,0.88);
  border-color: rgba(255,255,255,0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 40px;
  padding-inline: clamp(20px, 5vw, 60px);
}

.nav__logo { flex-shrink: 0; text-decoration: none; }
.nav__logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 2px;
}
.nav__logo-synq {
  font-family: var(--font-display), sans-serif;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--white);
  transition: color 0.3s;
}
.nav__logo-work {
  font-family: var(--font-display), sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--yellow);
  text-transform: uppercase;
}
.nav.scrolled .nav__logo-synq { color: var(--black); }

.nav__links {
  display: flex;
  list-style: none;
  gap: 4px;
  margin-left: auto;
}
.nav__item { position: relative; }
.nav__link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav.scrolled .nav__link { color: var(--grey); }
.nav__link:hover { color: var(--black); background: var(--grey-bg); }
.nav.scrolled .nav__link:hover { color: var(--black); }

/* Dropdown */
.nav__sub {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s var(--ease);
}
.nav__item:hover .nav__sub {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.nav__sub-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  transition: background 0.15s;
}
.nav__sub-link span { font-size: 11px; color: var(--grey-lt); font-weight: 400; }
.nav__sub-link:hover { background: var(--grey-bg); }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 16px;
}
.nav__phone {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  transition: color 0.3s;
}
.nav.scrolled .nav__phone { color: var(--black); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav.scrolled .nav__hamburger span { background: var(--black); }

/* ══════ HERO ══════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  background: #FAFAF8;
  overflow: hidden;
}

/* Dot grid texture — engineering paper feel */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.065) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: 0;
}

/* Diagonal stripe accent — bottom-left corner */
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 420px;
  height: 420px;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 18px,
    rgba(255,222,89,0.10) 18px,
    rgba(255,222,89,0.10) 19px
  );
  z-index: 0;
  pointer-events: none;
}

/* Yellow radial blob — top-right */
.hero__tex-blob {
  position: absolute;
  top: -25%;
  right: -12%;
  width: 65vw;
  height: 130%;
  background: radial-gradient(ellipse 55% 65% at 65% 38%,
    rgba(255,222,89,0.22) 0%,
    rgba(255,222,89,0.07) 48%,
    transparent 70%);
  z-index: 0;
  pointer-events: none;
}

/* Concentric rings — top-right architectural accent */
.hero__tex-rings {
  position: absolute;
  top: -220px;
  right: -220px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(255,222,89,0.22);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.hero__tex-rings::before {
  content: '';
  position: absolute;
  inset: 90px;
  border: 1px solid rgba(255,222,89,0.14);
  border-radius: 50%;
}
.hero__tex-rings::after {
  content: '';
  position: absolute;
  inset: 180px;
  border: 1px solid rgba(255,222,89,0.08);
  border-radius: 50%;
}

/* Small floating squares — scattered accents */
.hero__tex-sq1,
.hero__tex-sq2,
.hero__tex-sq3 {
  position: absolute;
  border: 1px solid rgba(255,222,89,0.35);
  transform: rotate(30deg);
  z-index: 0;
  pointer-events: none;
}
.hero__tex-sq1 { width: 48px; height: 48px; top: 18%; right: 28%; }
.hero__tex-sq2 { width: 28px; height: 28px; top: 60%; right: 18%; opacity: 0.6; transform: rotate(15deg); }
.hero__tex-sq3 { width: 18px; height: 18px; top: 35%; right: 40%; opacity: 0.4; transform: rotate(45deg); }

/* Hide video (not in use on white hero) */
.hero__video { display: none; }

/* Remove dark overlay */
.hero__overlay { display: none; }

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  margin-left: clamp(20px, 8vw, 120px);
  padding-top: var(--nav-h);
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b08900;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.3s forwards;
}
.hero__eyebrow-line {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--yellow);
}

.hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #0a0a0a;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.5s forwards;
}
.hero__h1 em {
  font-style: italic;
  color: #b08900;
}

.hero__sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--grey);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.7s forwards;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.9s forwards;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.1s forwards;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  color: #0a0a0a;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero__stat-plus { color: #b08900; font-size: 0.8em; }
.hero__stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-lt);
}
.hero__stat-div {
  width: 1px;
  height: 40px;
  background: rgba(0,0,0,0.12);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 36px;
  right: clamp(20px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}
.hero__scroll-indicator span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.28);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), transparent);
  animation: scrollLine 2s ease-in-out 2s infinite;
}

/* Nav override for white hero — always show as frosted glass */
body.light-hero .nav {
  background: rgba(250,250,248,0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(0,0,0,0.08);
}
body.light-hero .nav .nav__logo-synq { color: var(--black); }
body.light-hero .nav .nav__link { color: var(--grey); }
body.light-hero .nav .nav__link:hover { color: var(--black); }
body.light-hero .nav .nav__phone { color: var(--black); }
body.light-hero .nav .nav__hamburger span { background: var(--black); }

/* Hero mobile overrides */
@media (max-width: 600px) {
  .hero__content {
    margin-left: 20px;
    margin-right: 20px;
    width: calc(100% - 40px);
  }
  .hero__h1 { font-size: clamp(32px, 10vw, 52px); line-height: 1.08; }
  .hero__sub { font-size: 15px; max-width: 100%; }
  .hero__actions { flex-direction: column; gap: 12px; }
  .hero__actions .btn { width: 100%; text-align: center; justify-content: center; }
  .hero__stats { gap: 20px; }
  .hero__stat-num { font-size: clamp(22px, 6vw, 32px); }
  .hero__tex-rings { display: none; }
  .hero__tex-sq1, .hero__tex-sq2, .hero__tex-sq3 { display: none; }
}

/* ══════ CITY STRIP ══════ */
.city-strip {
  background: var(--yellow);
  overflow: hidden;
  padding-block: 14px;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.city-strip__track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
}
.city-strip__dot { color: rgba(0,0,0,0.35); font-size: 18px; line-height: 1; }

/* ══════ SERVICES ══════ */
.services {
  position: relative;
  padding-block: clamp(80px, 10vw, 140px);
  background: var(--white);
  overflow: hidden;
}

/* 3D canvas backdrop for services section */
.services__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
}
.services .container { position: relative; z-index: 1; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services__grid { grid-template-columns: 1fr; } }

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  transition: all 0.35s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover { border-color: transparent; box-shadow: 0 20px 60px rgba(0,0,0,0.1); transform: translateY(-6px); }
.service-card:hover::before { transform: scaleX(1); }

.service-card--featured {
  grid-column: span 1;
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.service-card--featured::before { background: var(--yellow); }
.service-card--featured h3 { color: var(--white); }
.service-card--featured p { color: rgba(255,255,255,0.65); }
.service-card--featured .service-card__cta { color: var(--yellow); }

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--grey-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.service-card--featured .service-card__icon { background: rgba(255,255,255,0.1); color: var(--yellow); }
.service-card:hover .service-card__icon { background: var(--yellow); color: var(--black); }
.service-card--featured:hover .service-card__icon { background: var(--yellow); color: var(--black); }

.service-card h3 { font-size: 20px; font-weight: 700; color: var(--black); }
.service-card--featured h3 { color: var(--white) !important; }
.service-card p  { font-size: 14px; line-height: 1.7; color: var(--grey-lt); flex: 1; }

.service-card__cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  margin-top: 8px;
  transition: gap 0.2s;
}
.service-card:hover .service-card__cta { gap: 10px; }

/* ══════ CITIES ══════ */
.cities {
  padding-block: clamp(80px, 10vw, 140px);
  background: var(--black);
}

.cities__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
  align-items: start;
}
@media (max-width: 900px) { .cities__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .cities__grid { grid-template-columns: 1fr; } }

.cities__column { display: flex; flex-direction: column; gap: 16px; }

.city-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  cursor: pointer;
  min-height: 220px;
  transition: transform 0.4s var(--ease);
}
.city-card--large { min-height: 480px; }
.city-card:hover { transform: scale(1.02); }

.city-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}
.city-card:hover .city-card__bg { transform: scale(1.06); }

.city-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}

.city-card__body {
  position: relative;
  z-index: 2;
  align-self: flex-end;
  padding: 28px;
  width: 100%;
}
.city-card__count {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--black);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.city-card__name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.city-card__centres {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.city-card__centres li {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}
.city-card__cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--yellow);
  transition: gap 0.2s;
}
.city-card:hover .city-card__cta { gap: 10px; }

/* ══════ WHY ══════ */
.why {
  padding-block: clamp(80px, 10vw, 140px);
  background: var(--grey-bg);
}
.why__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
}
@media (max-width: 800px) { .why__inner { grid-template-columns: 1fr; } }

.why__left .section-title { margin-bottom: 24px; }
.why__desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: 40px;
}

.why__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 600px) { .why__pillars { grid-template-columns: 1fr; } }

.why__pillar {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  border: 1.5px solid var(--border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.why__pillar:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }

.why__pillar-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--yellow);
  margin-bottom: 12px;
  line-height: 1;
}
.why__pillar h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.why__pillar p  { font-size: 14px; color: var(--grey-lt); line-height: 1.7; }

/* ══════ FEATURED CENTRES ══════ */
.featured {
  padding-block: clamp(80px, 10vw, 140px);
  background: var(--white);
}

.centres__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
@media (max-width: 1000px) { .centres__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .centres__grid { grid-template-columns: 1fr; } }

.centre-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: all 0.35s var(--ease);
  cursor: pointer;
}
.centre-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.12); border-color: transparent; }

.centre-card__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.centre-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.centre-card:hover .centre-card__img img { transform: scale(1.08); }

.centre-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--black);
  padding: 5px 10px;
  border-radius: 4px;
}

.centre-card__body { padding: 20px; }
.centre-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.centre-card__addr {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--grey-lt);
  margin-bottom: 14px;
}
.centre-card__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.centre-card__pills span {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--grey-bg);
  color: var(--grey);
  border: 1px solid var(--border);
}

.featured__footer { display: flex; justify-content: center; }

/* ══════ AMENITIES ══════ */
.amenities {
  padding-block: clamp(80px, 10vw, 140px);
  background: var(--black);
}
.amenities .section-header { }
.amenities .eyebrow { color: var(--yellow); }
.amenities .section-title { color: var(--white); }

.amenities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .amenities__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .amenities__grid { grid-template-columns: repeat(2, 1fr); } }

.amenity {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.8);
  transition: all 0.3s var(--ease);
}
.amenity:hover {
  background: rgba(255,222,89,0.08);
  border-color: rgba(255,222,89,0.2);
  color: var(--white);
  transform: translateY(-4px);
}
.amenity svg { color: rgba(255,255,255,0.5); transition: color 0.3s; }
.amenity:hover svg { color: var(--yellow); }
.amenity span { font-size: 13px; font-weight: 600; line-height: 1.4; }

/* ══════ MID CTA ══════ */
.midcta {
  background: var(--yellow);
  padding-block: clamp(60px, 8vw, 100px);
}
.midcta__inner {
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.midcta__text h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--black);
}
.midcta__text h2 em { font-style: italic; }
.midcta__text p { font-size: 16px; color: rgba(0,0,0,0.65); margin-top: 12px; }
.midcta__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ══════ CONTACT STRIP ══════ */
.contact-strip {
  padding-block: clamp(80px, 10vw, 140px);
  background: var(--white);
}
.contact-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}
@media (max-width: 800px) { .contact-strip__inner { grid-template-columns: 1fr; } }

.contact-strip__left .section-title { margin-bottom: 20px; }
.contact-strip__left p { font-size: 16px; color: var(--grey-lt); line-height: 1.8; margin-bottom: 32px; }

.contact-strip__info { display: flex; flex-direction: column; gap: 16px; }
.contact-strip__line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  transition: color 0.2s;
}
.contact-strip__line:hover { color: var(--grey); }
.contact-strip__line svg { flex-shrink: 0; }

/* Form */
.contact-form {
  background: var(--grey-bg);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 48px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grey);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}
.form-group textarea { resize: vertical; }

/* ══════ FOOTER ══════ */
.footer {
  background: var(--black);
  color: var(--white);
  padding-top: clamp(60px, 8vw, 100px);
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer__top { grid-template-columns: 1fr; } }

.footer__logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 3px;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer__logo-synq {
  font-family: var(--font-display), sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--white);
}
.footer__logo-work {
  font-family: var(--font-display), sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--yellow);
  text-transform: uppercase;
}
.footer__brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 20px; }
.footer__phone {
  font-size: 16px;
  font-weight: 700;
  color: var(--yellow);
  transition: color 0.2s;
}
.footer__phone:hover { color: var(--white); }

.footer__col h5 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer__col li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer__col li a:hover { color: var(--yellow); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-block: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ══════ KEYFRAMES ══════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.3); opacity: 0.4; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════ RESPONSIVE NAV ══════ */
@media (max-width: 1024px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu__close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  margin-bottom: 40px;
}
.mobile-menu__links { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.mobile-menu__links a {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--white);
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
  padding-block: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu__links a:hover { opacity: 1; color: var(--yellow); }
.mobile-menu__footer {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu__footer a { color: var(--yellow); font-size: 18px; font-weight: 700; }

/* ════════════════════════════════════════
   HERO FORM (right-side split hero)
════════════════════════════════════════ */
.page-hero {
  background: #FAFAF8;
  padding: 120px 0 80px;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: 0;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
@media (max-width: 960px) {
  .page-hero__inner { grid-template-columns: 1fr; gap: 40px; }
}
.page-hero__content {}
.page-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.page-hero__eyebrow-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--yellow);
}
.page-hero__eyebrow span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: #0a0a0a;
  margin-bottom: 20px;
}
.page-hero h1 em {
  font-style: normal;
  color: #b08900;
}
.page-hero__sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--grey);
  margin-bottom: 32px;
  max-width: 540px;
}
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Hero enquiry form card */
.hero-form-card {
  background: #FFD600;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.hero-form-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #0a0a0a;
  margin-bottom: 6px;
}
.hero-form-card .hero-form-sub {
  font-size: 13px;
  color: rgba(0,0,0,0.55);
  margin-bottom: 24px;
}
.hero-form-card .hf-field {
  margin-bottom: 14px;
}
.hero-form-card .hf-field input,
.hero-form-card .hf-field select {
  width: 100%;
  padding: 13px 16px;
  border: none;
  border-radius: 10px;
  background: #fff;
  font-size: 14px;
  font-family: var(--font-body);
  color: #0a0a0a;
  outline: none;
  box-sizing: border-box;
  transition: box-shadow 0.2s;
}
.hero-form-card .hf-field input:focus,
.hero-form-card .hf-field select:focus {
  box-shadow: 0 0 0 2px rgba(0,0,0,0.15);
}
.hero-form-card .hf-field input::placeholder {
  color: #999;
}
.hero-form-card .hf-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.hero-form-card .hf-submit {
  width: 100%;
  padding: 15px 24px;
  background: #0a0a0a;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-display);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 4px;
}
.hero-form-card .hf-submit:hover {
  background: #222;
  transform: translateY(-2px);
}

/* ════════════════════════════════════════
   GLOBAL ENQUIRY FORM SECTION (yellow bg)
════════════════════════════════════════ */
.enquiry-section {
  background: #FFD600;
  padding: 80px 0;
}
.enquiry-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 860px) {
  .enquiry-section__inner { grid-template-columns: 1fr; }
}
.enquiry-section__left h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #0a0a0a;
  margin-bottom: 16px;
  line-height: 1.15;
}
.enquiry-section__left p {
  font-size: 16px;
  color: rgba(0,0,0,0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}
.enquiry-section__right {}
.enquiry-form {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.enquiry-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 580px) {
  .enquiry-form .form-row { grid-template-columns: 1fr; }
}
.enquiry-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.enquiry-form .form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
}
.enquiry-form .form-group input,
.enquiry-form .form-group select {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--font-body);
  color: #0a0a0a;
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
}
.enquiry-form .form-group input:focus,
.enquiry-form .form-group select:focus { border-color: #FFD600; }
.enquiry-form .form-group input::placeholder { color: #bbb; }
.enquiry-form .form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.enquiry-form .ef-submit {
  width: 100%;
  padding: 15px 24px;
  background: #0a0a0a;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-display);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 8px;
}
.enquiry-form .ef-submit:hover {
  background: #333;
  transform: translateY(-2px);
}

/* ════════════════════════════════════════
   WHY SYNQ WORK SECTION
════════════════════════════════════════ */
.why-synq {
  padding: 96px 0;
  background: #fff;
}
.why-synq .section-header { margin-bottom: 56px; }
.why-synq__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) { .why-synq__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .why-synq__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px)  { .why-synq__grid { grid-template-columns: 1fr; } }
.why-synq__card {
  padding: 32px 24px;
  background: #FAFAF8;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.why-synq__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.08);
  border-color: var(--yellow);
}
.why-synq__icon {
  width: 52px; height: 52px;
  background: rgba(255,222,89,0.15);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #b08900;
  margin-bottom: 20px;
}
.why-synq__card h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}
.why-synq__card p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--grey-lt);
}

/* ════════════════════════════════════════
   LOCATION CARDS (new design)
════════════════════════════════════════ */
.loc-cards-section {
  padding: 96px 0;
  background: var(--grey-bg);
}
.loc-cards-section .section-header { margin-bottom: 48px; }
.loc-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .loc-cards__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .loc-cards__grid { grid-template-columns: 1fr; } }
.loc-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.loc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.1);
  border-color: var(--yellow);
}
.loc-card__header {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 28px 28px 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.loc-card__header h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 0;
}
.loc-card__badge {
  background: var(--yellow);
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.loc-card__body {
  padding: 24px 28px 28px;
}
.loc-card__body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--grey-lt);
  margin-bottom: 20px;
}
.loc-card__centres {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.loc-card__centre-tag {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  background: var(--grey-bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--grey);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.loc-card__centre-tag:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #0a0a0a;
}

/* Nav logo image */
.nav__logo-img {
  height: 36px;
  width: auto;
  display: block;
}

/* ── FAQ cursor ── */
.faq-question { cursor: pointer; user-select: none; }

/* ════════════════════════════════════════
   CONTACT PAGE - Why Synq Work
════════════════════════════════════════ */
.contact-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 800px) { .contact-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .contact-why-grid { grid-template-columns: 1fr; } }
