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

:root {
  /* Brand hues */
  --cyan:    #00AEEF;
  --purple:  #a855f7;
  --orange:  #F7941D;
  --red:     #ED1C24;

  /* Base */
  --bg:      #0a0e1a;
  --text:    #e8eaf6;
  --muted:   rgba(232,234,246,0.45);
  --hint:    rgba(232,234,246,0.28);

  /* Neutral surfaces (translucent over the dark base) */
  --surface-1:     rgba(255,255,255,0.03);
  --surface-2:     rgba(255,255,255,0.05);
  --surface-3:     rgba(255,255,255,0.06);
  --surface-hover: rgba(255,255,255,0.08);
  --surface:       var(--surface-1);

  /* Borders */
  --border:        rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.12);
  --border-hover:  rgba(255,255,255,0.15);

  /* Glass panels (frosted navy) */
  --glass:        rgba(10,14,26,0.65);
  --glass-strong: rgba(10,14,26,0.85);
  --glass-solid:  rgba(10,14,26,0.96);
  --popover:      rgba(15,22,41,0.95);
  --select-bg:    #0a0e1a;

  /* Status */
  --success:    #22c55e;
  --success-bg: rgba(34,197,94,0.12);
  --danger:     #ff6b6b;

  /* Elevation + form chrome */
  --shadow-card: none;
  --input-scheme: dark;
}

/* ─────────────────────────────────────────────────────────────
   LIGHT THEME — professional, corporate, clean
   ───────────────────────────────────────────────────────────── */
[data-theme="light"] {
  /* Brand hues nudged deeper for legible text/links on white */
  --cyan:    #0089b8;
  --purple:  #7c3aed;
  --orange:  #c2710a;
  --red:     #dc2626;

  --bg:      #eef1f7;
  --text:    #16203a;
  --muted:   rgba(22,32,58,0.62);
  --hint:    rgba(22,32,58,0.45);

  --surface-1:     #ffffff;
  --surface-2:     #f1f4f9;
  --surface-3:     #eaeff6;
  --surface-hover: #e3e9f3;
  --surface:       var(--surface-1);

  --border:        rgba(20,32,60,0.10);
  --border-strong: rgba(20,32,60,0.14);
  --border-hover:  rgba(20,32,60,0.22);

  --glass:        rgba(255,255,255,0.78);
  --glass-strong: rgba(255,255,255,0.88);
  --glass-solid:  rgba(248,250,253,0.97);
  --popover:      rgba(255,255,255,0.96);
  --select-bg:    #ffffff;

  --success:    #15803d;
  --success-bg: rgba(21,128,61,0.10);
  --danger:     #dc2626;

  --shadow-card: 0 1px 2px rgba(20,32,60,0.04), 0 8px 24px rgba(20,32,60,0.06);
  --shadow-hover: 8px 16px 40px rgba(20,32,60,0.14);
  --input-scheme: light;
  --orb-opacity: 0.06;
}

/* Light-mode panel elevation — give cards a crisp corporate lift */
[data-theme="light"] .card,
[data-theme="light"] .why-card,
[data-theme="light"] .value-card,
[data-theme="light"] .apart-item,
[data-theme="light"] .service-block-card,
[data-theme="light"] .contact-detail-card,
[data-theme="light"] .stats-strip,
[data-theme="light"] .location-stats,
[data-theme="light"] .location-result {
  box-shadow: var(--shadow-card);
}

[data-theme="light"] .card:hover,
[data-theme="light"] .value-card:hover,
[data-theme="light"] .apart-item:hover {
  box-shadow: var(--shadow-hover);
}

html, body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  scroll-behavior: smooth;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* ── THEME TOGGLE ── */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.theme-toggle:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-1px);
}

.theme-toggle i { line-height: 1; }

.theme-toggle-floating {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 60;
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Show the right glyph for the current theme (sun shown in dark = "switch to light") */
.theme-toggle .ti-moon { display: none; }
.theme-toggle .ti-sun  { display: inline-flex; }
[data-theme="light"] .theme-toggle .ti-sun  { display: none; }
[data-theme="light"] .theme-toggle .ti-moon { display: inline-flex; }

/* ── NAV ── */
.ef-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 72px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: var(--glass);
}

.nav-logo {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cyan);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-cta {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border: none;
  border-radius: 10px;
  padding: 10px 22px;
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.01em;
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
}

/* ── FOOTER ── */
.ef-footer {
  border-top: 1px solid var(--border);
  padding: 48px 72px 24px;
  position: relative;
  z-index: 5;
}

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

.footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 260px;
  margin-top: 8px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hint);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 13.5px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--cyan); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 12px;
  color: var(--hint);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 16px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.social-btn:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

