/* Ulibka Theme Bundle v1.4.1 — auto-generated, do not edit */

/* Font is loaded separately via wp_enqueue_style */

/* ─── tokens.css ─── */
/* ═══════════════════════════════════════════════════
   Design Tokens — CSS Custom Properties
   Single source of truth for colors, spacing, fonts
   Matches HTML mockup (index.css)
   ═══════════════════════════════════════════════════ */

:root {
  /* ── Mockup palette (primary) ── */
  --teal: #1cba9f;
  --teal-dark: #16a085;
  --teal-light: #e8f8f5;
  --green-btn: #27ae60;
  --blue: #45668e;
  --navy: #1e2a3a;
  --navy-deep: #283e5e;
  --orange: #f39c12;
  --gray-bg: #f5f7fa;
  --gray-border: #e8edf2;
  --text: #222;
  --text-mid: #444;
  --text-light: #777;
  --white: #fff;

  /* ── Aliased WP tokens (mapped to mockup) ── */
  --c-primary: #1cba9f;
  --c-primary-dark: #16a085;
  --c-primary-light: #e8f8f5;
  --c-accent: #1cba9f;
  --c-accent-dark: #16a085;
  --c-white: #ffffff;
  --c-bg: #ffffff;
  --c-bg-alt: #f5f7fa;
  --c-text: #222;
  --c-text-secondary: #444;
  --c-text-muted: #777;
  --c-border: #e8edf2;
  --c-border-light: #f1f5f9;

  /* ── Typography ── */
  --ff-primary: 'Inter', 'Roboto', 'Open Sans', Arial, sans-serif;
  --fs-xs: 0.75rem;
  /* 12px */
  --fs-sm: 0.875rem;
  /* 14px */
  --fs-base: 1rem;
  /* 16px */
  --fs-md: 1.0625rem;
  /* 17px */
  --fs-lg: 1.125rem;
  /* 18px */
  --fs-xl: 1.25rem;
  /* 20px */
  --fs-2xl: 1.5rem;
  /* 24px */
  --fs-3xl: 1.875rem;
  /* 30px */
  --fs-4xl: 2.25rem;
  /* 36px */
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --lh-tight: 1.25;
  --lh-normal: 1.5;
  --lh-relaxed: 1.8;

  /* ── Spacing ── */
  --sp-xs: 4px;
  --sp-sm: 8px;
  --sp-md: 16px;
  --sp-lg: 24px;
  --sp-xl: 32px;
  --sp-2xl: 48px;
  --sp-3xl: 64px;

  /* ── Layout ── */
  --max-width: 1440px;
  --header-height: 72px;
  --sidebar-width: 280px;

  /* ── Border Radius ── */
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --border-radius-lg: 16px;

  /* ── Shadows ── */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06);

  /* ── Transitions ── */
  --tr-fast: 0.15s ease;
  --tr-normal: 0.3s ease;
  --tr-slow: 0.5s ease;
}

:root {
  /* ── Ulibka Redesign · orange·blue·white ── */
  --u-orange: #F26A21;
  --u-orange-600: #E15A12;
  --u-orange-300: #FF8B4A;
  --u-orange-50: #FFF0E6;
  --u-blue: #1E6FB8;
  --u-blue-700: #155A97;
  --u-blue-50: #E7F1FB;
  --u-navy: #10243F;
  --u-navy-800: #16283C;
  --u-navy-900: #0B1B30;
  --u-ink: #2A3B4F;
  --u-muted: #5B7089;
  --u-faint: #8EA0B5;
  --u-bg: #EAF0F6;
  --u-line: #E2EAF2;
  --u-card: #FFFFFF;
  --u-r-sm: 12px;
  --u-r-md: 18px;
  --u-r-lg: 24px;
  --u-r-xl: 28px;
  --u-shadow-sm: 0 12px 30px rgba(16, 36, 63, .06);
  --u-shadow-md: 0 20px 46px rgba(16, 36, 63, .12);
  --u-shadow-cta: 0 14px 30px rgba(242, 106, 33, .36);
  --u-ease: cubic-bezier(.16, 1, .3, 1);
}

/* ─── main.css ─── */
/* ═══════════════════════════════════════════════════
   Core Layout — main.css
   Base styles, all shared sections — matches HTML mockup
   ═══════════════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-primary);
  color: var(--text);
  line-height: 1.5;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
svg { flex-shrink: 0; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 { font-weight: var(--fw-bold); line-height: var(--lh-tight); color: var(--text); }
h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }

/* ── Container ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--sp-lg); }

/* ═══ TOP BAR ═══ */
.topBar {
  background: linear-gradient(90deg, var(--teal) 40%, #558dca 100%);
  color: var(--white);
  padding: 8px 0;
  font-size: 13px;
  position: relative;
  z-index: 1000;
}
.topBarInner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--sp-lg);
}
.topBarLeft { display: flex; gap: 32px; align-items: center; }
.topBarRight { display: flex; align-items: center; gap: 14px; }
.topBarItem { display: flex; align-items: center; gap: 6px; opacity: 0.95; }
.topBarItem a, .topBarItem span { color: var(--white); text-decoration: none; }
.topBarItem svg, .topBarIcon { width: 14px; height: 14px; flex-shrink: 0; }
.topBarPhone:hover { color: var(--c-accent); }
.topBarSchedule { text-align: right; line-height: 1.4; font-size: 12px; display: flex; align-items: center; gap: 6px; }
.topBarSocials { display: flex; gap: var(--sp-sm); }
.topBarSocialIcon,
.socialIcon {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white); text-decoration: none;
  font-size: 14px; font-weight: 700;
  transition: all 0.3s;
}
.topBarSocialIcon:hover,
.socialIcon:hover { background: rgba(255,255,255,0.4); transform: scale(1.05); }

/* ═══ NAVBAR ═══ */
.navBar {
  background: var(--white);
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 999;
}
.navBarInner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 var(--sp-lg);
  gap: var(--sp-md);
}
.navLogo { display: flex; align-items: center; flex-shrink: 0; margin-right: 8px; }
.navLogoImg, .navLogo .custom-logo { height: 48px; width: auto; }
.navMenu { flex: 1; }
.navMenuList {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.navMenuList li { position: relative; }
.navMenuList li a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  white-space: nowrap;
  display: block;
}
.navMenuList li a:hover,
.navMenuList li.current-menu-item a,
.navMenuList li.current_page_item a {
  color: var(--teal);
  background: var(--teal-light);
}
.navActions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.navPhone {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}
.navBookBtn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.navBookBtn:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

/* ── Dropdown Sub-Menu ── */
.navMenuList > li.menu-item-has-children > a {
  padding-right: 20px;
}
.navMenuList > li.menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 6px;
  transition: transform var(--tr-fast);
}
.navMenuList > li.menu-item-has-children:hover > a::after {
  transform: rotate(-135deg) translateY(-1px);
}
.navMenuList .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  max-height: 70vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-border);
  border-top: 2px solid var(--teal);
  padding: var(--sp-sm) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--tr-fast), transform var(--tr-fast), visibility var(--tr-fast);
  z-index: 1000;
  list-style: none;
}
.navMenuList > li.menu-item-has-children:hover > .sub-menu,
.navMenuList > li.menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.navMenuList .sub-menu li a {
  display: block;
  padding: 8px 20px;
  color: var(--text);
  font-size: var(--fs-sm);
  font-weight: var(--fw-normal);
  white-space: nowrap;
  transition: all var(--tr-fast);
  border-radius: 0;
  border-left: 3px solid transparent;
}
.navMenuList .sub-menu li a:hover,
.navMenuList .sub-menu li.current-menu-item a {
  color: var(--teal);
  background: var(--teal-light);
  border-left-color: var(--teal);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-sm);
  z-index: 1001;
}
.hamburgerLine {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--tr-normal);
}
.hamburger.active .hamburgerLine:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active .hamburgerLine:nth-child(2) { opacity: 0; }
.hamburger.active .hamburgerLine:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══ HERO BANNER (inner pages) ═══ */
.heroBanner {
  position: relative;
  height: 240px;
  background: url('../images/services/page-banner-img.jpg') center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}
