*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --cream: #faf8f4;
  --white: #ffffff;
  --ink: #1a1a1a;
  --ink-light: #5a5a5a;
  --gold: #c9a96e;
  --gold-light: #f0e6d3;
  --gold-dark: #a07840;
  --border: #e8e2d9;
  --section-gap: 96px;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: rgba(250, 248, 244, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  font-style: italic;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.nav-logo span {
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-light);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-cta {
  background: var(--ink);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 6px;
  transition: background 0.2s !important;
}
.nav-cta:hover {
  background: var(--gold-dark) !important;
  color: var(--white) !important;
}
/* ── WHATSAPP WIDGET ── */
.wa-fab {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  outline: none;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
  animation: none;
}
@keyframes waPulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow:
      0 4px 32px rgba(37, 211, 102, 0.75),
      0 0 0 10px rgba(37, 211, 102, 0.08);
  }
}

.wa-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  color: var(--dark);
  font-size: 0.62rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--dark);
}

.wa-popup {
  position: fixed;
  bottom: 6rem;
  right: 1.8rem;
  z-index: 200;
  width: 320px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  transform: translateY(16px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.25s;
}
.wa-popup.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}

/* WA header */
.wa-header {
  background: #075e54;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.wa-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #128c7e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  overflow: hidden;
}
.wa-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wa-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}
.wa-status {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.1rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.wa-online-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #25d366;
  display: inline-block;
}
.wa-close {
  margin-left: auto;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 0.25rem;
  font-size: 1.2rem;
  line-height: 1;
  transition: color 0.2s;
}
.wa-close:hover {
  color: #fff;
}

/* WA chat body */
.wa-body {
  background: #ece5dd
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='38' fill='none' stroke='%23c8bfb7' stroke-width='.5'/%3E%3C/svg%3E")
    repeat;
  padding: 1rem 1rem 1.2rem;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.wa-bubble {
  background: #fff;
  border-radius: 0 8px 8px 8px;
  padding: 0.65rem 0.9rem;
  font-size: 0.88rem;
  color: #303030;
  line-height: 1.5;
  max-width: 85%;
  position: relative;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}
.wa-bubble::before {
  content: "";
  position: absolute;
  top: 0;
  left: -7px;
  border-width: 0 8px 8px 0;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
}
.wa-time {
  font-size: 0.65rem;
  color: #888;
  margin-top: 0.3rem;
  text-align: right;
}

/* WA footer / input */
.wa-footer {
  background: #f0f0f0;
  padding: 0.65rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.wa-input {
  flex: 1;
  background: #fff;
  border: none;
  outline: none;
  border-radius: 20px;
  padding: 0.6rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #303030;
  resize: none;
  line-height: 1.4;
  max-height: 100px;
}
.wa-send {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #25d366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.2s,
    transform 0.15s;
}
.wa-send:hover {
  background: #20b85a;
  transform: scale(1.08);
}
.wa-send svg {
  fill: #fff;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 60px 80px;
  gap: 60px;
  position: relative;
  overflow: hidden;
}
.hero-bg-shape {
  position: absolute;
  top: -100px;
  right: -150px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-light);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.6s 0.1s forwards;
}
.hero-badge::before {
  content: "✦";
  font-size: 0.6rem;
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.6s 0.2s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-light);
  max-width: 460px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.6s 0.35s forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
  animation: fadeUp 0.6s 0.5s forwards;
}
.btn-primary {
  background: var(--ink);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition:
    background 0.25s,
    transform 0.2s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.btn-ghost::after {
  content: "→";
  transition: transform 0.2s;
}
.btn-ghost:hover {
  color: var(--gold-dark);
}
.btn-ghost:hover::after {
  transform: translateX(4px);
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fadeUp 0.6s 0.65s forwards;
}
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--ink);
}
.stat-num span {
  color: var(--gold);
}
.stat-label {
  font-size: 0.78rem;
  color: var(--ink-light);
  font-weight: 400;
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeIn 0.9s 0.4s forwards;
}
.hero-card-stack {
  position: relative;
  width: 380px;
  height: 460px;
}
.hero-card {
  position: absolute;
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}
.hero-card-main {
  width: 320px;
  bottom: 0;
  left: 30px;
  border: 1px solid var(--border);
}
.hero-card-back {
  width: 280px;
  top: 0;
  right: 0;
  background: var(--gold-light);
  transform: rotate(4deg);
  border: 1px solid rgba(201, 169, 110, 0.3);
}
.card-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-light);
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 16px;
}
.card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.card-sub {
  font-size: 0.8rem;
  color: var(--ink-light);
  line-height: 1.5;
}
.card-divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}
.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-meta-label {
  font-size: 0.75rem;
  color: var(--ink-light);
}
.card-meta-val {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}
.card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  display: inline-block;
  margin-right: 6px;
}

