/* ============================================================
   ORDINACE HAJKOVÁ — styles.css
   Desktop styles only. Media queries → responsive.css
   ============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --brand-primary: #1A4F8A;
  --brand-dark:    #0F3360;
  --brand-mid:     #2E75C8;
  --brand-light:   #C8DEFF;
  --brand-tint:    #F0F6FF;
  --brand-mid2:    #5B9AD4;
  --text-dark:     #0C1929;
  --text-mid:      #3C5170;
  --text-light:    #6A7FA3;
  --white:         #FFFFFF;
  --off-white:     #F5F9FF;
  --border:        #D0DFF0;
  --radius-lg:     16px;
  --shadow-card:   0 4px 6px rgba(26,79,138,0.10), 0 10px 24px rgba(26,79,138,0.08);
  --shadow-elevated: 0 20px 40px rgba(26,79,138,0.18), 0 4px 8px rgba(0,0,0,0.06);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── SECTION HELPERS ── */
.section-pad { padding: 96px 0; }
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-mid);
  margin-bottom: 14px;
}
.section-heading {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--text-dark);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-heading--white { color: var(--white); }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.75;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease,
              transform 0.18s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.22s ease;
}
.btn-primary {
  background: var(--brand-primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(26,79,138,0.35);
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,79,138,0.45);
}
.btn-primary:active { transform: translateY(0); box-shadow: 0 4px 14px rgba(26,79,138,0.35); }
.btn-primary:focus-visible { outline: 3px solid var(--brand-light); outline-offset: 3px; }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white:focus-visible { outline: 3px solid rgba(255,255,255,0.5); outline-offset: 3px; }

.btn-outline {
  background: transparent;
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}
.btn-outline:hover {
  background: var(--brand-tint);
  transform: translateY(-2px);
}
.btn-outline:focus-visible { outline: 3px solid var(--brand-light); outline-offset: 3px; }

/* ── SCROLL ANIMATIONS ── */
.animate-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.animate-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 60ms; }
.delay-2 { transition-delay: 120ms; }
.delay-3 { transition-delay: 180ms; }
.delay-4 { transition-delay: 240ms; }
.delay-5 { transition-delay: 300ms; }
.delay-6 { transition-delay: 360ms; }
.delay-7 { transition-delay: 420ms; }
.delay-8 { transition-delay: 480ms; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  background: transparent;
  transition: background 300ms ease, backdrop-filter 300ms ease, box-shadow 300ms ease;
}
.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
#navbar.scrolled {
  background: rgba(10, 30, 60, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.18);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--brand-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: -0.01em;
}
.nav-logo-sub {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 6px 14px;
  border-radius: 6px;
  transition: color 0.18s ease, background 0.18s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 14px; right: 14px;
  height: 2px;
  background: var(--brand-mid2);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.22s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a:focus-visible { outline: 2px solid var(--brand-light); border-radius: 6px; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  transition: color 0.18s ease;
}
.nav-phone:hover { color: var(--white); }
.nav-phone svg { flex-shrink: 0; }
.nav-cta {
  font-size: 0.88rem;
  padding: 10px 22px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 40, 0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--white);
  transition: color 0.18s ease;
}
.mobile-menu a:hover { color: var(--brand-light); }
.mobile-menu-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--white);
  padding: 8px;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/hero1.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10,25,55,0.80) 40%, rgba(26,79,138,0.45) 100%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: #4ADE80;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.25);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74,222,128,0.25); }
  50% { box-shadow: 0 0 0 6px rgba(74,222,128,0.12); }
}
.hero-h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 20px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--brand-light);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scroll-line 2s infinite;
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
#trust-bar {
  background: #0F2447;
  padding: 52px 0;
}
.trust-bar-label {
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(200,222,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-align: center;
  margin-bottom: 28px;
}
.trust-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.trust-stat {
  text-align: center;
}
.trust-stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}
.trust-stat-label {
  font-size: 0.78rem;
  color: rgba(200,222,255,0.6);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.02em;
}
.trust-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
}
.insurance-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.insurer-badge {
  background: rgba(255,255,255,0.96);
  border-radius: 10px;
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  transition: transform 0.18s cubic-bezier(0.34,1.56,0.64,1), opacity 0.18s ease;
  min-width: 80px;
}
.insurer-badge:hover { transform: translateY(-3px); opacity: 0.92; }
.insurer-badge img { height: 26px; width: auto; object-fit: contain; }
.insurer-code {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* ============================================================
   SERVICES
   ============================================================ */
#sluzby { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.service-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease, background 0.22s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  background: var(--white);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--brand-tint);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--brand-primary);
  transition: background 0.22s ease, transform 0.22s ease;
}
.service-card:hover .service-icon {
  background: var(--brand-primary);
  color: var(--white);
  transform: scale(1.08);
}
.service-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.service-desc {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.smile-banner {
  position: relative;
  margin-top: 64px;
  border-radius: 20px;
  overflow: hidden;
  height: 320px;
}
.smile-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.smile-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,25,60,0.82) 0%, rgba(26,79,138,0.5) 60%, transparent 100%);
}
.smile-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 56px;
}
.smile-quote {
  font-family: 'DM Serif Display', serif;
  font-size: 1.9rem;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.25;
  max-width: 520px;
  margin-bottom: 20px;
}
.smile-quote em { font-style: italic; color: var(--brand-light); }

