/* 🚀 Silmove Studio - Ultra Premium Modern Design 2025 */
:root {
  /* 🎨 Silmove Brand Palette - Calm Blues & Fresh Whites */
  --primary: linear-gradient(135deg, #1a6fd6 0%, #53d8f7 100%);
  --primary-solid: #1a6fd6;
  --primary-hover: #155fb8;
  --secondary: linear-gradient(135deg, #1aaee8 0%, #66e3f7 100%);
  --accent: linear-gradient(135deg, #0ec7ff 0%, #66e3f7 100%);
  --accent-solid: #0ec7ff;
  --gold: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);

  /* �️ Light & Airy Background System */
  --bg-primary: #f4fbff;
  --bg-secondary: #edf5ff;
  --bg-surface: #ffffff;
  --bg-elevated: #e0efff;
  --bg-glass: rgba(255, 255, 255, 0.82);
  --bg-overlay: rgba(239, 248, 255, 0.95);

  /* ✨ Text Hierarchy */
  --text-primary: #0f172a;
  --text-secondary: #2d3a4d;
  --text-muted: #4f5f73;
  --text-ghost: #7b8ba1;

  /* 🎭 Effects & Borders */
  --border: rgba(15, 23, 42, 0.08);
  --border-light: rgba(15, 23, 42, 0.16);
  --border-bright: rgba(26, 111, 214, 0.22);

  /* 🌟 Shadows - Soft Daylight Layers */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 6px rgba(15, 23, 42, 0.12), 0 2px 4px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 10px 20px rgba(26, 111, 214, 0.08), 0 4px 10px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 20px 35px rgba(26, 111, 214, 0.12), 0 10px 15px rgba(15, 23, 42, 0.08);
  --shadow-2xl: 0 25px 50px rgba(26, 111, 214, 0.15);
  --shadow-neon: 0 0 30px rgba(26, 111, 214, 0.35);
  --shadow-glow: 0 0 60px rgba(83, 216, 247, 0.35);

  /* 🔮 Glass Morphism */
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(26, 111, 214, 0.16);
  --glass-strong: rgba(255, 255, 255, 0.86);
  
  /* 📏 Spacing System */
  --container-max: 1600px;
  --container-padding: clamp(20px, 5vw, 80px);
  --section-padding: clamp(80px, 15vh, 180px) 0;
  --gap-xs: 8px;
  --gap-sm: 16px;
  --gap-md: 24px;
  --gap-lg: 32px;
  --gap-xl: 48px;
  --gap-2xl: 64px;
  
  /* 🎯 Animation Timings */
  --timing-fast: 0.2s;
  --timing-medium: 0.4s;
  --timing-slow: 0.6s;
  --ease-smooth: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --ease-sharp: cubic-bezier(0.4, 0, 0.2, 1);
}

/* 🎯 Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Odstránené duplikáty - nechávame len jedno šrafovanie */

/* 📐 Jednoduché šrafovanie pod 45° s interakciou */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: 
    repeating-linear-gradient(
      45deg,
      transparent 0px,
      transparent 34px,
      rgba(26, 111, 214, 0.08) 34px,
      rgba(26, 111, 214, 0.08) 36px
    );
  background-position: 0 0;
  transition: all 0.8s ease-out;
  pointer-events: none;
  opacity: 0.45;
}

/* 🖱️ Interakcia cez hover na body */
body:hover::before {
  background-image: 
    repeating-linear-gradient(
      45deg,
      transparent 0px,
      transparent 28px,
      rgba(26, 111, 214, 0.18) 28px,
      rgba(26, 111, 214, 0.18) 32px
    );
  opacity: 0.7;
  animation: gentleShift 8s ease-in-out infinite;
}

@keyframes gentleShift {
  0%, 100% {
    background-position: 0 0;
  }
  50% {
    background-position: 15px 15px;
  }
}

/* Odstránené - nahradené jednoduchým šrafovaním */

/* Odstránené - nahradené jemnými efektmi */

/* 🌟 Vylepšené pozadie (odstránené - nahradené interaktívnymi efektmi) */

/* Animácie odstránené - nahradené interaktívnymi efektmi */

/* 🏗️ Layout Helpers */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  padding-bottom: 40px;
  margin-bottom: 20px;
}

