:root {
  --bg-primary: #0a0e17;
  --bg-secondary: #111827;
  --bg-card: #1a2234;
  --fg-primary: #f0f4f8;
  --fg-secondary: #94a3b8;
  --fg-muted: #64748b;
  --accent: #22d3ee;
  --accent-glow: rgba(34, 211, 238, 0.15);
  --accent-dark: #0891b2;
  --highlight: #38bdf8;
  --border: rgba(148, 163, 184, 0.1);
  --radius: 12px;
  --max-width: 1100px;
}

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

body {
  background: var(--bg-primary);
  color: var(--fg-primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.1;
}

.highlight {
  color: var(--accent);
}

/* HERO */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 60px;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(34, 211, 238, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(56, 189, 248, 0.04) 0%, transparent 40%);
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: var(--max-width);
  width: 100%;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 32px;
  background: var(--accent-glow);
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.lede {
  font-size: 1.2rem;
  color: var(--fg-secondary);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 32px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 600px;
  margin: 0 auto;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* SERVICES */
.services {
  padding: 100px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.services-header {
  margin-bottom: 60px;
}

.services-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.section-sub {
  color: var(--fg-secondary);
  font-size: 1.1rem;
  max-width: 480px;
}

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

.service-card {
  padding: 36px 32px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  border-color: rgba(34, 211, 238, 0.3);
  transform: translateY(-2px);
}

.service-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--accent-glow);
  color: var(--accent);
  font-size: 16px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.service-card p {
  color: var(--fg-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* WHY SECTION */
.why {
  padding: 100px 24px;
  background: var(--bg-secondary);
}

.why-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.why-text > p {
  color: var(--fg-secondary);
  font-size: 1rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

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

.why-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--fg-primary);
}

.point-marker {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

.why-visual {
  display: flex;
  justify-content: center;
}

.before-after {
  display: flex;
  gap: 4px;
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 16/10;
}

.ba-side {
  flex: 1;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.ba-label {
  position: relative;
  z-index: 1;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: white;
  background: rgba(0,0,0,0.5);
  padding: 4px 10px;
  border-radius: 4px;
}

.ba-texture {
  position: absolute;
  inset: 0;
}

.ba-texture.dirty {
  background:
    repeating-linear-gradient(90deg, rgba(100,80,60,0.3) 0px, rgba(80,70,50,0.2) 2px, transparent 4px),
    repeating-linear-gradient(0deg, rgba(90,75,55,0.2) 0px, transparent 3px),
    linear-gradient(135deg, #4a3f35 0%, #3d3429 40%, #544838 100%);
}

.ba-texture.clean {
  background:
    repeating-linear-gradient(90deg, rgba(200,210,220,0.1) 0px, transparent 2px),
    linear-gradient(135deg, #8b9aab 0%, #a0b0c0 40%, #b8c8d4 100%);
}

/* CLOSING */
.closing {
  padding: 120px 24px;
  text-align: center;
}

.closing-content {
  max-width: 640px;
  margin: 0 auto;
}

.closing h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.closing-text {
  color: var(--fg-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* FOOTER */
.site-footer {
  padding: 48px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg-primary);
  flex-shrink: 0;
}

.footer-links {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 6px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--fg-secondary);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.footer-location {
  color: var(--fg-muted);
  font-size: 0.8rem;
}

.footer-email {
  color: var(--accent);
  font-size: 0.85rem;
  text-decoration: none;
}

/* =====================
   NAVIGATION
   ===================== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 23, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--fg-primary);
  text-decoration: none;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.875rem;
  color: var(--fg-secondary);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: var(--fg-primary);
  background: rgba(255,255,255,0.04);
}

.nav-cta a {
  background: var(--accent) !important;
  color: #0a0e17 !important;
  font-weight: 600 !important;
  padding: 7px 16px !important;
  border-radius: 8px !important;
}

.nav-cta a:hover {
  background: var(--highlight) !important;
  color: #0a0e17 !important;
}

/* Hamburger — hidden on desktop */
.nav-checkbox { display: none; }
.nav-burger { display: none; }

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #0a0e17;
}

.btn-primary:hover {
  background: var(--highlight);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(34, 211, 238, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--fg-secondary);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  color: var(--fg-primary);
  border-color: rgba(148, 163, 184, 0.3);
  background: rgba(255,255,255,0.03);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(34, 211, 238, 0.3);
}

.btn-outline:hover {
  background: var(--accent-glow);
  border-color: var(--accent);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

/* HERO ACTIONS */
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

/* SERVICE CARDS — linked */
.service-card-link {
  text-decoration: none;
  display: block;
  cursor: pointer;
  color: inherit;
}

.service-link-arrow {
  display: inline-block;
  margin-top: 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.5px;
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.service-card-link:hover .service-link-arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* =====================
   PRICING SECTION
   ===================== */
.pricing {
  padding: 100px 24px;
  background: var(--bg-primary);
}

.pricing-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.pricing-header {
  margin-bottom: 60px;
}

.pricing-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.pricing-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.pricing-card:hover {
  border-color: rgba(34, 211, 238, 0.25);
  transform: translateY(-2px);
}

.pricing-card-featured {
  border-color: rgba(34, 211, 238, 0.35);
  background: var(--bg-card);
}

.pricing-badge-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0a0e17;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-service {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--fg-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-from {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-bottom: -8px;
}

.pricing-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -1px;
  line-height: 1;
}

.pricing-list {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-list li {
  font-size: 0.85rem;
  color: var(--fg-secondary);
  padding-left: 14px;
  position: relative;
}

.pricing-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--fg-muted);
}

.pricing-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* =====================
   SERVICE AREA
   ===================== */
.service-area {
  padding: 100px 24px;
  background: var(--bg-secondary);
}

.service-area-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-area-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.service-area-text > p {
  color: var(--fg-secondary);
  font-size: 1rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.area-list {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
}

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

.area-col li {
  font-size: 0.9rem;
  color: var(--fg-secondary);
  padding-left: 14px;
  position: relative;
}

.area-col li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

.map-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.map-bg {
  width: 100%;
  padding: 24px;
  background: linear-gradient(135deg, #0d1524 0%, #111827 100%);
}

.map-bg svg {
  width: 100%;
  height: auto;
  display: block;
}

.map-caption {
  padding: 16px 24px;
  font-size: 0.8rem;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
  text-align: center;
}

/* =====================
   BOOKING PAGE
   ===================== */
.booking-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px 100px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}

.booking-header {
  margin-bottom: 40px;
}

.booking-header h1 {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  letter-spacing: -1.5px;
  margin: 16px 0 12px;
}

.lede-sm {
  font-size: 1.05rem;
  color: var(--fg-secondary);
  max-width: 480px;
  line-height: 1.7;
}

.booking-container {
  grid-column: 1;
}

.booking-sidebar {
  grid-column: 2;
  grid-row: 1 / 4;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 88px;
}

.sidebar-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.sidebar-card h3 {
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

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

.sidebar-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--fg-secondary);
}

.sidebar-contact p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.sidebar-email {
  color: var(--accent);
  font-size: 0.9rem;
  text-decoration: none;
  word-break: break-all;
}

.sidebar-areas p {
  font-size: 0.85rem;
  color: var(--fg-secondary);
  line-height: 1.6;
}

/* Form */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg-secondary);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg-primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  padding: 12px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(34, 211, 238, 0.5);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.08);
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--bg-secondary);
  color: var(--fg-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.form-error-banner {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.booking-success {
  text-align: center;
  padding: 60px 40px;
  background: var(--bg-secondary);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: var(--radius);
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 1px solid rgba(34, 211, 238, 0.3);
  color: var(--accent);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.booking-success h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.booking-success p {
  color: var(--fg-secondary);
  margin-bottom: 32px;
}

/* =====================
   SERVICE DETAIL PAGE
   ===================== */
.service-detail-main {
  min-height: 80vh;
}

.service-hero {
  padding: 80px 24px 60px;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.service-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.breadcrumb {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--border); }

.service-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  letter-spacing: -1.5px;
  margin-bottom: 12px;
}

.service-tagline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.service-desc {
  color: var(--fg-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 40px;
}

.service-hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-starting {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  color: var(--fg-muted);
  font-weight: 500;
}

.service-body {
  padding: 80px 24px;
  background: var(--bg-secondary);
}

.service-body-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.service-pricing-block h2,
.service-points-block h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.price-table tr {
  border-bottom: 1px solid var(--border);
}

.price-table tr:last-child { border-bottom: none; }

.price-label {
  padding: 14px 0;
  font-size: 0.9rem;
  color: var(--fg-secondary);
}

.price-val {
  padding: 14px 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent);
  text-align: right;
}

.price-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.service-detail-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.service-detail-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--fg-secondary);
  line-height: 1.5;
}

.other-services {
  padding: 60px 24px;
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
}

.other-services-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.other-services h3 {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.other-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.other-link {
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg-secondary);
  text-decoration: none;
  transition: all 0.2s ease;
}

.other-link:hover {
  color: var(--fg-primary);
  border-color: rgba(148, 163, 184, 0.3);
  background: rgba(255,255,255,0.03);
}

.other-link-active {
  color: var(--accent) !important;
  border-color: rgba(34, 211, 238, 0.3) !important;
  background: var(--accent-glow) !important;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    padding: 60px 20px 40px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

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

  .why-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-visual {
    order: -1;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-right {
    align-items: center;
  }

  /* Nav mobile */
  .nav-burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    margin-left: auto;
    padding: 8px;
    z-index: 101;
  }

  .nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg-secondary);
    border-radius: 2px;
    transition: all 0.25s ease;
  }

  .nav-checkbox:checked ~ .nav-burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-checkbox:checked ~ .nav-burger span:nth-child(2) {
    opacity: 0;
  }

  .nav-checkbox:checked ~ .nav-burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(10, 14, 23, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    display: none;
  }

  .nav-checkbox:checked ~ .nav-links {
    display: flex;
  }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 1rem;
  }

  .nav-cta { margin-top: 8px; }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  /* Service area */
  .service-area-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .area-list {
    flex-wrap: wrap;
    gap: 16px;
  }

  /* Booking */
  .booking-main {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px 60px;
  }

  .booking-sidebar {
    grid-column: 1;
    grid-row: auto;
    position: static;
  }

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

  /* Service detail */
  .service-body-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

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