/* ── ORBS ── */
.orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: var(--orb-opacity, 0.15);
}
.orb1 { width: 600px; height: 600px; background: var(--cyan);   top: -150px; left: -120px; }
.orb2 { width: 500px; height: 500px; background: var(--purple); top:   40px; right: -100px; }
.orb3 { width: 360px; height: 360px; background: var(--orange); top:  380px; left: 42%; }
.orb4 { width: 300px; height: 300px; background: var(--purple); bottom: 100px; left: 10%; }

/* ── HERO ── */
.hero {
  position: relative;
  z-index: 5;
  padding: 100px 72px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,174,239,0.08);
  border: 1px solid rgba(0,174,239,0.22);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12.5px;
  color: var(--cyan);
  font-weight: 500;
  margin-bottom: 28px;
}

.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.8); }
}

h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
  max-width: 800px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 45%, var(--orange) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  margin-bottom: 72px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border: none;
  border-radius: 12px;
  padding: 14px 32px;
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s, transform 0.2s;
  text-decoration: none;
}

.btn-primary:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-rainbow {
  background: transparent;
  border: 2px solid transparent;
  background-clip: padding-box;
  border-radius: 12px;
  padding: 14px 32px;
  color: var(--text);
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.btn-rainbow::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(135deg, var(--cyan), var(--purple), var(--orange));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: opacity 0.3s ease;
}

.btn-rainbow::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan), var(--purple), var(--orange));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn-rainbow:hover::after {
  opacity: 1;
}

.btn-rainbow:hover {
  color: #fff;
}


.btn-secondary {
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 14px 32px;
  color: var(--text);
  font-size: 14.5px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.btn-secondary:hover {
  background: var(--surface-3);
  border-color: var(--border-hover);
  color: var(--cyan);
  transform: translateY(-1px);
}

.btn-secondary:active {
  transform: translateY(0);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 12.5px;
  border-radius: 8px;
  gap: 6px;
}

/* ── STATS ── */
.stats-strip {
  display: flex;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.stat-item {
  padding: 28px 48px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 11px;
  color: var(--hint);
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── TRACK ── */
.track-section {
  position: relative;
  z-index: 5;
  margin: 0 72px 72px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 52px;
  overflow: hidden;
  scroll-margin-top: 100px;
}

.track-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--orange));
}

.section-eyebrow {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.eyebrow-cyan   { color: var(--cyan); }
.eyebrow-purple { color: var(--purple); }
.eyebrow-orange { color: var(--orange); }

.track-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 6px;
}

.track-sub {
  font-size: 14px;
  color: var(--hint);
  margin-bottom: 30px;
}

.track-row {
  display: flex;
  gap: 12px;
}

.track-input {
  flex: 1;
  background: var(--surface-3);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 15px 20px;
  color: var(--text);
  font-size: 14.5px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.track-input:focus { border-color: var(--cyan); }
.track-input::placeholder { color: var(--hint); }

.track-btn {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border: none;
  border-radius: 12px;
  padding: 15px 32px;
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── SECTIONS ── */
.ef-section {
  position: relative;
  z-index: 5;
  padding: 0 72px 80px;
}

.section-header { margin-bottom: 44px; }

.section-title {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-top: 8px;
}

/* ── CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  border-color: var(--border-hover);
}

.card-top-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
}

.bar-cyan   { background: linear-gradient(90deg, var(--cyan), var(--purple)); }
.bar-purple { background: linear-gradient(90deg, var(--purple), var(--orange)); }
.bar-orange { background: linear-gradient(90deg, var(--orange), var(--red)); }

.card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.icon-cyan   { background: rgba(0,174,239,0.12);  color: var(--cyan); }
.icon-purple { background: rgba(168,85,247,0.12); color: var(--purple); }
.icon-orange { background: rgba(247,148,29,0.12); color: var(--orange); }

.card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.card-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s;
}

.card-link:hover { gap: 10px; }
.link-cyan   { color: var(--cyan); }
.link-purple { color: var(--purple); }
.link-orange { color: var(--orange); }

/* ── WHY GRID ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

.why-icon {
  font-size: 28px;
  margin-bottom: 14px;
  color: var(--cyan);
}

.why-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.why-desc {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── CTA BAND ── */
.cta-band {
  position: relative;
  z-index: 5;
  margin: 0 72px 72px;
  border-radius: 24px;
  overflow: hidden;
  padding: 60px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: linear-gradient(135deg,
    rgba(0,174,239,0.12),
    rgba(168,85,247,0.12),
    rgba(247,148,29,0.08));
  border: 1px solid var(--border-strong);
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--orange));
}

.cta-text h2 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 8px;
}

.cta-text p {
  font-size: 15px;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.65;
}

.cta-btn {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border: none;
  border-radius: 12px;
  padding: 16px 36px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}

