/*
Theme Name:  Fethiye Clean
Theme URI:   https://fethiye-clean.local
Author:      Fethiye Cleaning Co.
Author URI:  https://fethiye-clean.local
Description: Custom theme for Azura Cleaning — multilingual cleaning service website (EN/RU/TR) for Fethiye, Turkey.
Version:     2.5.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License:     GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fethiye-clean
Tags:        cleaning, service, multilingual, business
*/

/* ============================================================
   Azura Cleaning — soft coastal aesthetic
   ============================================================ */

:root {
  /* Neutrals — warm white + light sand/grey */
  --bg:        #f6f8f8;
  --bg-warm:   #faf8f3;
  --bg-aqua:   #eef5f4;
  --sand:      #efe9dd;
  --card:      #ffffff;

  /* Aqua / teal primary family */
  --primary:        oklch(0.72 0.066 192);
  --primary-deep:   oklch(0.62 0.083 196);
  --primary-deeper: oklch(0.54 0.087 198);
  --primary-soft:   oklch(0.93 0.028 188);
  --primary-wash:   oklch(0.96 0.016 188);

  /* Ink */
  --ink:    oklch(0.33 0.022 215);
  --ink-2:  oklch(0.46 0.018 213);
  --muted:  oklch(0.58 0.014 210);
  --line:   oklch(0.92 0.006 210);

  /* Radii */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Soft shadows */
  --sh-sm: 0 2px 10px -4px rgba(40, 70, 75, 0.16);
  --sh-md: 0 14px 36px -18px rgba(40, 80, 85, 0.30);
  --sh-lg: 0 30px 70px -32px rgba(30, 75, 80, 0.40);
  --sh-cta: 0 14px 28px -12px oklch(0.62 0.083 196 / 0.55);

  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --font-head: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 28px;
}

section { position: relative; }

.eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-deep);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  margin-top: 18px;
}
.section-head p {
  margin-top: 18px;
  color: var(--ink-2);
  font-size: 1.08rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 26px;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), background .28s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: var(--primary-deep);
  color: #fff;
  box-shadow: var(--sh-cta);
}
.btn-primary:hover {
  background: var(--primary-deeper);
  transform: translateY(-2px);
  box-shadow: 0 20px 34px -12px oklch(0.62 0.083 196 / 0.6);
}
.btn-ghost {
  background: rgba(255,255,255,0.7);
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn-ghost:hover { background: #fff; transform: translateY(-2px); box-shadow: inset 0 0 0 1.5px var(--primary), var(--sh-sm); }

.btn-soft {
  background: var(--primary-soft);
  color: var(--primary-deeper);
}
.btn-soft:hover { background: oklch(0.90 0.04 188); transform: translateY(-2px); }

.btn-block { width: 100%; }
.btn-lg { padding: 17px 32px; font-size: 1.05rem; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s;
}
.header.scrolled {
  background: rgba(246, 248, 248, 0.82);
  backdrop-filter: blur(16px) saturate(1.3);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -24px rgba(40,80,85,0.5);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 12px;
  background: linear-gradient(150deg, var(--primary) 0%, var(--primary-deep) 100%);
  display: grid; place-items: center;
  box-shadow: var(--sh-cta);
  position: relative;
}
.brand-mark::after {
  content: "";
  position: absolute;
  width: 15px; height: 15px;
  border-radius: 50% 50% 50% 2px;
  background: rgba(255,255,255,0.92);
  transform: rotate(-45deg);
}
.brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.32rem;
  letter-spacing: -0.03em;
}
.brand-name small {
  display: block;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  color: var(--muted);
  margin-top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-inline: auto;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-2);
  padding: 9px 15px;
  border-radius: var(--r-pill);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--primary-deeper); background: var(--primary-wash); }

.nav-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

