/* ─── DESIGN TOKENS ──────────────────────────────────────────────────────── */
:root {
  --bg-deep:      #0A0B0D;
  --bg-mid:       #111318;
  --text-primary: #F0F2F5;
  --text-muted:   #6B7280;
  --accent:       #1C6EF2;
  --accent-warm:  #E8A020;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── RESET & BASE ───────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

body {
  background: #f7f7f7;
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow: hidden; /* LOADING GATE — JS removes this after preload */
}

/* ─── LOADING OVERLAY ────────────────────────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.9s var(--ease-expo), visibility 0.9s;
}

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

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: min(320px, 80vw);
}

.loader-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.loader-bar-track {
  width: 100%;
  height: 1px;
  background: rgba(240, 242, 245, 0.08);
  position: relative;
  overflow: hidden;
}

.loader-bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: width 0.15s linear;
  box-shadow: 0 0 8px rgba(28, 110, 242, 0.6);
}

.loader-percent {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  align-self: flex-end;
}

/* ─── CANVAS ─────────────────────────────────────────────────────────────── */
#canvas-container {
  position: fixed;
  inset: 0;
  z-index: 0;
}

#canvas-container canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 60px 0 0 72px;
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 700px;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(72px, 10vw, 140px);
  line-height: 0.9;
  letter-spacing: normal;
  color: #1a1a1a;
  mix-blend-mode: difference;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
}

.hero-line {
  display: block;
  width: 100%;
}

.hero-line--plus {
  letter-spacing: normal;
}

.hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(15px, 1.3vw, 20px);
  color: var(--text-muted);
  max-width: 360px;
  line-height: 1.6;
}

.cta-btn {
  pointer-events: all;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  margin-top: 6px;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s var(--ease-expo);
}

.cta-btn:hover {
  background: #1557c8;
  transform: translateX(5px);
}

.cta-btn svg {
  flex-shrink: 0;
  transition: transform 0.2s var(--ease-expo);
}

.cta-btn:hover svg {
  transform: translateX(3px);
}

/* ─── FLIP LINKS ─────────────────────────────────────────────────────────── */
.flip-links {
  position: absolute;
  bottom: 60px;
  left: 72px;
  display: flex;
  flex-direction: column;
  gap: 0;
  pointer-events: all;
}

.flip-link {
  pointer-events: all;
  position: relative;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 56px);
  line-height: 0.82;
  color: #1a1a1a;
  mix-blend-mode: difference;
  text-decoration: none;
  text-transform: uppercase;
}

.flip-link .flip-top,
.flip-link .flip-bottom {
  display: block;
}

.flip-link .flip-bottom {
  position: absolute;
  inset: 0;
}

.flip-link .flip-top span,
.flip-link .flip-bottom span {
  display: inline-block;
  transition: transform 0.25s ease-in-out;
  transition-delay: calc(var(--i, 0) * 0.025s);
}

.flip-link .flip-bottom span {
  transform: translateY(100%);
}

.flip-link:hover .flip-top span {
  transform: translateY(-100%);
}

.flip-link:hover .flip-bottom span {
  transform: translateY(0%);
  color: #1b6ff2;
}

/* ─── SCROLL HINT ────────────────────────────────────────────────────────── */
.scroll-hint {
  position: absolute;
  bottom: 80px;
  right: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: opacity 0.5s ease;
}

.scroll-hint.hidden {
  opacity: 0;
  pointer-events: none;
}

.scroll-hint-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, var(--text-muted));
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(0.7); }
  50%       { opacity: 0.9;  transform: scaleY(1); }
}

.scroll-hint-text {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.35em;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}

/* ─── SCROLL CONTAINER ───────────────────────────────────────────────────── */
.scroll-container {
  height: 400vh;
  position: relative;
  z-index: 1;
  pointer-events: none;
}

/* ─── ABOUT SECTION ──────────────────────────────────────────────────────── */
.about-section {
  position: fixed;
  inset: 0;
  z-index: 15;
  padding: 120px 72px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  background: rgba(8, 9, 11, 0.72);
}

.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 25% 40%, rgba(28, 110, 242, 0.10) 0%, transparent 65%),
    radial-gradient(ellipse 55% 45% at 75% 65%, rgba(232, 160, 32, 0.07) 0%, transparent 65%);
  z-index: 0;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  max-width: 1200px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.about-inner {
  position: relative;
}

.about-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #dd9c28;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.about-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 56px);
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: var(--text-primary);
  margin-bottom: 32px;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 100%;
}

.about-body p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
}

/* ─── TESTIMONIALS (STACKED CARDS) ──────────────────────────────────────── */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateX(325px);
}

.testimonials-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #dd9c28;
  text-transform: uppercase;
}

.testimonial-stack {
  position: relative;
  height: 260px;
}

.tstack-card {
  position: absolute;
  inset: 0 0 auto 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 22px 24px;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease;
  will-change: transform, opacity;
}

.tstack-card:active {
  cursor: grabbing;
}