.section {
  padding: var(--section-padding);
  position: relative;
  /* Jemný transparentný overlay pre lepšiu čitateľnosť */
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

/* ✨ Animation Utilities */
.fade-in {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  transition: all 0.8s var(--ease-smooth);
  will-change: transform, opacity;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* 🌀 Premium Loader */
#loader {
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(26, 111, 214, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(83, 216, 247, 0.18) 0%, transparent 55%),
    var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 10000;
  transition: all 1s var(--ease-smooth);
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
}

.loader-logo {
  margin-bottom: 1rem;
  animation: logoFloat 2.5s ease-in-out infinite;
}

.loader-logo img {
  max-width: 400px;
  height: 250px;
  filter: brightness(1.2) contrast(1.1);
  opacity: 0.9;
}

@keyframes logoFloat {
  0%, 100% { 
    transform: translateY(0px) scale(1);
    opacity: 0.9;
  }
  50% { 
    transform: translateY(-10px) scale(1.05);
    opacity: 1;
  }
}

.loader-text {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  letter-spacing: -0.02em;
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  animation: loaderFloat 3s ease-in-out infinite;
}

.loader-text::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: var(--accent);
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.3;
  animation: loaderGlow 3s ease-in-out infinite;
  z-index: -1;
}

.loader-text::after {
  content: '';
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 6px;
  background: var(--accent);
  border-radius: 3px;
  animation: loaderBar 3s ease-in-out infinite;
}

@keyframes loaderFloat {
  0%, 100% { 
    opacity: 0.9; 
    transform: translateY(0) scale(1); 
  }
  50% { 
    opacity: 1; 
    transform: translateY(-10px) scale(1.02); 
  }
}

@keyframes loaderGlow {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 0.4; transform: scale(1.2); }
}

@keyframes loaderBar {
  0%, 100% { width: 60px; opacity: 0.6; }
  50% { width: 160px; opacity: 1; }
}

/* 🏛️ Header - Ultra Modern Glass */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /*background: var(--glass-bg);*/
  backdrop-filter: blur(5px);
  border-bottom: 1px solid var(--glass-border);
  transition: all var(--timing-medium) var(--ease-smooth);
}

.site-header.scrolled {
  background: var(--bg-overlay);
  border-bottom-color: var(--border-light);
  box-shadow: var(--shadow-2xl);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--container-padding);
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
}

.brand {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  letter-spacing: -0.02em;
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  position: relative;
  transform: none !important;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.brand-logo {
  width: clamp(38px, 6vw, 55px);
  height: auto;
  filter: brightness(1.1) contrast(1.05);
  transition: all 0.3s var(--ease-smooth);
  margin-top: -2px;
}

.brand:hover .brand-logo {
  transform: scale(1.1);
  filter: brightness(1.2) contrast(1.1);
}

/* 🎯 Header Actions - Premium Layout */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--gap-md);
}

/* 🎨 Buttons - Next-Gen Design */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-xs);
  padding: 16px 32px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--timing-medium) var(--ease-smooth);
  position: relative;
  overflow: hidden;
  user-select: none;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--glass-strong);
  border-radius: inherit;
  opacity: 0;
  transition: all var(--timing-medium) var(--ease-smooth);
}

.btn:hover::before {
  opacity: 1;
}

.btn.primary {
  background: #1a1a1a;
  color: white;
  box-shadow: var(--shadow-lg), 0 0 20px rgba(26, 26, 26, 0.3);
  font-size: 15px;
  padding: 12px 24px;
}

.btn.primary:hover {
  transform: translateY(-3px) scale(1.02);
  background: #333;
  box-shadow: var(--shadow-2xl), 0 0 25px rgba(26, 26, 26, 0.4);
}

.btn.primary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn.outline {
  background: var(--glass-bg);
  color: var(--text-primary);
  border: 2px solid var(--border-light);
  backdrop-filter: blur(16px);
}

