/* Základné nastavenia */
:root {
  --primary-color: #66cc66;
  --primary-color-dark: #4ca64c;
  --primary-color-light: #8dd88d;
  --primary-gradient: linear-gradient(135deg, #66cc66, #4ca64c);
  --accent-color: #3498db;
  --secondary-color: #1a1a1a;
  --text-color: #e0e0e0;
  --dark-text: #111111;
  --light-text: #ffffff;
  --background-color: #121212;
  --card-background: rgba(22, 28, 36, 0.8);
  --nav-background: rgba(20, 25, 32, 0.95);
  --section-background: rgba(15, 23, 30, 0.5);
  --border-color: rgba(255, 255, 255, 0.1);
  --section-padding: 80px 0;
  --transition: all 0.3s ease;
  --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  --scale-transition: transform 0.3s ease-in-out;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background: #0f1720;
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 20px;
  font-weight: 600;
  line-height: 1.3;
}

/* Navigácia */
.main-nav {
  background: var(--card-background);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  flex: 0 0 auto;
  margin-right: 50px;
}

.logo a {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.logo a:hover {
  text-shadow: 0 0 8px rgba(102, 204, 102, 0.5);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2px;
}

.nav-links li {
  position: relative;
  margin: 0 3px;
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  padding: 10px 12px;
  font-size: 0.95rem;
  display: block;
  transition: all 0.3s ease;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.nav-links a:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
  z-index: -1;
}

.nav-links a:hover:before,
.nav-links a.active:before {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
  background: rgba(102, 204, 102, 0.08);
}

.nav-links a.active {
  font-weight: 500;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--card-background);
  min-width: 220px;
  border-radius: 8px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 10;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  animation: dropdownFade 0.3s ease;
}

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

.dropdown li {
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown li:last-child {
  border-bottom: none;
}

.dropdown a {
  padding: 12px 15px;
  font-size: 0.9rem;
  border-radius: 0;
}

.dropdown a:hover {
  background: rgba(102, 204, 102, 0.1);
  padding-left: 20px;
}

.has-dropdown:hover .dropdown {
  display: block;
}

.has-dropdown > a:after {
  content: '▾';
  margin-left: 6px;
  opacity: 0.8;
  font-size: 0.7em;
  vertical-align: middle;
}

/* Hero Sekcia */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--light-text);
  background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa') center/cover no-repeat;
  background-position: center center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(10, 15, 30, 0.7));
  mix-blend-mode: multiply;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.cta-button {
  display: inline-block;
  background: var(--primary-gradient);
  color: var(--dark-text);
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(102, 204, 102, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(102, 204, 102, 0.6);
}

/* O nás sekcia */
.about-section {
  background: var(--section-background);
  padding: var(--section-padding);
  text-align: center;
}

.about-section h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--light-text);
}

.stats-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.stat-item {
  text-align: center;
  padding: 30px;
  background: var(--card-background);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(5px);
  width: 200px;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(102, 204, 102, 0.3);
}

.stat-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--light-text);
  margin-bottom: 5px;
}

.stat-item p {
  color: var(--text-color);
}

/* Služby sekcia */
.services-section {
  padding: var(--section-padding);
  background: linear-gradient(to bottom, rgba(15, 23, 30, 0.5), rgba(22, 28, 36, 0.8));
}

.services-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--light-text);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--card-background);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
  z-index: 1;
  backdrop-filter: blur(8px);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(102, 204, 102, 0.3);
}

.service-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(102, 204, 102, 0.1), transparent);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.service-card:hover:before {
  opacity: 1;
}

.service-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-card:hover i {
  transform: scale(1.1);
  color: var(--primary-color-light);
}

.service-card h3 {
  color: var(--light-text);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-color);
  margin-bottom: 20px;
  min-height: 80px;
}

.learn-more {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding: 5px 0;
  transition: var(--transition);
}

.learn-more:after {
  content: '→';
  margin-left: 5px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.learn-more:hover {
  color: var(--primary-color-light);
}

.learn-more:hover:after {
  transform: translateX(5px);
}

/* Footer */
footer {
  background: var(--card-background);
  padding: 50px 0 20px;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-section {
  margin-bottom: 30px;
  min-width: 250px;
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.footer-section p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: var(--text-color);
  font-size: 1.5rem;
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  font-size: 0.9rem;
  color: rgba(224, 224, 224, 0.6);
}

/* Mobile menu */
.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-color);
  padding: 10px;
}

