/**
 * FiNeli DENT - Refined Dental Clinic CSS Design System
 * Primary Brand Blue: #0058a0 (Signature Czech Medical Blue for Header & Footer)
 * Hero Section: Fresh Emerald / Mint Green (Inspired by "Příjem pacientů na dentální hygienu")
 * Typography: Outfit (Headings) + Plus Jakarta Sans (Body)
 */

/* ==========================================================================
   1. DESIGN TOKENS & CSS VARIABLES
   ========================================================================== */
:root {
	/* Signature Medical Blue #0058a0 (Header, Footer, Brand Elements) */
	--color-brand-900: #003666;
	--color-brand-800: #004580;
	--color-brand-700: #0058a0;
	--color-brand-600: #006ec7;
	--color-brand-500: #0284c7;
	--color-brand-100: #e0f2fe;
	--color-brand-50:  #f0f7ff;

	/* Hero Section Berry / Magenta Theme (#953169) */
	--color-hero-900: #5c143d;
	--color-hero-800: #782252;
	--color-hero-700: #953169;
	--color-hero-600: #b03d7e;
	--color-hero-500: #cb4e94;
	--color-hero-100: #fce7f3;
	--color-hero-50:  #fdf2f8;

	/* Fresh Medical Mint / Emerald Green (Services & Accents) */
	--color-green-900: #064e3b;
	--color-green-800: #065f46;
	--color-green-700: #047857;
	--color-green-600: #059669;
	--color-green-500: #10b981;
	--color-green-400: #34d399;
	--color-green-300: #6ee7b7;
	--color-green-100: #d1fae5;
	--color-green-50:  #ecfdf5;

	/* Primary Brand Reference */
	--color-primary: #0058a0;
	--color-primary-dark: #004580;
	--color-primary-light: #e0f2fe;
	--color-primary-50: #f0f7ff;

	/* Accent Color */
	--color-accent: #059669;
	--color-accent-dark: #047857;
	--color-accent-light: #d1fae5;

	/* Soft Neutrals & Crisp Surfaces */
	--color-bg-body: #f8fafc;
	--color-bg-alt: #f0f7ff;
	--color-bg-card: #ffffff;
	--color-bg-header: #0058a0;
	--color-bg-footer: #0058a0;

	/* Borders & Dividers */
	--color-border: #e2e8f0;
	--color-border-light: #edf4fa;
	--color-border-hover: #10b981;

	/* Typography Colors */
	--color-text-main: #003666;
	--color-text-body: #334155;
	--color-text-muted: #64748b;
	--color-text-subtle: #94a3b8;
	--color-text-white: #ffffff;

	/* Status */
	--color-success: #059669;
	--color-success-bg: #ecfdf5;
	--color-success-border: #a7f3d0;
	--color-error: #e11d48;
	--color-error-bg: #fff1f2;
	--color-error-border: #fecdd3;

	/* Typography: Outfit for Headings, Plus Jakarta Sans for Body */
	--font-heading: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

	/* Shadows */
	--shadow-xs: 0 1px 2px rgba(0, 88, 160, 0.04);
	--shadow-sm: 0 3px 10px -2px rgba(0, 88, 160, 0.07), 0 1px 3px -1px rgba(0, 88, 160, 0.04);
	--shadow-md: 0 12px 28px -4px rgba(0, 88, 160, 0.09), 0 4px 12px -2px rgba(0, 88, 160, 0.04);
	--shadow-lg: 0 20px 40px -8px rgba(0, 88, 160, 0.14), 0 8px 18px -4px rgba(0, 88, 160, 0.06);
	--shadow-xl: 0 25px 50px -12px rgba(0, 88, 160, 0.22);

	/* Border Radii */
	--radius-sm: 6px;
	--radius-md: 10px;
	--radius-lg: 14px;
	--radius-xl: 18px;
	--radius-2xl: 24px;
	--radius-full: 9999px;

	/* Transitions */
	--transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

	/* Layout */
	--container-max: 1200px;
	--nav-height: 72px;
}

/* Selection Highlight in Green */
::selection {
	background-color: #059669;
	color: #ffffff;
}
::-moz-selection {
	background-color: #059669;
	color: #ffffff;
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.65;
	color: var(--color-text-body);
	background-color: var(--color-bg-body);
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--nav-height) + 16px);
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
	background-color: var(--color-bg-body);
	color: var(--color-text-body);
}

img, svg {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: color var(--transition-fast);
}

a:hover {
	color: var(--color-primary-dark);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	color: var(--color-text-main);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.015em;
}

p {
	margin-bottom: 1rem;
}
p:last-child {
	margin-bottom: 0;
}

ul, ol {
	list-style: none;
}

button, input, select, textarea {
	font-family: inherit;
	font-size: inherit;
	color: inherit;
}

:focus-visible {
	outline: 2px solid #059669;
	outline-offset: 2px;
}

.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;
}