.btn.outline:hover {
  border-color: var(--primary-solid);
  background: var(--glass-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* 🍔 Hamburger Menu - Ultra Smooth */
.nav {
  position: relative;
}

.hamburger {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: all var(--timing-medium) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.hamburger::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary);
  opacity: 0;
  transition: all var(--timing-medium) var(--ease-smooth);
  border-radius: inherit;
}

.hamburger:hover::before {
  opacity: 0.1;
}

.hamburger:hover {
  transform: scale(1.05);
  border-color: var(--border-bright);
  box-shadow: var(--shadow-md);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--timing-medium) var(--ease-smooth);
  position: relative;
  z-index: 1;
}

.hamburger[aria-expanded="true"] {
  background: var(--glass-strong);
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* 📋 Menu Dropdown - Premium Glass */
.menu {
  position: absolute;
  right: 0;
  top: 70px;
  background: var(--glass-strong);
  backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: var(--gap-lg);
  min-width: 280px;
  box-shadow: var(--shadow-2xl);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px) scale(0.95);
  transition: all var(--timing-medium) var(--ease-smooth);
  z-index: 100;
}

.menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.menu li {
  margin: 0;
}

.menu a {
  display: block;
  padding: 16px 20px;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: 16px;
  font-weight: 500;
  transition: all var(--timing-fast) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.menu a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary);
  opacity: 0;
  transition: all var(--timing-fast) var(--ease-smooth);
  border-radius: inherit;
}

.menu a:hover::before {
  opacity: 0.1;
}

.menu a:hover {
  color: var(--text-primary);
  transform: translateX(8px);
}

/* 🌟 Menu Item Entrance Animation */
.menu-item-enter {
  animation: menuItemSlide 0.3s var(--ease-smooth) forwards;
  opacity: 0;
  transform: translateX(-20px);
}

@keyframes menuItemSlide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 🎯 Keyboard Navigation Support */
.keyboard-navigation .btn:focus,
.keyboard-navigation .hamburger:focus,
.keyboard-navigation .menu a:focus {
  outline: 2px solid var(--primary-solid);
  outline-offset: 2px;
}

/* 🌟 Hero Section - Dynamic Video Background */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Video Background Container */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.8) contrast(1.1);
}

/* Mobile video optimizations */
@media (max-width: 768px) {
  .hero-video video {
    object-position: center center;
    filter: brightness(0.7) contrast(1.2);
  }
  
  .hero-overlay {
    background: 
      linear-gradient(135deg, rgba(26, 111, 214, 0.5) 0%, rgba(83, 216, 247, 0.35) 100%),
      linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
  }
}

/* Video Overlay for better text readability */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(135deg, rgba(26, 111, 214, 0.3) 0%, rgba(83, 216, 247, 0.2) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.hero-inner {
  text-align: center;
  max-width: 900px;
  padding: 0 var(--gap-md);
  position: relative;
  z-index: 3;
  animation: heroEntrance 1.5s var(--ease-smooth) 0.5s both;
}

.hero h1 {
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--gap-lg);
  background: linear-gradient(135deg, #1a6fd6 0%, #53d8f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8)) 
          drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6))
          drop-shadow(0 0 20px rgba(26, 111, 214, 0.4));
}

.hero h1::after {
  content: '|';
  color: var(--primary);
  animation: blink 1s infinite;
  margin-left: 4px;
}

.hero h1.typing-complete::after {
  display: none;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.hero p {
  font-size: clamp(18px, 3vw, 24px);
  color: #ffffff;
  text-shadow: 
    0 1px 2px rgba(0, 0, 0, 0.8),
    0 2px 4px rgba(0, 0, 0, 0.6);
  font-weight: 500;
  margin-bottom: var(--gap-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: var(--gap-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--gap-xl);
}

.hero-cta .btn {
  font-size: 18px;
  padding: 20px 40px;
}

/* 🎨 Canvas Animation */
#radialCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

@keyframes heroEntrance {
  0% {
    opacity: 0;
    transform: translateY(80px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* 🎯 Modern Services - Alternating Layout */
.services-modern {
  padding: calc(var(--gap-4xl) * 1.5) 0;
  background: linear-gradient(180deg, 
    rgba(248, 250, 252, 0.8) 0%, 
    rgba(241, 245, 249, 0.9) 50%, 
    rgba(248, 250, 252, 0.8) 100%);
  position: relative;
  z-index: 1;
}

.services-title {
  text-align: center;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  margin-bottom: var(--gap-4xl);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-solid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-2xl);
  align-items: center;
  margin-bottom: 5rem;
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s var(--ease-smooth);
}

.service-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-item.reverse {
  direction: rtl;
}

.service-item.reverse > * {
  direction: ltr;
}

.service-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  transition: all 0.4s var(--ease-smooth);
}

.service-image:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-2xl);
}

.service-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: all 0.4s var(--ease-smooth);
}