/* Language switcher */
/* Language dropdown */
.lang-dropdown {
  position: relative;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(6px);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--heading);
  padding: 7px 12px;
  border-radius: var(--r-pill);
  box-shadow: inset 0 0 0 1.5px var(--line);
  cursor: pointer;
  transition: all .22s var(--ease);
}
.lang-toggle:hover {
  box-shadow: inset 0 0 0 1.5px var(--primary), 0 2px 8px rgba(0,0,0,0.06);
}
.lang-flag { font-size: 1.1em; line-height: 1; }
.lang-chevron {
  width: 14px; height: 14px;
  transition: transform .25s var(--ease);
}
.lang-dropdown.open .lang-chevron {
  transform: rotate(180deg);
}
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 150px;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid var(--line);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .2s var(--ease);
  z-index: 1000;
}
.lang-dropdown.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-dropdown--up .lang-menu {
  top: auto;
  bottom: calc(100% + 8px);
  transform: translateY(6px);
}
.lang-dropdown--up.open .lang-menu {
  transform: translateY(0);
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 9px 14px;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--heading);
  cursor: pointer;
  transition: background .15s;
}
.lang-option:hover {
  background: var(--surface);
}
.lang-option.active {
  background: var(--primary-light);
  color: var(--primary-deep);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  border: 0; background: transparent;
  width: 44px; height: 44px;
  border-radius: 12px;
  color: var(--ink);
}
.nav-toggle svg { width: 24px; height: 24px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-top: 40px;
  padding-bottom: 96px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -260px; right: -180px;
  width: 720px; height: 720px;
  background: radial-gradient(circle, oklch(0.83 0.06 188 / 0.55) 0%, transparent 62%);
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -200px; left: -160px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, oklch(0.90 0.03 80 / 0.55) 0%, transparent 64%);
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-copy { max-width: 560px; }
.hero h1 {
  font-size: clamp(2.5rem, 5.2vw, 4rem);
  margin-top: 22px;
}
.hero h1 .hl { color: var(--primary-deep); }
.hero-sub {
  margin-top: 24px;
  font-size: 1.18rem;
  color: var(--ink-2);
  max-width: 500px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}
.stars { display: flex; gap: 2px; color: oklch(0.78 0.13 78); }
.stars svg { width: 18px; height: 18px; }
.hero-trust span { font-size: 0.95rem; color: var(--ink-2); font-weight: 500; }
.hero-trust b { color: var(--ink); font-weight: 700; }

/* hero media */
.hero-media { position: relative; }
.hero-media .img-placeholder {
  width: 100%;
  height: 520px;
  box-shadow: var(--sh-lg);
  background: linear-gradient(150deg, var(--primary-soft), var(--bg-warm));
  border-radius: 26px;
  overflow: hidden;
}
.hero-media .img-placeholder img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-badge {
  position: absolute;
  left: -26px; bottom: 42px;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(10px);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  box-shadow: var(--sh-md);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-badge .ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary-deeper);
  display: grid; place-items: center;
}
.hero-badge .ico svg { width: 24px; height: 24px; }
.hero-badge .t { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; line-height: 1.2; }
.hero-badge .s { font-size: 0.82rem; color: var(--muted); }

/* ============================================================
   ABOUT + STATS
   ============================================================ */
