/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Lato", sans-serif;
}

/* Global Colors (Akcent je teraz sýta červená) */
:root {
  --background-color: #ffffff;
  --default-color: #2c3031;
  --heading-color: #18444c;
  --accent-color: #D0021B;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* Nav Menu Colors */
:root {
  --nav-color: #496268;
  --nav-hover-color: var(--accent-color);
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #496268;
  --nav-dropdown-hover-color: var(--accent-color);
}

/* Color Presets */
.light-background {
  --background-color: #f2f8f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #021418;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #11262a;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/* General Styling & Shared Classes */
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), black 15%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 66px;
  margin-right: 8px;
}

.header .logo svg {
  height: 32px;
  padding-right: 5px;
  color: var(--accent-color);
}

@media (max-width: 575px) {
  .header .logo svg {
    height: 28px;
  }
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 575px) {
  .header .logo h1 {
    font-size: 20px;
  }
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}


/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background-color: var(--background-color);
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-size: 15px;
  line-height: 1.6;
  padding-top: 60px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), transparent 40%) 100%);
}

.footer .footer-top {
  padding-bottom: 50px;
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  position: relative;
}

.footer h4::after {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--accent-color);
  display: block;
  margin-top: 8px;
}

.footer p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  margin-bottom: 10px;
}

.footer .logo span {
  font-size: 26px;
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: 1px;
}

.footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  transition: 0.3s ease;
  margin-right: 8px;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  margin-bottom: 10px;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-decoration: none;
  transition: 0.3s ease;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
  padding-left: 4px;
}

.footer .footer-map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
}

.footer .copyright {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
  padding: 25px 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.footer .copyright a {
  color: var(--accent-color);
  text-decoration: none;
}

.footer .copyright a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 992px) {
  .footer .footer-top {
    text-align: center;
  }

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

  .footer .footer-map iframe {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .footer h4 {
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 992px) {
  .footer .footer-top {
    text-align: center;
  }

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

  .footer .footer-map iframe {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .footer h4 {
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: red;
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Contact sekcia
--------------------------------------------------------------*/
.contact-section { padding: 60px 0; }

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

.contact-wrapper {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* ĽAVÁ strana - teraz svetlá */
.contact-info {
  flex: 1 1 360px;
  background: #ffffff;
  color: #1f2d3d;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(2,20,24,0.08);
  border: 1px solid #e8edef;
}

.contact-info h2 { font-family: var(--heading-font); margin-bottom: 10px; color: #1c2a32; }
.contact-info p { opacity: 0.9; margin-bottom: 20px; }

.info-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #f6f8f9;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 12px;
  border: 1px solid #e9eef0;
}

.info-box i { font-size: 20px; color: var(--accent-color); }

.info-box strong { display:block; font-weight:600; }
.info-box p { margin:0; font-size:14px; }

/* Pravá strana */
.contact-form {
  flex: 1 1 480px;
  background: #ffffff;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(2,20,24,0.06);
  border: 1px solid #e8edef;
}

.contact-form h2 { margin-bottom: 18px; font-family: var(--heading-font); }

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border: 1px solid #e0e3e4;
  border-radius: 8px;
  font-size: 15px;
  background: #ffffff;
  transition: border-color .18s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color) 10%, transparent);
}

.contact-form button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-color);
  color: #fff;
  border: none;
  padding: 12px 18px;
  font-weight:700;
  border-radius: 8px;
  cursor: pointer;
}

.loader {
  width:14px; height:14px;
  border:2px solid transparent;
  border-top-color:#fff;
  border-radius:50%;
  animation: spin .9s linear infinite;
  display:none;
}

button.loading .loader { display:inline-block; }

@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 900px) {
  .contact-wrapper { flex-direction: column; }
}


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: left;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--contrast-color);
    overflow: hidden;
}

.hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
    z-index: 1;
}

.hero-bg .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
    padding-left: 15px;
    padding-right: 15px;
}

.hero-content {
    text-align: left;
}

.hero h1 {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--contrast-color);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.hero h1 span {
    color: var(--accent-color);
}

.hero p {
    font-family: var(--default-font);
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-group {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 3rem;
    align-items: center;
}

.btn {
    padding: 1rem 2.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 2px solid transparent;
    font-family: var(--nav-font);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--accent-color);
}

.btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 15%);
    border-color: color-mix(in srgb, var(--accent-color), black 15%);
}

.btn-outline {
    background: transparent;
    color: var(--contrast-color);
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--contrast-color);
}

.features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.4rem;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    font-weight: 500;
    font-size: 0.95rem;
    transition: background 0.3s;
}

.feature i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.feature:hover {
    background: rgba(255, 255, 255, 0.25);
}


/*--------------------------------------------------------------
# Responzivita
--------------------------------------------------------------*/

@media (max-width: 992px) {
    .hero {
        min-height: 85vh;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .hero-content {
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
        padding-top: 100px;
        padding-bottom: 50px;
    }
    .cta-group {
        justify-content: center;
    }
    .features {
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 75vh;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
    
    .cta-group {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin-bottom: 2rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .features {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .feature {
        width: 100%;
        max-width: 300px;
        justify-content: flex-start;
        margin: 0 auto;
    }
}
/*--------------------------------------------------------------
# About Company Section
--------------------------------------------------------------*/

.about-company {
  position: relative;
  padding: 80px 0;
}

.about-company .section-title {
  font-size: 34px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.about-company .lead {
  color: color-mix(in srgb, var(--heading-color), transparent 25%);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
}

.about-company p {
  color: var(--default-color);
  margin-bottom: 16px;
  line-height: 1.6;
}

.about-company .features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-company .feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 20px;
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s;
  border-left: 4px solid transparent;
}

.about-company .feature:hover {
  transform: translateY(-3px);
  border-left-color: var(--accent-color);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.about-company .feature i {
  font-size: 30px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.about-company .feature h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.about-company .feature p {
  font-size: 14px;
  margin: 0;
}

/* --- CTA Buttons --- */
.about-company .cta-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.about-company .cta-wrapper .btn {
  padding: 12px 26px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.about-company .btn-primary {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
}

.about-company .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
}

.about-company .btn-outline {
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
  color: var(--heading-color);
}

.about-company .btn-outline:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.about-company .image-block img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.about-company .experience-badge {
  position: absolute;
  bottom: 0;
  right: 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(30%);
  text-align: left;
}

.about-company .experience-badge .years {
  display: block;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1;
}

.about-company .experience-badge .text {
  font-size: 14px;
  font-weight: 500;
  display: block;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .about-company .content-block {
    text-align: center;
  }

  .about-company .features-list {
    align-items: center;
  }

  .about-company .image-block {
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .about-company .experience-badge {
    right: 15px;
    padding: 15px;
  }

  .about-company .experience-badge .years {
    font-size: 30px;
  }

  .about-company .experience-badge .text {
    font-size: 12px;
  }
}


/*--------------------------------------------------------------
# Companys / Brands
--------------------------------------------------------------*/
.brand-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 20px 0;
  background-color: var(--surface-color, #f9f9f9);
}

.brand-logos img {
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}

.brand-logos img:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
  opacity: 1;
}

/* Responsívne zmenšenie */
@media (max-width: 768px) {
  .brand-logos img {
    max-height: 60px;
  }
}


/*--------------------------------------------------------------
# Services Section (Unsere Leistungen)
--------------------------------------------------------------*/

.services {
  position: relative;
  padding: 80px 0;
  background-color: var(--surface-color);
}

.services .section-header h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.services .section-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 700px;
  font-size: 1.05rem;
  text-align: left !important;
}

/* Service Card */
.services .service-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
  height: 100%;
}

.services .service-card:hover {
  transform: translateY(-8px);
  border-top-color: var(--accent-color);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.services .service-card .icon {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.services .service-card h4 {
  font-family: var(--heading-font);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.services .service-card p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .services {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .services .service-card {
    padding: 30px 20px;
  }
}
/*--------------------------------------------------------------
# Horizontal Timeline
--------------------------------------------------------------*/
.timeline-horizontal {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  margin-top: 3rem;
  border-top: 2px solid #dcdcdc;
  padding-top: 2.5rem;
}

.timeline-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}

.timeline-step::before {
  content: "";
  position: absolute;
  top: -54.5px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--accent-color, #0d6efd);
  border-radius: 50%;
  border: 4px solid #fff; /* Pridaný biely okraj pre lepší kontrast */
  z-index: 2;
}

.timeline-year {
  display: inline-block;
  background: var(--accent-color, #0d6efd);
  color: #fff;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/*--------------------------------------------------------------
# Responzivita (Vertikálna časová os pre menšie obrazovky)
--------------------------------------------------------------*/
@media (max-width: 992px) {

  .timeline-step {
    min-width: 45%; 
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .timeline-horizontal {
    flex-direction: column;
    border-top: none;
    border-left: 2px solid #dcdcdc; 
    padding-top: 0;
    padding-left: 1.5rem;
    margin-left: 10px; 
    margin-top: 2rem;
  }

  .timeline-step {
    flex: none;
    min-width: 100%;
    text-align: left;
    padding: 0 0 3rem 1.5rem; 
    margin-bottom: 0;
  }

  .timeline-step::before {
    top: 5px; 
    left: -10px; 
    transform: none;
  }
}

/*--------------------------------------------------------------
# Hero Produkte
--------------------------------------------------------------*/

.hero-products {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--contrast-color);
  background-color: var(--default-color);
  overflow: hidden;
  font-family: var(--heading-font);
  margin-bottom: 60px;
}

.hero-products .hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.5);
}

.hero-products .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
  z-index: 2;
}

.hero-products .container {
  position: relative;
  z-index: 3;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-products h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--contrast-color);
}

.hero-products h1 span {
  color: var(--accent-color);
}

.hero-products p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
}


/*--------------------------------------------------------------
# Filter Panel
--------------------------------------------------------------*/

.filter-panel {
  background: var(--surface-color);
  padding: 25px 30px;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
  font-family: var(--default-font);
}

.filter-panel .form-control,
.filter-panel .form-select {
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 1rem;
  border: 1px solid #ced4da;
  background-color: #fff;
  color: var(--default-color);
  transition: border-color 0.2s ease;
}

.filter-panel .form-control:focus,
.filter-panel .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(208, 2, 27, 0.25);
}

.filter-panel .btn-outline-secondary {
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: 500;
  color: var(--accent-color);
  border-color: var(--accent-color);
  transition: all 0.3s ease;
}

.filter-panel .btn-outline-secondary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}


/*--------------------------------------------------------------
# Produktové Karty
--------------------------------------------------------------*/

.product-item {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.12);
}