/* ============================================================
   ABOUT
   ============================================================ */
#o-nas { background: var(--brand-tint); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 540px;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(26,79,138,0.3) 0%, transparent 60%);
}
.about-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--white);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
}
.about-badge-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem;
  color: var(--brand-primary);
  line-height: 1;
  letter-spacing: -0.03em;
}
.about-badge-label {
  font-size: 0.78rem;
  color: var(--text-mid);
  font-weight: 500;
  margin-top: 4px;
}
.about-content { padding: 8px 0; }
.about-points {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.about-point-icon {
  width: 36px;
  height: 36px;
  background: var(--brand-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  margin-top: 2px;
}
.about-point-text strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.about-point-text span {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.55;
}

/* ============================================================
   GALLERY STRIP
   ============================================================ */
#galerie {
  background: var(--white);
  padding: 0;
}
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 420px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,51,96,0.55) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* ============================================================
   TEAM
   ============================================================ */
#nas-tym { background: var(--brand-tint); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevated);
}
.team-photo-wrap {
  position: relative;
  overflow: hidden;
  height: 320px;
  background: var(--off-white);
}
.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}
.team-card:hover .team-photo-wrap img { transform: scale(1.04); }
.team-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,25,41,0.55) 0%, transparent 55%);
}
.team-body {
  padding: 20px 24px 24px;
}
.team-role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-mid);
  margin-bottom: 6px;
}
.team-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.team-credentials {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}
.team-email {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--brand-primary);
  transition: color 0.2s ease;
}
.team-email:hover { color: var(--brand-dark); }
.team-email:focus-visible { outline: 2px solid var(--brand-primary); border-radius: 4px; }

/* PRO CARD variant */
.team-card--pro .team-upper {
  display: flex;
}
.team-card--pro .team-photo-wrap {
  width: 42%;
  height: 220px;
  flex-shrink: 0;
}
.team-card--pro .team-photo-wrap img { object-position: top center; }
.team-hours-mini {
  flex: 1;
  background: var(--off-white);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.thm-title {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-mid);
  margin-bottom: 10px;
}
.thm-table { width: auto; border-collapse: collapse; }
.thm-table tr { border-bottom: 1px solid var(--border); }
.thm-table tr:last-child { border-bottom: none; }
.thm-table td { padding: 4px 0; font-size: 0.72rem; color: var(--text-dark); line-height: 1.3; }
.thm-d {
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.04em;
  width: 20px;
  padding-right: 6px;
}

/* Hover cue */
.team-card[data-member] .team-body::after {
  content: 'Zobrazit profil →';
  display: block;
  margin-top: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-primary);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.team-card[data-member]:hover .team-body::after {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   TEAM MODAL
   ============================================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8,18,40,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
.modal-card {
  background: var(--white);
  border-radius: 24px;
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35), 0 8px 24px rgba(0,0,0,0.15);
  transform: scale(0.94) translateY(16px);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
}
.modal-backdrop.open .modal-card { transform: scale(1) translateY(0); }
.modal-photo-col {
  position: relative;
  overflow: hidden;
  border-radius: 24px 0 0 24px;
  min-height: 420px;
}
.modal-photo-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.modal-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,51,96,0.88) 0%, transparent 50%);
}
.modal-photo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}
.modal-photo-badge .modal-role {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-mid2);
  margin-bottom: 4px;
}
.modal-photo-badge .modal-name-sm {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: white;
  font-weight: 700;
}
.modal-content-col {
  padding: 40px 36px;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background 0.2s ease, transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.modal-close:hover { background: white; transform: scale(1.1); }
.modal-close:focus-visible { outline: 2px solid var(--brand-primary); outline-offset: 2px; }
.modal-close svg { color: var(--text-dark); }
.modal-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-mid);
  margin-bottom: 6px;
}
.modal-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.7rem;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.modal-email {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--brand-primary);
  margin-bottom: 24px;
}
.modal-email svg { flex-shrink: 0; }
.modal-section { margin-bottom: 20px; }
.modal-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
  margin-bottom: 12px;
}
.modal-item {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.modal-item-year {
  font-size: 0.75rem;
  color: var(--brand-primary);
  font-weight: 600;
  white-space: nowrap;
  padding-top: 2px;
  min-width: 88px;
}
.modal-bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.modal-bullet::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-primary);
  margin-top: 7px;
  flex-shrink: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#reference {
  position: relative;
  background: var(--off-white);
  overflow: hidden;
}
.testimonials-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/bg1.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.07;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: #F59E0B;
  font-size: 1.1rem;
}
.testimonial-quote {
  font-size: 0.925rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-quote::before {
  content: '"';
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: var(--brand-light);
  line-height: 0;
  vertical-align: -0.6em;
  margin-right: 4px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: var(--brand-tint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brand-primary);
  flex-shrink: 0;
  border: 2px solid var(--brand-light);
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-dark);
}
.testimonial-city {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ============================================================
   PRICING
   ============================================================ */
#cenik { background: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 52px;
}
.pricing-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.pricing-card-header {
  background: var(--brand-primary);
  padding: 24px 28px;
}
.pricing-card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.pricing-card-sub {
  font-size: 0.78rem;
  color: rgba(200,222,255,0.75);
  font-weight: 500;
}
.pricing-card-body { padding: 8px 0; }
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 28px;
  border-bottom: 1px solid var(--border);
  transition: background 0.18s ease;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row:hover { background: var(--brand-tint); }