/* ── PAGE HERO ── */
.page-hero {
  position: relative;
  z-index: 5;
  padding: 100px 72px 80px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.page-hero-inner {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hero-inner h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  max-width: 900px;
  white-space: nowrap;
}

.page-hero-inner .hero-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 0;
}

/* ── SERVICE BLOCKS ── */
.service-block {
  position: relative;
  z-index: 5;
  padding: 0 72px 100px;
}

.service-block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.service-block.alt .service-block-inner {
  direction: rtl;
}

.service-block.alt .service-block-inner > * {
  direction: ltr;
}

.service-block-text {
  display: flex;
  flex-direction: column;
}

.service-title {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 10px 0 16px;
  line-height: 1.2;
}

.service-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--muted);
}

.service-features li i {
  color: var(--cyan);
  font-size: 17px;
  flex-shrink: 0;
}

/* ── SERVICE CARD ── */
.service-block-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 44px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 36px;
  min-height: unset;
}

.service-card-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
}

.service-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.service-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-stat-num {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.service-stat-label {
  font-size: 11px;
  color: var(--hint);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 500;
}

/* ── PROCESS FLOW ── */
.process-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.process-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.process-line {
  position: absolute;
  top: 30px;
  left: 50%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--border), var(--cyan), var(--border));
  z-index: 1;
}

.process-line.hide { display: none; }

.process-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--hint);
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.process-step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.process-step-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── STATS STRIP ── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 11px;
  color: var(--hint);
  font-weight: 500;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── PROCESS STEP HOVER ── */
.process-step {
  transition: transform 0.3s ease;
  cursor: default;
}

.process-step:hover {
  transform: translateY(-6px);
}

.process-step:hover .process-icon {
  box-shadow: 0 0 24px rgba(0,174,239,0.25);
  transition: box-shadow 0.3s ease;
}

.process-step:hover .process-step-title {
  color: var(--cyan);
  transition: color 0.3s ease;
}

.process-icon {
  transition: box-shadow 0.3s ease;
}

.process-step-title {
  transition: color 0.3s ease;
}

/* ── SERVICE CARD TILT HOVER ── */
.service-block-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.service-block-card:hover {
  transform: perspective(800px) rotateY(-4deg) rotateX(2deg) translateY(-6px);
  box-shadow: var(--shadow-hover, 8px 16px 40px rgba(0, 0, 0, 0.4));
  border-color: var(--border-hover);
}

.service-block.alt .service-block-card:hover {
  transform: perspective(800px) rotateY(4deg) rotateX(2deg) translateY(-6px);
}

/* ── CONTACT ── */
.contact-section {
  position: relative;
  z-index: 5;
  padding: 0 72px 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form-wrap {
  display: flex;
  flex-direction: column;
}

.contact-form-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 10px 0 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group textarea {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--hint);
}

.contact-submit {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border: none;
  border-radius: 10px;
  padding: 14px 32px;
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  transition: opacity 0.2s;
}

.contact-submit:hover { opacity: 0.9; }

/* ── CONTACT DETAILS CARD ── */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-detail-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
}

.contact-divider {
  height: 1px;
  background: var(--border);
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hint);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

.contact-detail-value a {
  color: var(--cyan);
  text-decoration: none;
  transition: opacity 0.2s;
}

.contact-detail-value a:hover { opacity: 0.8; }

/* ── MAP ── */
.contact-map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

/* ── ABOUT ── */
.about-section {
  position: relative;
  z-index: 5;
  padding: 0 72px 80px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-title {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 10px 0 28px;
  line-height: 1.2;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.value-card:hover {
  transform: perspective(800px) rotateY(-4deg) rotateX(2deg) translateY(-6px);
  box-shadow: var(--shadow-hover, 8px 16px 40px rgba(0, 0, 0, 0.4));
  border-color: var(--border-hover);
}

.value-card-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
}

.value-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}

.value-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.value-desc {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── WHAT SETS US APART ── */
.apart-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.apart-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.apart-item:hover {
  transform: perspective(800px) rotateY(-4deg) rotateX(2deg) translateY(-6px);
  box-shadow: var(--shadow-hover, 8px 16px 40px rgba(0, 0, 0, 0.4));
  border-color: var(--border-hover);
}

.apart-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.apart-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.apart-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── 404 ── */
.error-section {
  position: relative;
  z-index: 5;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 72px;
}

.error-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 560px;
}

.error-code {
  font-size: 120px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
}

.error-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
}

.error-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

.error-btns {
  display: flex;
  gap: 14px;
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: var(--popover);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card, 0 8px 32px rgba(0,0,0,0.4));
  width: 90%;
  max-width: 780px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cookie-banner.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  pointer-events: none;
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.cookie-content i {
  font-size: 20px;
  color: var(--cyan);
  flex-shrink: 0;
}