.product-image {
  width: 100%;
  height: 260px;
  background: #fafafa;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.product-item:hover .product-image img {
  transform: scale(1.08);
}

.product-info {
  padding: 1.4rem 1.2rem;
  text-align: center;
}

.product-info h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--heading-color);
}

.product-info p {
  font-size: 0.95rem;
  min-height: 58px;
  color: var(--default-color);
  margin-bottom: 1.1rem;
}

.product-info .btn {
  border-radius: 50px;
  padding: 0.55rem 1.4rem;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.product-info .btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}


/*--------------------------------------------------------------
# Parallax Divider Section
--------------------------------------------------------------*/

.parallax-divider {
  position: relative;
  height: 300px;
  background-image: url("../img/parallax-bg.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--contrast-color);
  overflow: hidden;
}

.parallax-divider .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: brightness(0.7);
  z-index: 1;
}

.parallax-divider .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.parallax-divider h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 2rem;
  color: var(--contrast-color);
  margin-bottom: 10px;
}

.parallax-divider p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
  margin-bottom: 20px;
}

.parallax-divider .btn {
  padding: 12px 28px;
  border-radius: 50px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.parallax-divider .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
}

/* Responsivita */
@media (max-width: 992px) {
  .parallax-divider {
    height: 260px;
  }

  .parallax-divider h2 {
    font-size: 1.8rem;
  }

  .parallax-divider p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .parallax-divider {
    height: 240px;
    background-attachment: scroll;
  }

  .parallax-divider h2 {
    font-size: 1.6rem;
  }

  .parallax-divider p {
    font-size: 1rem;
  }
}


/*--------------------------------------------------------------
# Produkt detail
--------------------------------------------------------------*/

