/* ===== TOOLE — Electrical Services ===== */
:root {
  --bg-0: #0a0e1a;
  --bg-1: #0f1424;
  --bg-2: #161c30;
  --ink-0: #ffffff;
  --ink-1: #e6e8f0;
  --ink-2: #a8aec5;
  --ink-3: #6b7390;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --grad-purple: #8b5cf6;
  --grad-pink: #d946a8;
  --grad-copper: #e89568;
  --grad-amber: #f3b96d;
  --shadow-glow: 0 30px 80px -20px rgba(139, 92, 246, 0.45);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --maxw: 1240px;
  --gradient-brand: linear-gradient(135deg, #8b5cf6 0%, #d946a8 50%, #e89568 100%);
  --gradient-brand-rev: linear-gradient(135deg, #e89568 0%, #d946a8 50%, #8b5cf6 100%);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-0);
  color: var(--ink-1);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Ambient corner gradients (Cipher style) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% -10%, rgba(232, 149, 104, 0.18), transparent 50%),
    radial-gradient(ellipse at -5% 100%, rgba(139, 92, 246, 0.18), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(10, 14, 26, 0.65);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.05em;
}

.brand-mark {
  width: 64px;
  height: auto;
  object-fit: contain;
  /* Transparent PNG — no background, no ring. Glow only. */
  filter:
    brightness(1.1)
    saturate(1.1)
    drop-shadow(0 0 12px rgba(217, 70, 168, 0.55))
    drop-shadow(0 0 24px rgba(139, 92, 246, 0.35));
}

.brand-text {
  color: var(--ink-0);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.nav-links a {
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover { color: var(--ink-0); }

.nav-links a.active {
  color: var(--ink-0);
}

.nav-cta {
  padding: 12px 24px;
  background: #d946a8;
  border: 1px solid #d946a8;
  border-radius: var(--radius-pill);
  color: white;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: transparent;
  box-shadow: 0 0 30px rgba(217, 70, 168, 0.5);
}

.menu-toggle {
  display: none;
  font-size: 24px;
}

/* ===== Hero (Cipher composition) ===== */
.hero {
  position: relative;
  min-height: 760px;          /* enough for sphere + content, no dead space */
  height: calc(100vh - 80px);  /* fill viewport minus nav, but cap at min-height */
  max-height: 880px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 5vw;
  overflow: hidden;
}

@media (max-width: 760px) {
  .hero {
    min-height: 620px;
    height: auto;
    padding: 40px 5vw;
  }
}

/* Text content sits CENTERED OVER the sphere */
.hero-inner {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Pill status badge above the headline */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 11px;
  color: var(--ink-1);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.04);
  letter-spacing: 0.5px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3FE07F;
  box-shadow: 0 0 10px #3FE07F;
  animation: badge-blink 2s ease-in-out infinite;
}

@keyframes badge-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Headline — LIGHT weight, gradient on the strong word.
   Sized to sit inside the sphere (~80% of sphere width) for visual balance. */
.hero h1 {
  font-size: clamp(36px, 5.5vw, 76px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  color: var(--ink-0);
  text-transform: none;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);  /* keeps text crisp over particles */
}

.hero h1 strong,
.hero h1 .accent {
  font-weight: 700;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Subtitle — TRACKED-OUT UPPERCASE, white for readability over the sphere */
.hero p.lead {
  font-size: 12px;
  color: var(--ink-0);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  max-width: 380px;
  margin: 0 auto 32px;
  line-height: 1.6;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Glow primary button (Cipher style) */
.btn-glow {
  position: relative;
  padding: 15px 30px;
  background: var(--gradient-brand);
  color: white;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s;
  border: none;
  z-index: 1;
}

.btn-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-brand);
  filter: blur(20px);
  opacity: 0.6;
  z-index: -1;
  border-radius: var(--radius-pill);
}

.btn-glow:hover {
  transform: translateY(-2px) scale(1.02);
}

/* Glass ghost button (Cipher style) */
.btn-glass {
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.04);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: all 0.3s;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-2px);
}

/* The rotating particle sphere — backdrop, hugs the hero with minimal padding */
.sphere-wrap {
  position: absolute;
  inset: 20px 0 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

.sphere {
  width: min(68vw, 700px);  /* sized to wrap headline + subtitle + buttons */
  max-height: 100%;
  aspect-ratio: 1;
  position: relative;
  animation: sphere-rotate 40s linear infinite;
}

.sphere svg {
  width: 100%;
  height: 100%;
  filter:
    drop-shadow(0 0 60px rgba(217, 70, 168, 0.4))
    drop-shadow(0 0 100px rgba(139, 92, 246, 0.3));
}

@keyframes sphere-rotate {
  to { transform: rotate(360deg); }
}

/* (hero-logo removed — Cipher hero has no logo, only nav) */

/* ===== Partner belt — infinite scroll marquee ===== */
.partner-belt {
  position: relative;
  z-index: 2;
  padding: 28px 0;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.partner-belt-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 18px;
  font-weight: 500;
}

.partner-track {
  display: flex;
  width: max-content;
  gap: 64px;
  animation: partner-scroll 28s linear infinite;
}

.partner-belt:hover .partner-track {
  animation-play-state: paused;
}

.partner-name {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: color 0.3s;
}

.partner-name:hover { color: var(--ink-0); }

.partner-name::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-brand);
  box-shadow: 0 0 12px rgba(217, 70, 168, 0.6);
}