.skip-link {
	position: absolute;
	top: -50px;
	left: 16px;
	background: var(--color-brand-800);
	color: #fff;
	padding: 8px 16px;
	border-radius: var(--radius-sm);
	z-index: 9999;
	font-weight: 600;
	font-size: 0.875rem;
	transition: top var(--transition-fast);
}
.skip-link:focus {
	top: 16px;
}

.container {
	width: 100%;
	max-width: var(--container-max);
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}

/* ==========================================================================
   3. TYPOGRAPHY & SECTION HEADERS
   ========================================================================== */
.section {
	padding: 84px 0;
	position: relative;
}

.section--alt {
	background-color: #ffffff;
}

.section--blue {
	background-color: var(--color-bg-alt);
}

.section-header {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 48px;
}

.badge-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 14px;
	background: var(--color-brand-50);
	color: var(--color-primary);
	border: 1px solid var(--color-brand-100);
	border-radius: var(--radius-full);
	font-size: 0.78125rem;
	font-weight: 700;
	font-family: var(--font-heading);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.badge-tag--green {
	background: var(--color-green-50);
	color: var(--color-green-700);
	border-color: var(--color-green-100);
}

.badge-tag--white {
	background: rgba(255, 255, 255, 0.22);
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(8px);
}

.section-title {
	font-size: clamp(2rem, 3.4vw, 2.75rem);
	margin-bottom: 14px;
	color: var(--color-text-main);
	font-weight: 700;
}

.section-subtitle {
	font-size: 1.0625rem;
	color: var(--color-text-muted);
	line-height: 1.65;
	font-family: var(--font-sans);
}

/* ==========================================================================
   4. BUTTONS & UI ACTIONS
   ========================================================================== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 26px;
	border-radius: var(--radius-md);
	font-weight: 600;
	font-size: 0.9375rem;
	line-height: 1.25;
	font-family: var(--font-sans);
	border: 1px solid transparent;
	cursor: pointer;
	text-decoration: none;
	transition: all var(--transition-base);
	white-space: nowrap;
}

.btn-primary {
	background-color: var(--color-primary);
	color: #ffffff;
	box-shadow: 0 4px 14px rgba(0, 88, 160, 0.35);
}
.btn-primary:hover {
	background-color: var(--color-primary-dark);
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 88, 160, 0.45);
}

.btn-hero-primary {
	background-color: #ffffff;
	color: var(--color-hero-700);
	font-weight: 700;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}
.btn-hero-primary:hover {
	background-color: var(--color-hero-50);
	color: var(--color-hero-800);
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
}

.btn-green {
	background-color: #ffffff;
	color: var(--color-green-700);
	font-weight: 700;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.btn-green:hover {
	background-color: var(--color-green-50);
	color: var(--color-green-800);
	transform: translateY(-2px);
	box-shadow: 0 6px 22px rgba(0, 0, 0, 0.25);
}

.btn-outline-white {
	background: rgba(255, 255, 255, 0.15);
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.55);
	backdrop-filter: blur(8px);
}
.btn-outline-white:hover {
	background: #ffffff;
	color: var(--color-hero-700);
	border-color: #ffffff;
	transform: translateY(-2px);
}

.btn-outline-dark {
	background: transparent;
	color: var(--color-text-main);
	border-color: var(--color-border);
}
.btn-outline-dark:hover {
	background: var(--color-brand-50);
	border-color: #059669;
	color: #059669;
	transform: translateY(-2px);
}

.btn-sm {
	padding: 8px 16px;
	font-size: 0.84375rem;
	border-radius: var(--radius-sm);
}

.btn-lg {
	padding: 15px 32px;
	font-size: 1.05rem;
	border-radius: var(--radius-lg);
}

.btn-icon {
	width: 18px;
	height: 18px;
	stroke-width: 2;
	flex-shrink: 0;
}

/* ==========================================================================
   5. TOP CONTACT STRIP (#0058a0)
   ========================================================================== */
.top-bar {
	background-color: var(--color-bg-header);
	color: #f0f7ff;
	font-size: 0.8125rem;
	padding: 8px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	z-index: 1001;
}

.top-bar__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.top-bar__list {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}

.top-bar__item {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #f0f7ff;
}

.top-bar__item a {
	color: #f0f7ff;
	transition: color var(--transition-fast);
}
.top-bar__item a:hover {
	color: #bae6fd;
}

.top-bar__icon {
	width: 14px;
	height: 14px;
	color: #7dd3fc;
	flex-shrink: 0;
}

.top-bar__status {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #6ee7b7;
	font-weight: 600;
	font-size: 0.78125rem;
}

.status-dot {
	width: 7px;
	height: 7px;
	background-color: #34d399;
	border-radius: 50%;
	box-shadow: 0 0 0 2px rgba(52, 211, 153, 0.35);
}