.about { padding-block: 96px; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-copy h2 { font-size: clamp(2rem, 4vw, 2.85rem); margin-top: 18px; }
.about-copy p { margin-top: 20px; color: var(--ink-2); font-size: 1.08rem; }
.about-points { margin-top: 26px; display: grid; gap: 14px; }
.about-points li {
  list-style: none;
  display: flex; align-items: center; gap: 12px;
  font-weight: 500; color: var(--ink);
}
.about-points .tick {
  width: 26px; height: 26px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary-deeper);
  display: grid; place-items: center;
}
.about-points .tick svg { width: 15px; height: 15px; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stat-card {
  background: var(--card);
  border-radius: var(--r-lg);
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--sh-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.stat-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  color: var(--primary-deep);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-label { margin-top: 10px; font-size: 0.9rem; color: var(--muted); font-weight: 500; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding-block: 96px; background: var(--bg-aqua); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.svc-card {
  background: var(--card);
  border-radius: var(--r-lg);
  padding: 30px 26px 28px;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  transition: transform .32s var(--ease), box-shadow .32s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.svc-ico {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: linear-gradient(155deg, var(--primary-soft), var(--primary-wash));
  color: var(--primary-deeper);
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.svc-ico svg { width: 28px; height: 28px; }
.svc-card h3 { font-size: 1.28rem; }
.svc-price {
  margin-top: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-deep);
}
.svc-card p { margin-top: 12px; color: var(--ink-2); font-size: 0.98rem; flex-grow: 1; }
.svc-card .btn { margin-top: 22px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why { padding-block: 96px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature {
  padding: 30px 26px;
  border-radius: var(--r-lg);
  background: var(--bg-warm);
  transition: transform .3s var(--ease), background .3s;
}
.feature:hover { transform: translateY(-5px); background: #fff; box-shadow: var(--sh-md); }
.feat-ico {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary-deep);
  display: grid; place-items: center;
  box-shadow: var(--sh-sm);
  margin-bottom: 20px;
}
.feat-ico svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.18rem; }
.feature p { margin-top: 11px; color: var(--ink-2); font-size: 0.96rem; }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio { padding-block: 96px; background: var(--bg-warm); }
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.gallery .img-placeholder {
  width: 100%; height: 100%;
  box-shadow: var(--sh-sm);
  background: linear-gradient(140deg, var(--primary-soft), var(--primary-wash));
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
}
.gallery .img-placeholder img {
  width: 100%; height: 100%; object-fit: cover;
}
.g-a { grid-column: span 3; grid-row: span 2; }
.g-b { grid-column: span 3; }
.g-c { grid-column: span 3; }
.g-d { grid-column: span 2; }
.g-e { grid-column: span 2; }
.g-f { grid-column: span 2; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding-block: 96px; }
.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: stretch;
}
.contact-info h2 { font-size: clamp(2rem, 4vw, 2.7rem); margin-top: 18px; }
.contact-info > p { margin-top: 18px; color: var(--ink-2); font-size: 1.06rem; max-width: 420px; }
.contact-list { margin-top: 32px; display: grid; gap: 18px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item .ci {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary-deeper);
  display: grid; place-items: center;
}
.contact-item .ci svg { width: 22px; height: 22px; }
.contact-item .lbl { font-size: 0.8rem; color: var(--muted); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.contact-item .val { font-family: var(--font-head); font-weight: 600; font-size: 1.06rem; margin-top: 2px; }

.contact-card {
  background: var(--card);
  border-radius: var(--r-xl);
  padding: 38px;
  box-shadow: var(--sh-md);
}
.contact-card h3 { font-size: 1.4rem; }
.contact-card > p { margin-top: 8px; color: var(--muted); font-size: 0.98rem; }

.field { margin-top: 18px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.input, textarea.input, select.input {
  width: 100%;
  border: 1.5px solid var(--line);
  background: var(--bg);
  border-radius: var(--r-md);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.input:focus, textarea.input:focus, select.input:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px var(--primary-wash);
}
.input::placeholder { color: oklch(0.7 0.01 220); }
textarea.input { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: oklch(0.30 0.026 213);
  color: oklch(0.86 0.012 210);
  padding-top: 72px;
}
.footer a { color: oklch(0.82 0.012 210); transition: color .2s; }
.footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
}
.footer .brand-name { color: #fff; }
.footer .brand-name small { color: oklch(0.7 0.02 200); }
.footer-about { margin-top: 18px; max-width: 280px; font-size: 0.96rem; color: oklch(0.76 0.012 210); }
.footer h4 {
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer ul a { font-size: 0.96rem; }
.social { display: flex; gap: 10px; margin-top: 18px; }
.social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  transition: background .25s, transform .25s;
}
.social a:hover { background: var(--primary-deep); transform: translateY(-3px); }
.social svg { width: 18px; height: 18px; }
.footer-lang { margin-top: 20px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.88rem;
  color: oklch(0.66 0.012 210);
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 50;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37,211,102,0.4), 0 2px 6px rgba(0,0,0,0.1);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37,211,102,0.5), 0 3px 10px rgba(0,0,0,0.12);
}
.whatsapp-fab svg {
  width: 34px;
  height: 34px;
}
@media (max-width: 600px) {
  .whatsapp-fab { width: 52px; height: 52px; bottom: 20px; right: 20px; }
  .whatsapp-fab svg { width: 28px; height: 28px; }
}

/* ============================================================
   RESERVATION MODAL
   ============================================================ */
.overlay {
  position: fixed;
  inset: 0;
  background: oklch(0.30 0.03 210 / 0.42);
  backdrop-filter: blur(7px);
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .32s var(--ease), visibility .32s;
}
.overlay.open { opacity: 1; visibility: visible; }

.modal {
  width: 100%;
  max-width: 720px;
  max-height: 92vh;
  overflow-y: auto;
  background: var(--bg);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  transform: translateY(26px) scale(0.97);
  opacity: 0;
  transition: transform .4s var(--ease), opacity .4s var(--ease);
}
.overlay.open .modal { transform: translateY(0) scale(1); opacity: 1; }

.modal-head {
  position: sticky; top: 0;
  background: linear-gradient(160deg, var(--primary-soft), var(--bg));
  padding: 30px 34px 22px;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  z-index: 2;
}
.modal-head .eyebrow { margin-bottom: 8px; }
.modal-head h3 { font-size: 1.7rem; }
.modal-head p { margin-top: 6px; color: var(--ink-2); font-size: 0.98rem; }
.modal-close {
  position: absolute;
  top: 22px; right: 22px;
  width: 40px; height: 40px;
  border: 0; border-radius: 50%;
  background: rgba(255,255,255,0.8);
  color: var(--ink-2);
  display: grid; place-items: center;
  box-shadow: var(--sh-sm);
  transition: transform .25s, background .25s, color .2s;
}
.modal-close:hover { background: #fff; color: var(--ink); transform: rotate(90deg); }
.modal-close svg { width: 20px; height: 20px; }

.modal-body { padding: 26px 34px 30px; }

/* service picker */
.svc-pick { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.svc-opt {
  position: relative;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  padding: 15px 16px;
  background: #fff;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  display: flex; align-items: center; gap: 13px;
}
.svc-opt:hover { border-color: var(--primary); transform: translateY(-2px); }
.svc-opt.sel { border-color: var(--primary-deep); box-shadow: 0 0 0 3px var(--primary-wash); }
.svc-opt .so-ico {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 11px;
  background: var(--primary-soft);
  color: var(--primary-deeper);
  display: grid; place-items: center;
}
.svc-opt .so-ico svg { width: 21px; height: 21px; }
.svc-opt .so-name { font-family: var(--font-head); font-weight: 600; font-size: 0.98rem; line-height: 1.2; }
.svc-opt .so-base { font-size: 0.8rem; color: var(--muted); }
.svc-opt .so-check {
  position: absolute; top: 10px; right: 10px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--primary-deep); color: #fff;
  display: none; place-items: center;
}
.svc-opt.sel .so-check { display: grid; }
.svc-opt .so-check svg { width: 12px; height: 12px; }

/* size slider */
.size-row { display: flex; align-items: center; gap: 18px; }
.size-slider { flex-grow: 1; }
input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 7px; border-radius: 999px;
  background: var(--primary-soft);
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--primary-deep);
  box-shadow: var(--sh-cta);
  cursor: pointer;
  border: 3px solid #fff;
  transition: transform .2s;
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.12); }
input[type="range"]::-moz-range-thumb {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--primary-deep); border: 3px solid #fff;
  box-shadow: var(--sh-cta); cursor: pointer;
}
.size-val {
  flex-shrink: 0;
  display: flex; align-items: baseline; gap: 3px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  padding: 9px 14px;
  min-width: 96px;
  justify-content: center;
}
.size-val input {
  width: 48px; border: 0; background: transparent;
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
  color: var(--ink); text-align: right; outline: none;
}
.size-val span { font-size: 0.85rem; color: var(--muted); font-weight: 600; }

/* extras */
.extras { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.extra {
  display: flex; align-items: center; gap: 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  padding: 12px 15px;
  background: #fff;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.extra:hover { border-color: var(--primary); }
.extra.on { border-color: var(--primary-deep); background: var(--primary-wash); }
.extra .box {
  width: 22px; height: 22px; flex-shrink: 0;
  border-radius: 7px;
  border: 1.8px solid var(--line);
  background: #fff;
  display: grid; place-items: center;
  color: #fff;
  transition: background .2s, border-color .2s;
}
.extra.on .box { background: var(--primary-deep); border-color: var(--primary-deep); }
.extra .box svg { width: 13px; height: 13px; opacity: 0; transition: opacity .15s; }
.extra.on .box svg { opacity: 1; }
.extra .ex-name { font-weight: 600; font-size: 0.94rem; flex-grow: 1; }
.extra .ex-price { font-size: 0.85rem; color: var(--primary-deep); font-weight: 600; }

.modal-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  margin: 24px 0 12px;
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.modal-label .step {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--primary-deep); color: #fff;
  display: grid; place-items: center;
  font-size: 0.72rem; font-weight: 700;
}

/* rooms picker */
.rooms-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding: 14px 18px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
}
.rooms-row label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--ink-2);
}
.rooms-picker {
  display: flex;
  align-items: center;
  gap: 16px;
}
.rooms-btn {
  width: 36px; height: 36px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  color: var(--ink-2);
  display: grid; place-items: center;
  transition: border-color .2s, background .2s, color .2s;
}
.rooms-btn:hover { border-color: var(--primary); color: var(--primary-deep); background: var(--primary-wash); }
.rooms-btn svg { width: 16px; height: 16px; }
.rooms-val {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--ink);
  min-width: 28px;
  text-align: center;
}