.heroBannerBg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.heroBanner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,50,70,0.35), rgba(20,40,60,0.30));
  z-index: 1;
}
/* overlay-div hidden — ::before handles overlay globally */
.heroBanner__overlay {
  display: none;
}
.heroBannerContent {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--sp-lg) 30px;
}
.heroBannerTitle,
.heroBannerContent h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  font-style: italic;
  margin: 0 0 6px 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.heroBannerPath {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
}
.heroBannerPath a { color: #fff; text-decoration: none; }
.heroBannerPath a:hover { text-decoration: underline; }
.heroBannerPath .sep { margin: 0 8px; }
.heroBannerPath .current { color: #ffe066; }

/* ═══ BOOKING BANNER (3-part parallelogram) ═══ */
.bookingBanner { display: flex; width: 100%; height: 110px; overflow: hidden; position: relative; }
.bookingBannerLeft {
  flex: 0 0 55%; position: relative; z-index: 3;
  background: var(--teal);
  background-image: linear-gradient(90deg, rgba(2,170,176,0.88), rgba(0,205,172,0.88)), url('../../images/about-breadcrumb-bg.png');
  background-size: cover; background-position: center;
  clip-path: polygon(0 0, 100% 0, 93% 100%, 0 100%);
  display: flex; align-items: center; justify-content: center;
}
.bookingBannerContent { position: relative; z-index: 3; }
.bookingCtaBtn {
  background: rgba(0,72,71,0.25); color: #fff; padding: 0; text-decoration: none;
  font-weight: 600; font-size: 16px; border-radius: 8px; display: flex; align-items: stretch;
  transition: all 0.3s; overflow: hidden; letter-spacing: 0.3px; cursor: pointer; border: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.bookingCtaBtn:hover { background: rgba(0,72,71,0.4); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.18); }
.btnIconLeft { display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.15); padding: 13px 15px; }
.btnIconRight { display: flex; align-items: center; justify-content: center; padding: 13px 16px; opacity: 0.7; }
.btnText { display: flex; align-items: center; padding: 13px 8px 13px 16px; }
.bookingBannerMid {
  flex: 1; position: relative; z-index: 2; margin-left: -7%;
  background-color: #fdfdfd;
  clip-path: polygon(7% 0, 100% 0, 93% 100%, 0 100%);
  display: flex; align-items: center; justify-content: center;
}
.phoneLinkBlock { text-decoration: none; display: flex; align-items: center; gap: 14px; z-index: 2; margin-left: 20px; }
.phoneIconBox { width: 42px; height: 42px; border-radius: 50%; background: var(--teal); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.phoneTextBox { display: flex; flex-direction: column; }
.phoneNumber { color: #003254; font-size: 22px; font-weight: 800; letter-spacing: 0.5px; }
.phoneLabel { color: #7a7a7a; font-size: 12px; margin-top: 2px; text-transform: uppercase; letter-spacing: 0.3px; }
.bookingBannerStripe {
  flex: 0 0 10%; position: relative; z-index: 1; margin-left: -5%;
  background-color: var(--teal);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

/* ═══ SECTION HEADER ═══ */
.sectionHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}
.sectionHeader h2,
.sectionTitle {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  margin: 0;
}
.sectionHeader p {
  font-size: var(--fs-lg);
  color: var(--text-light);
  max-width: 600px;
}
.sectionLink {
  color: var(--teal);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.3s;
}
.sectionLink:hover { opacity: 0.7; }

/* ═══ CONSULTATION MODAL ═══ */
.consultModal {
  position: fixed; inset: 0;
  background: rgba(0,40,50,0.7);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  z-index: 10000;
  opacity: 0; visibility: hidden;
  transition: all 0.35s;
}
.consultModal.open { opacity: 1; visibility: visible; }
.consultModalDialog {
  background: #fff; width: 92%; max-width: 480px;
  border-radius: 24px; padding: 48px 40px;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.25);
  transform: translateY(30px) scale(0.95);
  transition: all 0.45s cubic-bezier(0.19,1,0.22,1);
}
.consultModal.open .consultModalDialog { transform: translateY(0) scale(1); }
.consultModalClose {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  border: none; background: #f3f5f7; color: #666;
  font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.consultModalClose:hover { background: #e8edf2; color: #333; transform: rotate(90deg); }
.consultModalIcon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--teal);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.consultModalTitle { font-size: 24px; font-weight: 800; color: #003254; margin: 0 0 6px; }
.consultModalSub { font-size: 14px; color: #777; margin: 0 0 28px; line-height: 1.6; }
.consultFormGroup { margin-bottom: 16px; }
.consultFormLabel { display: block; font-size: 12px; font-weight: 600; color: #555; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.consultInput,
.consultFormInput {
  width: 100%; padding: 14px 16px;
  border: 2px solid #e8edf2; border-radius: 12px;
  font-size: 15px; font-family: inherit; color: #333;
  outline: none; transition: all 0.25s;
  background: #fafbfc; box-sizing: border-box;
  margin-bottom: 16px;
}
.consultInput:focus,
.consultFormInput:focus { border-color: var(--teal); background: #fff; box-shadow: 0 0 0 4px rgba(255,107,0,0.1); }
.consultInput::placeholder,
.consultFormInput::placeholder { color: #aab4c0; }
.consultSubmitBtn {
  width: 100%; padding: 16px; border: none; border-radius: 12px; margin-top: 8px;
  background: var(--teal); color: #fff;
  font-size: 16px; font-weight: 700; font-family: inherit; cursor: pointer;
  transition: all 0.3s; box-shadow: 0 4px 16px rgba(0,205,172,0.3);
}
.consultSubmitBtn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,205,172,0.4); }
.consultSubmitBtn:active { transform: translateY(0); }
.consultPrivacy { font-size: 11px; color: #999; margin-top: 14px; line-height: 1.5; text-align: center; }
.consultPrivacy a { color: var(--teal); text-decoration: none; }
.consultForm { display: flex; flex-direction: column; }
/* Success state */
.consultSuccess { text-align: center; padding: 20px 0; }
.consultSuccessIcon {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 20px;
  background: var(--teal); color: #fff;
  display: flex; align-items: center; justify-content: center;
  animation: successPop 0.5s cubic-bezier(0.175,0.885,0.32,1.275) forwards;
}
@keyframes successPop { from { transform: scale(0) rotate(-45deg); } to { transform: scale(1) rotate(0); } }
.consultSuccessTitle { font-size: 22px; font-weight: 800; color: #003254; margin: 0 0 8px; }
.consultSuccessText { font-size: 14px; color: #777; margin: 0 0 24px; line-height: 1.6; }
.consultSuccessBtn {
  padding: 14px 36px; border: none; border-radius: 12px;
  background: var(--teal); color: #fff;
  font-size: 15px; font-weight: 600; font-family: inherit; cursor: pointer; transition: all 0.3s;
}
.consultSuccessBtn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,205,172,0.35); }
.consultViewHidden { display: none; }

/* ═══ CONTACT BLOCK ═══ */
/* Layout and all contact-block styles are in components.css */
/* Only legacy helpers kept here: */
.phoneBadge {
  background-color: #ffcd26; color: #333333;
  padding: 12px 20px; border-radius: 6px;
  display: inline-flex; align-items: center; gap: 15px;
  font-size: 20px; font-weight: 800;
  margin-bottom: 25px; width: fit-content;
}
.phoneBadgeIcon { width: 24px; height: 24px; position: relative; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; padding-top: 1px; }
.phoneBadgeIcon svg { position: absolute; inset: 0; width: 100%; height: 100%; fill: none; stroke: #333333; stroke-width: 1.5; }

/* Backward compat for shared contact CTA */
.contactBlockActions {
  display: flex; align-items: center; justify-content: center;
  gap: var(--sp-lg); margin-top: var(--sp-lg); flex-wrap: wrap;
}
.contactBlockPhone {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--fs-2xl); font-weight: var(--fw-bold); color: var(--teal);
}
.contactBlockBtn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: var(--teal); color: var(--white);
  border-radius: 50px; font-weight: var(--fw-semibold); font-size: var(--fs-md);
  text-decoration: none; transition: all 0.3s;
}
.contactBlockBtn:hover { background: var(--teal-dark); color: var(--white); }

/* ═══ LEGAL SECTION ═══ */
.legal { background: var(--white); padding: 50px 0; }
.legalInner { max-width: 1440px; margin: 0 auto; padding: 0 24px; }
.legalCard {
  background: var(--teal-light);
  border-radius: var(--radius);
  padding: 30px 36px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.legalText { font-size: 14px; color: var(--text-mid); line-height: 1.8; flex: 1; }
.legalText strong { color: var(--text); display: block; margin-bottom: 4px; }
.legalBtns { display: flex; gap: 12px; flex-shrink: 0; }
.legalBtn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  background: var(--teal); color: var(--white);
  border-radius: 50px;
  text-decoration: none; font-size: 13px; font-weight: 600;
  transition: all 0.3s; white-space: nowrap;
}
.legalBtn:hover { background: var(--teal-dark); }
.legalBtnOutline {
  display: inline-flex; align-items: center;
  padding: 10px 20px;
  background: transparent; color: var(--teal);
  border: 2px solid var(--teal);
  border-radius: 50px;
  text-decoration: none; font-size: 13px; font-weight: 600;
  transition: all 0.3s; white-space: nowrap;
}
.legalBtnOutline:hover { background: var(--teal); color: var(--white); }

/* ═══ FOOTER ═══ */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 50px 0 20px;
}
.footerInner { max-width: 1440px; margin: 0 auto; padding: 0 24px; }
.footerGrid {
  display: grid;
  grid-template-columns: 2.5fr 1.5fr 1.5fr 1.5fr 2fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footerLogo { height: 40px; width: auto; margin-bottom: 16px; }
.footerBrand { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.footerColTitle { font-size: 15px; font-weight: 700; color: var(--white); margin: 0 0 16px 0; }
.footerLinks li { margin-bottom: 8px; }
.footerLinks a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}
.footerLinks a:hover { color: var(--teal); }
.footerPhone {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}
.footerPhone:hover { color: var(--teal); }
.footerAddress { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.footerSocials { display: flex; gap: 8px; margin-top: 16px; }
.footerSocialIcon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white);
  text-decoration: none; font-size: 14px;
  transition: all 0.3s;
}
.footerSocialIcon:hover { background: var(--teal); }
.footerBottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.footerBottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footerBottom a:hover { color: var(--teal); }

/* ═══ PAGE BODY (2-column layout) ═══ */
.pageBody {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--sp-2xl) var(--sp-lg);
  display: grid;
  grid-template-columns: var(--sidebar-width) 1fr;
  gap: var(--sp-xl);
}
.pageBody.no-sidebar {
  grid-template-columns: 1fr;
}
.contentCol { min-width: 0; }
.sidebarCol { position: relative; }

/* ── Mobile Nav utility (из mobile-nav.css) ── */
.menu-open { overflow: hidden; }

/* ── Accessibility (из a11y.css) ── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/* ═══ COOKIE CONSENT BANNER ═══ */
.cookieBanner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 99999;
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.cookieBanner--visible {
  transform: translateY(0);
  pointer-events: auto;
}
.cookieBanner--hiding {
  transform: translateY(120%);
  transition: transform .4s ease-in;
}
.cookieBannerInner {
  max-width: 1320px; margin: 0 auto;
  padding: 20px 28px;
  margin-bottom: 16px; margin-left: 16px; margin-right: 16px;
  background: rgba(15,29,46,.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  box-shadow: 0 -4px 40px rgba(0,0,0,.25);
}
.cookieBannerContent {
  display: flex; align-items: center; gap: 16px;
  flex: 1; min-width: 0;
}
.cookieBannerIcon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(28,186,159,.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cookieBannerIcon svg { width: 22px; height: 22px; color: var(--teal); }
.cookieBannerText { flex: 1; min-width: 0; }
.cookieBannerText strong {
  display: block; font-size: 14px; font-weight: 700;
  color: #fff; margin-bottom: 4px;
}
.cookieBannerText p {
  font-size: 12.5px; color: rgba(255,255,255,.6);
  line-height: 1.55; margin: 0;
}
.cookieBannerText a {
  color: var(--teal); text-decoration: underline;
  text-underline-offset: 2px;
}
.cookieBannerText a:hover { color: #2dd1b1; }
.cookieBannerActions {
  display: flex; gap: 10px; flex-shrink: 0;
}
.cookieBannerAccept {
  padding: 10px 24px; border-radius: 50px; border: none;
  background: var(--teal); color: #fff;
  font-size: 13px; font-weight: 700; cursor: pointer;
  transition: all .3s; white-space: nowrap;
}
.cookieBannerAccept:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(28,186,159,.35);
}
.cookieBannerDecline {
  padding: 10px 20px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,.2);
  background: transparent; color: rgba(255,255,255,.6);
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: all .3s; white-space: nowrap;
}
.cookieBannerDecline:hover {
  border-color: rgba(255,255,255,.4);
  color: #fff; background: rgba(255,255,255,.06);
}
@media (max-width: 768px) {
  .cookieBannerInner {
    flex-direction: column; align-items: stretch;
    padding: 18px 20px; margin: 0 10px 10px;
    border-radius: 16px; gap: 16px;
  }
  .cookieBannerContent { gap: 12px; }
  .cookieBannerIcon { width: 38px; height: 38px; }
  .cookieBannerActions { justify-content: stretch; }
  .cookieBannerAccept, .cookieBannerDecline { flex: 1; text-align: center; }
}

/* ── prefers-reduced-motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ─── components.css ─── */
/* ═══════════════════════════════════════════════════
   Components CSS — matches HTML mockup exactly
   ═══════════════════════════════════════════════════ */

/* ── Doctor Card ── */
.doctorCard {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-border);
  position: relative;
  transition: all 0.35s;
  color: var(--text);
}
.doctorCard:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255,107,0,0.18);
  border-color: var(--teal);
}
.doctorImgWrap { position: relative; overflow: hidden; }
.doctorImg {
  width: 100%; height: 300px;
  object-fit: cover; object-position: top;
  display: block;
  transition: transform 0.5s ease;
}
.doctorCard:hover .doctorImg { transform: scale(1.05); }
.doctorImgWrap::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(0,0,0,0.06));
  pointer-events: none;
}
.doctorBadge {
  position: absolute; top: 10px; left: 10px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 4px 10px; border-radius: 6px;
  letter-spacing: 0.3px; z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.doctorBody {
  padding: 16px 16px 14px;
  flex: 1; display: flex; flex-direction: column;
  text-align: left;
}
.doctorName { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 3px; line-height: 1.35; }
.doctorSpec { font-size: 11px; color: var(--teal); font-weight: 600; margin-bottom: 10px; }
.doctorMeta {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: auto; padding-top: 10px;
  border-top: 1px solid var(--gray-border);
}
.doctorMetaItem {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; color: var(--text-light);
  background: var(--gray-bg);
  padding: 3px 8px; border-radius: 6px;
}
.doctorMetaItem svg { width: 12px; height: 12px; flex-shrink: 0; color: var(--teal); }
.doctorPrice {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px;
  background: var(--gray-bg);
  border-top: 1px solid var(--gray-border);
}
.doctorPriceLabel { font-size: 11px; color: var(--text-light); }
.doctorPriceValue { font-size: 16px; font-weight: 800; color: var(--navy); }
.doctorCta {
  display: block; text-align: center;
  padding: 10px 16px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  font-size: 13px; font-weight: 600;
  text-decoration: none;
  transition: filter 0.3s;
  cursor: pointer;
}
.doctorCta:hover { filter: brightness(1.1); }

/* ── Doctors Grid ── */
.doctorsGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* ── Doctors Carousel ── */
.doctorsCarousel { position: relative; overflow: visible; }
.doctorsTrack {
  display: flex;
  gap: var(--sp-lg); /* 24px */
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: var(--sp-sm) 0;
}
.doctorsTrack::-webkit-scrollbar { display: none; }
.doctorsTrack .doctorCard {
  /* 4 карточки: (100% − 3×24px) / 4 = 25% − 18px */
  min-width: calc(25% - 18px);
  max-width: calc(25% - 18px);
  scroll-snap-align: start;
  flex-shrink: 0;
}

@media (max-width: 1200px) {
  .doctorsTrack .doctorCard {
    /* 3 карточки: (100% − 2×24px) / 3 = 33.33% − 16px */
    min-width: calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
  }
}
@media (max-width: 768px) {
  .doctorsTrack .doctorCard {
    /* 2 карточки: (100% − 1×24px) / 2 = 50% − 12px */
    min-width: calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}
@media (max-width: 480px) {
  .doctorsTrack .doctorCard {
    /* 1 карточка на весь экран */
    min-width: 100%;
    max-width: 100%;
  }
}
.carouselBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  z-index: 5;
  border: 1px solid var(--c-border-light);
  transition: all 0.2s;
}
.carouselBtn:hover { box-shadow: var(--shadow-lg); }
.carouselBtnPrev { left: -22px; }
.carouselBtnNext { right: -22px; }
.carouselBtn.hidden { opacity: 0; pointer-events: none; }

/* ── Search/Filter UI ── */
.searchBar { margin-bottom: var(--sp-lg); }
.searchBarWrap { position: relative; max-width: 500px; }
.searchBarInput {
  width: 100%;
  padding: var(--sp-md) var(--sp-md) var(--sp-md) 44px;
  border: 2px solid var(--gray-border);
  border-radius: var(--radius);
  font-size: var(--fs-base);
  transition: border-color var(--tr-fast);
  background: var(--white);
}
.searchBarInput:focus { outline: none; border-color: var(--teal); }
.searchBarWrap svg {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
}
.filterTabs {
  display: flex; flex-wrap: wrap;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-lg);
}
.filterTab {
  padding: 8px 16px;
  border: 1px solid var(--gray-border);
  border-radius: 20px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--text-light);
  background: var(--white);
  transition: all var(--tr-fast);
}
.filterTab:hover { border-color: var(--teal); color: var(--teal); }
.filterTab.active {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

/* ── Service sidebar ── */
.sideNav {
  position: sticky;
  top: calc(var(--header-height) + var(--sp-lg));
}
.sideNavList { list-style: none; }
.sideNavList li a {
  display: block;
  padding: var(--sp-sm) var(--sp-md);
  color: var(--text-light);
  font-size: var(--fs-sm);
  border-left: 3px solid transparent;
  transition: all var(--tr-fast);
}
.sideNavList li a:hover,
.sideNavList li a.active {
  color: var(--teal);
  border-left-color: var(--teal);
  background: var(--teal-light);
}

/* ── Doc Item (licenses) ── */
.docItem {
  display: flex; align-items: center; gap: var(--sp-md);
  padding: var(--sp-md);
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-sm);
  margin-bottom: var(--sp-sm);
  color: var(--text);
  transition: all var(--tr-fast);
}
.docItem:hover { border-color: var(--teal); background: var(--teal-light); }
.docItem span { flex: 1; font-size: var(--fs-sm); }