/* ==========================================================================
   6. NAVBAR & SYMMETRICAL TOGGLE
   ========================================================================== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--color-border);
	transition: all var(--transition-base);
}

.site-header.scrolled {
	box-shadow: var(--shadow-sm);
	background: rgba(255, 255, 255, 0.98);
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: var(--nav-height);
}

.navbar__brand {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.navbar__logo-img {
	height: 36px;
	width: auto;
	object-fit: contain;
}

.navbar__nav {
	display: flex;
	align-items: center;
	gap: 4px;
}

.nav-link {
	color: var(--color-text-body);
	font-weight: 600;
	font-size: 0.90625rem;
	padding: 8px 12px;
	border-radius: var(--radius-sm);
	transition: all var(--transition-fast);
}

.nav-link:hover {
	color: #059669;
	background: var(--color-green-50);
}

.nav-cta {
	margin-left: 10px;
}

/* Symmetrical Hamburger */
.hamburger {
	display: none;
	width: 40px;
	height: 40px;
	padding: 0;
	margin: 0;
	background: var(--color-brand-50);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	cursor: pointer;
	position: relative;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	transition: background var(--transition-fast);
}

.hamburger:hover {
	background: var(--color-brand-100);
}

.hamburger__line {
	display: block;
	width: 18px;
	height: 2px;
	background-color: var(--color-text-main);
	border-radius: 2px;
	transition: all var(--transition-base);
}

.hamburger.active .hamburger__line:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.hamburger.active .hamburger__line:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}
.hamburger.active .hamburger__line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   7. HERO SLIDER AREA (Berry #953169 s viditelnou fotkou)
   ========================================================================== */
.hero-slider {
	position: relative;
	overflow: hidden;
	min-height: 600px;
	display: flex;
	align-items: center;
	background-color: var(--color-hero-700);
}

.slider-container {
	position: relative;
	width: 100%;
	min-height: 600px;
}

.slider-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.8s ease, visibility 0.8s ease;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
}

.slider-slide.active {
	opacity: 1;
	visibility: visible;
	z-index: 2;
}

/* Elegant Berry #953169 Gradient Overlay with High Photo Visibility */
.slider-slide::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(149, 49, 105, 0.78) 0%, rgba(125, 35, 85, 0.65) 48%, rgba(95, 20, 62, 0.76) 100%);
	z-index: 1;
}

.slider-content {
	position: relative;
	z-index: 3;
	max-width: 720px;
	color: #ffffff;
	padding: 60px 0;
}

.slider-title {
	font-size: clamp(2.25rem, 4.5vw, 3.5rem);
	line-height: 1.15;
	color: #ffffff;
	margin-bottom: 20px;
	font-weight: 800;
	letter-spacing: -0.02em;
	text-shadow: 0 3px 18px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.4);
}

.slider-desc {
	font-size: 1.18rem;
	line-height: 1.65;
	color: #ffffff;
	margin-bottom: 34px;
	font-family: var(--font-sans);
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6), 0 1px 2px rgba(0, 0, 0, 0.5);
}

.slider-actions {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

/* Slider Navigation Arrows */
.slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.25);
	border: 1.5px solid rgba(255, 255, 255, 0.4);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	backdrop-filter: blur(8px);
	transition: all var(--transition-fast);
}

.slider-arrow:hover {
	background: #ffffff;
	color: var(--color-hero-700);
	box-shadow: var(--shadow-md);
}

.slider-arrow--prev {
	left: 24px;
}

.slider-arrow--next {
	right: 24px;
}

/* Slider Dots */
.slider-dots {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	gap: 8px;
}

.slider-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	border: none;
	cursor: pointer;
	transition: all var(--transition-fast);
}

.slider-dot.active {
	background: #ffffff;
	width: 28px;
	border-radius: 6px;
}

/* ==========================================================================
   8. STATS STRIP
   ========================================================================== */
.stats-strip {
	background: #ffffff;
	border-bottom: 1px solid var(--color-border);
	padding: 26px 0;
	box-shadow: var(--shadow-xs);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.stat-card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 6px 10px;
}

.stat-card__icon {
	width: 44px;
	height: 44px;
	border-radius: var(--radius-md);
	background: var(--color-brand-50);
	color: var(--color-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.stat-card__icon svg {
	width: 22px;
	height: 22px;
	stroke-width: 2;
}

.stat-card__value {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--color-text-main);
	line-height: 1.2;
}

.stat-card__label {
	font-size: 0.8125rem;
	color: var(--color-text-muted);
	font-family: var(--font-sans);
	margin-top: 2px;
}

/* ==========================================================================
   9. O KLINICE (About Section)
   ========================================================================== */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}

.about-visual {
	position: relative;
}

.about-visual__main {
	border-radius: var(--radius-2xl);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	aspect-ratio: 4/3;
	border: 1px solid var(--color-border);
}

.about-visual__main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-visual__badge {
	position: absolute;
	bottom: -18px;
	left: -14px;
	background: var(--color-bg-header);
	color: #ffffff;
	padding: 16px 22px;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-lg);
	border: 1px solid rgba(255, 255, 255, 0.2);
	max-width: 260px;
}

.about-visual__badge strong {
	display: block;
	font-family: var(--font-heading);
	font-size: 1.35rem;
	font-weight: 800;
	color: #7dd3fc;
	line-height: 1.1;
}