/* input with icon */
.input-icon-wrap {
  position: relative;
}
.input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 20px;
  color: var(--muted);
  pointer-events: none;
  display: flex;
  align-items: center;
}
.input-icon svg { width: 20px; height: 20px; }
.input-has-icon { padding-left: 42px; }

/* modal field labels */
.modal-body .field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--ink-2);
  margin-bottom: 8px;
}

/* select styling */
select.input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23777' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

/* date input */
input[type="date"].input {
  cursor: pointer;
}

/* price + submit footer */
.modal-foot {
  position: sticky; bottom: 0;
  margin: 26px -34px -30px;
  padding: 22px 34px;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.price-box .pb-label { font-size: 0.82rem; color: var(--muted); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.price-box .pb-val {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.1rem;
  color: var(--primary-deep);
  letter-spacing: -0.02em;
  line-height: 1.1;
  transition: transform .25s var(--ease);
}
.price-box .pb-val.bump { transform: scale(1.08); }
.price-box .pb-note { font-size: 0.78rem; color: var(--muted); }
.modal-foot-note {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.modal-foot .btn { flex-shrink: 0; }

/* success state */
.success {
  text-align: center;
  padding: 30px 20px 10px;
  display: none;
}
.success.show { display: block; }
.success .ok {
  width: 76px; height: 76px; margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary-deep);
  display: grid; place-items: center;
  animation: pop .5s var(--ease);
}
.success .ok svg { width: 40px; height: 40px; }
@keyframes pop { 0% { transform: scale(0.4); opacity: 0; } 60% { transform: scale(1.1); } 100% { transform: scale(1); opacity: 1; } }
.success h3 { font-size: 1.6rem; }
.success p { margin-top: 10px; color: var(--ink-2); max-width: 400px; margin-inline: auto; }
.success .summary {
  margin: 24px auto 0;
  max-width: 380px;
  background: #fff;
  border-radius: var(--r-md);
  padding: 18px 22px;
  box-shadow: var(--sh-sm);
  text-align: left;
}
.success .summary .sr { display: flex; justify-content: space-between; padding: 5px 0; font-size: 0.95rem; }
.success .summary .sr.total { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 12px; font-weight: 700; }
.success .summary .sr span:last-child { font-family: var(--font-head); font-weight: 600; }

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .services-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(4, 1fr); }
  .g-a { grid-column: span 2; grid-row: span 2; }
  .g-b, .g-c { grid-column: span 2; }
  .g-d, .g-e, .g-f { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .header.menu-open .nav-links {
    display: flex;
    position: absolute;
    top: 78px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(246,248,248,0.96);
    backdrop-filter: blur(16px);
    padding: 14px 20px 22px;
    gap: 4px;
    box-shadow: var(--sh-md);
    margin: 0;
  }
  .header.menu-open .nav-links a { padding: 13px 16px; }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-media { order: -1; }
  .hero-media .img-placeholder { height: 360px; }
  .about-grid .stats { order: 2; }
}

@media (max-width: 600px) {
  .wrap { padding-inline: 20px; }
  .services-grid, .why-grid, .stats { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .stat-card { padding: 20px 10px; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .g-a { grid-row: span 2; }
  .field-row, .svc-pick, .extras { grid-template-columns: 1fr; }
  .modal-head, .modal-body { padding-inline: 22px; }
  .modal-foot { margin-inline: -22px; padding-inline: 22px; }
  .nav-right .btn span { display: none; }
  .hero-badge { left: 12px; right: 12px; bottom: 14px; }
  .lang-toggle { padding: 6px 10px; font-size: 0.75rem; }
  .lang-code { display: none; }
}

/* ============================================================
   SERVICE DETAIL PAGE
   ============================================================ */
.svc-hero {
  padding-top: 32px;
  padding-bottom: 80px;
  overflow: hidden;
  position: relative;
}
.svc-hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -140px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, oklch(0.83 0.06 188 / 0.45) 0%, transparent 62%);
  z-index: -1;
}
.svc-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.svc-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-deep);
  margin-bottom: 24px;
  transition: gap .2s;
}
.svc-back:hover { gap: 12px; }
.svc-back svg { width: 18px; height: 18px; }
.svc-hero-ico {
  width: 68px; height: 68px;
  border-radius: 20px;
  background: linear-gradient(155deg, var(--primary-soft), var(--primary-wash));
  color: var(--primary-deeper);
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.svc-hero-ico svg { width: 34px; height: 34px; }
.svc-hero-copy h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
}
.svc-hero-desc {
  margin-top: 20px;
  font-size: 1.14rem;
  color: var(--ink-2);
  max-width: 500px;
}
.svc-hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.svc-hero-price {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--muted);
}
.svc-hero-price b {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-deep);
  letter-spacing: -0.02em;
}
.svc-hero-media .img-placeholder {
  width: 100%;
  height: 420px;
  border-radius: var(--r-xl);
  background: linear-gradient(150deg, var(--primary-soft), var(--bg-warm));
  box-shadow: var(--sh-lg);
  overflow: hidden;
}
.svc-hero-media .img-placeholder img {
  width: 100%; height: 100%; object-fit: cover;
}

