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

:root {
  --bg: #0f0f0f;
  --surface: #191919;
  --line: #252525;
  --muted: #888880;
  --white: #F5F2EC;
  --font: -apple-system, 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--white); font-family: var(--font); -webkit-font-smoothing: antialiased; }

/* NAV */
nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  height: 70px; padding: 0 48px;
}
.nav-links { display: flex; gap: 0; align-items: center; position: relative; z-index: 1;
  flex: 1 1 auto; justify-content: center; gap: 8px; }
.nav-links a {
  font-size: 12px; color: var(--white); text-decoration: none;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0 16px; height: 30px; display: flex; align-items: center;
  margin: 0 2px; font-weight: 400;
  opacity: 0.7; white-space: nowrap;
  transition: opacity 0.2s;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 32px; height: 32px; background: none; border: none; cursor: pointer; z-index: 200; padding: 0; }
.nav-burger span { width: 22px; height: 1.5px; background: var(--white); display: block; transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-right { display: flex; align-items: center; gap: 18px; position: relative; z-index: 200; }

/* HERO */
.hero {
  min-height: 78vh; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 112px 48px 96px;
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 70% 40%, rgba(245,242,236,0.05) 0%, transparent 70%);
  pointer-events: none; z-index: 1;
}
.hero-badge, .hero-title, .hero-bottom { position: relative; z-index: 2; }
.hero-badge {
  font-size: 12px; letter-spacing: 0.25em; color: var(--muted); text-transform: uppercase;
  display: flex; align-items: center; gap: 10px; margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(38px, 6vw, 72px); font-weight: 300;
  letter-spacing: -0.03em; line-height: 1.05;
  max-width: 820px; margin-bottom: 28px;
}
.hero-title strong { font-weight: 600; }
.hero-bottom { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 32px; }
.hero-sub { font-size: 17px; color: var(--muted); max-width: 540px; line-height: 1.8; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-block; background: var(--white); color: var(--bg);
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; padding: 15px 36px; font-weight: 500;
  transition: opacity 0.2s; white-space: nowrap; border: 1px solid var(--white); cursor: pointer; font-family: var(--font);
}
.btn-primary:hover { opacity: 0.85; }
.btn-ghost {
  background: none; border: 1px solid var(--line); color: var(--white);
  padding: 14px 28px; cursor: pointer; font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; font-family: var(--font); text-decoration: none;
  display: inline-block; transition: border-color 0.2s;
}
.btn-ghost:hover { border-color: var(--muted); }

.hero { isolation: isolate; }
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0.6; z-index: -2;
  filter: grayscale(1) contrast(1.05) brightness(1.15);
}
.hero-shade {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(15,15,15,0.1) 0%, rgba(15,15,15,0.35) 55%, rgba(15,15,15,0.85) 100%);
}

/* WHATSAPP FLOAT */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 300;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(0,0,0,0.5); }
.wa-float svg { width: 28px; height: 28px; }