/* Responzívny dizajn */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .about-section h2,
  .services-section h2 {
    font-size: 2rem;
  }

  .stats-container {
    flex-direction: column;
    align-items: center;
  }

  .stat-item {
    width: 100%;
    max-width: 280px;
    margin-bottom: 20px;
  }

  .service-card p {
    min-height: auto;
  }

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

  .footer-section {
    margin: 0 0 30px 0;
    min-width: auto;
  }

  /* Navigácia pre mobile */
  .nav-container {
    padding: 10px 15px;
    flex-wrap: wrap;
  }

  .logo {
    margin-right: 20px;
  }

  .logo a {
    font-size: 1.3rem;
  }

  .nav-links {
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-top: 15px;
  }

  .nav-links li {
    margin: 2px 0;
    width: 100%;
  }

  .nav-links a {
    padding: 12px 15px;
    font-size: 0.95rem;
    border-radius: 8px;
    text-align: left;
  }

  .dropdown {
    position: static;
    display: block;
    min-width: auto;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    margin-top: 5px;
    border-radius: 8px;
  }

  .dropdown a {
    padding: 10px 20px;
    border-radius: 0;
  }

  .dropdown a:hover {
    padding-left: 25px;
  }

  /* Hero sekcia pre mobile */
  .hero {
    height: 70vh;
    min-height: 500px;
    padding: 20px 0;
  }

  .hero-content {
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 15px;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 0.95rem;
  }

  /* Kontaktné karty pre mobile */
  .contact-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-card {
    padding: 25px 20px;
    text-align: center;
  }

  .contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .contact-card p {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  /* Formuláre pre mobile */
  .contact-form {
    padding: 25px 20px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 15px;
    font-size: 1rem;
  }

  .form-group textarea {
    min-height: 120px;
  }

  .btn {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
  }
}

.features-list i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 1.1rem;
}

.features-list li:hover i {
  transform: scale(1.2);
}