.service-image:hover img {
  transform: scale(1.1);
}

.service-content {
  padding: var(--gap-lg);
}

.service-content h3 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: var(--gap-md);
  color: var(--text-primary);
  line-height: 1.2;
}

.service-content p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: var(--gap-lg);
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-sm);
  margin-bottom: var(--gap-lg);
}

.feature {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
}

.price-range {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-solid) 100%);
  color: #77c4f1;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 700;
  margin-top: 16px;
  box-shadow: 0 4px 12px rgba(79, 172, 254, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Scroll reveal base styles */
.scroll-reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s var(--ease-smooth);
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal[data-direction="left"] {
  transform: translateX(-60px) translateY(20px);
}

.scroll-reveal[data-direction="right"] {
  transform: translateX(60px) translateY(20px);
}

.scroll-reveal[data-direction="left"].visible,
.scroll-reveal[data-direction="right"].visible {
  transform: translateX(0) translateY(0);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .service-item,
  .service-item.reverse {
    grid-template-columns: 1fr;
    gap: var(--gap-lg);
    direction: ltr;
  }
  
  .service-image {
    order: 1;
  }
  
  .service-content {
    order: 2;
    padding: var(--gap-md);
  }
  
  .service-image img {
    height: 300px;
  }
  
  .scroll-reveal[data-direction="left"],
  .scroll-reveal[data-direction="right"] {
    transform: translateY(40px);
  }
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap-lg);
  margin-top: var(--gap-2xl);
}

/* Desktop layout - 4 cards side by side */
@media (min-width: 1200px) {
  .cards {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap-md);
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap-lg);
  }
}

.card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  overflow: hidden;
  transition: all var(--timing-slow) var(--ease-smooth);
  position: relative;
  cursor: pointer;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary);
  opacity: 0;
  transition: all var(--timing-slow) var(--ease-smooth);
  border-radius: inherit;
}

.card:hover::before {
  opacity: 0.05;
}

.card:hover {
  transform: translateY(-16px) scale(1.02);
  border-color: var(--border-bright);
  box-shadow: var(--shadow-2xl), var(--shadow-glow);
}

.card-images {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}

.card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.2) brightness(1.1);
  transition: all 0.8s var(--ease-smooth);
  opacity: 0;
  transform: scale(1.1);
}

.card-img.active {
  opacity: 1;
  transform: scale(1);
}

.card:hover .card-img {
  transform: scale(1.05);
  filter: saturate(1.4) brightness(1.2);
}

.card-content {
  padding: var(--gap-xl);
  position: relative;
  z-index: 2;
}

.card h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: var(--gap-sm);
  color: var(--text-primary);
}

.card p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}

/* 🪟 Modal - Premium Glass Design */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(240, 248, 255, 0.92);
  backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--timing-medium) var(--ease-smooth);
}

.modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--glass-strong);
  backdrop-filter: blur(32px);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  padding: var(--gap-2xl);
  max-width: 500px;
  width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-2xl);
  transform: scale(0.9);
  transition: all var(--timing-medium) var(--ease-smooth);
}

.modal.show .modal-content {
  transform: scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--gap-md);
}

.modal-header h2 {
  font-size: 28px;
  font-weight: 700;
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modal-close {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--timing-fast) var(--ease-smooth);
}

.modal-close:hover {
  background: var(--glass-strong);
  color: var(--text-primary);
  transform: scale(1.1);
}

.modal p {
  color: var(--text-secondary);
  margin-bottom: var(--gap-lg);
  line-height: 1.6;
}

/* 📝 Forms - Premium Styling */
.reserve-form {
  margin-top: var(--gap-lg);
}

.reserve-form .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--gap-md);
  margin-bottom: var(--gap-md);
}

.reserve-form label {
  display: block;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: var(--gap-xs);
}