@keyframes partner-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* (Old hero h1/lead/ctas block removed — superseded by Cipher composition above) */

.btn {
  padding: 16px 30px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gradient-brand);
  color: white;
  box-shadow: 0 12px 32px -10px rgba(217, 70, 168, 0.7);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px -12px rgba(217, 70, 168, 0.9);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink-0);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

/* ===== Section base ===== */
section {
  padding: 110px 0;
  position: relative;
  z-index: 1;
}

.nav { z-index: 100; }
.footer { position: relative; z-index: 1; }

.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grad-amber);
  margin-bottom: 16px;
  font-weight: 600;
}

.section-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--ink-0);
  margin-bottom: 14px;
  line-height: 1.1;
}

.section-title .accent {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-sub {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 620px;
  margin-bottom: 56px;
}

.section-head {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 720px;
}

.section-head .section-sub { margin-left: auto; margin-right: auto; }

/* ===== Services ===== */
#services {
  background: linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .service-grid { grid-template-columns: 1fr; }
}

.service-card {
  position: relative;
  padding: 32px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 70, 168, 0.35);
}

.service-card > * { position: relative; z-index: 1; }

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
  box-shadow: 0 12px 28px -10px rgba(217, 70, 168, 0.55);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink-0);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  color: var(--ink-2);
}

/* ===== Trust / Why us ===== */
#why {
  background: var(--bg-1);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.trust-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  text-align: center;
  transition: transform 0.3s, background 0.3s;
}

.trust-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.05);
}

.trust-num {
  font-size: 38px;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}

.trust-card h4 {
  font-size: 16px;
  color: var(--ink-0);
  margin-bottom: 6px;
  font-weight: 700;
}

.trust-card p {
  font-size: 13px;
  color: var(--ink-3);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 60px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-2);
  font-size: 13px;
  color: var(--ink-1);
  font-weight: 500;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad-amber);
  box-shadow: 0 0 10px var(--grad-amber);
}

/* ===== Pricing ===== */
#pricing {
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 100%);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  padding: 36px 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.price-card.featured {
  border-color: rgba(217, 70, 168, 0.5);
  background: linear-gradient(180deg, rgba(217, 70, 168, 0.08) 0%, rgba(139, 92, 246, 0.04) 100%);
  box-shadow: 0 20px 60px -25px rgba(217, 70, 168, 0.6);
  transform: scale(1.03);
}

.price-card:hover {
  transform: translateY(-4px);
}

.price-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.price-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: var(--gradient-brand);
  color: white;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: 18px;
  color: var(--ink-2);
  margin-bottom: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price {
  font-size: 48px;
  font-weight: 800;
  color: var(--ink-0);
  margin-bottom: 4px;
  line-height: 1;
}