.cookie-content p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.cookie-content a {
  color: var(--cyan);
  text-decoration: none;
}

.cookie-content a:hover {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-accept {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border: none;
  border-radius: 8px;
  padding: 8px 20px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.cookie-decline {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
}

.cookie-decline:hover {
  border-color: var(--border-hover);
  color: var(--text);
}


/* ── PRIVACY POLICY ── */
.privacy-section {
  position: relative;
  z-index: 5;
  padding: 0 72px 80px;
}

.privacy-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.privacy-block h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.privacy-block p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.privacy-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0;
  padding-left: 16px;
}

.privacy-block ul li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  position: relative;
}

.privacy-block ul li::before {
  content: '—';
  color: var(--cyan);
  position: absolute;
  left: -16px;
}

.privacy-block a {
  color: var(--cyan);
  text-decoration: none;
  transition: opacity 0.2s;
}

.privacy-block a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 998;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface-hover);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  pointer-events: none;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.scroll-top:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

/* ── FIND LOCATION ── */
.location-section {
  position: relative;
  z-index: 5;
  padding: 0 72px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.location-search-wrap {
  width: 100%;
  max-width: 680px;
}

.location-form {
  width: 100%;
}

.location-input-row {
  display: flex;
  gap: 12px;
}

.location-input {
  flex: 1;
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.location-input:focus { border-color: var(--cyan); }
.location-input::placeholder { color: var(--hint); }

.location-btn {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

/* ── RESULT CARD ── */
.location-result {
  width: 100%;
  max-width: 680px;
  border-radius: 20px;
  padding: 36px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  border: 1px solid var(--border);
}

.location-result.available {
  background: rgba(0,174,239,0.05);
  border-color: rgba(0,174,239,0.2);
}

.location-result.unavailable {
  background: rgba(237,28,36,0.05);
  border-color: rgba(237,28,36,0.2);
}

.result-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.icon-red {
  background: rgba(237,28,36,0.12);
  color: var(--red);
}

.result-content {
  flex: 1;
}

.result-status {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.available-text { color: var(--cyan); }
.unavailable-text { color: var(--red); }

.result-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.result-detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.result-detail-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hint);
}

.result-detail-value {
  font-size: 14.5px;
  color: var(--text);
  font-weight: 500;
}

.type-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}

.badge-oda {
  background: rgba(168,85,247,0.15);
  color: var(--purple);
  border: 1px solid rgba(168,85,247,0.3);
}

.badge-nonoda {
  background: rgba(0,174,239,0.15);
  color: var(--cyan);
  border: 1px solid rgba(0,174,239,0.3);
}

.result-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.result-unavailable-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.result-unavailable-desc strong {
  color: var(--text);
}

/* ── LOCATION STATS ── */
.location-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
  max-width: 680px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 48px;
  backdrop-filter: blur(12px);
}

.location-stat-item {
  text-align: center;
}

.location-stat-num {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.location-stat-label {
  font-size: 11px;
  color: var(--hint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.location-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── BTN RAINBOW ANIMATED BORDER ── */
@keyframes borderRotate {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.btn-rainbow::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(270deg, #00AEEF, #a855f7, #F7941D, #ED1C24, #00AEEF);
  background-size: 300% 300%;
  animation: borderRotate 3s ease infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* ── SCROLL REVEAL & TRANSITIONS ── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-stagger.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  z-index: 90;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

/* Hamburger active animation */
.nav-hamburger {
  transition: transform 0.3s ease, color 0.2s ease;
}
.nav-hamburger.active {
  transform: rotate(90deg) scale(1.1);
  color: var(--cyan);
}

/* Transitions and hover effects for interactive elements */
.nav-cta {
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.nav-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.1);
  box-shadow: 0 4px 12px rgba(0, 174, 239, 0.3);
}
.nav-cta:active {
  transform: translateY(1px);
}

.cookie-accept, .cookie-decline {
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.cookie-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 174, 239, 0.2);
}
.cookie-decline:hover {
  transform: translateY(-1px);
  background-color: rgba(255, 255, 255, 0.1);
}
.cookie-accept:active, .cookie-decline:active {
  transform: translateY(0);
}

.cta-btn, .btn-primary, .btn-secondary, .track-btn, .contact-submit {
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.cta-btn:hover, .btn-primary:hover, .track-btn:hover, .contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  filter: brightness(1.05);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  background: var(--border);
}
.cta-btn:active, .btn-primary:active, .track-btn:active, .btn-secondary:active, .contact-submit:active {
  transform: translateY(0);
}

/* Spin animation for loaders */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.animate-spin {
  animation: spin 1s linear infinite;
  display: inline-block;
}

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