.reserve-form input,
.reserve-form textarea,
.reserve-form select {
  width: 100%;
  padding: 16px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  color: var(--text-primary);
  font-size: 16px;
  transition: all var(--timing-fast) var(--ease-smooth);
  backdrop-filter: blur(8px);
}

.reserve-form input:focus,
.reserve-form textarea:focus,
.reserve-form select:focus {
  outline: none;
  border-color: var(--primary-solid);
  background: var(--glass-strong);
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.reserve-form select option {
  background: var(--bg-surface);
  color: var(--text-primary);
}

/* Price Display Styling */
.price-display {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--primary-solid), var(--accent-solid));
  border-radius: 16px;
  color: white;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  margin-top: var(--gap-xs);
  box-shadow: var(--shadow-lg);
  transition: all var(--timing-medium) var(--ease-smooth);
}

.price-display:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

#selectedPrice {
  font-size: 24px;
  margin-left: 8px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.reserve-form textarea {
  resize: vertical;
  min-height: 120px;
}

.booking-flow {
  display: grid;
  gap: var(--gap-md);
  margin-bottom: var(--gap-md);
}

.booking-calendar {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 8px;
  margin-top: var(--gap-xs);
}

.booking-slots-wrap {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding: 10px;
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
}

.booking-slots-wrap h3 {
  margin-bottom: 8px;
}

.calendar-day-btn {
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--text-primary);
  border-radius: 12px;
  padding: 10px 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.calendar-day-btn.active {
  border-color: var(--primary-solid);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
  background: var(--glass-strong);
}

.booking-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--gap-xs);
}

.slot-btn {
  border: 1px solid var(--glass-border);
  background: white;
  color: var(--text-primary);
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.slot-btn.active {
  background: var(--primary-solid);
  border-color: var(--primary-solid);
  color: white;
}

.slot-btn.is-available {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.4);
  color: #166534;
}

.slot-btn.is-available.active {
  background: rgba(34, 197, 94, 0.22);
  border-color: rgba(34, 197, 94, 0.65);
  color: #14532d;
}

.slot-btn.is-occupied {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.35);
  color: #991b1b;
  cursor: not-allowed;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}

.slot-reason {
  font-size: 11px;
  line-height: 1.2;
  text-align: left;
}

.slot-placeholder {
  font-size: 14px;
  color: var(--text-muted);
}

.selected-slot-text {
  margin-top: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

#reserveDetailsSection {
  margin-top: 12px;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 10px;
  color: var(--text-secondary);
  font-size: 14px;
}

.consent-label input[type="checkbox"] {
  margin-top: 3px;
}

.consent-label a {
  color: var(--primary-solid);
}

.reservation-page-section {
  min-height: calc(100vh - 180px);
  padding-top: 140px;
}

.reservation-page-wrap h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: var(--gap-lg);
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reservation-card {
  background: var(--glass-strong);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: var(--gap-xl);
  box-shadow: var(--shadow-xl);
}

@media (max-width: 768px) {
  .booking-calendar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .booking-slots {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .slot-btn {
    width: 100%;
    border-radius: 12px;
  }

  .reservation-card {
    padding: var(--gap-md);
  }
}

.form-msg {
  margin-top: var(--gap-md);
  padding: var(--gap-md);
  border-radius: 16px;
  font-weight: 500;
}

.form-msg.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.form-msg.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

/* 🖼️ Gallery - Cinematic Strip */
.gallery {
  padding: 0;
  /* background: var(--bg-secondary); - odstránené pre interaktívne efekty */
  position: relative;
  z-index: 1;
}

.strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(350px, 1fr);
  gap: var(--gap-sm);
  overflow-x: auto;
  padding: var(--gap-xl);
  scrollbar-width: none;
}

.strip::-webkit-scrollbar {
  display: none;
}

.strip img {
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 24px;
  transition: all var(--timing-medium) var(--ease-smooth);
  cursor: pointer;
}

.strip img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

/* 📖 About & Contact Sections */
.about,
.contact {
  /* background: var(--bg-primary); - odstránené pre interaktívne efekty */
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.about h2,
.contact h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: var(--gap-xl);
  background: var(--secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 👤 About Content with Photo */
.about-content {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: var(--gap-2xl);
  align-items: center;
  text-align: left;
  margin-bottom: var(--gap-2xl);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.about-photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  transition: all var(--timing-medium) var(--ease-smooth);
}

.about-photo:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}

.about-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-xl);
}