/* Service details layout */
.svc-details {
  padding-block: 72px;
  background: var(--bg-aqua);
}
.svc-details-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  align-items: start;
}
.svc-section { margin-bottom: 48px; }
.svc-section:last-child { margin-bottom: 0; }
.svc-section h2 {
  font-size: 1.6rem;
  margin-bottom: 24px;
}
.svc-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.svc-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.04rem;
  color: var(--ink);
  font-weight: 500;
}
.svc-checklist .tick {
  width: 26px; height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary-deeper);
  display: grid; place-items: center;
  margin-top: 1px;
}
.svc-checklist .tick svg { width: 15px; height: 15px; }

/* Sidebar cards */
.svc-sidebar { position: sticky; top: 110px; }
.svc-info-card {
  background: var(--card);
  border-radius: var(--r-xl);
  padding: 30px;
  box-shadow: var(--sh-md);
  margin-bottom: 20px;
}
.svc-info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.svc-info-list { display: grid; gap: 0; }
.svc-info-row {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.96rem;
}
.svc-info-row:last-child { border-bottom: 0; }
.svc-info-label { color: var(--muted); font-weight: 500; }
.svc-info-value { font-family: var(--font-head); font-weight: 700; color: var(--ink); }

.svc-trust-card { padding: 24px 30px; }
.svc-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-weight: 500;
  font-size: 0.96rem;
}
.svc-trust-item .tick {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary-deeper);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.svc-trust-item .tick svg { width: 14px; height: 14px; }

