/* ═══════════════════════════════════════════════════════════
   AZUU DENT — Clean Clinical Style 02
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,600;0,8..60,700;1,8..60,300;1,8..60,400&family=Inter:wght@300;400;500;600&display=swap');

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
  --bg: #ffffff;
  --bg-alt: #f4f7f6;
  --bg-card: #ffffff;
  --accent: #0e8a7b;
  --accent-light: #e8f5f3;
  --accent-mid: #0bb39e;
  --text: #1a2332;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --border: #e2e8f0;
  --border-light: #f0f4f2;

  /* Required by effects.js */
  --accent-rgb: 14, 138, 123;
  --bg-rgb: 255, 255, 255;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  --font-heading: 'Source Serif 4', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(14, 138, 123, 0.08);
  --shadow-md: 0 8px 32px rgba(14, 138, 123, 0.12);
  --shadow-lg: 0 20px 60px rgba(14, 138, 123, 0.15);

  --nav-height: 80px;
  --container: 1200px;
}

/* ─── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol { list-style: none; }

/* ─── Typography ────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  word-break: break-word;
  overflow-wrap: break-word;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { line-height: 1.75; color: var(--text-secondary); }

.text-accent { color: var(--accent); }

/* ─── Layout ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  overflow-wrap: break-word;
  word-break: break-word;
  margin-bottom: 16px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ─── Medical Cross Decorative Background ───────────────── */
.medical-cross-bg {
  position: absolute;
  pointer-events: none;
  opacity: 0.07;
  z-index: 0;
}

.medical-cross-bg svg {
  fill: var(--accent);
}

/* ─── Scroll Progress ───────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 9999;
  transition: transform 0.1s linear;
}

/* ─── Preloader ─────────────────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--accent);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-inner {
  text-align: center;
  color: white;
}

.preloader-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid rgba(255,255,255,0.3);
}

.preloader-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.preloader-spinner {
  width: 32px;
  height: 32px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  margin: 16px auto 0;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ─── Nav ───────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(14, 138, 123, 0.08);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-brand img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.1;
}

.nav-brand-sub {
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  transition: color 0.25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 100%;
  height: 2px;
  background: var(--accent);
  transition: right 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  right: 0;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  outline: none;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── Mobile Menu ───────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-height);
  background: white;
  z-index: 999;
  padding: 32px 24px;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu a {
  font-size: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: block;
}

.mobile-menu a:hover { color: var(--accent); }

.mobile-menu-contacts {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu-contacts a {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 400;
  border-bottom: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition);
  min-height: 48px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 16px rgba(14, 138, 123, 0.3);
}

.btn-primary:hover {
  background: var(--accent-mid);
  box-shadow: 0 8px 28px rgba(14, 138, 123, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: var(--accent);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.btn-white:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1rem;
  min-height: 56px;
}

.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: scale(0);
  animation: ripple-anim 0.8s ease-out forwards;
  pointer-events: none;
}

@keyframes ripple-anim {
  to { transform: scale(1); opacity: 0; }
}

/* ─── Page Transition Overlay ───────────────────────────── */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--accent);
  z-index: 9999;
  pointer-events: none;
}

/* ─── Hero — Split Half ─────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: calc(100vh - var(--nav-height));
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
  position: relative;
  z-index: 1;
  background: var(--bg);
}

.hero-cross-decor {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  opacity: 0.05;
  pointer-events: none;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 24px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--accent-light);
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-light) 0%, #d1ede9 100%);
  z-index: 0;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-image-badge {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: white;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.hero-image-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-image-badge-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--accent);
}

.hero-badge-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.hero-badge-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Cross pattern decor bottom */
.hero-bottom-cross {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  overflow: hidden;
  pointer-events: none;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
}

/* ─── UTP / Features strip ──────────────────────────────── */
.utp-strip {
  background: var(--accent);
  padding: 20px 0;
  overflow: hidden;
}

.utp-items {
  display: flex;
  gap: 0;
  align-items: center;
  flex-wrap: wrap;
}