.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26, 111, 214, 0.1) 100%);
  pointer-events: none;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}

.about-text h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-solid);
  margin-bottom: var(--gap-sm);
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0;
}

.about-text .about-intro {
  font-size: 19px;
  font-weight: 500;
  color: var(--text-primary);
}

.about-motto {
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
  color: var(--primary-solid);
  text-align: center;
  padding: var(--gap-lg) var(--gap-xl);
  margin: var(--gap-lg) 0;
  background: var(--bg-elevated);
  border-left: 4px solid var(--primary-solid);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

/* 🏆 Certifications Grid */
.certifications {
  margin-top: var(--gap-2xl);
  padding-top: var(--gap-2xl);
  border-top: 2px solid var(--border);
}

.certifications h3 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: var(--gap-xl);
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

/* Education Section */
.education-section,
.courses-section,
.experience-section {
  margin-bottom: var(--gap-2xl);
  padding: var(--gap-xl);
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.education-section h4,
.courses-section h4,
.experience-section h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-solid);
  margin-bottom: var(--gap-xl);
  text-align: center;
}

/* Timeline Styling */
.education-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: var(--gap-lg);
  padding: var(--gap-md);
  background: white;
  border-left: 3px solid var(--primary-solid);
  border-radius: var(--radius-md);
  transition: all var(--timing-fast) var(--ease-smooth);
}

.timeline-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
}

.timeline-year {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-solid);
  display: flex;
  align-items: center;
}

.timeline-title {
  font-size: 17px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.cert-item {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--gap-xl);
  text-align: center;
  transition: all var(--timing-medium) var(--ease-smooth);
  box-shadow: var(--shadow-md);
}

.cert-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-solid);
  background: var(--glass-strong);
}

.cert-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--gap-md);
  background: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--timing-medium) var(--ease-smooth);
}

.cert-item:hover .cert-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-neon);
}

.cert-icon svg {
  width: 48px;
  height: 48px;
  color: white;
}

.cert-item h4,
.cert-item h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--gap-sm);
}

.cert-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* 📱 Mobile About Section */
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: var(--gap-lg);
    text-align: center;
  }

  .about-photo {
    max-width: 350px;
    margin: 0 auto;
  }

  .about-text {
    text-align: left;
  }

  .about-motto {
    font-size: 18px;
    padding: var(--gap-md) var(--gap-lg);
  }

  .timeline-item {
    grid-template-columns: 100px 1fr;
    gap: var(--gap-md);
    padding: var(--gap-sm);
  }

  .timeline-year {
    font-size: 14px;
  }

  .timeline-title {
    font-size: 15px;
  }

  .education-section,
  .courses-section,
  .experience-section {
    padding: var(--gap-md);
  }

  .cert-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-md);
  }

  .cert-item {
    padding: var(--gap-lg);
  }

  .cert-icon {
    width: 60px;
    height: 60px;
  }

  .cert-icon svg {
    width: 36px;
    height: 36px;
  }

  .cert-item h4,
  .cert-item h5 {
    font-size: 16px;
  }

  .cert-item p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .cert-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: var(--gap-xs);
  }

  .timeline-year {
    font-weight: 600;
    color: var(--primary-solid);
  }
}

/* Original about p styles */
.about p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

.contact-list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.contact-list li {
  padding: var(--gap-md) 0;
  font-size: 18px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.contact-list li:last-child {
  border-bottom: none;
}

.contact-list strong {
  color: var(--text-primary);
  display: inline-block;
  min-width: 140px;
}

.contact-list a {
  color: var(--accent-solid);
  text-decoration: none;
  transition: all var(--timing-fast) var(--ease-smooth);
}

.contact-list a:hover {
  color: var(--primary-solid);
}

/* 🎨 Interaktívne efekty pre frontend */

/* Jemný kurzor efekt - malý svetelný bod */
.interactive-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(102, 126, 234, 0.6);
  pointer-events: none;
  z-index: 999;
  transition: transform 0.1s ease, opacity 0.3s ease;
  transform: translate(-50%, -50%);
  opacity: 0.8;
  box-shadow: 0 0 15px rgba(102, 126, 234, 0.4);
}