.pricing-procedure { font-size: 0.9rem; color: var(--text-mid); }
.pricing-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-primary);
  white-space: nowrap;
  padding-left: 16px;
}
.pricing-note {
  margin-top: 24px;
  padding: 16px 24px;
  background: var(--brand-tint);
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}
.pricing-note strong { color: var(--brand-primary); }

/* ============================================================
   FAQ
   ============================================================ */
#faq { background: var(--brand-tint); }
.faq-list {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(26,79,138,0.06);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: color 0.18s ease;
}
.faq-question:hover { color: var(--brand-primary); }
.faq-question:focus-visible { outline: 2px solid var(--brand-primary); outline-offset: -2px; }
.faq-chevron {
  width: 24px;
  height: 24px;
  background: var(--brand-tint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand-primary);
  transition: transform 0.3s ease, background 0.18s ease;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--brand-primary);
  color: var(--white);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ============================================================
   CONTACT
   ============================================================ */
#kontakt { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  margin-top: 52px;
  align-items: start;
}
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--brand-tint);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  flex-shrink: 0;
}
.contact-detail-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-phone-link {
  font-family: 'DM Serif Display', serif;
  font-size: 1.9rem;
  color: var(--brand-primary);
  letter-spacing: -0.025em;
  line-height: 1;
  transition: color 0.18s ease;
}
.contact-phone-link:hover { color: var(--brand-dark); }
.contact-address-text {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.5;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 8px 0; }
.hours-day { color: var(--text-light); font-weight: 600; width: 60px; }
.hours-time { color: var(--text-dark); }
.hours-closed { color: var(--text-light); font-style: italic; }
.contact-map-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-map {
  border-radius: 16px;
  overflow: hidden;
  height: 280px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.02em;
}
.form-input, .form-textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  outline: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(26,79,138,0.12);
  background: var(--white);
}
.form-textarea { resize: vertical; min-height: 90px; }
.form-gdpr {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}
.form-gdpr a { color: var(--brand-primary); text-decoration: underline; }
.form-gdpr input { margin-top: 3px; accent-color: var(--brand-primary); flex-shrink: 0; }
.form-submit { align-self: flex-start; }
.parking-note {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-mid);
  background: var(--brand-tint);
  border-radius: 10px;
  padding: 10px 14px;
  border: 1px solid var(--border);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #0A1A30;
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(200,222,255,0.5);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 260px;
}
.footer-col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(200,222,255,0.45);
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(200,222,255,0.7);
  transition: color 0.18s ease;
}
.footer-links a:hover { color: var(--white); }
.footer-links a:focus-visible { outline: 2px solid var(--brand-light); border-radius: 4px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: rgba(200,222,255,0.7);
  margin-bottom: 12px;
}
.footer-contact-item a { color: rgba(200,222,255,0.7); transition: color 0.18s ease; }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(200,222,255,0.4);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.78rem;
  color: rgba(200,222,255,0.4);
  transition: color 0.18s ease;
}
.footer-legal a:hover { color: rgba(200,222,255,0.7); }
.footer-csk {
  font-size: 0.78rem;
  color: rgba(200,222,255,0.35);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============================================================
   MOBILE CTA PILL (hidden on desktop)
   ============================================================ */
.mobile-cta-pill {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  white-space: nowrap;
  box-shadow: 0 8px 28px rgba(26,79,138,0.45);
}