/* ── SHARED ── */
section {
  padding: var(--section-gap) 60px;
}
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}
.section-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.7;
  max-width: 520px;
  margin-top: 14px;
}

/* ── SERVICES INFINITE SCROLL ── */
#services {
  padding: var(--section-gap) 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services-header {
  text-align: center;
  padding: 0 60px;
  margin-bottom: 56px;
}
.services-header .section-sub {
  margin: 14px auto 0;
}
.marquee-rows-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 8px 0 20px;
  user-select: none;
}
.marquee-fade-wrap {
  position: relative;
  overflow: hidden;
}
.marquee-fade-wrap::before,
.marquee-fade-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee-fade-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}
.marquee-fade-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}
.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  cursor: grab;
  padding: 4px 40px 12px;
}
.marquee-track.mLeft {
  animation: mLeft 34s linear infinite;
}
.marquee-track.mRight {
  animation: mRight 40s linear infinite;
}
@keyframes mLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes mRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}
.marquee-fade-wrap:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-track.grabbing {
  cursor: grabbing;
  animation-play-state: paused;
}
.marquee-track.grabbing .spill {
  pointer-events: none;
}
.spill {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding-bottom: 10px;
  min-width: 220px;
  flex-shrink: 0;
  cursor: pointer;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    background 0.25s;
}
.spill:hover {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 6px 24px rgba(201, 169, 110, 0.18);
}
.spill-img {
  width: 100%;
  height: 150px;
  border-radius: 10px 10px 0 0;
  flex-shrink: 0;
  background: var(--gold-light);
  overflow: hidden;
}
.spill-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.spill-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  padding: 8px 12px 2px;
}
.spill-type {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink-light);
  padding: 0 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── CITIES text-only ── */
#cities {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--section-gap) 60px;
}
.cities-text-inner {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  text-align: center;
}
.cities-inline-text {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.9;
  margin-top: 20px;
}
.cities-inline-text strong {
  color: var(--ink);
  font-weight: 600;
}
.cities-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 28px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold-dark);
  text-decoration: none;
  gap: 4px;
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 2px;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.cities-cta:hover {
  color: var(--ink);
  border-color: var(--ink);
}

/* ── TESTIMONIALS CAROUSEL ── */
#testimonials {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--section-gap) 60px;
}
.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 52px;
}
.tcarousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
.tcarousel-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-light);
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}
.tcarousel-btn:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.tcarousel-viewport {
  flex: 1;
  overflow: hidden;
}
.tcarousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.tcard {
  flex: 0 0 auto;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: scale(0.95);
  transition:
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.4s,
    border-color 0.4s,
    box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}