/* Odstránené - náhrada za jemný efekt */

.interactive-cursor.active {
  opacity: 1;
}

/* Odstránené - nechceme žiadne tvary */

/* Odstránené - nechceme žiadne animácie tvarov */

/* Iskrové efekty */
@keyframes sparkleEffect {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.5) rotate(180deg);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0) rotate(360deg);
  }
}

.sparkle {
  position: fixed;
  width: 8px;
  height: 8px;
  background: linear-gradient(45deg, #4facfe, #667eea, #764ba2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1000;
  box-shadow: 0 0 15px currentColor;
  animation: sparkleEffect 1.2s ease-out forwards;
}

/* Vlnové efekty na hover */
@keyframes rippleEffect {
  0% {
    opacity: 0.6;
    transform: scale(0);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
  pointer-events: none;
  animation: rippleEffect 0.8s ease-out;
}

/* Hover efekty pre karty */
.card {
  position: relative;
  overflow: hidden;
  transition: all var(--timing-medium) var(--ease-smooth);
}

.card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, 
    transparent 30%, 
    rgba(102, 126, 234, 0.05) 50%, 
    transparent 70%);
  transform: translate(-100%, -100%);
  transition: transform 0.6s ease;
  pointer-events: none;
  z-index: 1;
}

.card:hover::after {
  transform: translate(0%, 0%);
}

/* Odstránené - nechceme žiadne pulsujúce tvary */

/* Odstránené - nechceme žiadne pulsujúce animácie */

/* Interaktívne hover efekty pre tlačidlá */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  pointer-events: none;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

/* 🦶 Footer */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: var(--gap-xl) 0;
  text-align: center;
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--gap-md);
}

.site-footer p {
  color: var(--text-muted);
  margin: 0;
}

.footer-credit {
  font-size: 14px;
  opacity: 0.8;
}

.footer-credit a {
  color: var(--primary-solid);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--timing-fast) var(--ease-smooth);
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-credit a:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

.footer-legal {
  font-size: 14px;
  margin: 0;
}

.footer-legal a {
  color: var(--text-secondary);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--primary-solid);
}

/* ❤️ Animated Heart */
.footer-credit .heart {
  display: inline-block;
  color: #ff6b7d;
  animation: heartBeat 1.5s ease-in-out infinite;
  font-size: 16px;
  margin: 0 2px;
}

@keyframes heartBeat {
  0%, 100% {
    transform: scale(1);
  }
  10%, 30% {
    transform: scale(1.15);
  }
  20%, 40% {
    transform: scale(1);
  }
}

.admin-link {
  color: var(--accent-solid);
  text-decoration: none;
  padding: 12px 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-weight: 600;
  transition: all var(--timing-fast) var(--ease-smooth);
}

.admin-link:hover {
  background: var(--glass-bg);
  border-color: var(--accent-solid);
  transform: translateY(-2px);
}

/* 📱 Responsive Design */
@media (max-width: 1024px) {
  .cards {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 24px;
    --section-padding: clamp(60px, 12vh, 120px) 0;
  }
  
  .header-inner {
    padding: 20px 10px !important;
  }
  
  .header-actions {
    gap: var(--gap-sm);
  }
  
  .btn.primary {
    font-size: 14px;
    padding: 10px 20px;
  }
  
  .menu {
    right: 0;
    min-width: 240px;
    top: 65px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .cards {
    grid-template-columns: 1fr;
    gap: var(--gap-lg);
  }
  
  .reserve-form .grid {
    grid-template-columns: 1fr;
  }
  
  .strip {
    grid-auto-columns: minmax(280px, 1fr);
  }
  
  .site-footer .container {
    text-align: center;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hamburger {
    width: 48px;
    height: 48px;
  }
  
  .menu {
    min-width: 200px;
    padding: var(--gap-md);
  }
  
  .modal-content {
    padding: var(--gap-lg);
    border-radius: 24px;
  }
}

/* 🎭 Advanced Animations */
@media (prefers-reduced-motion: no-preference) {
  .card {
    animation: cardFloat 6s ease-in-out infinite;
    animation-delay: calc(var(--card-index, 0) * 0.5s);
  }
  
  @keyframes cardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
  }
  
  .hero::before {
    animation: gradientShift 8s ease-in-out infinite;
  }
  
  @keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
  }
}