.price-currency {
  font-size: 22px;
  vertical-align: super;
  margin-right: 4px;
  color: var(--ink-2);
}

.price-desc {
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 24px;
}

.price-list {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.price-list li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink-1);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid var(--line);
}

.price-list li:last-child { border-bottom: none; }

.price-list li::before {
  content: '✓';
  color: var(--grad-amber);
  font-weight: 700;
  flex-shrink: 0;
}

.price-card .btn {
  width: 100%;
  justify-content: center;
}

.price-extras {
  margin-top: 40px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed var(--line-2);
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.price-extras h4 {
  color: var(--ink-0);
  margin-bottom: 12px;
  font-size: 16px;
}

.price-extras p {
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 4px;
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: var(--gradient-brand);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.1) 0%, transparent 40%);
}

.cta-banner > * { position: relative; }

.cta-banner h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}

.cta-banner .btn {
  background: white;
  color: var(--bg-0);
}

.cta-banner .btn:hover {
  background: var(--bg-0);
  color: white;
  border: 1px solid white;
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-0);
  border-top: 1px solid var(--line);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--ink-2);
  margin-top: 14px;
  max-width: 280px;
}

.footer h5 {
  font-size: 13px;
  color: var(--ink-0);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--ink-2);
}

.footer ul li a:hover { color: var(--ink-0); }

.socials {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background 0.2s, transform 0.2s;
}

.socials a:hover {
  background: var(--gradient-brand);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--ink-3);
  flex-wrap: wrap;
  gap: 16px;
}

/* ===== Mobile ===== */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; color: var(--ink-0); }
  .nav-cta { padding: 8px 16px; font-size: 13px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }
  section { padding: 80px 0; }
  .hero { padding: 30px 20px; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
}

/* ===== Booking page specific ===== */
.booking-shell {
  min-height: 100vh;
  padding: 130px 28px 80px;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(139, 92, 246, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(232, 149, 104, 0.08) 0%, transparent 60%),
    var(--bg-0);
}

.booking-card {
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-glow);
}

.booking-head {
  text-align: center;
  margin-bottom: 32px;
}

.booking-head h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--ink-0);
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.booking-head p {
  color: var(--ink-2);
  font-size: 16px;
}

.steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 36px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: var(--line);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-3);
  transition: all 0.3s;
}

.step.active .step-dot {
  background: var(--gradient-brand);
  border-color: transparent;
  color: white;
  box-shadow: 0 0 0 6px rgba(217, 70, 168, 0.15);
}

.step.done .step-dot {
  background: rgba(243, 185, 109, 0.2);
  border-color: var(--grad-amber);
  color: var(--grad-amber);
}

.step.active { color: var(--ink-0); }
.step.done { color: var(--ink-2); }

.step-pane { display: none; animation: fadeIn 0.4s; }
.step-pane.active { display: block; }

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

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--ink-0);
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(217, 70, 168, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 540px) {
  .field-row { grid-template-columns: 1fr; }
  .booking-card { padding: 28px 22px; }
}

.option-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.option-card {
  padding: 22px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}

.option-card:hover {
  border-color: var(--line-2);
  background: rgba(255,255,255,0.05);
}

.option-card.selected {
  border-color: rgba(217, 70, 168, 0.5);
  background: rgba(217, 70, 168, 0.08);
  box-shadow: 0 8px 24px -10px rgba(217, 70, 168, 0.5);
}

.option-card .opt-icon {
  font-size: 22px;
  margin-bottom: 10px;
}

.option-card h4 {
  color: var(--ink-0);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.option-card p {
  font-size: 12px;
  color: var(--ink-3);
}

.option-card .opt-price {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--grad-amber);
  font-weight: 600;
}

@media (max-width: 540px) {
  .option-cards { grid-template-columns: 1fr; }
}

/* ===== Contact action buttons (privacy-first) ===== */
.contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