.about-visual__badge span {
	font-size: 0.8125rem;
	color: #e0f2fe;
	margin-top: 4px;
	display: block;
}

.about-content h2 {
	font-size: clamp(1.875rem, 3vw, 2.375rem);
	margin-bottom: 18px;
}

.about-content p {
	color: var(--color-text-body);
	font-size: 1.025rem;
	margin-bottom: 16px;
}

.features-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 24px;
}

.features-list__item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	background: var(--color-brand-50);
	border: 1px solid var(--color-brand-100);
	border-radius: var(--radius-md);
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--color-text-main);
	transition: all var(--transition-fast);
}

.features-list__item:hover {
	border-color: #059669;
	background: var(--color-green-50);
}

.features-list__icon {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--color-primary);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.features-list__icon svg {
	width: 10px;
	height: 10px;
	stroke-width: 3;
}

/* ==========================================================================
   10. NÁŠ TÝM (Doctors & Staff with Portraits)
   ========================================================================== */
.team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-bottom: 48px;
}

.team-card {
	background: var(--color-bg-card);
	border-radius: var(--radius-xl);
	overflow: hidden;
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-sm);
	transition: all var(--transition-base);
	display: flex;
	flex-direction: column;
}

.team-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: #059669;
}

.team-card__media {
	width: 100%;
	aspect-ratio: 3/4;
	overflow: hidden;
	background: var(--color-bg-alt);
}

.team-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	transition: transform var(--transition-slow);
}

.team-card:hover .team-card__img {
	transform: scale(1.03);
}

.team-card__body {
	padding: 18px 16px 20px;
	text-align: center;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.team-card__name {
	font-family: var(--font-heading);
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--color-text-main);
	margin-bottom: 4px;
}

.team-card__title {
	color: var(--color-primary);
	font-size: 0.84375rem;
	font-weight: 600;
	margin-bottom: 2px;
}

.team-card__role {
	font-size: 0.78125rem;
	color: var(--color-text-muted);
}

/* Staff Section with Photo Cards (Symmetrical 4 Columns) */
.staff-section-wrapper {
	margin-top: 48px;
	padding-top: 36px;
	border-top: 1px solid var(--color-border);
}

.staff-section-title {
	text-align: center;
	font-size: 1.5rem;
	margin-bottom: 28px;
	color: var(--color-text-main);
}

.staff-photo-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.staff-card {
	background: var(--color-bg-card);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	text-align: center;
	transition: all var(--transition-base);
	display: flex;
	flex-direction: column;
}

.staff-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: #059669;
}

.staff-card__media {
	width: 100%;
	aspect-ratio: 3/4;
	overflow: hidden;
	background: var(--color-bg-alt);
}

.staff-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	transition: transform var(--transition-slow);
}

.staff-card:hover .staff-card__img {
	transform: scale(1.03);
}

.staff-card__body {
	padding: 18px 16px 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.staff-card__name {
	font-family: var(--font-heading);
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--color-text-main);
	margin-bottom: 2px;
}

.staff-card__role {
	font-size: 0.78125rem;
	color: var(--color-text-muted);
}

/* ==========================================================================
   11. SLUŽBY (Services Grid)
   ========================================================================== */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
	gap: 28px;
}

.service-card {
	background: var(--color-bg-card);
	border-radius: var(--radius-xl);
	overflow: hidden;
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-sm);
	transition: all var(--transition-base);
	display: flex;
	flex-direction: column;
}

.service-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: #059669;
}

.service-card__media {
	height: 180px;
	position: relative;
	overflow: hidden;
}

.service-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-slow);
}

.service-card:hover .service-card__img {
	transform: scale(1.04);
}

.service-card__icon-badge {
	position: absolute;
	bottom: -18px;
	right: 20px;
	width: 44px;
	height: 44px;
	border-radius: var(--radius-md);
	background: #ffffff;
	color: var(--color-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-md);
	border: 1px solid var(--color-border);
	z-index: 2;
}

.service-card__body {
	padding: 28px 22px 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.service-card__title {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--color-text-main);
}

.service-card__desc {
	color: var(--color-text-body);
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 18px;
	flex: 1;
}

.service-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 14px;
	border-top: 1px solid var(--color-border-light);
}

.service-card__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--color-primary);
}

.service-card__link svg {
	width: 15px;
	height: 15px;
	transition: transform var(--transition-fast);
}

.service-card__link:hover svg {
	transform: translateX(3px);
}

/* ==========================================================================
   12. CENÍK (Minimalist & Transparent)
   ========================================================================== */
.price-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin-bottom: 32px;
}

.price-tab {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	border-radius: var(--radius-full);
	border: 1.5px solid var(--color-border);
	background: #ffffff;
	color: var(--color-text-body);
	font-weight: 600;
	font-size: 0.875rem;
	cursor: pointer;
	transition: all var(--transition-fast);
}

.price-tab svg {
	width: 16px;
	height: 16px;
	color: var(--color-text-muted);
	stroke-width: 2;
}

.price-tab:hover {
	border-color: #059669;
	color: #059669;
	background: var(--color-green-50);
}
.price-tab:hover svg {
	color: #059669;
}