.tcard-center {
  background: var(--ink);
  border-color: var(--ink);
  transform: scale(1.04);
  box-shadow: 0 24px 60px rgba(26, 26, 26, 0.2);
  z-index: 1;
}
.tcard-quote-mark {
  position: absolute;
  top: 12px;
  right: 20px;
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(201, 169, 110, 0.15);
  pointer-events: none;
}
.tcard-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 3px;
}
.tcard-text {
  font-size: 0.9rem;
  color: var(--ink-light);
  line-height: 1.75;
  font-weight: 300;
  font-style: italic;
  flex: 1;
}
.tcard-center .tcard-text {
  color: rgba(255, 255, 255, 0.72);
}
.tcard-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tcard-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tcard-center .tcard-avatar {
  background: rgba(201, 169, 110, 0.2);
  color: var(--gold);
}
.tcard-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}
.tcard-center .tcard-name {
  color: var(--white);
}
.tcard-role {
  font-size: 0.72rem;
  color: var(--ink-light);
  margin-top: 2px;
}
.tcard-center .tcard-role {
  color: rgba(255, 255, 255, 0.4);
}
.tcarousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.tdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.tdot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ── HOW IT WORKS ── */
#how {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.how-header {
  text-align: center;
  margin-bottom: 64px;
}
.how-header .section-sub {
  margin: 14px auto 0;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--border) 20%,
    var(--border) 80%,
    transparent
  );
}
.step {
  padding: 0 24px;
  text-align: center;
}
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition:
    background 0.3s,
    border-color 0.3s;
}
.step:hover .step-num {
  background: var(--gold-light);
  border-color: var(--gold);
}
.step-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--ink);
}
.step-desc {
  font-size: 0.82rem;
  color: var(--ink-light);
  line-height: 1.65;
  font-weight: 300;
}

/* ── CITIES ── */
#cities {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--section-gap) 60px;
}
.cities-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.cities-header {
  text-align: center;
  margin-bottom: 52px;
}
.cities-header .section-sub {
  margin: 14px auto 0;
}
.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.city-card {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s,
    background 0.25s;
  cursor: default;
}
.city-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
  border-color: var(--gold);
  background: var(--white);
}
.city-card.city-featured {
  background: var(--gold-light);
  border-color: var(--gold);
}
.city-card.city-featured:hover {
  background: var(--gold-light);
}
.city-card.city-more {
  background: var(--cream);
  border-style: dashed;
  opacity: 0.7;
}
.city-pin {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.city-name {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 5px;
}
.city-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.city-card.city-featured .city-label {
  color: var(--gold-dark);
}

/* ── ENQUIRY ── */
#enquire {
  background: var(--ink);
  padding: var(--section-gap) 60px;
}
.enquire-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.enquire-left .section-eyebrow {
  color: var(--gold);
}
.enquire-left .section-title {
  color: var(--white);
}
.enquire-left .section-sub {
  color: rgba(255, 255, 255, 0.55);
}
.trust-items {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.trust-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(201, 169, 110, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-text {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  font-weight: 300;
}
.trust-text strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}

/* ── FORM ── */
.form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 36px;
}
.form-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--ink);
}
.form-step-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink-light);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.875rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.field.error input,
.field.error select,
.field.error textarea {
  border-color: #e53e3e;
}
.field-error-msg {
  font-size: 0.72rem;
  color: #e53e3e;
  margin-top: 4px;
  display: none;
}
.field.error .field-error-msg {
  display: block;
}
.field textarea {
  resize: vertical;
  min-height: 80px;
}
.ms-wrap {
  position: relative;
}
.ms-trigger {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 36px 11px 14px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.875rem;
  color: var(--ink-light);
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  position: relative;
  outline: none;
}
.ms-trigger::after {
  content: "";
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--ink-light);
  transition: transform 0.2s;
  pointer-events: none;
}
.ms-wrap.open .ms-trigger {
  border-color: var(--gold);
  background: var(--white);
}
.ms-wrap.open .ms-trigger::after {
  transform: translateY(-50%) rotate(180deg);
}
.ms-trigger.has-value {
  color: var(--ink);
}
.ms-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1.5px solid var(--gold);
  border-radius: 8px;
  overflow: hidden;
  z-index: 50;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}