/* Service CTA section */
.svc-cta-section {
  padding-block: 80px;
}
.svc-cta-card {
  background: linear-gradient(160deg, var(--primary-soft), var(--bg-warm));
  border-radius: var(--r-xl);
  padding: 56px;
  text-align: center;
  box-shadow: var(--sh-sm);
}
.svc-cta-card h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  max-width: 500px;
  margin-inline: auto;
}
.svc-cta-card p {
  margin-top: 14px;
  color: var(--ink-2);
  font-size: 1.08rem;
}
.svc-cta-card .btn { margin-top: 28px; }

/* ============================================================
   BEFORE / AFTER SLIDER
   ============================================================ */
/* ---- Compare slider (react-compare-slider style) ---- */
.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--sh-sm);
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  background: linear-gradient(140deg, var(--primary-soft), var(--primary-wash));
}
.ba-slider img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* After layer — clip-path reveal, images stay fixed */
.ba-after {
  position: absolute;
  inset: 0;
  clip-path: inset(0 50% 0 0);
  will-change: clip-path;
}
/* Smooth easing when hovering / clicking, instant when dragging */
.ba-slider:not(.ba-dragging) .ba-after {
  transition: clip-path 0.15s linear;
}
.ba-slider:not(.ba-dragging) .ba-handle {
  transition: left 0.15s linear;
}
.ba-after img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Handle line — thin divider */
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  z-index: 3;
  transform: translateX(-50%);
  will-change: left;
  background: #fff;
  box-shadow: 0 0 6px rgba(0,0,0,0.15);
}