.price-tab.active {
	background: var(--color-primary);
	color: #ffffff;
	border-color: var(--color-primary);
	box-shadow: 0 4px 12px rgba(0, 88, 160, 0.3);
}
.price-tab.active svg {
	color: #ffffff;
}

.price-panel {
	display: none;
}

.price-panel.active {
	display: block;
	animation: fadeInPrice 0.25s ease;
}

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

.price-card {
	background: #ffffff;
	border-radius: var(--radius-xl);
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
	margin-bottom: 28px;
}

.price-table {
	width: 100%;
	border-collapse: collapse;
	text-align: left;
}

.price-table thead th {
	background: var(--color-brand-50);
	color: var(--color-text-main);
	font-weight: 700;
	font-size: 0.8125rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 14px 22px;
	border-bottom: 1px solid var(--color-border);
}

.price-table tbody td {
	padding: 16px 22px;
	border-bottom: 1px solid var(--color-border);
	font-size: 0.9375rem;
	vertical-align: middle;
}

.price-table tbody tr:last-child td {
	border-bottom: none;
}

.price-table tbody tr:hover td {
	background-color: var(--color-brand-50);
}

.price-table__name {
	font-weight: 600;
	color: var(--color-text-main);
}

.price-table__note {
	display: inline-block;
	margin-left: 8px;
	padding: 3px 8px;
	background: var(--color-brand-50);
	color: var(--color-primary);
	border: 1px solid var(--color-brand-100);
	border-radius: var(--radius-sm);
	font-size: 0.75rem;
	font-weight: 600;
}

.price-table__price {
	font-family: var(--font-sans);
	font-weight: 700;
	color: var(--color-primary);
	font-size: 1.05rem;
	text-align: right;
	white-space: nowrap;
}

.price-info-box {
	background: var(--color-brand-50);
	border: 1px solid var(--color-brand-100);
	border-radius: var(--radius-lg);
	padding: 20px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.price-info-box__content {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	max-width: 750px;
}

.price-info-box__icon {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--color-primary);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 2px;
}

.price-info-box__text h4 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-brand-900);
	margin-bottom: 2px;
}

.price-info-box__text p {
	font-size: 0.875rem;
	color: var(--color-text-body);
	margin-bottom: 0;
}

/* ==========================================================================
   13. GALERIE ORDINACE (Symmetrical & Lightbox Ready)
   ========================================================================== */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.gallery-item {
	border-radius: var(--radius-lg);
	overflow: hidden;
	position: relative;
	aspect-ratio: 4/3;
	background: var(--color-bg-alt);
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--color-border);
	cursor: pointer;
	transition: all var(--transition-base);
}

.gallery-item:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
	border-color: #059669;
}

.gallery-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-slow);
}

.gallery-item:hover .gallery-img {
	transform: scale(1.06);
}

.gallery-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 30%, rgba(0, 54, 102, 0.88) 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 18px;
	color: #ffffff;
	opacity: 0;
	transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
	opacity: 1;
}

.gallery-category {
	font-size: 0.71875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #34d399;
	margin-bottom: 3px;
}

.gallery-title {
	font-family: var(--font-heading);
	font-size: 1.05rem;
	font-weight: 600;
	color: #ffffff;
	line-height: 1.25;
}

/* Lightbox Modal */
.lightbox-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 99999;
	background: rgba(0, 24, 48, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	align-items: center;
	justify-content: center;
	padding: 24px;
	opacity: 0;
	transition: opacity 0.25s ease;
}

.lightbox-modal.active {
	display: flex;
	opacity: 1;
}

.lightbox-wrapper {
	position: relative;
	max-width: 980px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	animation: zoomLightbox 0.25s ease;
}

@keyframes zoomLightbox {
	from { transform: scale(0.95); opacity: 0; }
	to { transform: scale(1); opacity: 1; }
}

.lightbox-img-container {
	max-height: 75vh;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.lightbox-img {
	max-height: 75vh;
	max-width: 100%;
	border-radius: var(--radius-lg);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
	object-fit: contain;
}

.lightbox-caption {
	margin-top: 14px;
	color: #ffffff;
	text-align: center;
}

.lightbox-caption h4 {
	font-family: var(--font-heading);
	color: #ffffff;
	font-size: 1.2rem;
	margin-bottom: 2px;
}

.lightbox-caption span {
	color: #34d399;
	font-size: 0.8125rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 700;
}

.lightbox-close {
	position: absolute;
	top: -46px;
	right: 0;
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.35);
	color: #ffffff;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all var(--transition-fast);
}

.lightbox-close:hover {
	background: #ffffff;
	color: #0058a0;
}

.lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.35);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all var(--transition-fast);
}

.lightbox-nav:hover {
	background: #ffffff;
	color: #0058a0;
}

.lightbox-nav--prev {
	left: -64px;
}

.lightbox-nav--next {
	right: -64px;
}

@media (max-width: 900px) {
	.lightbox-nav--prev { left: 8px; top: auto; bottom: -54px; transform: none; }
	.lightbox-nav--next { right: 8px; top: auto; bottom: -54px; transform: none; }
}