/* 💰 Pricing Page Styles */
.pricing-hero {
  min-height: 60vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-hero .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.pricing-hero .hero-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}


  .pricing-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(26 111 214 / 38%) 0%, rgb(83 216 247 / 39%) 100%);
    z-index: 1;

}

.pricing-hero .hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 40px 20px;
}

.pricing-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.pricing-hero p {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  opacity: 0.95;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.pricing-section {
  padding: var(--section-padding);
}

.pricing-category {
  margin-bottom: 80px;
}

.pricing-category h2 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 50px;
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--gap-xl);
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 32px;
  transition: all var(--timing-medium) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  border-radius: 24px 24px 0 0;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--primary-solid);
}

.pricing-card.featured {
  border: 2px solid var(--primary-solid);
  background: var(--glass-strong);
}

.pricing-card.featured::before {
  height: 6px;
  background: var(--accent);
}

.pricing-card.special {
  background: linear-gradient(135deg, var(--glass-bg) 0%, rgba(26, 111, 214, 0.05) 100%);
  border: 2px solid var(--accent-solid);
}

.featured-badge,
.special-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--primary);
  color: white;
  padding: 6px 16px;
  border-radius: 0 0 12px 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.special-badge {
  background: var(--accent);
}

.pricing-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.price-list {
  margin-bottom: 20px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
}

.price-item:last-child {
  border-bottom: none;
}

.price {
  font-weight: 700;
  font-size: 18px;
  color: var(--primary-solid);
}

.savings {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 2px;
}

.description {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Services enhancements - price-range is defined above */

.services-cta {
  text-align: center;
  margin-top: calc(var(--gap-4xl) + 20px);
  padding: 40px;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  border: 1px solid var(--glass-border);
}

.services-cta p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.cta-section {
  background: var(--glass-strong);
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 800;
  margin-bottom: 20px;
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: var(--gap-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Active menu item */
.menu a.active {
  background: var(--primary);
  color: white !important;
  border-radius: 8px;
  padding: 8px 16px;
}

/* Interactive elements - missing definitions */
.interactive-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 111, 214, 0.3) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.parallax-layer,
.pulse-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.1;
}

/* Canvas for radial effects */
#radialCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

/* Responsive pricing */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: var(--gap-md);
  }
  
  .pricing-card {
    padding: 24px;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-actions .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Permanentka info styling */
.permanentka-info {
  margin-top: 20px;
  padding: 15px;
  background: rgba(26, 111, 214, 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--primary-solid);
}

.permanentka-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-solid);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* 🖼️ Modern Gallery Styles */
.gallery {
  background: var(--bg-secondary);
  padding-bottom: 40px;
    margin-bottom: 20px;
}

.gallery h2 {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gallery-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-container {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 20px;
}

.gallery-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.gallery-row-top {
  justify-content: space-between;
}

.gallery-row-bottom {
  justify-content: space-between;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  transition: all var(--timing-medium) var(--ease-smooth);
}

.gallery-item.small {
  flex: 1;
  height: 200px;
  min-width: 0;
}

.gallery-item.large {
  flex: 1;
  height: 280px;
  min-width: 0;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--timing-slow) var(--ease-smooth);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 30px 24px 24px;
  color: white;
  transform: translateY(100%);
  transition: all var(--timing-medium) var(--ease-smooth);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.gallery-overlay p {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.5;
}

/* Responsive gallery */
@media (max-width: 768px) {
  .gallery-row {
    flex-direction: column;
    gap: 12px;
  }
  
  .gallery-item.small {
    height: 180px;
  }
  
  .gallery-item.large {
    width: 100%;
    height: 220px;
  }
  
  .gallery-overlay {
    transform: translateY(0);
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
  }
}

@media (max-width: 480px) {
  .gallery-container {
    padding: 0 10px;
  }
  
  .gallery-row {
    gap: 8px;
  }
}

/* ⚡ Performance Optimizations */
.card-img,
.hero,
#radialCanvas {
  will-change: transform;
}

@media (max-width: 768px) {
  .card-img,
  .hero {
    will-change: auto;
  }
}