.tstack-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.tstack-avatar {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  letter-spacing: 0.04em;
}

.tstack-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.tstack-name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-primary);
}

.tstack-role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--accent-warm);
  text-transform: uppercase;
}

.tstack-quote {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(12px, 0.9vw, 14px);
  line-height: 1.75;
  color: rgba(240, 242, 245, 0.82);
  font-style: italic;
  margin-bottom: 16px;
  quotes: none;
}

.tstack-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
  gap: 10px;
}

.tstack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tstack-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tstack-tag--featured {
  background: rgba(221, 156, 40, 0.18);
  color: #dd9c28;
  border-color: rgba(221, 156, 40, 0.30);
}

.tstack-stars {
  font-size: 11px;
  color: var(--accent-warm);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.tstack-pagination {
  display: flex;
  gap: 8px;
  align-items: center;
}

.tstack-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, width 0.3s ease;
}

.tstack-dot.active {
  background: var(--accent);
  width: 20px;
}

/* ─── SERVICES SECTION ───────────────────────────────────────────────────── */
.services-section {
  position: fixed;
  inset: 0;
  z-index: 20;
  background: rgba(8, 9, 11, 0.72);
  padding: 120px 72px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}

.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 25% 40%, rgba(28, 110, 242, 0.10) 0%, transparent 65%),
    radial-gradient(ellipse 55% 45% at 75% 65%, rgba(232, 160, 32, 0.07) 0%, transparent 65%);
  z-index: 0;
}

.services-inner {
  max-width: 1200px;
  position: relative;
  z-index: 1;
}

.services-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #dd9c28;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.services-heading {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 76px);
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: #ffffff;
  margin-bottom: 72px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
}

.service-card {
  background: rgba(240, 242, 245, 0.03);
  border: 1px solid rgba(240, 242, 245, 0.06);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  background: rgba(28, 110, 242, 0.06);
  border-color: rgba(28, 110, 242, 0.2);
}

.service-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #dd9c28;
}

.service-title {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.03em;
  color: var(--text-primary);
}

.service-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
}

/* ─── BOOKING SECTION ────────────────────────────────────────────────────── */
.booking-section {
  position: fixed;
  inset: 0;
  z-index: 21;
  background: rgba(8, 9, 11, 0.72);
  padding: 120px 72px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}

.booking-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 75% 40%, rgba(28, 110, 242, 0.10) 0%, transparent 65%),
    radial-gradient(ellipse 55% 45% at 25% 65%, rgba(232, 160, 32, 0.07) 0%, transparent 65%);
  z-index: 0;
}

.booking-columns {
  display: flex;
  align-items: center;
  gap: 72px;
  width: 100%;
  max-width: 1300px;
  position: relative;
  z-index: 1;
}

.booking-left {
  flex: 1;
  min-width: 0;
}

.booking-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100px);
}

.booking-inner {
  position: relative;
  z-index: 1;
}

.booking-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #dd9c28;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.booking-heading {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 76px);
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: var(--text-primary);
  margin-bottom: 64px;
}

/* ─── FORM LAYOUT ────────────────────────────────────────────────────────── */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

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

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

/* ─── LABELS ─────────────────────────────────────────────────────────────── */
.form-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
}

.form-required {
  color: #dd9c28;
}

/* ─── INPUTS ─────────────────────────────────────────────────────────────── */
.form-input {
  background: rgba(240, 242, 245, 0.04);
  border: 1px solid rgba(240, 242, 245, 0.1);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder {
  color: rgba(107, 114, 128, 0.45);
}

.form-input:focus {
  border-color: var(--accent);
  background: rgba(28, 110, 242, 0.05);
}

.form-input.has-error {
  border-color: #e8503a;
  background: rgba(232, 80, 58, 0.04);
}

/* Date input icon tint */
.form-input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.5) sepia(1) saturate(2) hue-rotate(195deg);
  opacity: 0.6;
  cursor: pointer;
}

/* ─── SELECT WRAPPER ─────────────────────────────────────────────────────── */
.form-select-wrap {
  position: relative;
}

.form-select {
  cursor: pointer;
  padding-right: 40px;
}

.form-select option {
  background: var(--bg-mid);
  color: var(--text-primary);
}

.form-select-chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  transition: color 0.2s ease;
}

.form-select-wrap:focus-within .form-select-chevron {
  color: var(--accent);
}

/* ─── ERROR MESSAGES ─────────────────────────────────────────────────────── */
.form-error {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #e8503a;
  min-height: 14px;
  display: block;
}

/* ─── FORM ACTIONS ───────────────────────────────────────────────────────── */
.form-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.booking-submit {
  pointer-events: all;
}

.form-note {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* ─── SUCCESS MESSAGE ────────────────────────────────────────────────────── */
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  border: 1px solid rgba(28, 110, 242, 0.3);
  background: rgba(28, 110, 242, 0.06);
}

.form-success.visible {
  display: flex;
}

.form-success span {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--text-primary);
}