/* Circular drag knob */
.ba-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 2px 12px rgba(0,0,0,0.18),
    0 0 0 2px rgba(255,255,255,0.5);
  transition: transform 0.2s cubic-bezier(.4,0,.2,1), box-shadow 0.2s ease;
}
.ba-slider:hover .ba-handle::after {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow:
    0 4px 20px rgba(0,0,0,0.22),
    0 0 0 3px rgba(255,255,255,0.6);
}
.ba-slider.ba-dragging .ba-handle::after {
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow:
    0 6px 28px rgba(0,0,0,0.25),
    0 0 0 3px rgba(255,255,255,0.7);
}

/* Arrow icon inside knob */
.ba-handle-arrows {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.ba-handle-arrows svg {
  width: 20px;
  height: 20px;
  color: var(--primary-deep);
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.ba-slider:hover .ba-handle-arrows svg,
.ba-slider.ba-dragging .ba-handle-arrows svg {
  opacity: 1;
}

/* Labels — fade out when handle crosses them */
.ba-label {
  position: absolute;
  top: 14px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.ba-label-before {
  left: 14px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.ba-label-after {
  right: 14px;
  background: rgba(255,255,255,0.85);
  color: var(--ink);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
/* Hide labels when dragged past them */
.ba-slider[data-pos="low"] .ba-label-before { opacity: 0; }
.ba-slider[data-pos="high"] .ba-label-after { opacity: 0; }

/* Service page responsive */
@media (max-width: 860px) {
  .svc-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .svc-hero-media { order: -1; }
  .svc-hero-media .img-placeholder { height: 300px; }
  .svc-details-grid { grid-template-columns: 1fr; }
  .svc-sidebar { position: static; }
}
@media (max-width: 600px) {
  .svc-cta-card { padding: 36px 24px; }
  .svc-info-card { padding: 24px 20px; }
}

/* WordPress admin bar fix */
.admin-bar .header { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .header { top: 46px; }
}