.ms-wrap.open .ms-dropdown {
  display: block;
}
.ms-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.875rem;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
  user-select: none;
}
.ms-option:last-child {
  border-bottom: none;
}
.ms-option:hover {
  background: var(--cream);
}
.ms-option.selected {
  background: var(--gold-light);
  color: var(--gold-dark);
  font-weight: 600;
}
.ms-check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.15s,
    border-color 0.15s;
}
.ms-option.selected .ms-check {
  background: var(--gold);
  border-color: var(--gold);
}
.ms-option.selected .ms-check::after {
  content: "";
  width: 4px;
  height: 7px;
  border: 2px solid var(--white);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
  display: block;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.honeypot {
  display: none !important;
  visibility: hidden;
  position: absolute;
  left: -9999px;
}
.form-submit {
  width: 100%;
  margin-top: 8px;
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.25s,
    opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-submit:hover:not(:disabled) {
  background: var(--gold-dark);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.form-note {
  font-size: 0.72rem;
  color: var(--ink-light);
  text-align: center;
  margin-top: 12px;
}
.form-alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.84rem;
  margin-bottom: 16px;
  display: none;
}
.form-alert.error {
  background: #fff5f5;
  border: 1px solid #fed7d7;
  color: #c53030;
}
.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(7px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: scroll;
}
.modal-overlay.open {
  display: flex;
  animation: fadeIn 0.25s ease;
}
.modal-box {
  background: var(--white);
  border-radius: 20px;
  padding: 44px 40px 38px;
  width: 100%;
  max-width: 600px;
  overflow-y: visible;
  position: relative;
  animation: slideUp 0.32s ease;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: var(--cream);
  border: 1px solid var(--border);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.78rem;
  color: var(--ink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s;
}
.modal-close:hover {
  background: var(--ink);
  color: var(--white);
}
.modal-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.modal-title {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
}
.modal-sub {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.6;
  margin-bottom: 26px;
}
.auto-badge {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
/* Step indicator dots */
.step-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}
.step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.2s;
}
.step-dot.active {
  background: var(--gold);
}

/* SUCCESS */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success .checkmark {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}
.form-success h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--ink);
}
.form-success p {
  font-size: 0.875rem;
  color: var(--ink-light);
  line-height: 1.6;
}

/* ── OUR NETWORK ── */
.network-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
/* Last 2 cards sit in a 2-col centred row */
.network-grid .ncard:nth-child(5) {
  grid-column: 1 / 2;
  margin-left: calc(50% + 10px);
}
.network-grid .ncard:nth-child(6) {
  grid-column: 2 / 3;
}
/* Shared — 4+5 need a combined offset trick, easier with a wrapper */
.network-row-2 {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: calc(80% - 10px);
  margin: 0 auto;
}
.ncard {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px 32px;
  cursor: pointer;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.ncard::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--gold-light) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.ncard:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
  border-color: var(--gold);
}
.ncard:hover::after {
  opacity: 1;
}
.ncard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.ncard-icon {
  width: 56px;
  height: 56px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s,
    border-color 0.25s;
  flex-shrink: 0;
}
.ncard:hover .ncard-icon {
  background: var(--gold-light);
  border-color: var(--gold);
}
.ncard-num {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--border);
  line-height: 1;
  transition: color 0.25s;
  user-select: none;
}
.ncard:hover .ncard-num {
  color: rgba(201, 169, 110, 0.25);
}
.ncard-body {
  position: relative;
  z-index: 1;
}
.ncard-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  transition: color 0.25s;
}
.ncard:hover .ncard-name {
  color: var(--gold-dark);
}
.ncard-desc {
  font-size: 0.83rem;
  color: var(--ink-light);
  line-height: 1.65;
  font-weight: 300;
}
.ncard-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.25s,
    transform 0.25s;
  position: relative;
  z-index: 1;
}
.ncard:hover .ncard-cta {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 900px) {
  #network {
    padding: 64px 24px;
  }
  .network-grid {
    grid-template-columns: 1fr 1fr;
  }
  .network-row-2 {
    max-width: 100%;
    grid-template-columns: 1fr 1fr;
  }
  .modal-overlay {
    align-items: flex-start;
  }
}
@media (max-width: 560px) {
  .network-grid {
    grid-template-columns: 1fr;
  }
  .network-row-2 {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}
#network {
  background: var(--cream);
  padding: var(--section-gap) 60px;
  border-bottom: 1px solid var(--border);
}
.network-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.network-header {
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.network-header .section-sub {
  max-width: 540px;
}
.network-list {
  display: flex;
  flex-direction: column;
}
.network-item {
  display: grid;
  grid-template-columns: 52px 52px 1fr 32px;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  cursor: pointer;
}
.network-item:first-child {
  border-top: 1px solid var(--border);
}
.network-item:hover .network-name {
  color: var(--gold-dark);
}
.network-item:hover .network-arrow {
  opacity: 1;
  transform: translateX(4px);
}
.network-num {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--border);
  line-height: 1;
  transition: color 0.25s;
}
.network-item:hover .network-num {
  color: var(--gold-light);
}
.network-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.25s,
    background 0.25s;
  flex-shrink: 0;
}
.network-item:hover .network-icon-wrap {
  border-color: var(--gold);
  background: var(--gold-light);
}
.network-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 5px;
  transition: color 0.25s;
}
.network-desc {
  font-size: 0.82rem;
  color: var(--ink-light);
  line-height: 1.6;
  font-weight: 300;
}
.network-arrow {
  color: var(--ink-light);
  opacity: 0;
  transform: translateX(-4px);
  transition:
    opacity 0.25s,
    transform 0.25s;
}
@media (max-width: 900px) {
  #network {
    padding: 64px 24px;
  }
  .network-item {
    grid-template-columns: 36px 44px 1fr;
    gap: 14px;
  }
  .network-arrow {
    display: none;
  }
  .network-num {
    font-size: 1rem;
  }
}
/* Ecosystem teaser */
.ecosystem-teaser {
  margin-top: 32px;
  background: var(--white);
  border: 1.5px dashed var(--border);
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.ecosystem-label {
  font-size: 0.85rem;
  color: var(--ink-light);
  font-weight: 400;
  flex-shrink: 0;
  min-width: 160px;
  line-height: 1.6;
}
.ecosystem-eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.ecosystem-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.eco-pill {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-light);
  white-space: nowrap;
  opacity: 0.7;
}