/* ─── BOOKING FOOTER ─────────────────────────────────────────────────────── */
.booking-footer {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.booking-footer-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking-footer-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #dd9c28;
}

.booking-footer-value {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.booking-footer-link {
  text-decoration: none;
  transition: color 0.2s ease;
}

.booking-footer-link:hover {
  color: #ffffff;
}

/* ─── MAP WIDGET ─────────────────────────────────────────────────────────── */
.map-widget {
  position: relative;
  cursor: pointer;
  user-select: none;
}

.map-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  width: 280px;
  height: 160px;
  transition:
    width  0.55s cubic-bezier(0.16, 1, 0.3, 1),
    height 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.15s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.map-card.expanded {
  width: 360px;
  height: 300px;
}

.map-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Expanded map content */
.map-expanded-content {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease 0.1s;
  pointer-events: none;
}

.map-card.expanded .map-expanded-content {
  opacity: 1;
}

.map-bg {
  position: absolute;
  inset: 0;
  background: rgba(8, 9, 11, 0.55);
}

.map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-svg .mr,
.map-svg .mv {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
}

.map-card.expanded .map-svg .mr1 { stroke-dashoffset: 0; transition: stroke-dashoffset 0.8s ease 0.2s; }
.map-card.expanded .map-svg .mr2 { stroke-dashoffset: 0; transition: stroke-dashoffset 0.8s ease 0.3s; }
.map-card.expanded .map-svg .mv1 { stroke-dashoffset: 0; transition: stroke-dashoffset 0.6s ease 0.4s; }
.map-card.expanded .map-svg .mv2 { stroke-dashoffset: 0; transition: stroke-dashoffset 0.6s ease 0.5s; }

.map-building {
  position: absolute;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.10);
  opacity: 0;
  transform: scale(0.8);
}

.map-card.expanded .map-building:nth-child(1) { opacity: 1; transform: scale(1); transition: opacity 0.4s ease 0.5s, transform 0.4s ease 0.5s; }
.map-card.expanded .map-building:nth-child(2) { opacity: 0.7; transform: scale(1); transition: opacity 0.4s ease 0.6s, transform 0.4s ease 0.6s; }
.map-card.expanded .map-building:nth-child(3) { opacity: 1; transform: scale(1); transition: opacity 0.4s ease 0.7s, transform 0.4s ease 0.7s; }
.map-card.expanded .map-building:nth-child(4) { opacity: 0.6; transform: scale(1); transition: opacity 0.4s ease 0.55s, transform 0.4s ease 0.55s; }
.map-card.expanded .map-building:nth-child(5) { opacity: 0.55; transform: scale(1); transition: opacity 0.4s ease 0.65s, transform 0.4s ease 0.65s; }
.map-card.expanded .map-building:nth-child(6) { opacity: 0.65; transform: scale(1); transition: opacity 0.4s ease 0.75s, transform 0.4s ease 0.75s; }

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 20px)) scale(0);
  filter: drop-shadow(0 0 10px rgba(221, 156, 40, 0.5));
}

.map-card.expanded .map-pin {
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.35s;
}

.map-fade-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,9,11,0.65) 0%, transparent 55%);
  pointer-events: none;
}

.map-grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.map-card.expanded .map-grid-overlay {
  opacity: 0;
}

/* Card content */
.map-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px 20px;
}

.map-top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.map-icon-wrap {
  transition: opacity 0.3s ease;
}

.map-card.expanded .map-icon-wrap {
  opacity: 0;
}

.map-status-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.map-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: #dd9c28;
  box-shadow: 0 0 6px rgba(221, 156, 40, 0.6);
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

.map-status-text {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.map-bottom-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.map-location-name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.01em;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.map-widget:hover .map-location-name {
  transform: translateX(4px);
}

.map-coords {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.25s ease, opacity 0.25s ease;
}

.map-card.expanded .map-coords {
  max-height: 20px;
  opacity: 1;
}

.map-underline {
  height: 1px;
  background: linear-gradient(to right, rgba(221,156,40,0.6), rgba(221,156,40,0.2), transparent);
  transform: scaleX(0.25);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.map-widget:hover .map-underline,
.map-card.expanded .map-underline {
  transform: scaleX(1);
}

.map-click-hint {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero {
    padding: 0 0 56px 32px;
  }

  .scroll-hint {
    right: 32px;
    bottom: 56px;
  }

  .about-section {
    padding: 80px 32px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .services-section {
    padding: 60px 32px;
  }

  .services-heading {
    margin-bottom: 32px;
  }

  .booking-section {
    padding: 60px 32px;
  }

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

@media (max-width: 480px) {
  .hero {
    padding: 0 0 40px 24px;
  }

  .scroll-hint {
    display: none;
  }

  .cta-btn {
    padding: 12px 22px;
    font-size: 12px;
  }

  .about-section {
    padding: 64px 24px;
  }

  .about-layout {
    gap: 36px;
  }

  .services-section {
    padding: 48px 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .booking-section {
    padding: 48px 24px;
  }

  .form-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