/* Menu toggle pre tablety a menšie zariadenia */
@media (max-width: 992px) {
  .menu-toggle {
    display: block;
    order: 3;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card-background);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 5px 0;
    width: 100%;
  }

  .nav-links a {
    padding: 15px 20px;
    border-radius: 8px;
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .dropdown {
    position: static;
    display: none;
    background: rgba(255, 255, 255, 0.05);
    margin-top: 10px;
    border-radius: 8px;
  }

  .dropdown.active {
    display: block;
  }

  .has-dropdown > a:after {
    float: right;
    transition: transform 0.3s ease;
  }

  .has-dropdown.active > a:after {
    transform: rotate(180deg);
  }

  /* Zmenšenie paddingu pre tablety */
  :root {
    --section-padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 70vh;
    min-height: 500px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .sub-hero {
    padding: 60px 0 40px;
  }

  .sub-hero h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 25px 20px;
    margin: 0;
  }

  .service-card i {
    font-size: 2.5rem;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }

  /* Dodatočné úpravy pre malé mobilné zariadenia */
  .container {
    padding: 0 15px;
  }

  .nav-container {
    padding: 10px 15px;
  }

  .logo a {
    font-size: 1.2rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
    line-height: 1.1;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .cta-button {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  /* Štatistiky pre malé mobilné zariadenia */
  .stat-item {
    padding: 20px 15px;
  }

  .stat-item h3 {
    font-size: 2rem;
  }

  .stat-item i {
    font-size: 2rem;
  }

  /* Služby pre malé mobilné zariadenia */
  .service-card {
    padding: 20px 15px;
  }

  .service-card i {
    font-size: 2.2rem;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  /* Footer pre malé mobilné zariadenia */
  .footer-section h4 {
    font-size: 1.1rem;
  }

  .footer-section p {
    font-size: 0.9rem;
  }

  .social-links a {
    font-size: 1.3rem;
  }

  /* Kontaktné karty pre malé mobilné zariadenia */
  .contact-card {
    padding: 20px 15px;
  }

  .contact-card h3 {
    font-size: 1.2rem;
  }

  .contact-card p {
    font-size: 0.9rem;
  }

  /* Tlačidlá pre dotyk */
  .nav-links a,
  .cta-button,
  .btn,
  .learn-more {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links a {
    justify-content: flex-start;
  }
}

@media (max-width: 992px) {
  .certifications-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 576px) {
  .certifications-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .certification-card {
    padding: 25px 20px;
    margin: 0;
  }

  .certification-card i {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .footer-section {
    margin-bottom: 0;
    width: 100%;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .coming-soon-section {
    padding: 60px 0;
  }

  .coming-soon-content {
    padding: 40px 20px;
  }

  .coming-soon-title {
    font-size: 2rem;
  }

  .coming-soon-desc {
    font-size: 1rem;
  }

  .feature-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }

  /* Dodatočné úpravy pre extra malé zariadenia */
  .nav-links a {
    font-size: 0.9rem;
    padding: 12px 15px;
  }

  .dropdown a {
    font-size: 0.85rem;
    padding: 10px 20px;
  }
}

/* Úpravy pre responzívny text */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  h2 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  h3 {
    font-size: 1.3rem;
    line-height: 1.3;
  }

  p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

/* Úpravy premenných pre mobilné zariadenia */
@media (max-width: 768px) {
  :root {
    --section-padding: 50px 0;
  }
}

@media (max-width: 576px) {
  :root {
    --section-padding: 40px 0;
  }

  /* Zmenšenie animácií pre výkon na mobiloch */
  * {
    animation-duration: 0.2s !important;
    transition-duration: 0.2s !important;
  }
}

/* Prepínač jazykov responzívne úpravy */
.language-switcher {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: rgba(22, 28, 36, 0.9);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.language-switch {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 4px;
  gap: 2px;
  min-height: 36px;
  position: relative;
}

.language-switch button {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  min-width: 45px;
  text-align: center;
}

.language-switch button.active {
  background: var(--primary-color);
  color: var(--dark-text);
  box-shadow: 0 2px 8px rgba(102, 204, 102, 0.3);
}

.language-switch button:hover:not(.active) {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.05);
}

.language-switch button:active {
  transform: scale(0.95);
}

/* Responzívne úpravy pre prepínač jazykov */
@media (max-width: 992px) {
  .language-switcher {
    position: static;
    margin-left: auto;
    order: 2;
    background: transparent;
  }

  .language-switch {
    min-height: 32px;
  }

  .language-switch button {
    font-size: 0.8rem;
    padding: 6px 12px;
    min-width: 40px;
  }
}

@media (max-width: 576px) {
  .language-switcher {
    margin: 10px 0;
    order: 4;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .language-switch {
    min-width: 120px;
  }

  .language-switch button {
    flex: 1;
    min-width: 50px;
  }
}

/* Dodatočné mobilné optimalizácie */
@media (max-width: 480px) {
  /* Pre extra malé mobilné zariadenia */
  .hero {
    height: 60vh;
    min-height: 450px;
  }

  .hero-content h1 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .hero-content p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .cta-button {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .service-card {
    padding: 18px 12px;
  }

  .service-card i {
    font-size: 2rem;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.85rem;
  }

  .stat-item {
    padding: 18px 12px;
  }

  .stat-item h3 {
    font-size: 1.8rem;
  }

  .stat-item i {
    font-size: 1.8rem;
  }
}

/* Landscape orientácia pre mobilné zariadenia */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    height: 80vh;
    min-height: 400px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .nav-container {
    padding: 8px 15px;
  }
}

/* Touch optimalizácie */
@media (hover: none) and (pointer: coarse) {
  /* Pre dotykové zariadenia */
  .service-card:hover,
  .stat-item:hover,
  .nav-links a:hover {
    transform: none;
  }

  .service-card:active,
  .stat-item:active {
    transform: scale(0.98);
  }

  .nav-links a,
  .cta-button,
  .btn,
  .learn-more,
  .language-toggle {
    min-height: 44px; /* Apple odporúčaná veľkosť pre dotyk */
  }
}

/* Lazy loading pre obrázky */
img.lazy {
  opacity: 0;
  transition: opacity 0.3s;
}

img.lazy.loaded {
  opacity: 1;
}

/* Optimalizácia obrázkov pre mobilné zariadenia */
@media (max-width: 768px) {
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  .hero {
    background-attachment: scroll; /* Lepší výkon na mobiloch */
  }

  /* Redukcia parallax efektov na mobiloch pre lepší výkon */
  [data-aos] {
    transition-duration: 0.3s;
  }
}

/* PWA ready štýly */
@media (display-mode: standalone) {
  .main-nav {
    padding-top: env(safe-area-inset-top);
  }
}

/* Keyboard navigácia pre accessibility */
.nav-links a:focus,
.cta-button:focus,
.btn:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Skip link pre accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-color);
  color: var(--dark-text);
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 9999;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 6px;
}

/* Loading spinner pre lepší UX */
.loading-spinner {
  display: none;
  width: 40px;
  height: 40px;
  border: 4px solid rgba(102, 204, 102, 0.3);
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #00ff00;
    --background-color: #000000;
    --text-color: #ffffff;
    --border-color: #ffffff;
  }
}

/* Dark mode prevention na mobiloch kde môže byť problamatický */
@media (max-width: 576px) and (prefers-color-scheme: dark) {
  /* Už máme dark theme ako default, takže nie je potrebná dodatočná úprava */
}

/* Print štýly */
@media print {
  .main-nav,
  .menu-toggle,
  .language-switcher,
  .cta-button {
    display: none !important;
  }

  .hero {
    background: none !important;
    color: #000 !important;
  }

  .service-card,
  .stat-item {
    border: 1px solid #000 !important;
    background: white !important;
    color: #000 !important;
  }
}