@media (max-width: 540px) {
  .contact-actions { grid-template-columns: 1fr; }
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  border: 1px solid transparent;
  text-decoration: none;
  font-family: inherit;
}

.contact-btn-wa {
  background: #25D366;
  color: white;
  box-shadow: 0 12px 30px -10px rgba(37, 211, 102, 0.55);
}

.contact-btn-wa:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -12px rgba(37, 211, 102, 0.7);
}

.contact-btn-call {
  background: var(--gradient-brand);
  color: white;
  box-shadow: 0 12px 30px -10px rgba(217, 70, 168, 0.55);
}

.contact-btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -12px rgba(217, 70, 168, 0.75);
}

.contact-btn-email {
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink-0);
  border: 1px solid var(--line-2);
}

.contact-btn-email:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.contact-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.contact-privacy-note {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 18px;
  line-height: 1.5;
  text-align: center;
}

/* Override emoji socials in footer with actual icon button */
.socials a svg {
  width: 16px;
  height: 16px;
}

/* Time slot picker — 2-column button grid */
.time-slot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.slot-empty {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 13px;
  color: var(--ink-3);
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
}

.slot-btn {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink-1);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.slot-btn:hover {
  border-color: var(--line-2);
  background: rgba(255, 255, 255, 0.06);
}

.slot-btn.selected {
  border-color: rgba(217, 70, 168, 0.55);
  background: rgba(217, 70, 168, 0.12);
  color: var(--ink-0);
  box-shadow: 0 8px 24px -10px rgba(217, 70, 168, 0.5);
}

.slot-btn-label {
  display: block;
  font-size: 11px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 6px;
  font-weight: 600;
}

.slot-btn.selected .slot-btn-label { color: var(--grad-amber); }

.summary-box {
  padding: 22px;
  background: rgba(217, 70, 168, 0.06);
  border: 1px solid rgba(217, 70, 168, 0.25);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.summary-box h4 {
  color: var(--ink-0);
  font-size: 14px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  color: var(--ink-1);
  border-bottom: 1px dashed var(--line);
}

.summary-row:last-child {
  border: none;
  padding-top: 14px;
  margin-top: 6px;
  border-top: 1px solid var(--line-2);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink-0);
}

.summary-row strong {
  color: var(--grad-amber);
}

.step-actions {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 28px;
}

.step-actions .btn {
  padding: 14px 26px;
  font-size: 14px;
}

.success-pane {
  text-align: center;
  padding: 30px 0;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 20px;
  box-shadow: 0 20px 50px -15px rgba(217, 70, 168, 0.6);
  animation: pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes pop {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

.success-pane h3 {
  font-size: 26px;
  color: var(--ink-0);
  margin-bottom: 12px;
  font-weight: 800;
}

.success-pane p {
  color: var(--ink-2);
  margin-bottom: 24px;
  font-size: 15px;
}

/* ===== Page header (sub pages) ===== */
.page-header {
  padding: 160px 28px 80px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(139, 92, 246, 0.18) 0%, transparent 60%),
    var(--bg-0);
}

.page-header h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--ink-0);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.page-header h1 .accent {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-header p {
  color: var(--ink-2);
  font-size: 17px;
  max-width: 620px;
  margin: 0 auto;
}

/* ===== Compliance / list page ===== */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}

@media (max-width: 760px) {
  .info-grid { grid-template-columns: 1fr; }
}

.info-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.info-card h3 {
  color: var(--ink-0);
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 700;
}

.info-card p {
  color: var(--ink-2);
  font-size: 15px;
  margin-bottom: 12px;
}

.info-card ul {
  margin-left: 20px;
  color: var(--ink-2);
  font-size: 15px;
}

.info-card ul li { margin-bottom: 6px; }

/* ===== Contact page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 20px;
}

@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info-block {
  padding: 16px 0;
}

.contact-info-block h3 {
  font-size: 14px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  font-weight: 700;
}

.contact-info-block p, .contact-info-block a {
  font-size: 17px;
  color: var(--ink-0);
  font-weight: 500;
}

.contact-info-block a:hover {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