.utp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 32px;
  border-right: 1px solid rgba(255,255,255,0.2);
  color: white;
  white-space: nowrap;
}

.utp-item:last-child { border-right: none; }

.utp-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.utp-icon svg {
  width: 100%;
  height: 100%;
  fill: rgba(255,255,255,0.85);
}

.utp-text {
  font-size: 0.88rem;
  font-weight: 500;
}

/* ─── Services Grid ─────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}


.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 3px;
  background: var(--accent);
  border-radius: 0 2px 2px 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(14, 138, 123, 0.25);
  transform: translateY(-4px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.full-width {
  grid-column: 1 / -1;
}

.service-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: block;
}

.service-card.full-width .service-card-img {
  height: 320px;
}

.service-card-body {
  padding: 24px 28px 28px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.service-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: white;
  background: var(--accent);
  padding: 5px 12px;
  border-radius: 100px;
}

/* ─── Team Grid — 3:4 крупные фото ──────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.team-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: visible;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.team-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 3px;
  background: var(--accent);
  border-radius: 0 2px 2px 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(14, 138, 123, 0.25);
  transform: translateY(-4px);
}

.team-card:hover::before {
  opacity: 1;
}

.team-card-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.team-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}

.team-card:hover .team-card-img-wrap img {
  transform: scale(1.05);
}

.team-card-body {
  padding: 20px 24px 24px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.team-card-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.team-card-role {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 8px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.team-card-spec {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── Reviews Carousel ──────────────────────────────────── */
.reviews-section {
  background: var(--bg-alt);
}

.reviews-swiper {
  padding-bottom: 48px !important;
}

.review-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  height: auto;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(14, 138, 123, 0.2);
}

.review-quote {
  font-size: 3rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.3;
  font-family: Georgia, serif;
  margin-bottom: 12px;
}

.review-text {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ─── Gallery — Before/After + 2×2 ─────────────────────── */
.gallery-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item.tall img {
  height: 500px;
}

/* Before-After Slider */
.ba-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  touch-action: pan-y;
}

.ba-before,
.ba-after {
  display: block;
  width: 100%;
}

.ba-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.ba-before img,
.ba-after img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.ba-after {
  clip-path: inset(0 50% 0 0);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-handle svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
}

.ba-labels {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 4;
  pointer-events: none;
}

.ba-label {
  background: rgba(0,0,0,0.6);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Gallery Grid section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.gallery-grid .gallery-item img {
  height: 250px;
}

/* ─── CTA Section ───────────────────────────────────────── */
.cta-section {
  background: var(--accent);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  pointer-events: none;
}

.cta-cross {
  position: absolute;
  opacity: 0.07;
  pointer-events: none;
}

.cta-cross svg {
  fill: white;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto 40px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  animation: float-particle linear infinite;
  pointer-events: none;
}

@keyframes float-particle {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

/* ─── Sticky Bottom Bar ─────────────────────────────────── */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--border);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 900;
  box-shadow: 0 -4px 24px rgba(14, 138, 123, 0.1);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cta-bar.visible {
  transform: translateY(0);
}

.sticky-cta-text {
  flex: 1;
}

.sticky-cta-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.sticky-cta-text span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.sticky-cta-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

/* ─── Contact Section ───────────────────────────────────── */
.contact-section {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.contact-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
}

.contact-info strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.contact-info a,
.contact-info p {
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}

.contact-info a:hover { color: var(--accent); }

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
  border: 1px solid var(--border);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ─── Page Hero (inner pages) ───────────────────────────── */
.page-hero {
  padding: calc(var(--nav-height) + 80px) 0 80px;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.page-hero-cross {
  position: absolute;
  top: -40px;
  right: -40px;
  opacity: 0.06;
  pointer-events: none;
}

.page-hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.page-hero-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.page-hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.75;
}

/* ─── Footer ────────────────────────────────────────────── */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: white;
}