/* ==========================================================================
   14. SMLUVNÍ POJIŠŤOVNY (Prominent Large Logos)
   ========================================================================== */
.insurances-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	align-items: center;
}

.insurance-card {
	background: #ffffff;
	border: 1.5px solid var(--color-border);
	border-radius: var(--radius-xl);
	padding: 30px 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 18px;
	min-height: 200px;
	box-shadow: var(--shadow-sm);
	transition: all var(--transition-base);
}

.insurance-card:hover {
	transform: translateY(-4px);
	border-color: #059669;
	box-shadow: var(--shadow-md);
}

.insurance-logo {
	height: 68px;
	max-height: 75px;
	width: 100%;
	max-width: 220px;
	object-fit: contain;
	transition: transform var(--transition-fast);
}

.insurance-card:hover .insurance-logo {
	transform: scale(1.05);
}

.insurance-code {
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--color-primary);
	background: var(--color-brand-50);
	padding: 6px 20px;
	border-radius: var(--radius-full);
	border: 1px solid var(--color-brand-100);
}

/* ==========================================================================
   15. FORMULÁŘ DENTÁLNÍ HYGIENY
   ========================================================================== */
.booking-section {
	background: linear-gradient(135deg, #004580 0%, #0058a0 50%, #006ec7 100%);
	color: #ffffff;
	position: relative;
	overflow: hidden;
}

.booking-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 48px;
	align-items: flex-start;
	position: relative;
	z-index: 2;
}

.booking-info h2 {
	font-size: clamp(2rem, 3.2vw, 2.5rem);
	color: #ffffff;
	margin-bottom: 16px;
}

.booking-info p {
	color: #f0f9ff;
	font-size: 1.025rem;
	line-height: 1.65;
	margin-bottom: 28px;
}

.booking-benefits {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 36px;
}

.booking-benefit-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.booking-benefit-icon {
	width: 34px;
	height: 34px;
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.22);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 2px;
}

.booking-benefit-text strong {
	display: block;
	font-size: 0.96875rem;
	color: #ffffff;
	margin-bottom: 2px;
}

.booking-benefit-text span {
	font-size: 0.84375rem;
	color: #e0f2fe;
}

.booking-direct-call {
	padding: 18px 22px;
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: var(--radius-lg);
	backdrop-filter: blur(8px);
}

.booking-direct-call p {
	font-size: 0.84375rem;
	color: #e0f2fe;
	margin-bottom: 6px;
}

.booking-direct-call a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 1.25rem;
	font-weight: 700;
	color: #ffffff;
}

/* Form Card */
.form-card {
	background: #ffffff;
	border-radius: var(--radius-2xl);
	padding: 36px;
	box-shadow: var(--shadow-xl);
	color: var(--color-text-body);
}

.form-card__header {
	margin-bottom: 24px;
}

.form-card__title {
	font-size: 1.45rem;
	font-weight: 700;
	color: var(--color-text-main);
	margin-bottom: 4px;
}

.form-card__desc {
	font-size: 0.875rem;
	color: var(--color-text-muted);
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.form-group--full {
	grid-column: 1 / -1;
}

.form-label {
	font-weight: 600;
	font-size: 0.8125rem;
	color: var(--color-text-main);
}

.form-label .required-star {
	color: var(--color-error);
	margin-left: 2px;
}

.form-input, .form-select, .form-textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1.5px solid var(--color-border);
	border-radius: var(--radius-md);
	font-size: 0.90625rem;
	background-color: #ffffff;
	color: var(--color-text-main);
	transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
	outline: none;
	border-color: #059669;
	box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.18);
}

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

.form-textarea {
	resize: vertical;
	min-height: 90px;
}

.form-group--checkbox {
	flex-direction: row;
	align-items: flex-start;
	gap: 10px;
	margin-top: 4px;
}

.form-group--checkbox input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	accent-color: #059669;
	cursor: pointer;
	flex-shrink: 0;
}

.form-checkbox-label {
	font-size: 0.78125rem;
	color: var(--color-text-muted);
	line-height: 1.5;
	cursor: pointer;
}

.form-submit-wrapper {
	margin-top: 8px;
}

.form-submit-btn {
	width: 100%;
	padding: 15px 24px;
	font-size: 1.05rem;
	font-weight: 700;
}

.form-error {
	font-size: 0.78125rem;
	color: var(--color-error);
	font-weight: 600;
	margin-top: 3px;
}

/* ==========================================================================
   16. PRETTIER ORDINAČNÍ HODINY (Doctor & Reception Switcher)
   ========================================================================== */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 44px;
	align-items: flex-start;
}

.contact-cards-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	margin-bottom: 28px;
}

.contact-card {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px;
	background: #ffffff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	transition: all var(--transition-fast);
}

.contact-card:hover {
	transform: translateY(-2px);
	border-color: #059669;
	box-shadow: var(--shadow-md);
}