/* Corporate clients */
#clients {
  background: var(--cream);
  padding: var(--section-gap) 60px;
  border-top: 1px solid var(--border);
}
.clients-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.clients-header {
  text-align: center;
  margin-bottom: 48px;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: center;
}
.client-logo {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--ink-light);
  font-weight: 500;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.client-logo:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.12);
}
.client-logo img {
  max-width: 100%;
  height: 32px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.6;
  transition:
    filter 0.2s,
    opacity 0.2s;
}
.client-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* Partner join */
.partner-join {
  background: var(--ink);
  border-radius: 20px;
  padding: 44px 48px;
  margin-top: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.partner-join-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.partner-join-sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  font-weight: 300;
}
.partner-join-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
.partner-join-fields input,
.partner-join-fields select {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.875rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  width: 100%;
}
.partner-join-fields input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.partner-join-fields input:focus,
.partner-join-fields select:focus {
  border-color: var(--gold);
}
.partner-join-fields select option {
  background: var(--ink);
  color: var(--white);
}
.partner-join-btn {
  width: 100%;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 13px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s;
}
.partner-join-btn:hover {
  background: var(--gold-dark);
}
.partner-join-success {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 12px;
  text-align: center;
}

/* ── FOOTER ── */
.footer-email {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.footer-email:hover {
  color: var(--gold);
}
footer {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 32px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--white);
}
.footer-logo span {
  color: var(--gold);
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav {
    padding: 16px 24px;
  }
  .nav-links {
    display: none;
  }
  #hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
  }
  .hero-visual {
    display: none;
  }
  section {
    padding: 64px 24px;
  }
  #services {
    padding: 64px 0;
  }
  #network {
    padding: 64px 24px;
  }
  #testimonials {
    padding: 64px 24px;
  }
  #cities {
    padding: 64px 24px;
  }
  .network-item {
    grid-template-columns: 36px 44px 1fr;
    gap: 14px;
  }
  .network-arrow {
    display: none;
  }
  .network-num {
    font-size: 1rem;
  }
  .ecosystem-teaser {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .partner-join {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }
  .partner-join-fields {
    grid-template-columns: 1fr;
  }
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .tcard {
    flex: 0 0 calc(85vw);
    transform: scale(1) !important;
  }
  .tcard-center {
    transform: scale(1) !important;
    box-shadow: none;
    background: var(--ink);
  }
  .tcarousel-btn {
    display: none;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .steps::before {
    display: none;
  }
  .enquire-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  #enquire {
    padding: 64px 24px;
  }
  footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 28px 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .modal-box {
    padding: 32px 24px 28px;
  }
}