/*
* Všeobecné a galéria (Zachytené z tvojho predchádzajúceho CSS)
*/
.product-detail {
    background-color: var(--surface-color, #f7f7f7);
    padding: 60px 0;
}
.product-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 20px;
}
.product-gallery .main-image {
    width: 100%;
    max-height: 450px;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.thumb-row {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.thumb {
    width: 70px;
    height: 70px;
    object-fit: contain; /* Zmenené z cover na contain */
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s ease, transform 0.2s ease;
    opacity: 0.8;
}
.thumb.active,
.thumb:hover {
    border-color: var(--accent-color, #8c005d);
    opacity: 1;
    transform: none; /* Odstránené translateY, pretože sa nehodí k zmenám na obrázku */
}

/*
* Horný Informačný Blok (Špecifické pre nový HTML)
*/
.product-info {
    text-align: left;
    padding-top: 20px;
}
.product-category {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--default-color, #6c757d);
    letter-spacing: 1px;
}
.product-info h1.product-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--heading-color, #333);
    line-height: 1.2;
    margin-bottom: 10px;
}
.gender-info {
    font-size: 1.1rem;
    color: var(--default-color, #555);
}
.gender-icon {
    font-size: 1.5rem;
    color: var(--accent-color, #8c005d);
    line-height: 1;
}
.product-description.small-description {
    font-size: 1rem;
    color: var(--default-color, #555);
    line-height: 1.5;
    margin-bottom: 25px;
}
/* Úroveň Savosti (absorb bar) */
.absorb-level {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}
.absorb-icon {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-color, #8c005d);
    border: 1px solid var(--accent-color, #8c005d);
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.absorb-bar {
    flex-grow: 1;
    height: 6px;
    background-color: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
}
.absorb-fill {
    height: 100%;
    background-color: var(--accent-color, #8c005d);
    transition: width 0.5s ease;
}
/* Tabuľka špecifikácií */
.info-table-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}
.info-table-list .label {
    font-weight: 500;
    color: #444;
}
.info-table-list .value {
    color: var(--default-color, #555);
}

.product-tabs-section {
    margin-top: 40px;

}
.product-nav-tabs {
    border-bottom: 1px solid #e0e0e0;
}
.product-nav-tabs .nav-link {
    color: var(--default-color, #555);
    font-weight: 500;
    border: none;
    border-bottom: 3px solid transparent; /* Priestor pre aktívnu čiaru */
    padding: 15px 20px;
    margin-bottom: -1px; /* Vyrovnanie s border-bottom */
    transition: color 0.2s ease, border-color 0.2s ease;
    background-color: transparent;
}
.product-nav-tabs .nav-link:hover {
    color: var(--accent-color, #8c005d);
    border-color: rgba(140, 0, 93, 0.3);
}
.product-nav-tabs .nav-link.active {
    color: var(--accent-color, #8c005d);
    border-color: var(--accent-color, #8c005d); 
    background-color: #ffffff;
    font-weight: 600;
}
.product-tab-content {
    padding: 40px 0;
    background-color: #ffffff;
}
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading-color, #333);
    margin-bottom: 40px !important;
}

.feature-list-check {
    list-style: none;
    padding-left: 0;
}
.feature-list-check li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 1rem;
    color: var(--default-color, #555);
}
.feature-list-check li::before {
    content: "•"; 
    position: absolute;
    left: 0;
    color: var(--accent-color, #8c005d);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 10%);
    border-color: color-mix(in srgb, var(--accent-color), black 10%);
    transform: translateY(-2px);
}

.product-description-section {
    margin-top: 80px;
    text-align: left;
}
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 40px !important;
}
.accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}
.accordion-button {
    background-color: #f7f9fa;
    color: var(--heading-color);
    font-weight: 600;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.accordion-button:not(.collapsed) {
    color: var(--accent-color);
    background-color: #ffffff;
    box-shadow: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.accordion-body {
    padding: 20px;
    line-height: 1.6;
    text-align: left;
}
.accordion-body ul {
    list-style: disc;
    padding-left: 20px;
}

/*--------------------------------------------------------------
# ALV Hero Separator Banner 
--------------------------------------------------------------*/
.alv-hero-separator {
    background-color: #ffffff; 
    padding-top: 100px; 
    padding-bottom: 20px; 
    position: relative;
    z-index: 1; 
}
/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 80px 0;
  margin: 0 auto;
}

.error-404 .error-icon {
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}

.error-404 .error-title {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 600;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.error-404 .search-box {
  max-width: 500px;
  margin: 0 auto;
}

.error-404 .search-box .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .error-404 .error-title {
    font-size: 1.5rem;
  }

  .error-404 .error-text {
    font-size: 1rem;
    padding: 0 20px;
  }

  .error-404 .search-box {
    margin: 0 20px;
  }
}