.contact-card__icon {
	width: 44px;
	height: 44px;
	border-radius: var(--radius-md);
	background: var(--color-brand-50);
	color: var(--color-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact-card__icon svg {
	width: 22px;
	height: 22px;
	stroke-width: 2;
}

.contact-card__body h3 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-text-main);
	margin-bottom: 2px;
}

.contact-card__body p {
	font-size: 0.875rem;
	color: var(--color-text-body);
	margin-bottom: 2px;
}

.contact-card__link {
	display: inline-block;
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--color-primary);
	margin-top: 2px;
}

/* Detailed Schedule Switcher */
.schedule-container-box {
	max-width: 860px;
	margin: 0 auto;
}

.hours-card {
	background: #ffffff;
	border: 1.5px solid var(--color-brand-100);
	border-radius: var(--radius-xl);
	padding: 32px;
	box-shadow: var(--shadow-md);
	position: relative;
	overflow: hidden;
}

.hours-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--color-primary) 0%, #059669 100%);
}

.hours-card__header {
	margin-bottom: 16px;
}

.hours-card__title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--color-text-main);
}

.schedule-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 18px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--color-border-light);
}

.schedule-nav-btn {
	padding: 6px 13px;
	border-radius: var(--radius-full);
	border: 1px solid var(--color-border);
	background: #ffffff;
	color: var(--color-text-main);
	font-size: 0.78125rem;
	font-weight: 600;
	cursor: pointer;
	transition: all var(--transition-fast);
}

.schedule-nav-btn:hover {
	border-color: #059669;
	color: #059669;
	background: var(--color-green-50);
}

.schedule-nav-btn.active {
	background: var(--color-primary);
	color: #ffffff;
	border-color: var(--color-primary);
	box-shadow: 0 2px 8px rgba(0, 88, 160, 0.25);
}

.schedule-panel {
	display: none;
}

.schedule-panel.active {
	display: block;
	animation: fadeInPrice 0.25s ease;
}

.schedule-panel-header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 12px;
}

.schedule-panel-name {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--color-text-main);
}

.schedule-panel-role {
	font-size: 0.8125rem;
	color: #059669;
	font-weight: 600;
}

.hours-table {
	width: 100%;
	border-collapse: collapse;
}

.hours-table tr {
	border-bottom: 1px solid var(--color-border-light);
}
.hours-table tr:last-child {
	border-bottom: none;
}

.hours-table td {
	padding: 10px 4px;
	font-size: 0.90625rem;
}

.hours-table td:first-child {
	font-weight: 600;
	color: var(--color-text-main);
}

.hours-table td:last-child {
	text-align: right;
}

.time-pill {
	display: inline-block;
	padding: 3px 12px;
	background: var(--color-brand-50);
	color: var(--color-primary);
	border: 1px solid var(--color-brand-100);
	border-radius: var(--radius-full);
	font-weight: 700;
	font-size: 0.84375rem;
}

.time-pill--closed {
	background: #f1f5f9;
	color: #94a3b8;
	border-color: #e2e8f0;
	font-weight: 500;
}

.hours-note {
	font-size: 0.8125rem;
	color: var(--color-text-muted);
	margin-top: 16px;
	padding: 12px 14px;
	background: var(--color-brand-50);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	gap: 8px;
	border: 1px dashed var(--color-brand-100);
}

/* Prettier Billing & Legal Card */
.billing-card {
	background: #ffffff;
	border: 1.5px solid var(--color-border);
	border-radius: var(--radius-xl);
	padding: 28px;
	box-shadow: var(--shadow-sm);
	position: relative;
}

.billing-card:hover {
	border-color: #059669;
}

.billing-card__header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--color-border-light);
}

.billing-card__icon {
	width: 38px;
	height: 38px;
	border-radius: var(--radius-md);
	background: var(--color-brand-50);
	color: var(--color-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.billing-card__title {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--color-text-main);
}

.billing-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.billing-item {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	font-size: 0.875rem;
	padding: 6px 0;
	border-bottom: 1px dashed var(--color-border-light);
}
.billing-item:last-child {
	border-bottom: none;
}

.billing-item__label {
	color: var(--color-text-muted);
	font-weight: 500;
}

.billing-item__value {
	color: var(--color-text-main);
	font-weight: 700;
	text-align: right;
}

/* Map */
.map-container {
	border-radius: var(--radius-xl);
	overflow: hidden;
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-sm);
	height: 340px;
	margin-bottom: 24px;
}

.map-container iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

/* ==========================================================================
   17. SMOOTH SCROLL TO TOP BUTTON
   ========================================================================== */
.scroll-top-btn {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 999;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--color-primary);
	color: #ffffff;
	border: 1.5px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 6px 20px rgba(0, 88, 160, 0.35), 0 2px 6px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(16px) scale(0.9);
	transition: all var(--transition-base);
}

.scroll-top-btn.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
}

.scroll-top-btn:hover {
	background: #059669;
	border-color: #34d399;
	color: #ffffff;
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 24px rgba(5, 150, 105, 0.4);
}