.footer-brand-sub {
  font-size: 0.72rem;
  color: var(--accent-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: rgba(255,255,255,0.8);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  overflow-wrap: break-word;
  word-break: break-word;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.25s;
}

.footer-links a:hover { color: white; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-mid);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a,
.footer-contact-item span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.footer-contact-item a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ─── Section Divider (effects.js) ─────────────────────── */
.section-divider {
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: var(--border);
  transform-origin: left;
}

/* ─── Card Spotlight (effects.js) ──────────────────────── */
.card-spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
}

/* ─── Gradient Border (effects.js) ─────────────────────── */
.gradient-border {
  position: relative;
}

.gradient-border::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(14, 138, 123, 0.2), transparent 60%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}

.gradient-border:hover::after {
  opacity: 1;
}

/* ─── Lightbox (effects.js) ─────────────────────────────── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Chromatic hover ───────────────────────────────────── */
.chromatic-hover img {
  transition: filter 0.3s;
}
.chromatic-hover:hover img {
  filter: saturate(1.2) brightness(1.05);
}

/* ─── Img Curtain (effects.js) ──────────────────────────── */
.img-curtain {
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform-origin: left;
  pointer-events: none;
  z-index: 3;
}

/* ─── About / Intro Section ─────────────────────────────── */
.about-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}

.about-img-main {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-small {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 180px;
}

.about-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text-col {
  overflow-wrap: break-word;
  word-break: break-word;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.about-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
}

.about-list-icon {
  width: 24px;
  height: 24px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-list-icon svg {
  width: 12px;
  height: 12px;
  fill: var(--accent);
}

/* ─── Services Full Page ────────────────────────────────── */
.services-section .services-grid {
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ─── Promo banner ──────────────────────────────────────── */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.promo-card {
  background: linear-gradient(135deg, var(--accent-light), #c8e8e4);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(14, 138, 123, 0.15);
  position: relative;
  overflow: visible;
}

.promo-tag {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.promo-card h3 {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 8px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.promo-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.promo-discount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

/* ─── Horizontal rule decor ─────────────────────────────── */
.accent-line {
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 16px;
}

/* ─── Misc ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ─── Page Enter Transition ─────────────────────────────── */
.page-enter-transition {
  position: fixed;
  inset: 0;
  background: var(--accent);
  z-index: 9998;
  pointer-events: none;
}

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-split {
    grid-template-columns: 1fr;
  }

  .hero-right {
    height: 50vh;
    min-height: 340px;
  }

  .hero-left {
    padding: 60px 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 68px;
  }

  .section {
    padding: 64px 0;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .hero {
    min-height: auto;
  }

  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: 48px 24px 40px;
    order: 2;
  }

  .hero-right {
    order: 1;
    height: 60vw;
    min-height: 260px;
    max-height: 380px;
  }

  .hero-stats {
    gap: 24px;
  }

  .hero-image-badge {
    left: 16px;
    bottom: 16px;
  }

  .utp-items {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .utp-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    width: 100%;
    padding: 12px 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card.full-width {
    grid-column: auto;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .gallery-page-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-grid > :first-child {
    grid-column: auto;
  }

  .sticky-cta-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px 16px;
  }

  .sticky-cta-actions {
    justify-content: stretch;
  }

  .sticky-cta-actions .btn {
    flex: 1;
  }

  .page-hero {
    padding: calc(var(--nav-height) + 48px) 0 48px;
  }

  .ba-before img,
  .ba-after img {
    height: 260px;
  }

  .cta-section {
    padding: 64px 0;
  }
}

@media (max-width: 480px) {
  .hero-left {
    padding: 36px 20px 32px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin: 0 auto;
  }

  .cta-actions .btn {
    width: 100%;
  }
}

/* ─── Swiper pagination dots ────────────────────────────── */
.swiper-pagination-bullet {
  background: var(--accent) !important;
  opacity: 0.3 !important;
}

.swiper-pagination-bullet-active {
  opacity: 1 !important;
  width: 24px !important;
  border-radius: 4px !important;
}