/* ═══ Unified Contact Block (Shared) ═══ */
.contactBlock { max-width: 1440px; margin: 50px auto; padding: 0 24px; }
.contactBlockInner { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: #fff; border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.contactBlockInner::before { content: ''; position: absolute; inset: 0; background: url('../../images/about-breadcrumb-bg.png') center/cover no-repeat; opacity: 0.06; pointer-events: none; }
.contactHeader { padding: 36px 40px 0; display: flex; align-items: center; justify-content: space-between; gap: 30px; position: relative; z-index: 1; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 28px; }
.contactHeaderText h2 { font-size: 26px; font-weight: 800; color: #fff; margin: 0 0 6px; }
.contactHeaderText p { font-size: 15px; color: rgba(255,255,255,0.85); margin: 0; line-height: 1.5; max-width: 520px; }
.contactHeaderPhone { display: flex; align-items: center; gap: 14px; text-decoration: none; background: rgba(255,255,255,0.15); padding: 14px 24px; border-radius: 12px; flex-shrink: 0; transition: background 0.3s; }
.contactHeaderPhone:hover { background: rgba(255,255,255,0.25); }
.contactHeaderPhone svg { width: 28px; height: 28px; color: #fff; flex-shrink: 0; }
.contactHeaderPhoneText { display: flex; flex-direction: column; }
.contactHeaderPhoneNum { font-size: 20px; font-weight: 800; color: #fff; }
.contactHeaderPhoneLabel { font-size: 12px; color: rgba(255,255,255,0.75); }
.contactColumns { display: grid; grid-template-columns: 1fr 1fr; position: relative; z-index: 1; }
.contactLeft { padding: 30px 40px; border-right: 1px solid rgba(255,255,255,0.15); display: flex; flex-direction: column; }
.contactRight { padding: 30px 40px; display: flex; flex-direction: column; }
.contactTitle { font-size: 20px; font-weight: 700; color: #fff !important; margin: 0 0 18px 0; line-height: 1.3; }
.contactInput { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.3); border-radius: 8px; padding: 12px 16px; color: #fff; font-size: 15px; margin-bottom: 16px; width: 100%; max-width: 340px; outline: none; transition: border 0.3s, background 0.3s; }
.contactInput:focus { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.18); }
.contactInput::placeholder { color: rgba(255,255,255,0.55); }
.contactCheckboxWrap { display: flex; align-items: flex-start; gap: 10px; max-width: 360px; margin-bottom: 20px; cursor: pointer; }
.contactCheckbox { -webkit-appearance: none; appearance: none; width: 18px; height: 18px; border: 1px solid rgba(255,255,255,0.6); border-radius: 3px; background: transparent; flex-shrink: 0; position: relative; cursor: pointer; margin-top: 2px; }
.contactCheckbox:checked::after { content: ''; position: absolute; left: 5px; top: 1px; width: 5px; height: 10px; border: solid white; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.contactPrivacyText { font-size: 12px; color: rgba(255,255,255,0.8); line-height: 1.4; margin: 0; }
.contactPrivacyText a { color: #fff !important; text-decoration: underline; }
.contactSubmitBtn { background: #fff; color: var(--teal-dark); border: none; border-radius: 8px; padding: 13px 28px; font-size: 15px; font-weight: 700; cursor: pointer; width: fit-content; transition: all 0.3s; }
.contactSubmitBtn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.contactSubtext { font-size: 12px; color: rgba(255,255,255,0.7); line-height: 1.4; max-width: 320px; margin: 8px 0 0; }
.contactRightBtn { background: #fff; color: var(--teal-dark) !important; border: none; border-radius: 8px; padding: 13px 28px; font-size: 15px; font-weight: 700; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; width: fit-content; margin-bottom: 20px; transition: all 0.3s; text-decoration: none; }
.contactRightBtn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.contactRightDesc { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.6; max-width: 420px; margin: 0; }

/* ── «Как нас найти» variant (find-us) ── */
.clinicInfoItem { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
.clinicInfoItem:last-of-type { margin-bottom: 0; }
.clinicInfoIcon { width: 18px; height: 18px; color: rgba(255,255,255,0.75); flex-shrink: 0; margin-top: 3px; }
.clinicInfoLabel { font-size: 11px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 2px; }
.clinicInfoValue { font-size: 14px; color: #fff; font-weight: 600; line-height: 1.5; }
.clinicInfoValue a { color: #fff; }
.clinicMapBtn { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; padding: 10px 20px; background: rgba(255,255,255,0.15); color: #fff; border-radius: 8px; text-decoration: none; font-size: 13px; font-weight: 600; transition: all 0.3s; }
.clinicMapBtn:hover { background: rgba(255,255,255,0.28); }
.clinicMapBtn svg { width: 15px; height: 15px; }

@media (max-width: 1024px) {
  .contactBlock { padding: 0 20px; }
  .contactColumns { grid-template-columns: 1fr; }
  .contactLeft { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 28px 32px; }
  .contactRight { padding: 28px 32px; }
  .contactHeader { flex-direction: column; align-items: flex-start; gap: 20px; padding: 32px 32px 24px; }
  .contactHeaderPhone { width: fit-content; }
  .contactInput { max-width: 380px; }
}

@media (max-width: 768px) {
  .contactBlock { padding: 0 16px; margin: 36px auto; }
  .contactBlockInner { border-radius: 16px; }
  .contactHeader { padding: 28px 24px 22px; gap: 16px; }
  .contactHeaderText h2 { font-size: 20px; }
  .contactHeaderText p { font-size: 13px; max-width: 400px; }
  .contactHeaderPhone { width: fit-content; padding: 12px 20px; }
  .contactHeaderPhoneNum { font-size: 18px; }
  .contactColumns { grid-template-columns: 1fr; }
  .contactLeft, .contactRight { padding: 24px; }
  .contactLeft { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .contactTitle { font-size: 18px; margin-bottom: 14px; }
  .contactInput { max-width: 360px; font-size: 14px; padding: 11px 14px; margin-bottom: 14px; }
  .contactCheckboxWrap { max-width: 380px; }
  .contactPrivacyText { font-size: 11px; }
  .contactSubmitBtn { width: fit-content; padding: 12px 28px; font-size: 14px; }
  .contactRightBtn { width: fit-content; padding: 12px 28px; font-size: 14px; }
  .contactSubtext { max-width: 360px; font-size: 11px; }
  .contactRightDesc { font-size: 13px; max-width: 400px; }
}

@media (max-width: 480px) {
  .contactBlock { padding: 0 14px; margin: 28px auto; }
  .contactBlockInner { border-radius: 14px; }
  .contactHeader { padding: 24px 20px 18px; }
  .contactHeaderText h2 { font-size: 18px; }
  .contactHeaderText p { font-size: 12px; line-height: 1.5; }
  .contactHeaderPhone { padding: 11px 16px; gap: 10px; }
  .contactHeaderPhone svg { width: 22px; height: 22px; }
  .contactHeaderPhoneNum { font-size: 17px; }
  .contactHeaderPhoneLabel { font-size: 11px; }
  .contactLeft, .contactRight { padding: 20px; }
  .contactTitle { font-size: 17px; margin-bottom: 12px; }
  .contactInput { max-width: 100%; padding: 11px 14px; font-size: 14px; }
  .contactCheckboxWrap { max-width: 100%; }
  .contactSubmitBtn, .contactRightBtn { padding: 12px 24px; font-size: 14px; }
  .contactSubtext { max-width: 100%; }
  .contactRightDesc { max-width: 100%; }
}

/* ─── animations.css ─── */
/* Base state — hidden until IntersectionObserver fires.
   Элементы скрываются ТОЛЬКО если JS успел инициализироваться
   (класс js-animate-ready добавляет сам скрипт).
   Без этого класса всё видно — нет FOIC (flash of invisible content). */
.js-animate-ready [data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

/* Fallback: если анимация зависла — показываем через 1.5s */
.js-animate-ready [data-animate]:not(.animated) {
  animation: animFallback 0s 1.5s forwards;
}
@keyframes animFallback {
  to { opacity: 1; transform: none; }
}

.js-animate-ready [data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* Hero tiles fade */
.heroTiles.fading {
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* Navbar scroll state */
.navBar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

/* Card hover effects */
.doctorCard,
.featuredCard,
.heroTileImg {
  transition: transform var(--tr-normal), box-shadow var(--tr-normal);
}
.doctorCard:hover,
.featuredCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.heroTileImg:hover {
  transform: scale(1.03);
}

/* Button hover micro-interaction */
.navBookBtn,
.contactBlockBtn,
.heroBannerBookBtn {
  transition: all var(--tr-normal);
}
.navBookBtn:hover,
.contactBlockBtn:hover,
.heroBannerBookBtn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Footer social icon bounce */
.footerSocialIcon:hover,
.topBarSocialIcon:hover {
  animation: socialBounce 0.3s ease;
}
@keyframes socialBounce {
  0% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}

/* Carousel button hover */
.carouselBtn {
  transition: all var(--tr-fast);
}
.carouselBtn:hover {
  background: var(--c-primary);
  color: var(--c-white);
}

/* Consultation modal */
.consultModal {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.consultModal.open {
  opacity: 1;
  visibility: visible;
}

/* ─── responsive.css ─── */
/* ═══════════════════════════════════════════════════
   Responsive Breakpoints — matches HTML mockup
   ≤480 Mobile | ≤768 Tablet | ≤1024 Landscape | ≤1280 Laptop | >1280 Desktop
   ═══════════════════════════════════════════════════ */

/* ── ≤1280px: Laptop ── */
@media (max-width: 1280px) {
  :root { --max-width: 1100px; }
  .topBarInner { font-size: var(--fs-xs); }
  .navMenuList li a { padding: 6px 8px; font-size: var(--fs-xs); }
  .footerGrid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: var(--sp-lg); }
  .footerGrid > div:nth-child(4) { display: none; } /* Hide info column */
}

/* ── ≤1024px: Tablet landscape ── */
@media (max-width: 1024px) {
  .topBar { display: none; } /* Hide topbar */
  .pageBody { grid-template-columns: 1fr; }
  .sidebarCol { order: 2; }
  .contentCol { order: 1; }
  .footerGrid { grid-template-columns: 1fr 1fr 1fr; }
  .footerBrandCol { grid-column: 1 / -1; }
  .doctorsGrid { grid-template-columns: repeat(2, 1fr); }
}

/* ── ≤768px: Tablet portrait ── */
@media (max-width: 768px) {
  :root {
    --fs-4xl: 1.75rem;
    --fs-3xl: 1.5rem;
    --fs-2xl: 1.25rem;
    --sp-3xl: 40px;
    --sp-2xl: 32px;
  }

  /* Hamburger visible */
  .hamburger { display: flex; }
  .navMenu {
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0; bottom: 0;
    background: var(--white);
    z-index: 998;
    transform: translateX(100%);
    transition: transform var(--tr-slow);
    padding: var(--sp-xl);
    overflow-y: auto;
  }
  .navMenu.open { transform: translateX(0); }
  .navMenuList { flex-direction: column; gap: 0; }
  .navMenuList li a {
    padding: var(--sp-md);
    font-size: var(--fs-md);
    border-bottom: 1px solid var(--c-border-light);
  }
  /* Sub-menu in mobile: inline nested list */
  .navMenuList .sub-menu {
    position: static;
    opacity: 1; visibility: visible;
    transform: none;
    box-shadow: none; border: none;
    border-radius: 0;
    min-width: unset; max-height: none;
    padding: 0;
    background: var(--gray-bg);
  }
  .navMenuList .sub-menu li a {
    padding: var(--sp-sm) var(--sp-md) var(--sp-sm) var(--sp-xl);
    font-size: var(--fs-sm);
    border-bottom: 1px solid var(--c-border-light);
    border-left: none;
  }
  .navActions { display: none; }

  /* Footer */
  .footerGrid { grid-template-columns: 1fr 1fr; gap: var(--sp-lg); }
  .footerBottom { flex-direction: column; gap: var(--sp-sm); text-align: center; }

  /* Doctors */
  .doctorsGrid { grid-template-columns: 1fr; }

  /* Section header */
  .sectionHeader { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* Contact hero */
  .cHeroCards { grid-template-columns: 1fr; }

  /* Legal */
  .legalCard { flex-direction: column; text-align: center; }
  .legalBtns { justify-content: center; }

  /* Inner Hero Banner */
  .heroBanner { height: 180px; }
  .heroBannerTitle, .heroBannerContent h1 { font-size: 28px; }
}

/* ── ≤480px: Mobile ── */
@media (max-width: 480px) {
  :root {
    --fs-4xl: 1.5rem;
    --fs-3xl: 1.25rem;
    --sp-lg: 16px;
    --header-height: 60px;
  }

  .container { padding: 0 var(--sp-md); }
  .navLogoImg, .navLogo .custom-logo { height: 32px; }
  .heroBannerQR { display: none; }
  .footerGrid { grid-template-columns: 1fr; }
  .legalBtns { flex-direction: column; }

  /* Doctors carousel */
  .doctorsTrack { gap: var(--sp-md); }
  .doctorsTrack .doctorCard { min-width: 260px; }
}

/* ── Print ── */
@media print {
  .topBar, .navBar, .hamburger, .navActions, .bookingBanner, .contactBlock, .legal, .footerSocials, .a11yPanel { display: none !important; }
  body { font-size: 12pt; color: #000; background: #fff; }
  .footer { background: #fff; color: #000; border-top: 1px solid #ccc; }
}

/* ─── mobile-menu.css ─── */
/* ═══ Premium Full-Screen Mobile Menu (Demo 3 Style) ═══ */
/* Triggers at ≤768px. Overlay fades in, page content fades/scales away. */

/* ═══ Hamburger Button Redesign ═══ */
@media (max-width: 768px) {
  .hamburger {
    display: flex !important;
    width: 44px; height: 44px;
    background: rgba(28, 186, 159, 0.08);
    border: none; cursor: pointer;
    flex-direction: column; justify-content: center; align-items: center; gap: 6px;
    padding: 10px; border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative; z-index: 10002;
  }
  .hamburger:hover, .hamburger:active { background: rgba(28, 186, 159, 0.15); }

  .hamburger span,
  .hamburger .hamburgerLine {
    display: block; width: 22px; height: 2px;
    background: var(--teal); border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
  }

  /* X state */
  .hamburger.active { background: rgba(255,255,255,0.15); }
  .hamburger.active span,
  .hamburger.active .hamburgerLine { background: #fff; }
  .hamburger.active span:nth-child(1),
  .hamburger.active .hamburgerLine:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
  .hamburger.active span:nth-child(2),
  .hamburger.active .hamburgerLine:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.active span:nth-child(3),
  .hamburger.active .hamburgerLine:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
}

/* ═══ Full-Screen Overlay ═══ */
.mobileMenuOverlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: linear-gradient(160deg, #0f2027 0%, #1a3a3a 30%, #16a085 100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .mobileMenuOverlay { display: block; }
}

.mobileMenuOverlay.open {
  opacity: 1;
  visibility: visible;
}

/* Subtle pattern overlay */
.mobileMenuOverlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(28, 186, 159, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* ═══ Menu Header (inside overlay) ═══ */
.mobileMenuHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobileMenuLogo {
  height: 36px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

.mobileMenuOverlay.open .mobileMenuLogo {
  opacity: 1;
  transform: translateX(0);
}

/* Close button (X) */
.mobileMenuClose {
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateX(20px);
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.mobileMenuClose svg {
  width: 22px; height: 22px;
}
.mobileMenuOverlay.open .mobileMenuClose {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}
.mobileMenuClose:hover,
.mobileMenuClose:active {
  background: rgba(255,255,255,0.18);
  color: #fff;
  transform: rotate(90deg);
}

/* ═══ Menu Links ═══ */
.mobileMenuLinks {
  list-style: none;
  margin: 0;
  padding: 24px 20px;
}

.mobileMenuLink {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Staggered entry */
.mobileMenuOverlay.open .mobileMenuLink:nth-child(1) { transition-delay: 0.1s; }
.mobileMenuOverlay.open .mobileMenuLink:nth-child(2) { transition-delay: 0.15s; }
.mobileMenuOverlay.open .mobileMenuLink:nth-child(3) { transition-delay: 0.2s; }
.mobileMenuOverlay.open .mobileMenuLink:nth-child(4) { transition-delay: 0.25s; }
.mobileMenuOverlay.open .mobileMenuLink:nth-child(5) { transition-delay: 0.3s; }
.mobileMenuOverlay.open .mobileMenuLink:nth-child(6) { transition-delay: 0.35s; }
.mobileMenuOverlay.open .mobileMenuLink:nth-child(7) { transition-delay: 0.4s; }
.mobileMenuOverlay.open .mobileMenuLink:nth-child(8) { transition-delay: 0.45s; }
.mobileMenuOverlay.open .mobileMenuLink:nth-child(9) { transition-delay: 0.5s; }

.mobileMenuOverlay.open .mobileMenuLink {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.mobileMenuLink a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 16px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: 14px;
  transition: all 0.3s;
  position: relative;
}

.mobileMenuLink a:active {
  background: rgba(255, 255, 255, 0.08);
  transform: scale(0.97);
}

.mobileMenuLink a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 56px;
  right: 16px;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.mobileMenuLink:last-child a::after { display: none; }

/* Active link */
.mobileMenuLink.active a {
  color: #fff;
  background: rgba(28, 186, 159, 0.2);
  border: 1px solid rgba(28, 186, 159, 0.3);
}

/* Icon circle */
.mobileMenuLinkIcon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.mobileMenuLink.active .mobileMenuLinkIcon {
  background: rgba(28, 186, 159, 0.3);
}

.mobileMenuLinkIcon svg {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.7);
  stroke-width: 1.8;
}

.mobileMenuLink.active .mobileMenuLinkIcon svg {
  color: #fff;
}

/* Arrow */
.mobileMenuArrow {
  margin-left: auto;
  opacity: 0.3;
  transition: all 0.3s;
}

.mobileMenuArrow svg {
  width: 16px;
  height: 16px;
  color: #fff;
  stroke-width: 2;
}

.mobileMenuLink a:active .mobileMenuArrow { opacity: 0.7; transform: translateX(4px); }

/* ═══ CTA Block ═══ */
.mobileMenuCta {
  padding: 20px 20px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

.mobileMenuOverlay.open .mobileMenuCta {
  opacity: 1;
  transform: translateY(0);
}

.mobileMenuCtaBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(28, 186, 159, 0.3);
}

.mobileMenuCtaBtn:active {
  transform: scale(0.97);
  box-shadow: 0 4px 12px rgba(28, 186, 159, 0.2);
}

.mobileMenuCtaBtn svg {
  width: 22px;
  height: 22px;
}

/* ═══ Contact Info ═══ */
.mobileMenuContact {
  padding: 28px 20px 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.55s;
}

.mobileMenuOverlay.open .mobileMenuContact {
  opacity: 1;
  transform: translateY(0);
}

.mobileMenuContactRow {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  text-decoration: none;
}

.mobileMenuContactRow svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
  flex-shrink: 0;
}

.mobileMenuContactRow strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  font-weight: 700;
}

/* Social row */
.mobileMenuSocials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.mobileMenuSocial {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s;
  overflow: hidden;
  padding: 6px;
}

.mobileMenuSocial svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.mobileMenuSocial:active {
  background: rgba(28, 186, 159, 0.3);
  color: #fff;
}

/* ═══ Submenu Accordion ═══ */
.mobileMenuLink.hasSubmenu > a { cursor: pointer; }

/* Chevron rotation */
.mobileMenuLink.hasSubmenu .mobileMenuArrow {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobileMenuLink.hasSubmenu.submenuOpen .mobileMenuArrow {
  transform: rotate(90deg);
  opacity: 0.7;
}

/* Submenu container */
.mobileSubmenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  padding-left: 8px;
}

.mobileMenuLink.submenuOpen .mobileSubmenu {
  max-height: 800px;
}

/* Submenu list — single column, compact, scrollable */
.mobileSubmenuGrid {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 0 8px;
  max-height: 260px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,107,0,0.3) transparent;
}

.mobileSubmenuGrid::-webkit-scrollbar { width: 3px; }
.mobileSubmenuGrid::-webkit-scrollbar-thumb { background: rgba(255,107,0,0.3); border-radius: 3px; }
.mobileSubmenuGrid::-webkit-scrollbar-track { background: transparent; }

/* Individual sub-item — compact row */
.mobileSubmenuItem {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  transition: all 0.3s;
  opacity: 0;
  transform: translateX(-12px);
  flex-shrink: 0;
}

.mobileMenuLink.submenuOpen .mobileSubmenuItem {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger — fast cascade */
.mobileMenuLink.submenuOpen .mobileSubmenuItem:nth-child(1) { transition-delay: 0.04s; }
.mobileMenuLink.submenuOpen .mobileSubmenuItem:nth-child(2) { transition-delay: 0.06s; }
.mobileMenuLink.submenuOpen .mobileSubmenuItem:nth-child(3) { transition-delay: 0.08s; }
.mobileMenuLink.submenuOpen .mobileSubmenuItem:nth-child(4) { transition-delay: 0.10s; }
.mobileMenuLink.submenuOpen .mobileSubmenuItem:nth-child(5) { transition-delay: 0.12s; }
.mobileMenuLink.submenuOpen .mobileSubmenuItem:nth-child(6) { transition-delay: 0.14s; }
.mobileMenuLink.submenuOpen .mobileSubmenuItem:nth-child(7) { transition-delay: 0.16s; }
.mobileMenuLink.submenuOpen .mobileSubmenuItem:nth-child(8) { transition-delay: 0.18s; }
.mobileMenuLink.submenuOpen .mobileSubmenuItem:nth-child(9) { transition-delay: 0.20s; }
.mobileMenuLink.submenuOpen .mobileSubmenuItem:nth-child(10) { transition-delay: 0.22s; }
.mobileMenuLink.submenuOpen .mobileSubmenuItem:nth-child(11) { transition-delay: 0.24s; }
.mobileMenuLink.submenuOpen .mobileSubmenuItem:nth-child(12) { transition-delay: 0.26s; }
.mobileMenuLink.submenuOpen .mobileSubmenuItem:nth-child(13) { transition-delay: 0.28s; }
.mobileMenuLink.submenuOpen .mobileSubmenuItem:nth-child(14) { transition-delay: 0.30s; }
.mobileMenuLink.submenuOpen .mobileSubmenuItem:nth-child(15) { transition-delay: 0.32s; }
.mobileMenuLink.submenuOpen .mobileSubmenuItem:nth-child(16) { transition-delay: 0.34s; }
.mobileMenuLink.submenuOpen .mobileSubmenuItem:nth-child(17) { transition-delay: 0.36s; }
.mobileMenuLink.submenuOpen .mobileSubmenuItem:nth-child(18) { transition-delay: 0.38s; }
.mobileMenuLink.submenuOpen .mobileSubmenuItem:nth-child(19) { transition-delay: 0.40s; }
.mobileMenuLink.submenuOpen .mobileSubmenuItem:nth-child(20) { transition-delay: 0.42s; }

.mobileSubmenuItem:active {
  background: rgba(255, 255, 255, 0.08);
}

.mobileSubmenuIcon {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: rgba(28, 186, 159, 0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.mobileSubmenuItem:active .mobileSubmenuIcon {
  background: rgba(28, 186, 159, 0.35);
}

.mobileSubmenuIcon svg {
  width: 12px; height: 12px;
  color: var(--teal);
  stroke-width: 2;
}

/* See all footer link */
.mobileSubmenuAll {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  margin: 4px 0 4px;
  border-radius: 8px;
  background: rgba(28, 186, 159, 0.12);
  border: 1px solid rgba(28, 186, 159, 0.2);
  color: var(--teal);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-12px);
}

.mobileMenuLink.submenuOpen .mobileSubmenuAll {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.44s;
}

.mobileSubmenuAll:active {
  background: rgba(28, 186, 159, 0.25);
}

.mobileSubmenuAll svg {
  width: 16px; height: 16px;
}

/* ═══ Page Content Transition (Demo 3 pattern) ═══ */
body.mobileMenuOpen {
  overflow: hidden;
}

body.mobileMenuOpen .navBar {
  background: transparent !important;
  box-shadow: none !important;
}

body.mobileMenuOpen .navMenu { display: none !important; }
body.mobileMenuOpen .navActions { display: none !important; }
body.mobileMenuOpen .logo { position: relative; z-index: 10002; }
body.mobileMenuOpen .logoImg { transition: filter 0.3s; }
body.mobileMenuOpen .navLogoImg,
body.mobileMenuOpen .navLogo .custom-logo { transition: filter 0.3s; }

/* ─── megamenu.css ─── */
/* ═══ Mega Menu Styles ═══ */
/* NOTE: .navBar keeps position:sticky from main.css — do not override */
.navBar { z-index: 999; }  /* Ensure navBar above dropdown */
.megaMenuWrap { position: static; }

/* Hide the native WP sub-menu on desktop only for items the JS replaces
   with a custom megamenu (Услуги/Статьи, tagged .megaMenuWrap at init) —
   other items (e.g. "О центре") keep the plain dropdown from main.css */
@media (min-width: 961px) {
  .navMenuList > li.megaMenuWrap .sub-menu { display: none !important; }
  .navMenuList > li.megaMenuWrap:hover > .sub-menu,
  .navMenuList > li.megaMenuWrap:focus-within > .sub-menu {
    opacity: 0 !important; visibility: hidden !important;
  }
}

/* Dropdown chevron — higher specificity than main.css .menu-item-has-children rule */
.navMenuList > li.megaMenuWrap > a::after,
.megaMenuWrap > a::after {
  content: '' !important;
  display: inline-block; width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid currentColor; margin-left: 5px; vertical-align: middle;
  border-right-color: transparent !important; border-bottom: none !important;
  transform: rotate(0deg) translateY(0) !important;
  transition: transform 0.3s;
}
.navMenuList > li.megaMenuWrap.megaOpen > a::after,
.megaMenuWrap.megaOpen > a::after { transform: rotate(180deg) !important; }

/* Overlay */
.megaMenuOverlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.3); z-index: 98;
  opacity: 0; visibility: hidden; transition: all 0.3s;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  pointer-events: none;
}
.megaMenuOverlay.megaOpen { opacity: 1; visibility: visible; }

/* Dropdown — positioned under navbar, constrained to container */
.megaMenuDropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 100%; max-width: 1440px;
  background: #fff; border-radius: 0 0 16px 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.04);
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 99; overflow: hidden;
  pointer-events: none;
}
.megaMenuDropdown.megaOpen {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* Search */
.megaMenuSearch {
  padding: 18px 24px 0;
  position: relative;
  max-width: 420px;
}
.megaMenuSearchInput {
  width: 100%; padding: 10px 40px 10px 16px;
  border: 2px solid #e8edf2; border-radius: 10px;
  font-size: 13px; font-family: inherit;
  background: #f8f9fb; outline: none;
  transition: border-color 0.3s, background 0.3s;
  box-sizing: border-box;
}
.megaMenuSearchInput:focus { border-color: var(--teal); background: #fff; }
.megaMenuSearchIcon {
  position: absolute; right: 40px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; color: #aaa; pointer-events: none;
  margin-top: 9px;
}

/* Content */
.megaMenuContent {
  padding: 14px 24px 18px;
}
.megaMenuGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px 0;
}
.megaMenuLink {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 8px;
  text-decoration: none; color: #333;
  font-size: 13px; line-height: 1.3;
  transition: all 0.15s; position: relative;
}
.megaMenuLink > span:last-child {
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.megaMenuLink:hover {
  background: linear-gradient(135deg, rgba(255,107,0,0.07), rgba(255,107,0,0.12));
  color: #16a085;
}
.megaMenuLinkIcon {
  width: 28px; height: 28px; border-radius: 7px; flex-shrink: 0;
  background: linear-gradient(135deg, #e8f8f5, #d1f2eb);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.megaMenuLink:hover .megaMenuLinkIcon {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
}
.megaMenuLinkIcon svg { width: 14px; height: 14px; color: var(--teal); }
.megaMenuLink:hover .megaMenuLinkIcon svg { color: #fff; }

/* Footer */
.megaMenuFooter {
  padding: 14px 24px; background: linear-gradient(135deg, #f8fafb, #f0f4f7);
  border-top: 1px solid #e8edf2;
  display: flex; justify-content: center; align-items: center;
}
.megaMenuFooterBtn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 32px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff; font-size: 14px; font-weight: 600;
  border: none; border-radius: 50px; cursor: pointer;
  text-decoration: none; font-family: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(28, 186, 159, 0.3);
  position: relative; overflow: hidden;
}
.megaMenuFooterBtn::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.megaMenuFooterBtn:hover::before { left: 100%; }
.megaMenuFooterBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(28, 186, 159, 0.45);
  background: var(--teal);
}
.megaMenuFooterBtn:active { transform: translateY(0); box-shadow: 0 2px 10px rgba(28, 186, 159, 0.3); }
.megaMenuFooterBtn svg {
  width: 16px; height: 16px;
  transition: transform 0.3s;
}
.megaMenuFooterBtn:hover svg { transform: translateX(4px); }

/* Scrollbar */
.megaMenuContent::-webkit-scrollbar { width: 4px; }
.megaMenuContent::-webkit-scrollbar-track { background: transparent; }
.megaMenuContent::-webkit-scrollbar-thumb { background: #d0d5dd; border-radius: 4px; }

/* ═══ Responsive ═══ */
@media (max-width: 1200px) {
  .megaMenuGrid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
  .megaMenuGrid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══ Articles Submenu ═══ */
.artMenuGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 24px;
}

.artMenuLink {
  font-size: 13px;
}
.artMenuLinkIcon svg {
  width: 13px;
  height: 13px;
}

@media (max-width: 1200px) {
  .artMenuGrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .artMenuGrid { grid-template-columns: 1fr; }
}

/* ─── state-guarantees.css ─── */
/* ═══ State Guarantees Cross-Cutting Block ═══ */
.stateGuarantees {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px 0;
    animation: sgSlideUp .7s cubic-bezier(.16, 1, .3, 1) both;
    margin-bottom: 40px;
}

.sgCard {
    background: linear-gradient(135deg, #f0fdf9 0%, #e8f8f5 40%, #fff 100%);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(28, 186, 159, .1);
    position: relative;
    border: 1px solid rgba(28, 186, 159, .15)
}

.sgCard::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(28, 186, 159, .08) 0%, transparent 70%);
    pointer-events: none
}

.sgCard::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(28, 186, 159, .06) 0%, transparent 70%);
    pointer-events: none
}

.sgTop {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px 36px 20px;
    position: relative;
    z-index: 1
}

.sgIcon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(28, 186, 159, .25);
    animation: sgPulse 2s ease-in-out infinite
}

.sgIcon svg {
    width: 32px;
    height: 32px;
    stroke: #fff;
    fill: none;
    stroke-width: 2
}

.sgTitle {
    font-size: 24px;
    font-weight: 900;
    color: #1e2a3a;
    letter-spacing: -.3px;
    line-height: 1.3
}

.sgTitle small {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #888;
    margin-top: 4px;
    letter-spacing: 0
}

.sgBody {
    padding: 0 36px 12px;
    position: relative;
    z-index: 1
}

.sgText {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin: 0
}

.sgLinks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 8px 36px 32px;
    position: relative;
    z-index: 1
}

.sgLink {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #fff;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid #e8edf2;
    border-radius: 16px;
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04)
}

.sgLink:hover {
    background: #f0fdf9;
    border-color: rgba(28, 186, 159, .4);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(28, 186, 159, .12)
}

.sgLinkIcon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e8f8f5, #FFE0C0);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .3s
}

.sgLink:hover .sgLinkIcon {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    box-shadow: 0 4px 16px rgba(28, 186, 159, .3)
}

.sgLinkIcon svg {
    width: 22px;
    height: 22px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 2;
    transition: all .3s
}

.sgLink:hover .sgLinkIcon svg {
    stroke: #fff
}

.sgLinkText {
    flex: 1
}

.sgLinkTitle {
    font-size: 15px;
    font-weight: 700;
    color: #1e2a3a;
    line-height: 1.4;
    margin-bottom: 3px
}

.sgLinkDesc {
    font-size: 13px;
    color: #888;
    line-height: 1.4
}

.sgLinkArrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f0f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .4s cubic-bezier(.16, 1, .3, 1)
}

.sgLink:hover .sgLinkArrow {
    background: var(--teal);
    transform: translateX(4px)
}

.sgLinkArrow svg {
    width: 16px;
    height: 16px;
    stroke: #aab4c0;
    fill: none;
    stroke-width: 2;
    transition: all .3s
}

.sgLink:hover .sgLinkArrow svg {
    stroke: #fff
}

@keyframes sgPulse {

    0%,
    100% {
        box-shadow: 0 8px 24px rgba(28, 186, 159, .25)
    }

    50% {
        box-shadow: 0 8px 32px rgba(28, 186, 159, .45)
    }
}

@keyframes sgSlideUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@media(max-width:768px) {
    .sgLinks {
        grid-template-columns: 1fr
    }

    .sgTop {
        padding: 24px 20px 16px
    }

    .sgBody {
        padding: 0 20px 8px
    }

    .sgLinks {
        padding: 8px 20px 24px
    }

    .sgTitle {
        font-size: 20px
    }
}

/* ─── chat-widget.css ─── */
/* ═══ Chat Widget — Floating Button + Modal ═══ */

/* Floating trigger button */
.chatWidgetBtn {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 9990;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  box-shadow:
    0 4px 20px rgba(28, 186, 159, 0.4),
    0 0 0 0 rgba(28, 186, 159, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  animation: chatWidgetPulse 3s ease-in-out infinite, chatWidgetEntry 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.chatWidgetBtn:hover {
  transform: scale(1.1) rotate(-5deg);
  box-shadow:
    0 6px 28px rgba(28, 186, 159, 0.5),
    0 0 0 8px rgba(28, 186, 159, 0.1);
}

.chatWidgetBtn:active {
  transform: scale(0.95);
}

.chatWidgetBtn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  transition: transform 0.3s;
}

.chatWidgetBtn:hover svg {
  transform: scale(1.1);
}

/* Pulse animation */
@keyframes chatWidgetPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(28, 186, 159, 0.4), 0 0 0 0 rgba(28, 186, 159, 0.3); }
  50% { box-shadow: 0 4px 20px rgba(28, 186, 159, 0.4), 0 0 0 10px rgba(28, 186, 159, 0); }
}

/* Entry animation */
@keyframes chatWidgetEntry {
  from { opacity: 0; transform: scale(0) translateY(40px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Badge dot */
.chatWidgetBadge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff4757;
  border: 2px solid #fff;
  animation: chatBadgePop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1s both;
}

@keyframes chatBadgePop {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

/* ═══ Modal Overlay ═══ */
.chatWidgetOverlay {
  position: fixed;
  inset: 0;
  z-index: 9991;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.chatWidgetOverlay.active {
  opacity: 1;
  visibility: visible;
}

/* ═══ Modal Card ═══ */
.chatWidgetModal {
  position: fixed;
  bottom: 170px;
  right: 20px;
  z-index: 9992;
  width: 320px;
  max-width: calc(100vw - 40px);
  background: #fff;
  border-radius: 20px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transform-origin: bottom right;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.chatWidgetModal.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Modal header */
.chatWidgetHeader {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  padding: 20px 24px;
  position: relative;
  overflow: hidden;
}

.chatWidgetHeader::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.chatWidgetHeader::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.chatWidgetHeaderTitle {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
  position: relative;
  z-index: 1;
}

.chatWidgetHeaderSub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Close button */
.chatWidgetClose {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 2;
}

.chatWidgetClose:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(90deg);
}

.chatWidgetClose svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.5;
}

/* Modal body */
.chatWidgetBody {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Action buttons */
.chatWidgetAction {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.chatWidgetAction::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
  background-size: contain;
  transition: all 0.3s;
}

.chatWidgetAction:hover::after {
  opacity: 0.7;
  transform: translateY(-50%) translateX(3px);
}

/* MAX messenger button */
.chatWidgetAction--max {
  background: linear-gradient(135deg, #3366FF 0%, #5B7FFF 100%);
  color: #fff;
}

.chatWidgetAction--max:hover {
  background: linear-gradient(135deg, #2255EE 0%, #4A6EFF 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(51, 102, 255, 0.3);
}

.chatWidgetAction--max:active {
  transform: translateY(0);
}

/* Booking button */
.chatWidgetAction--book {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
}

.chatWidgetAction--book:hover {
  background: linear-gradient(135deg, #15a890 0%, #12907a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(28, 186, 159, 0.3);
}

.chatWidgetAction--book:active {
  transform: translateY(0);
}

/* Action icon */
.chatWidgetActionIcon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.chatWidgetAction:hover .chatWidgetActionIcon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.chatWidgetActionIcon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  color: #fff;
}

/* Action text */
.chatWidgetActionText {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.chatWidgetActionTitle {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}

.chatWidgetActionDesc {
  font-size: 11px;
  opacity: 0.8;
  line-height: 1.2;
  color: #fff;
}

/* ═══ Responsive ═══ */
@media (max-width: 768px) {
  .chatWidgetBtn {
    bottom: 84px; /* above bottomNav (72px) */
    right: 14px;
    width: 50px;
    height: 50px;
  }

  .chatWidgetBtn svg {
    width: 24px;
    height: 24px;
  }

  .chatWidgetModal {
    bottom: 155px;
    right: 14px;
    width: 290px;
  }

  .chatWidgetHeader {
    padding: 16px 20px;
  }

  .chatWidgetHeaderTitle {
    font-size: 16px;
  }
}

/* Stagger entry for action buttons */
.chatWidgetModal.active .chatWidgetAction:nth-child(1) {
  animation: chatActionSlide 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.chatWidgetModal.active .chatWidgetAction:nth-child(2) {
  animation: chatActionSlide 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

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

/* ─── modal-reviews-licenses.css ─── */
/* Consultation Modal */
.consultModal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  padding: var(--sp-lg);
}
.consultModalDialog {
  position: relative;
  background: var(--c-white);
  border-radius: var(--border-radius-lg);
  padding: var(--sp-2xl);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.consultModalClose {
  position: absolute;
  top: var(--sp-md);
  right: var(--sp-md);
  color: var(--c-text-muted);
  padding: 4px;
  border-radius: 50%;
  transition: all var(--tr-fast);
}
.consultModalClose:hover { background: var(--c-bg); color: var(--c-text); }
.consultForm { display: flex; flex-direction: column; gap: var(--sp-md); }
.consultInput {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--c-border);
  border-radius: var(--border-radius-sm);
  font-size: var(--fs-base);
  transition: border-color var(--tr-fast);
  background: var(--c-white);
}
.consultInput:focus { outline: none; border-color: var(--c-primary); }
textarea.consultInput { resize: vertical; min-height: 80px; }
select.consultInput { appearance: none; cursor: pointer; }
.consultViewHidden { display: none; }
.consultSuccess {
  text-align: center;
  padding: var(--sp-xl) 0;
}
.consultSuccess svg { color: #22c55e; margin-bottom: var(--sp-md); }
.consultSuccess h3 { margin-bottom: var(--sp-sm); }
.consultSuccess p { color: var(--c-text-secondary); margin-bottom: var(--sp-lg); }

/* Reviews */
.reviewsSection { padding: var(--sp-3xl) 0; background: var(--c-bg); }
.reviewsGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-lg); }
.reviewCard {
  background: var(--c-white);
  border-radius: var(--border-radius);
  padding: var(--sp-xl);
  box-shadow: var(--shadow-card);
}
.reviewHead { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--sp-sm); }
.reviewStars { display: flex; gap: 2px; color: #f59e0b; }
.reviewDate { font-size: var(--fs-xs); color: var(--c-text-muted); }
.reviewName { font-weight: var(--fw-semibold); margin-bottom: var(--sp-sm); }
.reviewText { font-size: var(--fs-sm); color: var(--c-text-secondary); line-height: var(--lh-relaxed); }
@media (max-width: 768px) { .reviewsGrid { grid-template-columns: 1fr; } }

/* Licenses grid */
.licensesSection { padding: var(--sp-3xl) 0; }
.licensesGrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-lg); }
.licenseCard {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--tr-normal), box-shadow var(--tr-normal);
}
.licenseCard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.licenseCard img { width: 100%; height: auto; }
@media (max-width: 768px) { .licensesGrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .licensesGrid { grid-template-columns: 1fr; } }

/* ─── bottom-nav.css ─── */
/* ═══ Bottom Mobile Navigation ═══ */
/* Fixed bottom bar visible only on mobile (≤768px) */

/* Hidden on desktop */
.bottomNav { display: none; }

@media (max-width: 768px) {
  /* Body padding to prevent content overlap */
  body:not(.mobileMenuOpen) { padding-bottom: 82px; }

  .bottomNav {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9998;
    background: rgba(255, 255, 255, 0.94);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    box-shadow: 0 -1px 0 rgba(0,0,0,0.06), 0 -4px 20px rgba(0,0,0,0.06);
    padding: 8px 4px 12px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    align-items: flex-end;
    justify-content: space-around;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
  }

  /* Auto-hide on scroll down */
  .bottomNav--hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
  }

  /* Hide when mobile menu overlay is open */
  body.mobileMenuOpen .bottomNav {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
  }

  /* ═══ Item ═══ */
  .bottomNav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    flex: 1;
    min-width: 0;
    padding: 6px 2px 4px;
    color: #71717a;
    text-decoration: none;
    border-radius: 10px;
    -webkit-tap-highlight-color: transparent;
    transition: color 0.25s, transform 0.2s;
    position: relative;
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
  }

  .bottomNav__item:active {
    transform: scale(0.92);
  }

  /* ── Icon ── */
  .bottomNav__icon {
    width: 24px; height: 24px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .bottomNav__icon svg {
    width: 22px; height: 22px;
    stroke-width: 1.8;
    transition: color 0.25s;
  }

  /* ── Label ── */
  .bottomNav__label {
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.2px;
    transition: color 0.25s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 64px;
  }

  /* ── Active state ── */
  .bottomNav__item--active {
    color: var(--teal, #1cba9f);
  }
  .bottomNav__item--active .bottomNav__icon svg {
    stroke-width: 2.2;
  }
  /* Active dot indicator */
  .bottomNav__item--active::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--teal, #1cba9f);
  }

  /* ═══ CTA Item — Raised Circle ═══ */
  .bottomNav__item--cta {
    color: var(--bottomnav-cta-color, #1cba9f);
  }
  .bottomNav__item--cta .bottomNav__icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--bottomnav-cta-color, #1cba9f);
    color: #fff;
    margin-top: -20px;
    box-shadow: 0 4px 16px rgba(28, 186, 159, 0.35);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .bottomNav__item--cta .bottomNav__icon svg {
    width: 22px; height: 22px;
    color: #fff;
    stroke-width: 2;
  }
  .bottomNav__item--cta:active .bottomNav__icon {
    transform: scale(0.9);
    box-shadow: 0 2px 8px rgba(28, 186, 159, 0.2);
  }
  .bottomNav__item--cta::after { display: none; }

  /* CTA Pulse animation */
  .bottomNav__item--cta.bottomNav__item--pulse .bottomNav__icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--bottomnav-cta-color, #1cba9f);
    opacity: 0;
    animation: bottomNavPulse 2.5s ease-out infinite;
  }
  @keyframes bottomNavPulse {
    0% { transform: scale(0.85); opacity: 0.5; }
    70% { transform: scale(1.25); opacity: 0; }
    100% { transform: scale(1.25); opacity: 0; }
  }

  /* ═══ Badge ═══ */
  .bottomNav__badge {
    position: absolute;
    top: -2px; right: -4px;
    min-width: 16px; height: 16px;
    border-radius: 8px;
    background: #ef4444;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    padding: 0 4px;
    line-height: 1;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  }

  /* ═══ Phone type — green tint ═══ */
  .bottomNav__item--phone .bottomNav__icon svg {
    color: #22c55e;
  }
  .bottomNav__item--phone .bottomNav__label {
    color: #22c55e;
  }
}

/* ═══ Reduced motion ═══ */
@media (prefers-reduced-motion: reduce) {
  .bottomNav { transition: none !important; }
  .bottomNav__item--cta.bottomNav__item--pulse .bottomNav__icon::before {
    animation: none !important;
  }
}

/* ─── decorative.css ─── */
/* ═══════════════════════════════════════════════════════════════
   decorative.css — Недостающие декоративные стили
   Источник: анализ https://ulibkaufa.ru/ vs локальная тема
   Дата: 2026-04-22
   ═══════════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────────────────────────
   1. BVI — Кнопка доступности для слабовидящих
   Плагин: BVI (Better Visually Impaired)
   Отсутствовала полностью в локальном проекте
   ───────────────────────────────────────────────────────────── */

.bvi-widget,
.bvi-shortcode a,
.bvi-widget a,
.bvi-shortcode {
    color: #ffffff;
    background-color: #24daff;
}

.bvi-widget .bvi-svg-eye,
.bvi-shortcode .bvi-svg-eye {
    display: inline-block;
    overflow: visible;
    width: 1.125em;
    height: 1em;
    font-size: 2em;
    vertical-align: middle;
}

.bvi-widget,
.bvi-shortcode {
    -webkit-transition: background-color .2s ease-out, transform .15s ease, box-shadow .15s ease;
    transition: background-color .2s ease-out, transform .15s ease, box-shadow .15s ease;
    cursor: pointer;
    border-radius: 8px;
    display: inline-block;
    padding: 8px 14px;
    vertical-align: middle;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.bvi-widget:hover,
.bvi-shortcode a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.22);
    filter: brightness(1.08);
}

/* Панель настроек BVI (если открыта) */
.bvi-panel {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
    border-radius: 0 0 12px 12px;
}


/* ─────────────────────────────────────────────────────────────
   2. Gwolle-GB — Отзывы / Гостевая книга
   Плагин: Gwolle Guestbook
   Отсутствовала полностью в локальном проекте
   ───────────────────────────────────────────────────────────── */

.gwolle-gb .gb-entry {
    position: relative !important;
    border-top: 1px #ddd solid !important;
    margin: 0 !important;
    clear: left !important;
    background-color: #ffffff !important;
    border-radius: 0.5rem !important;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 30%) !important;
    padding: 1.5rem !important;
    margin-bottom: 1rem !important;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.gwolle-gb .gb-entry:hover {
    box-shadow: 0 4px 16px 0 rgb(0 0 0 / 15%) !important;
    transform: translateY(-2px);
}

.gwolle-gb .gb-entry .gb-author-info {
    display: block;
    border-bottom: 1px solid #dadada;
    margin-bottom: 10px;
    padding-bottom: 8px;
}

.gwolle-gb .gb-entry .gb-author-name {
    font-weight: 700;
    color: var(--text, #222);
    font-size: 15px;
}

.gwolle-gb .gb-entry .gb-date {
    font-size: 12px;
    color: var(--text-light, #777);
    margin-left: 8px;
}

.gwolle-gb .gb-entry .gb-entry-text {
    font-size: 15px;
    color: var(--text-mid, #444);
    line-height: 1.7;
}

/* Форма написания отзыва */
.gwolle-gb form.gwolle-gb-write {
    position: relative;
    margin-top: 20px;
    text-align: left;
    padding-left: 5px;
}

.gwolle-gb form.gwolle-gb-write input[type="text"],
.gwolle-gb form.gwolle-gb-write input[type="email"],
.gwolle-gb form.gwolle-gb-write textarea {
    border: 2px solid var(--gray-border, #e8edf2);
    border-radius: 8px;
    padding: 10px 14px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.25s;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.gwolle-gb form.gwolle-gb-write input[type="text"]:focus,
.gwolle-gb form.gwolle-gb-write input[type="email"]:focus,
.gwolle-gb form.gwolle-gb-write textarea:focus {
    border-color: var(--teal, #1cba9f);
    box-shadow: 0 0 0 3px rgba(28, 186, 159, 0.1);
}

.gwolle-gb form.gwolle-gb-write input[type="submit"] {
    background: linear-gradient(135deg, var(--teal, #1cba9f), var(--teal-dark, #16a085));
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.gwolle-gb form.gwolle-gb-write input[type="submit"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(28, 186, 159, 0.35);
}

/* Уведомление об отклонении */
.gb-notice-dismiss {
    height: 26px !important;
    width: 26px !important;
    font-size: 19px !important;
}


/* ─────────────────────────────────────────────────────────────
   3. MPTT — Расписание работы (timetable shortcode)
   Плагин: My Priest Timetable / Modern Events Calendar
   Отсутствовал полностью в локальном проекте
   ───────────────────────────────────────────────────────────── */

.mptt-shortcode-wrapper .mptt-shortcode-table:first-of-type {
    display: table !important;
}

.mptt-shortcode-wrapper .mptt-shortcode-table .mptt-event-container:hover {
    height: auto !important;
    min-height: 100% !important;
}

body.mprm_ie_browser .mptt-shortcode-wrapper .mptt-event-container {
    height: auto !important;
}

/* Скрыть первую таблицу на мобильных */
@media (max-width: 767px) {
    .mptt-shortcode-wrapper .mptt-shortcode-table:first-of-type {
        display: none !important;
    }
}


/* ─────────────────────────────────────────────────────────────
   4. PLP Price List Block — Прейскурант
   Используется на странице /price/
   Отсутствовал в локальном проекте
   ───────────────────────────────────────────────────────────── */

@media (min-width: 992px) {
    .plp-price-list-block .horizontal dt {
        float: left;
        width: 85%;
    }

    .plp-price-list-block .horizontal dd {
        float: left;
        width: 15%;
        text-align: right;
        font-weight: 700;
        color: var(--navy, #1e2a3a);
    }

    .plp-price-list-block .horizontal dl::after {
        content: '';
        display: table;
        clear: both;
    }
}

.plp-price-list-block dt {
    padding: 10px 0;
    border-bottom: 1px dashed var(--gray-border, #e8edf2);
    font-size: 14px;
    color: var(--text-mid, #444);
    line-height: 1.5;
}

.plp-price-list-block dd {
    padding: 10px 0;
    border-bottom: 1px dashed var(--gray-border, #e8edf2);
    font-size: 14px;
    font-weight: 700;
    color: var(--navy, #1e2a3a);
    margin-left: 0;
}

.plp-price-list-block dl {
    margin: 0;
    padding: 0;
}


/* ─────────────────────────────────────────────────────────────
   5. ElementsKit — InfoBox и Accordion
   Адаптивные исправления для планшетов и мобильных
   Отсутствовали в локальном проекте
   ───────────────────────────────────────────────────────────── */

@media (max-width: 990px) {
    .elementor-2629 .elementor-element.elementor-element-3f8c
    .elementskit-infobox .elementskit-info-box-title {
        line-height: 25px;
    }

    .elementor-2629 .elementor-element.elementor-element-9784841 {
        padding: 0 20px 53px 20px;
        overflow: visible;
    }

    /* Скрыть баннерное изображение страницы на планшетах */
    .page_banner_img {
        display: none;
    }
}

@media (max-width: 500px) {
    /* Аккордеон ElementsKit на маленьких экранах */
    .elementskit-accordion .elementskit-card-header > .elementskit-btn-link {
        font-size: 9px;
        padding: 5px 20px 5px 70px;
        height: 52px;
    }

    .ekit-wid-con .elementskit-accordion .ekit-accordion-title {
        padding-right: 10px;
        display: inline-block;
        font-size: 16px;
        line-height: 20px;
    }
}

/* EKit медиа-виджет — фиксированная высота */
.ekit-wid-con embed,
.ekit-wid-con img:not([draggable]),
.ekit-wid-con object,
.ekit-wid-con video {
    max-width: 100%;
    height: 260px;
}


/* ─────────────────────────────────────────────────────────────
   6. Utility-классы
   Используются в разметке живого сайта, отсутствовали локально
   ───────────────────────────────────────────────────────────── */

/* Скрытие overflow — используется для slider-секций */
.xs_overflow {
    overflow: hidden !important;
}

/* WooCommerce — исправление галереи */
.woocommerce-product-gallery {
    opacity: 1 !important;
}

/* WooCommerce — обязательные поля */
.woocommerce form .form-row .required {
    visibility: visible;
}


/* ─────────────────────────────────────────────────────────────
   7. Медиа-топбар — псевдоэлемент-расширитель
   Живой сайт: .medizco_topbar > .elementor-container::before
   Создаёт «бесконечное» расширение градиента влево
   ───────────────────────────────────────────────────────────── */

@media (min-width: 1025px) {
    .medizco_topbar > .elementor-container::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        right: 100%;
        width: 9999px;
        background: inherit;
        pointer-events: none;
    }
}


/* ─────────────────────────────────────────────────────────────
   8. Топбар — дополнительный декоративный псевдоэлемент ::after
   Создаёт диагональный срез справа, как на живом сайте
   ───────────────────────────────────────────────────────────── */

.topBar {
    position: relative;
    overflow: visible;
}

.topBar::after {
    content: '';
    position: absolute;
    top: 0;
    right: -20px;
    bottom: 0;
    width: 40px;
    background: inherit;
    clip-path: polygon(0 0, 70% 0, 100% 100%, 30% 100%);
    pointer-events: none;
    z-index: 1;
}


/* ─────────────────────────────────────────────────────────────
   9. Секция «О центре» — декоративные блоки
   Живой сайт: elementor-1155, ac65cc9 — отступы на мобильных
   ───────────────────────────────────────────────────────────── */

@media (max-width: 990px) {
    .elementor-1155 .elementor-element.elementor-element-ac65cc9
    > .elementor-element-populated {
        padding: 280px 10px 0 10px;
    }
}


/* ─────────────────────────────────────────────────────────────
   10. Декоративные hover-эффекты для карточек отзывов
       (используются в .reviewCard из about.css)
       Усиление — добавление ::before с декоративной кавычкой
   ───────────────────────────────────────────────────────────── */

.reviewCard::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 52px;
    color: var(--teal, #1cba9f);
    opacity: 0.12;
    font-weight: 900;
    line-height: 1;
    font-family: Georgia, 'Times New Roman', serif;
    pointer-events: none;
}

/* Усиление hover для звёздного рейтинга */
.reviewStars::before {
    content: '';
}


/* ─────────────────────────────────────────────────────────────
   11. Декоративные псевдоэлементы секции «Акции/преимущества»
       Живой сайт: фоновые круги за блоком преимуществ
   ───────────────────────────────────────────────────────────── */

.features {
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(28, 186, 159, 0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.features::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(85, 141, 202, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.featuresInner,
.featureCard {
    position: relative;
    z-index: 1;
}


/* ─────────────────────────────────────────────────────────────
   12. Декоративный псевдоэлемент — секция «Врачи»
       Живой сайт: волнообразная линия-разделитель сверху секции
   ───────────────────────────────────────────────────────────── */

.doctors {
    position: relative;
}

.doctors::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--teal, #1cba9f) 30%, #558dca 70%, transparent);
    opacity: 0.5;
}


/* ─────────────────────────────────────────────────────────────
   13. Декоративный псевдоэлемент — секция «Статистика»
       Живой сайт: цветная полоска-акцент под числом
   ───────────────────────────────────────────────────────────── */

.statNumber::after,
.statNum::after {
    content: '';
    display: block;
    width: 32px;
    height: 3px;
    background: linear-gradient(90deg, var(--teal, #1cba9f), #558dca);
    border-radius: 2px;
    margin-top: 6px;
}


/* ─────────────────────────────────────────────────────────────
   14. Декоративные псевдоэлементы — секция «Об Улыбке» (hero)
       Живой сайт: floating dots анимация за hero-баннером
   ───────────────────────────────────────────────────────────── */

.hero {
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 3%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--teal, #1cba9f);
    opacity: 0.25;
    animation: heroFloatDot1 7s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 2%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #558dca;
    opacity: 0.2;
    animation: heroFloatDot2 9s ease-in-out infinite 1.5s;
    pointer-events: none;
    z-index: 0;
}

@keyframes heroFloatDot1 {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-22px) scale(1.1); }
}

@keyframes heroFloatDot2 {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-16px) scale(1.15); }
}


/* ─────────────────────────────────────────────────────────────
   15. Декоративный псевдоэлемент — нижний CTA-блок о центре
       (aboutCta уже имеет ::before в about.css,
        добавляем ::after — второй круг слева)
   ───────────────────────────────────────────────────────────── */

.aboutCta::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -30px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}


/* ─────────────────────────────────────────────────────────────
   16. Декоративный псевдоэлемент — навбар-разделитель
       Живой сайт: тонкая цветная полоска под навбаром
   ───────────────────────────────────────────────────────────── */

.navBar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--teal, #1cba9f) 30%, #558dca 70%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.navBar.scrolled::after {
    opacity: 0.6;
}


/* ─────────────────────────────────────────────────────────────
   17. Декоративный псевдоэлемент — боковая навигация
       ::before — цветная точка-индикатор активного пункта
   ───────────────────────────────────────────────────────────── */

.sideNavList a.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: linear-gradient(to bottom, var(--teal, #1cba9f), var(--teal-dark, #16a085));
    border-radius: 0 2px 2px 0;
}

.sideNavList a {
    position: relative;
}


/* ─────────────────────────────────────────────────────────────
   18. Декоративные полосы — bookingBanner (3 части)
       ::before на левой части — эффект блика
   ───────────────────────────────────────────────────────────── */

.bookingBannerLeft::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 60%;
    height: 200%;
    background: linear-gradient(120deg, rgba(255,255,255,0.12) 0%, transparent 60%);
    transform: skewX(-15deg);
    pointer-events: none;
    z-index: 2;
}


/* ─────────────────────────────────────────────────────────────
   19. Декоративный псевдоэлемент — карточка специалиста
       ::after — градиентный оверлей на фото при hover
   ───────────────────────────────────────────────────────────── */

.doctorImgWrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255,107,0,0.18), transparent);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.35s;
    pointer-events: none;
}

.doctorCard:hover .doctorImgWrap::before {
    opacity: 1;
}


/* ─────────────────────────────────────────────────────────────
   20. Декоративный псевдоэлемент — футер
       ::before — декоративная цветная линия поверх футера
   ───────────────────────────────────────────────────────────── */

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal, #1cba9f) 0%, #558dca 50%, var(--teal, #1cba9f) 100%);
    opacity: 0.7;
}

.footer {
    position: relative;
}


/* ─────────────────────────────────────────────────────────────
   21. Декоративный псевдоэлемент — блок Legal (лицензии/ОМС)
       ::before — иконочный декоративный уголок
   ───────────────────────────────────────────────────────────── */

.legalCard {
    position: relative;
    overflow: hidden;
}

.legalCard::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,0,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.legalCard::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 40%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(85,141,202,0.07) 0%, transparent 70%);
    pointer-events: none;
}


/* ─────────────────────────────────────────────────────────────
   22. Декоративный фоновый узор — секция «Запись на приём»
       Живой сайт: паттерн поверх bookingBanner
   ───────────────────────────────────────────────────────────── */

.bookingBannerMid::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255,107,0,0.025) 0px,
        rgba(255,107,0,0.025) 1px,
        transparent 1px,
        transparent 14px
    );
    pointer-events: none;
    z-index: 1;
}