.scroll-top-btn:active {
	transform: translateY(0) scale(0.95);
}

.scroll-top-btn svg {
	width: 22px;
	height: 22px;
	stroke-width: 2.5;
}

/* ==========================================================================
   18. SITE FOOTER (#0058a0 matching finelident.cz)
   ========================================================================== */
.site-footer {
	background-color: var(--color-bg-footer);
	color: #e0f2fe;
	padding: 72px 0 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	margin-top: auto;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 40px;
	margin-bottom: 56px;
}

.footer-brand__logo {
	margin-bottom: 16px;
}

.footer-brand__logo img {
	height: 34px;
	width: auto;
	filter: brightness(0) invert(1);
}

.footer-brand__desc {
	font-size: 0.875rem;
	line-height: 1.6;
	color: #ffffff !important;
	margin-bottom: 16px;
}

.footer-column h4 {
	color: #ffffff;
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 18px;
}

.footer-links {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-links a {
	color: #e0f2fe;
	font-size: 0.875rem;
	transition: color var(--transition-fast);
}

.footer-links a:hover {
	color: #ffffff;
	text-decoration: underline;
}

.footer-contact-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.875rem;
	color: #f0f7ff;
}

.footer-contact-item svg {
	width: 16px;
	height: 16px;
	color: #7dd3fc;
	flex-shrink: 0;
	margin-top: 3px;
}

.footer-contact-item a {
	color: #f0f7ff;
}
.footer-contact-item a:hover {
	color: #ffffff;
	text-decoration: underline;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
	font-size: 0.8125rem;
	color: #bae6fd;
}

/* ==========================================================================
   19. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (min-width: 1200px) {
	.hero-slider, .slider-container {
		min-height: 640px;
	}
}

@media (min-width: 1440px) {
	.hero-slider, .slider-container {
		min-height: 680px;
	}
}

@media (max-width: 1024px) {
	.team-grid, .staff-photo-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.insurances-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 36px;
	}
	.booking-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.about-grid, .contact-grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}
}

@media (max-width: 900px) {
	.hamburger {
		display: flex;
	}

	.navbar__nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #ffffff;
		flex-direction: column;
		padding: 16px 20px 24px;
		border-bottom: 1px solid var(--color-border);
		box-shadow: var(--shadow-lg);
		gap: 4px;
		align-items: stretch;
	}

	.navbar__nav.open {
		display: flex;
		animation: slideNav 0.2s ease;
	}

	@keyframes slideNav {
		from { opacity: 0; transform: translateY(-6px); }
		to { opacity: 1; transform: translateY(0); }
	}

	.nav-link {
		padding: 10px 14px;
		font-size: 0.9375rem;
	}

	.nav-cta {
		margin-left: 0;
		margin-top: 8px;
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.top-bar {
		display: none;
	}

	.scroll-top-btn {
		bottom: 18px;
		right: 18px;
		width: 44px;
		height: 44px;
	}

	.section {
		padding: 56px 0;
	}

	.hero-slider, .slider-container {
		min-height: 480px;
	}

	.slider-title {
		font-size: 2.125rem;
	}

	.slider-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.slider-actions .btn {
		width: 100%;
	}

	.slider-arrow {
		display: none;
	}

	.stats-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.services-grid, .team-grid, .staff-photo-grid {
		grid-template-columns: 1fr;
	}

	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}

	.insurances-grid {
		grid-template-columns: 1fr;
	}

	.form-grid {
		grid-template-columns: 1fr;
	}

	.form-card {
		padding: 20px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}
}

/* ==========================================================================
   20. DEFINELI.CZ ANNOUNCEMENT BANNER
   ========================================================================== */
.defineli-banner {
	background: linear-gradient(135deg, #003666 0%, #0058a0 55%, #059669 100%);
	color: #ffffff;
	padding: 56px 0;
	position: relative;
	overflow: hidden;
}

.defineli-banner::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(52, 211, 153, 0.22) 0%, transparent 70%);
	pointer-events: none;
}

.defineli-banner__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
	position: relative;
	z-index: 2;
}

.defineli-banner__content {
	max-width: 680px;
}

.defineli-banner__title {
	font-size: clamp(1.65rem, 3vw, 2.25rem);
	color: #ffffff;
	margin-bottom: 12px;
	font-weight: 800;
}

.defineli-highlight {
	color: #34d399;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.defineli-banner__desc {
	font-size: 1.05rem;
	color: #e0f2fe;
	margin-bottom: 0;
	line-height: 1.65;
}

.top-bar__defineli {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(5, 150, 105, 0.35);
	padding: 3px 10px;
	border-radius: var(--radius-full);
	border: 1px solid rgba(52, 211, 153, 0.45);
	color: #ffffff !important;
	font-weight: 600;
	font-size: 0.78125rem;
	transition: all var(--transition-fast);
}

.top-bar__defineli:hover {
	background: #059669;
	color: #ffffff !important;
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
}

.badge-new {
	background: #34d399;
	color: #064e3b;
	padding: 1px 6px;
	border-radius: 4px;
	font-size: 0.6875rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