/* SPLIT HERO — pirmas ekranas, 3 lygios dalys */
.split-hero { display: flex; width: 100%; height: 84vh; min-height: 520px; }
.split-panel {
  flex: 1; position: relative; isolation: isolate; display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 40px; text-decoration: none; color: var(--white); overflow: hidden; text-align: left;
  border-right: 1px solid var(--line);
  transition: flex-grow 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease;
}
.split-panel:last-child { border-right: none; }
.split-panel:hover { flex-grow: 1; }
.split-panel::before {
  content: ""; position: absolute; inset: 0; z-index: -3;
  opacity: 0.55; transition: opacity 0.35s ease;
}
.split-panel:hover::before { opacity: 0.8; }
.split-panel.p1::before { background: radial-gradient(ellipse 90% 70% at 30% 20%, #26302c 0%, #0f0f0f 70%); }
.split-panel.p2::before { background: radial-gradient(ellipse 90% 70% at 50% 15%, #2b2620 0%, #0f0f0f 70%); }
.split-panel.p3::before { background: radial-gradient(ellipse 90% 70% at 70% 20%, #202530 0%, #0f0f0f 70%); }
.split-panel-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: -2; opacity: 0.65; transition: opacity 0.35s ease;
  filter: grayscale(1) contrast(1.05) brightness(1.15);
}
.split-panel:hover .split-panel-video { opacity: 0.85; }
.split-panel-shade {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(15,15,15,0.12) 0%, rgba(15,15,15,0.25) 40%, rgba(15,15,15,0.6) 70%, rgba(15,15,15,0.92) 100%);
}
.split-panel-num { position: absolute; top: 96px; left: 56px; font-size: 12px; color: var(--muted); letter-spacing: 0.18em; z-index: 10; }
.split-panel-inner { position: relative; z-index: 10; width: 100%; text-align: left; margin-bottom: 50px; }
.split-panel-label { font-size: 11px; letter-spacing: 0.2em; color: var(--muted); text-transform: uppercase; margin-bottom: 16px; }
.split-panel-title {
  font-size: clamp(20px, 1.9vw, 30px); font-weight: 500; letter-spacing: -0.01em; line-height: 1.2;
  margin-bottom: 14px; max-width: 100%;
  min-height: calc(1.2em * 2); display: flex; align-items: center;
}
.split-panel-desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; max-width: 100%; margin-bottom: 22px; }
.split-panel-cta { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; display: flex; align-items: center; gap: 8px; }
.split-panel-cta .arrow { transition: transform 0.2s ease; }
.split-panel:hover .split-panel-cta .arrow { transform: translateX(6px); }
.split-scroll-hint { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); font-size: 11px; letter-spacing: 0.18em; color: var(--muted); text-transform: uppercase; z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.split-scroll-hint svg { width: 14px; height: 14px; animation: bounce 1.8s infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

@media (max-width: 860px) {
  .split-hero { flex-direction: column; height: auto; min-height: 0; }
  .split-panel { border-right: none; border-bottom: 1px solid var(--line); min-height: 34vh; flex: none; padding: 40px 28px; }
  .split-panel:last-child { border-bottom: none; }
  .split-panel:hover { flex-grow: 0; }
  .split-panel-num { top: auto; bottom: 100%; left: 28px; margin-bottom: 8px; position: relative; top: 0; }
  .split-scroll-hint { display: none; }
}

/* STATS BAR */
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); }
.stat { padding: 32px 48px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat-val { font-size: 28px; font-weight: 300; letter-spacing: -0.02em; display: block; margin-bottom: 6px; }
.stat-label { font-size: 12px; letter-spacing: 0.15em; color: var(--muted); text-transform: uppercase; }

/* SECTION HEADER */
.section-header { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 48px; }
.section-label { font-size: 12px; letter-spacing: 0.25em; color: var(--muted); text-transform: uppercase; display: block; margin-bottom: 16px; }
.section-title { font-size: clamp(26px, 4vw, 40px); font-weight: 300; letter-spacing: -0.01em; margin-bottom: 8px; }

/* CATEGORY / SERVICES GRID */
.services { padding: 88px 48px; border-bottom: 1px solid var(--line); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.service-card { background: var(--bg); padding: 40px 32px; transition: background 0.2s; }
.service-card:hover { background: var(--surface); }
.service-card-num { font-size: 12px; color: var(--muted); letter-spacing: 0.1em; margin-bottom: 22px; display: block; }
.service-card-name { font-size: 19px; font-weight: 500; margin-bottom: 10px; }
.service-card-desc { font-size: 14.5px; color: var(--muted); line-height: 1.7; }

/* CATEGORY CARDS (HUB) */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.cat-card { background: var(--bg); padding: 56px 40px; display: flex; flex-direction: column; text-decoration: none; color: var(--white); transition: background 0.25s; min-height: 340px; }
.cat-card:hover { background: var(--surface); }
.cat-card:hover .cat-arrow { transform: translateX(6px); }
.cat-num { font-size: 12px; color: var(--muted); letter-spacing: 0.15em; margin-bottom: 32px; }
.cat-name { font-size: 26px; font-weight: 500; margin-bottom: 14px; letter-spacing: -0.01em; }
.cat-desc { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: auto; }
.cat-link { display: flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); }
.cat-arrow { transition: transform 0.2s; }

/* HOW */
.how { padding: 88px 48px; border-bottom: 1px solid var(--line); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 44px; }
.step { background: var(--bg); padding: 36px 30px; }
.step-n { font-size: 12px; color: var(--muted); letter-spacing: 0.1em; margin-bottom: 18px; display: block; }
.step-title { font-size: 20px; font-weight: 500; margin-bottom: 12px; }
.step-desc { font-size: 15px; color: var(--muted); line-height: 1.75; }

/* PRICING */
.pricing { padding: 88px 48px; border-bottom: 1px solid var(--line); }
.pricing-table-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 44px; }
.pricing-col { display: flex; flex-direction: column; gap: 6px; padding: 28px 26px; border: 1px solid var(--line); }
.pricing-col-name { font-size: 15px; color: var(--white); font-weight: 500; }
.pricing-col-val { font-size: 24px; font-weight: 500; color: var(--white); margin: 6px 0 4px; }
.pricing-col-note { font-size: 13px; color: var(--muted); line-height: 1.6; }
.pricing-note { font-size: 13px; color: var(--muted); margin-top: 24px; letter-spacing: 0.02em; line-height: 1.7; }

/* TRUST / TIPS */
.trust { padding: 88px 48px; border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 44px; }
.trust-card { background: var(--bg); padding: 32px 30px; }
.trust-title { font-size: 16px; font-weight: 500; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.trust-title .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--white); flex-shrink: 0; }
.trust-desc { font-size: 14.5px; color: var(--muted); line-height: 1.7; padding-left: 16px; }

/* REZERVACIJOS SISTEMA (bk-*) */
#booking-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.88); z-index: 1200; align-items: center; justify-content: center; padding: 24px; }
#booking-modal.open { display: flex; }
.bk-box { background: #1a1a1a; border: 1px solid var(--line); padding: 44px; max-width: 780px; width: 100%; max-height: 92vh; overflow-y: auto; position: relative; }
.bk-box h2 { font-size: 26px; font-weight: 400; margin-bottom: 10px; }
.bk-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin: 34px 0 14px; display: block; }
.bk-label .req { text-transform: none; letter-spacing: 0; color: var(--white); opacity: 0.9; }
.bk-label .opt { text-transform: none; letter-spacing: 0; opacity: 0.65; }

.bk-cal { border: 1px solid var(--line); background: #111; padding: 18px; }
.bk-cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.bk-cal-title { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; }
.bk-nav { background: none; border: 1px solid var(--line); color: var(--white); width: 32px; height: 32px; cursor: pointer; font-size: 15px; line-height: 1; font-family: var(--font); transition: border-color 0.2s, opacity 0.2s; }
.bk-nav:hover:not(:disabled) { border-color: var(--muted); }
.bk-nav:disabled { opacity: 0.2; cursor: not-allowed; }
.bk-dow { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; margin-bottom: 6px; }
.bk-dow span { text-align: center; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); padding: 4px 0; }
.bk-days { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; }
.bk-day { aspect-ratio: 1 / 1; background: #161616; border: 1px solid transparent; color: var(--white); font-family: var(--font); font-size: 13px; cursor: pointer; transition: border-color 0.15s, background 0.15s; }
.bk-day:hover:not(:disabled) { border-color: var(--muted); }
.bk-day:disabled { color: #3a3a3a; background: transparent; cursor: not-allowed; }
.bk-day.empty { background: none; cursor: default; }
.bk-day.sel { background: var(--white); color: var(--bg); border-color: var(--white); }

.bk-times { display: grid; grid-template-columns: repeat(auto-fill, minmax(76px, 1fr)); gap: 6px; }
.bk-time { background: #111; border: 1px solid var(--line); color: var(--white); font-family: var(--font); font-size: 13px; padding: 11px 0; cursor: pointer; transition: border-color 0.15s; }
.bk-time:hover:not(:disabled) { border-color: var(--muted); }
.bk-time:disabled { color: #3a3a3a; cursor: not-allowed; }
.bk-time.sel { background: var(--white); color: var(--bg); border-color: var(--white); }
.bk-times-hint { font-size: 12px; color: var(--muted); margin-top: 12px; line-height: 1.6; }

.bk-choice { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bk-opt { background: #111; border: 1px solid var(--line); padding: 20px 22px; cursor: pointer; transition: border-color 0.2s, background 0.2s; position: relative; display: block; }
.bk-opt:hover { border-color: var(--muted); }
.bk-opt.sel { border-color: var(--white); background: #191919; }
.bk-opt input { position: absolute; opacity: 0; pointer-events: none; }
.bk-opt-name { font-size: 15px; display: block; margin-bottom: 8px; }
.bk-opt-desc { font-size: 12px; color: var(--muted); line-height: 1.6; display: block; }
.bk-opt-price { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); display: block; margin-top: 12px; }
.bk-opt.sel .bk-opt-price { color: var(--white); }

.bk-addon { display: flex; align-items: flex-start; gap: 14px; background: #111; border: 1px solid var(--line); padding: 20px 22px; cursor: pointer; transition: border-color 0.2s, background 0.2s; position: relative; }
.bk-addon:hover { border-color: var(--muted); }
.bk-addon.sel { border-color: var(--white); background: #191919; }
.bk-addon input { position: absolute; opacity: 0; pointer-events: none; }
.bk-check { width: 18px; height: 18px; border: 1px solid var(--muted); flex-shrink: 0; margin-top: 2px; position: relative; transition: background 0.2s, border-color 0.2s; }
.bk-addon.sel .bk-check { background: var(--white); border-color: var(--white); }
.bk-addon.sel .bk-check::after { content: '✓'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--bg); font-size: 12px; }

.bk-item-card { border: 1px solid var(--line); padding: 22px; margin-bottom: 16px; }
.bk-item-head { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; }
.bk-item-num { font-size: 13px; color: var(--muted); letter-spacing: 0.05em; flex-shrink: 0; }
.bk-item-select { flex: 2; min-width: 180px; background: #111; border: 1px solid var(--line); color: var(--white); font-family: var(--font); font-size: 14px; padding: 12px 14px; outline: none; transition: border-color 0.2s; }
.bk-item-select:focus { border-color: var(--muted); }
.bk-item-qty { flex: 0 0 90px; background: #111; border: 1px solid var(--line); color: var(--white); font-family: var(--font); font-size: 14px; padding: 12px 14px; outline: none; transition: border-color 0.2s; text-align: center; }
.bk-item-qty:focus { border-color: var(--muted); }
.bk-item-qty-label { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); flex: 0 0 100%; margin: -12px 0 0; }
.bk-item-remove { background: none; border: 1px solid var(--line); color: var(--muted); width: 34px; height: 34px; flex-shrink: 0; cursor: pointer; font-size: 16px; line-height: 1; transition: border-color 0.2s, color 0.2s; }
.bk-item-remove:hover { border-color: var(--white); color: var(--white); }
.bk-item-price { font-size: 13px; color: var(--muted); margin-top: 4px; }
.bk-item-addons-label { display: block; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.bk-item-addons { display: flex; flex-direction: column; gap: 10px; }
.bk-addon-price-row { display: flex; align-items: center; gap: 10px; margin-top: 12px; }
.bk-old-price { font-size: 15px; color: var(--muted); text-decoration: line-through; text-decoration-thickness: 1.5px; }
.bk-add-item { margin-top: 4px; margin-bottom: 34px; background: none; border: 1px dashed var(--line); color: var(--muted); padding: 10px 18px; cursor: pointer; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; font-family: var(--font); transition: border-color 0.2s, color 0.2s; width: 100%; }
.bk-add-item:hover { border-color: var(--white); color: var(--white); }
.bk-add-item:disabled { opacity: 0.4; cursor: default; }
.bk-elektra-note { font-size: 11px; color: var(--muted); margin-top: 10px; display: none; }
.bk-elektra-note.show { display: block; }

.bk-sqm-row { display: flex; align-items: center; gap: 14px; }
.bk-sqm-input { width: 140px; background: #111; border: 1px solid var(--line); color: var(--white); font-family: var(--font); font-size: 16px; padding: 12px 14px; outline: none; transition: border-color 0.2s; }
.bk-sqm-input:focus { border-color: var(--muted); }
.bk-sqm-suffix { font-size: 13px; color: var(--muted); }

.bk-summary { border: 1px solid var(--line); background: #111; padding: 22px 24px; margin-top: 34px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.bk-summary-text { font-size: 13px; color: var(--muted); line-height: 1.8; }
.bk-summary-text b { color: var(--white); font-weight: 400; }
.bk-summary-price { text-align: right; }
.bk-summary-price .val { font-size: 24px; display: block; white-space: nowrap; }
.bk-summary-price .cap { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); display: block; margin-top: 4px; }
.bk-error { color: #d98b6a; font-size: 13px; margin-top: 16px; display: none; }
.bk-error.show { display: block; }
.bk-success { text-align: center; padding: 30px 0; display: none; }
.bk-success.show { display: block; }
.bk-success .tick { font-size: 40px; display: block; margin-bottom: 18px; }
.bk-success h3 { font-size: 22px; font-weight: 400; margin-bottom: 12px; }
.bk-success p { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 460px; margin: 0 auto 26px; }

@media (max-width: 640px) {
  .bk-box { padding: 32px 20px; }
  .bk-choice { grid-template-columns: 1fr; }
  .bk-times { grid-template-columns: repeat(auto-fill, minmax(66px, 1fr)); }
  .bk-summary { flex-direction: column; align-items: flex-start; }
  .bk-summary-price { text-align: left; }
  .bk-item-select { flex: 1 1 100%; }
}

/* FAQ */
.faq { padding: 88px 48px; border-bottom: 1px solid var(--line); }
.faq-list { margin-top: 44px; max-width: 820px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: none; color: var(--white); font-family: var(--font); font-size: 17px; font-weight: 400; text-align: left; padding: 26px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.faq-q:hover { opacity: 0.75; }
.faq-icon { font-size: 22px; font-weight: 300; flex-shrink: 0; line-height: 1; transition: transform 0.3s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { color: var(--muted); font-size: 14.5px; line-height: 1.8; padding-bottom: 26px; max-width: 700px; }
@media (max-width: 720px) { .faq { padding: 48px 24px; } }

/* CONTACT */
.contact { padding: 80px 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; border-bottom: 1px solid var(--line); }
.contact-title { font-size: clamp(24px, 3vw, 38px); font-weight: 300; letter-spacing: -0.02em; line-height: 1.15; margin-top: 20px; }
.contact-items { margin-top: 44px; display: flex; flex-direction: column; gap: 26px; }
.contact-item-label { font-size: 10px; letter-spacing: 0.15em; color: var(--muted); text-transform: uppercase; margin-bottom: 6px; }
.contact-item-val { font-size: 16px; }
.contact-item-val a { color: var(--white); text-decoration: none; }
.contact-item-val a:hover { text-decoration: underline; }
.contact-right { display: flex; flex-direction: column; justify-content: flex-start; }
.avail { border: 1px solid var(--line); padding: 30px; }
.avail-title { font-size: 10px; letter-spacing: 0.2em; color: var(--muted); text-transform: uppercase; margin-bottom: 22px; }
.avail-row { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.avail-row:last-child { border-bottom: none; }
.avail-day { color: var(--muted); letter-spacing: 0.05em; }
.avail-time { font-weight: 500; }

/* CONTACT FORM MODAL */
.hp-field { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
#contact-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 1100; align-items: center; justify-content: center; padding: 24px; }
#contact-modal.open { display: flex; }
.cf-box { background: #1a1a1a; border: 1px solid var(--line); padding: 44px; max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; }
.cf-box h2 { font-size: 24px; font-weight: 400; margin-bottom: 10px; }
.cf-sub { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 28px; }
.cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-field { display: flex; flex-direction: column; }
.cf-field.full { grid-column: 1 / -1; }
.cf-field label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.cf-field label .opt { text-transform: none; letter-spacing: 0; opacity: 0.65; }
.cf-field label .req { text-transform: none; letter-spacing: 0; color: var(--white); opacity: 0.9; }
.cf-field input, .cf-field textarea, .cf-field select { background: #111; border: 1px solid var(--line); color: var(--white); font-family: var(--font); font-size: 14px; padding: 12px 14px; outline: none; transition: border-color 0.2s; width: 100%; }
.cf-field input:focus, .cf-field textarea:focus, .cf-field select:focus { border-color: var(--muted); }
.cf-field textarea { resize: vertical; min-height: 100px; }
.cf-actions { display: flex; gap: 12px; align-items: center; margin-top: 26px; flex-wrap: wrap; }
.cf-submit { background: var(--white); color: var(--bg); border: none; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; padding: 14px 32px; cursor: pointer; font-weight: 500; transition: opacity 0.2s; font-family: var(--font); }
.cf-submit:hover { opacity: 0.85; }
.cf-cancel { background: none; border: 1px solid var(--line); color: var(--white); padding: 14px 24px; cursor: pointer; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; transition: border-color 0.2s; font-family: var(--font); }
.cf-cancel:hover { border-color: var(--muted); }
.cf-x { position: absolute; top: 18px; right: 20px; background: none; border: none; color: var(--muted); font-size: 24px; line-height: 1; cursor: pointer; padding: 4px; }
.cf-x:hover { color: var(--white); }
.cf-hint { font-size: 12px; color: var(--muted); margin-top: 14px; line-height: 1.5; }
.bk-error { color: #d98b6a; font-size: 13px; margin-top: 14px; display: none; }
.bk-error.show { display: block; }
.bk-success { text-align: center; padding: 26px 0; display: none; }
.bk-success.show { display: block; }
.bk-success .tick { font-size: 38px; display: block; margin-bottom: 16px; }
.bk-success h3 { font-size: 20px; font-weight: 400; margin-bottom: 10px; }
.bk-success p { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 420px; margin: 0 auto 22px; }

/* FOOTER */
footer { padding: 28px 48px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; border-top: 1px solid var(--line); }
.footer-left { display: flex; flex-direction: column; gap: 4px; }
.footer-brand { font-size: 14px; font-weight: 500; color: var(--white); }
.footer-info { font-size: 12px; color: var(--muted); }
.footer-info a { color: var(--muted); text-decoration: none; }
.footer-info a:hover { color: var(--white); }
.footer-right { display: flex; align-items: center; gap: 20px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: var(--muted); text-decoration: none; display: flex; align-items: center; }
.footer-social a:hover { color: var(--white); }
.footer-social a svg { width: 32px; height: 32px; display: block; }

@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-burger { display: flex; }
  .nav-links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 0;
    flex: none; max-width: none; margin: 0; justify-content: flex-start;
    position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
    background: var(--bg); padding: 24px 24px 40px;
    transform: translateX(100%); transition: transform 0.3s ease;
    z-index: 150; overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { height: auto; width: 100%; padding: 16px 4px; margin: 0; font-size: 14px; border-bottom: 1px solid var(--line); opacity: 0.85; }
  .hero { padding: 96px 24px 56px; min-height: auto; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat { padding: 24px 20px; }
  .services, .how, .pricing, .contact, .trust { padding: 56px 24px; }
  .services-grid, .cat-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .pricing-table-cols { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; gap: 44px; }
  .cf-grid { grid-template-columns: 1fr; }
  .cf-box { padding: 30px 22px; }
  footer { padding: 24px; }
  .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .wa-float svg { width: 26px; height: 26px; }
}
