* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-white: #ffffff;
    --color-dark-gray: #2c2c2c;
    --color-accent: #efa912;
    --color-light-gray: #f5f5f5;
    --color-text: #333333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
    overflow-x: hidden;
}

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

.hero .container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
}

/* Navigation */
.navbar {
    background-color: transparent;
    padding: 0rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: none;
    backdrop-filter: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(239, 169, 18, 0.75);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 150px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease, transform 0.2s ease;
    font-size: 1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled .nav-menu a {
    color: var(--color-white);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.nav-menu a:hover {
    color: #5a5a5a;
    transform: translateY(-2px);
}

/* Submenu / Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a::after {
    content: '▾';
    margin-left: 0.35em;
    font-size: 0.85em;
    opacity: 0.9;
    display: inline-block;
    transition: transform 0.2s ease;
}

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

.nav-dropdown .submenu {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background-color: var(--color-dark-gray);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 100;
}

.nav-dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    margin: 0;
}

.submenu a {
    display: block;
    padding: 0.6rem 1.25rem;
    color: var(--color-white) !important;
    font-size: 0.95rem;
    text-shadow: none;
}

.submenu a:hover {
    background-color: var(--color-accent);
    transform: none;
}

.navbar.scrolled .nav-menu a:hover {
    color: #5a5a5a;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled .menu-toggle {
    color: var(--color-dark-gray);
    text-shadow: none;
}

/* Contact Icons in Navbar */
.nav-contact-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--color-accent);
    border-radius: 50%;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    background-color: rgba(239, 169, 18, 0.9);
}

.navbar.scrolled .contact-icon {
    background-color: var(--color-dark-gray);
}

.navbar.scrolled .contact-icon:hover {
    background-color: rgba(44, 44, 44, 0.9);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* Hero Section */
.hero {
    position: relative;
    color: var(--color-white);
    padding: 8rem 0 6rem;
    text-align: center;
    overflow: hidden;
    min-height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    border-radius: 0px 0 250px 0;
}

.parallax-section {
    position: relative;
    min-height: 75vw;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    will-change: transform;
    z-index: 1;
    background: none;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('../images/osobni-vytah.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    will-change: transform;
    z-index: 1;
    animation: hero-bg-move 20s ease-in-out infinite;
}

@keyframes hero-bg-move {
    0%, 100% {
        transform: scale(1) translateY(0);
    }
    50% {
        transform: scale(1.1) translateY(-20px);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.97) 0%, rgba(26, 25, 25, 0.4) 50%, rgba(44, 44, 44, 0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

.parallax-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.97) 0%, rgba(26, 25, 25, 0.4) 50%, rgba(44, 44, 44, 0.2) 100%);
    pointer-events: none;
}

.parallax-bg-1 {
    background: linear-gradient(135deg, var(--color-dark-gray) 0%, #1a1a1a 50%, var(--color-dark-gray) 100%);
}

.parallax-bg-2 {
    background: linear-gradient(135deg, #1a1a1a 0%, var(--color-dark-gray) 50%, #1a1a1a 100%);
}

.parallax-bg-3 {
    background: linear-gradient(135deg, var(--color-dark-gray) 0%, #1a1a1a 100%);
}

.parallax-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.parallax-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    margin: 0;
}


.hero-content {
    position: relative;
    z-index: 3;
}

.motto {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

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

/* Small Hero Section */
.small-hero {
    position: relative;
    overflow: hidden;
    min-height: 50vh;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.small-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/osobni-vytah.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--color-white);
    cursor: pointer;
    animation: pulse 2s ease-in-out infinite;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator svg {
    width: 30px;
    height: 30px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes pulse {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.8;
    }
    50% {
        transform: translateX(-50%) translateY(10px);
        opacity: 1;
    }
}

/* Sections */
.section {
    padding: 5rem 0;
   
}

.section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.section-alt {
    background-color: var(--color-light-gray);
}

/* Products Section */
.products-section {
    background-color: var(--color-white);
    padding: 6rem 0;
}

.products-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.products-hero-reverse {
    grid-template-columns: 1fr 1fr;
}

.products-hero-reverse .products-content {
    order: 1;
}

.products-hero-reverse .products-image {
    order: 2;
}

.products-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.products-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.products-content {
    padding: 2rem 0;
}

.products-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.products-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0 0 2rem 0;
}

.products-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--color-accent);
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(239, 169, 18, 0.3);
    text-align: center;
}

.products-button:hover {
    background-color: rgba(239, 169, 18, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(239, 169, 18, 0.4);
}

.products-button:active {
    transform: translateY(-1px);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.product-card {
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-light-gray) 100%);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--color-accent);
}

.product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--color-accent) 0%, rgba(239, 169, 18, 0.8) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.product-card h3 {
    font-size: 1.8rem;
    color: var(--color-dark-gray);
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    margin: 0;
}

/* Responsive Products */
@media (max-width: 968px) {
    .products-hero,
    .products-hero-reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .products-hero-reverse .products-content {
        order: 1;
    }
    
    .products-hero-reverse .products-image {
        order: 2;
    }
    
    .products-image img {
        min-height: 300px;
    }
    
    .products-title {
        font-size: 2.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Realizácie Section */
.realizacie-section {
    background-color: var(--color-dark-gray);
    color: var(--color-white);
    padding: 6rem 0;
    border-radius: 150px 0 150px 0;
    position: relative;
    background-image: url('vyah-pozadie.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.realizacie-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 44, 44, 0.90);
    z-index: 1;
    pointer-events: none;
    border-radius: 150px 0 150px 0;
}

.realizacie-section .container {
    position: relative;
    z-index: 2;
}

.realizacie-section .section-title {
    color: var(--color-white);
    text-align: center;
    margin-bottom: 1rem;
}

.realizacie-intro {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.realizacie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.realizacie-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 20px;
    margin-bottom: 20px;
}
.realizacie-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 20px;
    margin-bottom: 20px;
}

.realizacie-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}
.realizacie-item h3{
	position:absolute;
	bottom:0px;
	lefT:0;
	z-index:1;
	width:100%;
	color:#fff;
	padding:5px;
	background:rgba(0,0,0,.6);
	font-size:1rem;
}
.realizacie-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.realizacie-item .realizacie-image {
    pointer-events: none;
}

.realizacie-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.realizacie-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.realizacie-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.realizacie-item:hover .realizacie-image img,
.realizacie-link:hover .realizacie-image img {
    transform: scale(1.1);
}

.realizacie-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 44, 44, 0.95), transparent);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.realizacie-item:hover .realizacie-overlay {
    transform: translateY(0);
}

.realizacie-overlay h3 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.realizacie-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
}

/* Catalog widget – šablóna dizajn.phtml */
.catalog-dizajn-grid.realizacie-grid {
    align-items: start;
}
/* Akordeón: obal sa „rozplynie“ v mriežke — fotka ostane v bunke, panel je samostatný riadok cez všetky stĺpce */
.catalog-dizajn-grid .catalog-accordion-cell {
    display: contents;
}
.catalog-dizajn-grid [data-catalog-accordion] > .realizacie-item {
    width: 100%;
    min-width: 0;
}
.catalog-dizajn-grid .catalog-l1-trigger {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    font: inherit;
    color: inherit;
    position: relative;
    z-index: 0;
    box-sizing: border-box;
}
.catalog-dizajn-grid .catalog-l1-trigger:focus {
    outline: 2px solid var(--color-accent, #c9a227);
    outline-offset: 2px;
}
.catalog-dizajn-grid .catalog-l1-chevron {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 18px;
    transition: transform 0.25s ease;
    pointer-events: none;
}
.catalog-dizajn-grid [data-catalog-accordion].is-open .catalog-l1-chevron {
    transform: rotate(180deg);
}
.catalog-dizajn-grid .catalog-l2-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    min-height: 0;
}
.catalog-dizajn-grid [data-catalog-accordion] > .realizacie-item > h3 {
    pointer-events: none;
}
.catalog-dizajn-grid [data-catalog-accordion] > .catalog-l2-wrap {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-top: 0.5rem;
}
.catalog-dizajn-grid [data-catalog-accordion].is-open .catalog-l2-wrap {
    max-height: 2400px;
}
.catalog-dizajn-grid .catalog-l2-inner {
    padding: 0.75rem 0 0;
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.65rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}
/* Náhľady podpoložiek výrazne menšie ako horná dlaždica (4∶3) */
.catalog-dizajn-grid .catalog-l2-inner > .catalog-l2-tile-wrap,
.catalog-dizajn-grid .catalog-l2-inner > .catalog-l2-textonly {
    flex: 0 0 auto;
    width: auto;
    max-width: min(168px, 26vw);
    min-width: 0;
}
.catalog-dizajn-grid .catalog-l2-tile-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.catalog-dizajn-grid .catalog-l2-tile {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.catalog-dizajn-grid .catalog-l2-tile .realizacie-link {
    height: 100%;
}
.catalog-dizajn-grid .catalog-l2-desc {
    opacity: 0.9;
    line-height: 1.35;
}
.catalog-dizajn-grid .catalog-l2-tile h4 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    margin: 0;
    color: #fff;
    padding: 6px 8px;
    background: rgba(0, 0, 0, 0.65);
    font-size: 0.8rem;
    font-weight: 600;
    pointer-events: none;
}
.catalog-dizajn-grid .catalog-l2-textonly {
    padding: 0.5rem 0.25rem;
    font-size: 0.85rem;
}
.catalog-dizajn-grid .catalog-l1-desc {
    font-size: 0.9rem;
    line-height: 1.45;
}
.catalog-dizajn-grid .catalog-l2-wrap > .catalog-l1-desc {
    padding: 0 0 0.65rem;
    margin: 0;
}
.catalog-dizajn-grid .catalog-text-card {
    border-radius: 12px;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive Realizácie */
@media (max-width: 968px) {
    .realizacie-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .realizacie-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
	.realizacie-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .realizacie-grid,.realizacie-grid-3,
    .realizacie-grid-4 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .realizacie-intro {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .products-title {
        font-size: 2rem;
    }
    
    .products-description {
        font-size: 1rem;
    }
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-dark-gray);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--color-accent);
}

/* Content */
.content-text {
    max-width: 900px;
    margin: 0 auto 3rem auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.content-text p {
    margin-bottom: 1.5rem;
}

.content-text strong {
    color: var(--color-dark-gray);
    font-weight: 600;
}

/* Advantages */
.advantages {
    margin-top: 4rem;
}

.advantages h3 {
    font-size: 2rem;
    color: var(--color-dark-gray);
    margin-bottom: 2rem;
    text-align: center;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.advantage-card {
    background: linear-gradient(135deg, var(--color-accent) 0%, rgba(180, 130, 8, 0.95) 100%);
    padding: 2.5rem 2rem;
    border-radius: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
    margin-bottom: 1.5rem;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon svg {
    width: 64px;
    height: 64px;
    stroke-width: 2;
}

.advantage-card h4 {
    color: var(--color-white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.advantage-card p {
    color: var(--color-white);
    line-height: 1.6;
    opacity: 0.95;
}

/* Servis highlight */
.servis-highlight {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
    margin-top: 3rem;
    margin-bottom: 3rem;
    padding: 2.5rem clamp(12px, 4vw, 20px);
    background-color: var(--color-white);
    overflow-x: clip;
}

.servis-highlight h3 {
    color: var(--color-dark-gray);
    font-size: clamp(1.35rem, 4vw, 1.8rem);
    margin-bottom: 1.5rem;
    text-align: center;
}

.servis-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: clamp(0.75rem, 2vw, 1rem);
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    min-width: 0;
    padding: 0 clamp(4px, 2vw, 8px);
}

.servis-highlight-item {
    background: linear-gradient(135deg, var(--color-accent) 0%, rgba(180, 130, 8, 0.95) 100%);
    padding: clamp(1rem, 3vw, 1.25rem) clamp(1rem, 3vw, 1.5rem);
    border-radius: clamp(18px, 5vw, 50px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: break-word;
}

.servis-highlight-item .servis-sekcia-obrazok {
    max-width: 100%;
    overflow: hidden;
}

.servis-highlight-item .servis-sekcia-obrazok img,
.servis-highlight-item .servis-polozka-with-img img {
    max-width: 100%;
    height: auto;
    display: block;
}

.servis-highlight-item .servis-polozka-thumb {
    max-width: min(120px, 35vw);
    width: 100%;
    height: auto;
}

.servis-highlight-item .servis-num {
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    background-color: var(--color-white);
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50%;
    margin-right: 0.75rem;
    vertical-align: middle;
    flex-shrink: 0;
}

.servis-highlight-item h4 {
    display: inline;
    color: var(--color-white);
    font-size: clamp(1rem, 2.8vw, 1.1rem);
    margin: 0;
    vertical-align: middle;
}

.servis-highlight-item p {
    color: var(--color-white);
    font-size: 0.95rem;
    margin: 0.5rem 0 0 2.6rem;
    line-height: 1.5;
    opacity: 0.95;
    max-width: 100%;
}

.servis-highlight-item .servis-polozky-list {
    max-width: 100%;
    padding-left: 1rem;
    margin-left: 0;
    box-sizing: border-box;
}

.servis-highlight-item .servis-polozka-with-img {
    max-width: 100%;
}

@media (max-width: 576px) {
    .servis-highlight-item p {
        margin-left: 0;
        margin-top: 0.65rem;
    }
}

/* Typy zariadení - items spacing */
.typy-item {
    margin-bottom: 4rem;
}

.typy-item:last-child {
    margin-bottom: 0;
}

.typy-item .products-title {
    font-size: 1.8rem;
}

/* Services Grid – responzívna mriežka bez horizontálneho scrollu */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: 1.25rem;
    width: 100%;
    max-width: 100%;
    padding: 8px 0 0.5rem;
    overflow-x: hidden;
}

.service-card {
    background: linear-gradient(135deg, var(--color-accent) 0%, rgba(180, 130, 8, 0.95) 100%);
    padding: 1.75rem 1.25rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 25px 0 25px 0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.service-icon {
    margin-bottom: 1rem;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: clamp(44px, 10vw, 64px);
    height: clamp(44px, 10vw, 64px);
    max-width: 100%;
    flex-shrink: 0;
    stroke-width: 2;
}

.service-card h3 {
    color: var(--color-white);
    font-size: clamp(1rem, 2.8vw, 1.2rem);
    font-weight: 600;
    margin: 0;
    line-height: 1.35;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

/* Types Grid */
.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.type-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.type-card h3 {
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.type-card p {
    color: var(--color-text);
    line-height: 1.7;
}

/* Sachty */
.sachty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.sachty-category {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sachty-category h3 {
    color: var(--color-dark-gray);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.sachty-category ul {
    list-style: none;
    padding-left: 0;
}

.sachty-category li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--color-light-gray);
    color: var(--color-text);
}

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

.sachty-category li::before {
    content: '✓';
    color: var(--color-accent);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Výťahové šachty – stránka s obrázkami */
.sachty-category-section {
    margin-top: 3rem;
}

.sachty-category-title {
    color: var(--color-dark-gray);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.sachty-item {
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sachty-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.sachty-item-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.sachty-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sachty-item h4 {
    padding: 1rem 1.25rem;
    color: var(--color-dark-gray);
    font-size: 1.1rem;
    margin: 0;
}

/* Dizajn */
.dizajn-section {
    margin-bottom: 3rem;
}

.dizajn-section h3 {
    color: var(--color-dark-gray);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.dizajn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.dizajn-item {
    background-color: var(--color-white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    color: var(--color-text);
    font-weight: 500;
}

.dizajn-item:hover {
    border-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Gallery */
.gallery-container {
    margin-top: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 44, 44, 0.95), transparent);
    color: var(--color-white);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
}

.gallery-note {
    text-align: center;
    color: #999;
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 2rem;
    padding: 1rem;
    background-color: var(--color-light-gray);
    border-radius: 8px;
}

/* Carousel - Partneri */
.carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 2rem;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    animation: scroll 30s linear infinite;
    will-change: transform;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-item {
    flex: 0 0 auto;
    width: 200px;
    height: 150px;
}

.partner-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 6 - 2rem * 6));
    }
}

.placeholder-text {
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 3rem;
    background-color: var(--color-light-gray);
    border-radius: 8px;
}

/* Contact */
.contact-section {
    background-color: var(--color-dark-gray);
    color: var(--color-white);
    padding: 3rem 0;
    position: relative;
    background-image: url('vyah-pozadie.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 44, 44, 0.90);
    z-index: 1;
    pointer-events: none;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-section .section-title {
    color: var(--color-white);
    margin-bottom: 2rem;
}

/* Garancia */
.dark-section {
    background-color: var(--color-dark-gray);
    color: var(--color-white);
    position: relative;
    background-image: url('/images/vyah-pozadie.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    border-radius: 180px 0 180px 0;
}

.dark-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 44, 44, 0.90);
    z-index: 1;
    pointer-events: none;
    border-radius: 180px 0 180px 0;
}

.dark-section .container {
    position: relative;
    z-index: 2;
}

.dark-section .section-title {
    color: var(--color-white);
}

.dark-section .content-text {
    color: var(--color-white);
}

.dark-section .content-text p {
    color: var(--color-white);
}

.dark-section .content-text strong {
    color: var(--color-accent);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.contact-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-logo img {
    max-width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
}

.contact-info {
    text-align: left;
}

.contact-info h3 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 0.8rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
   
}

.contact-details p {
    color: var(--color-white);
    line-height: 1.6;
    margin: 0 0 0.8rem 0;
}

.contact-details strong {
    color: var(--color-accent);
    font-weight: 600;
}

.contact-menu {
    text-align: left;
}

.contact-menu h3 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 0.8rem;
}

.contact-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-nav li {
    margin: 0;
}

.contact-nav a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: block;
    padding: 0.2rem 0;
    line-height: 1.4;
}

.contact-nav a:hover {
    color: var(--color-accent);
    padding-left: 10px;
}

/* Map Section */
.map-section {
    width: 100%;
    min-height: 300px;
    position: relative;
    overflow: hidden;
    background-color: var(--color-dark-gray);
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 300px;
}

/* Leaflet Map Styling */
#map {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background-color: var(--color-dark-gray);
}

#map.leaflet-container {
    width: 100% !important;
    height: 100% !important;
    min-height: 300px !important;
    background-color: var(--color-dark-gray) !important;
}

/* Custom map tile filter */
#map .leaflet-tile-pane,
.leaflet-tile-pane {
    filter: contrast(1.4) brightness(0.8) !important;
}

#map .leaflet-tile-container img,
#map .leaflet-tile {
    filter: grayscale(75%) brightness(0.8) contrast(1.4) sepia(25%) hue-rotate(15deg) saturate(1.2) !important;
}

/* Zoom controls styling */
#map .leaflet-control-zoom,
.leaflet-control-zoom {
    border: 2px solid var(--color-accent) !important;
    border-radius: 4px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

#map .leaflet-control-zoom a,
.leaflet-control-zoom a {
    background-color: var(--color-dark-gray) !important;
    color: var(--color-white) !important;
    border-bottom: 1px solid var(--color-accent) !important;
    width: 30px !important;
    height: 30px !important;
    line-height: 30px !important;
    font-size: 18px !important;
    font-weight: bold !important;
}

#map .leaflet-control-zoom a:hover,
.leaflet-control-zoom a:hover {
    background-color: var(--color-accent) !important;
    color: var(--color-dark-gray) !important;
}

#map .leaflet-control-zoom-in,
.leaflet-control-zoom-in {
    border-top-left-radius: 2px !important;
    border-top-right-radius: 2px !important;
}

#map .leaflet-control-zoom-out,
.leaflet-control-zoom-out {
    border-bottom-left-radius: 2px !important;
    border-bottom-right-radius: 2px !important;
    border-bottom: none !important;
}

/* Attribution styling */
#map .leaflet-control-attribution,
.leaflet-control-attribution {
    background-color: rgba(44, 44, 44, 0.9) !important;
    color: var(--color-white) !important;
    font-size: 11px !important;
    padding: 5px 8px !important;
    border-top: 2px solid var(--color-accent) !important;
}

#map .leaflet-control-attribution a,
.leaflet-control-attribution a {
    color: var(--color-accent) !important;
    text-decoration: none !important;
}

#map .leaflet-control-attribution a:hover,
.leaflet-control-attribution a:hover {
    color: var(--color-white) !important;
    text-decoration: underline !important;
}

/* Marker popup styling */
#map .leaflet-popup-content-wrapper,
.leaflet-popup-content-wrapper {
    background-color: var(--color-dark-gray) !important;
    color: var(--color-white) !important;
    border-radius: 8px !important;
    border: 2px solid var(--color-accent) !important;
}

#map .leaflet-popup-content,
.leaflet-popup-content {
    color: var(--color-white) !important;
    margin: 15px !important;
}

#map .leaflet-popup-tip,
.leaflet-popup-tip {
    background: var(--color-dark-gray) !important;
    border: 1px solid var(--color-accent) !important;
}

#map .leaflet-popup-close-button,
.leaflet-popup-close-button {
    color: var(--color-white) !important;
    font-size: 20px !important;
    padding: 5px !important;
}

#map .leaflet-popup-close-button:hover,
.leaflet-popup-close-button:hover {
    color: var(--color-accent) !important;
}

/* CTA Button in Hero */
.cta-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background-color: var(--color-accent);
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.cta-button:hover {
    background-color: rgba(239, 169, 18, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Form and Map Section */
.form-map-section {
    background-color: var(--color-dark-gray);
    color: var(--color-white);
    border-radius:0 100px 0 0 ;
    position: relative;
    background-image: url('vyah-pozadie.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.form-map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 44, 44, 0.90);
    z-index: 1;
    pointer-events: none;
    border-radius: 0 100px 0 0;
}

.form-map-section .container {
    position: relative;
    z-index: 2;
}

.form-map-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.form-container {
    position: relative;
}

.form-map-section .section-title {
    color: var(--color-white);
    margin-bottom: 2rem;
}

.map-container-wrapper {
    position: relative;
    height: 100%;
    min-height: 600px;
    border-radius: 8px;
    overflow: hidden;
}

.map-container-wrapper .map-container {
    width: 100%;
    height: 100%;
    min-height: 600px;
}

/* Form Section (for backward compatibility) */
.form-section {
    background-color: var(--color-dark-gray);
    color: var(--color-white);
}

.form-section .section-title {
    color: var(--color-white);
    text-align: center;
}

.quote-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-white);
    font-weight: 500;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background-color: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background-color: var(--color-dark-gray);
    color: var(--color-white);
}

.submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--color-accent);
    color: var(--color-white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.submit-button:hover {
    background-color: rgba(239, 169, 18, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.submit-button:active {
    transform: translateY(0);
}

/* Responsive form and map */
@media (max-width: 968px) {
    .form-map-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-container-wrapper {
        min-height: 400px;
    }
    
    .map-container-wrapper .map-container {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background-color: var(--color-dark-gray);
    color: var(--color-white);
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 108px;
        flex-direction: column;
        background-color: var(--color-accent);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.2);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        color: var(--color-dark-gray);
    }

    .nav-menu a:hover {
        color: var(--color-white);
    }

    /* Submenu on mobile */
    .nav-dropdown {
        display: block;
        width: 100%;
    }

    .nav-dropdown .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background-color: rgba(0, 0, 0, 0.15);
        margin: 0.5rem 0 0 1rem;
        padding: 0.5rem 0;
        border-radius: 4px;
    }

    .nav-dropdown.active .submenu {
        display: block;
    }

    .submenu a {
        padding: 0.5rem 1rem !important;
    }

    .nav-contact-icons {
        display: none;
    }

    .motto {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .small-hero {
        min-height: 40vh;
        padding: 3rem 0;
    }

    .small-hero-title {
        font-size: 2rem;
    }

    .small-hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .parallax-title {
        font-size: 2rem;
    }

    .parallax-section {
        min-height: 400px;
    }

    .advantages-grid,
    .types-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

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

    .dizajn-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    /* Disable parallax on mobile for better performance */
    .parallax-bg {
        background-attachment: scroll;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .contact-logo {
        justify-content: center;
    }

    .contact-info,
    .contact-menu {
        text-align: center;
    }

    .contact-nav {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .motto {
        font-size: 1.5rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .parallax-title {
        font-size: 1.5rem;
    }

    .parallax-section {
        min-height: 300px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .contact-logo {
        justify-content: center;
    }

    .contact-info,
    .contact-menu {
        text-align: center;
    }

    .contact-nav {
        align-items: center;
    }
}

/* Fixed Servis 24/7 button */
.fixed-servis-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(145deg, var(--color-accent) 0%, #c4910a 100%);
    color: var(--color-white);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.02em;
    font-size: 0.9rem;
    border-radius: 12px 0 0 12px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: none;
    border-left: 3px solid #333;
    z-index: 999;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.fixed-servis-btn:hover {
    transform: translateY(-50%) translateX(-4px);
    background: linear-gradient(145deg, #f5b319 0%, var(--color-accent) 100%);
    box-shadow: -8px 0 28px rgba(239, 169, 18, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    padding-right: 1.5rem;
}

.fixed-servis-btn:active {
    transform: translateY(-50%) scale(0.98);
}

.fixed-servis-btn svg {
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.fixed-servis-btn .servis-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    opacity: 0.95;
}

.fixed-servis-btn .servis-hours {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .fixed-servis-btn {
        right: 0;
        padding: 1rem;
        border-radius: 50%;
    }

    .fixed-servis-btn:hover {
        transform: translateY(-50%) scale(1.05);
    }

    .fixed-servis-btn span {
        display: none;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background-color: var(--color-accent);
    color: var(--color-white);
}

/* Hook layout (náhrada Bootstrap grid pre šablóny 1–4 stĺpcov) */
.hook-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.hook-row .hook-col {
    min-width: 0;
}

.hook-cols-1 .hook-col {
    flex: 0 0 100%;
}

.hook-cols-2 .hook-col {
    flex: 1 1 calc(50% - 0.75rem);
}

.hook-cols-3 .hook-col {
    flex: 1 1 calc(33.333% - 1rem);
}

.hook-row-small {
    font-size: 0.875em;
}

.hook-cols-4 .hook-col {
    flex: 1 1 calc(25% - 1.125rem);
}

@media (max-width: 768px) {
    .hook-cols-2 .hook-col,
    .hook-cols-3 .hook-col,
    .hook-cols-4 .hook-col {
        flex: 0 0 100%;
    }
}

.loader{
    position:fixed;
    top:0;
    bottom:0;
    left:0;
    right:0;
    z-index:999999999;
    background-color:rgba(255,255,255,0.8);
}
.loader .outside,.loader .inside{
        position:absolute;
        top:0;
        bottom:0;
        left:0;
        right:0;
        margin:auto;
    }
.loader    .outside{width:15em;
             height:15em;
             border-radius:50%;
             font-size:10px;
             text-indent:-9999em;
             border-top:.3em solid rgba(196, 183, 3);
             border-right:.3em solid rgba(238, 227, 75, 0.3);
             border-bottom:.3em solid rgba(238, 227, 75, 0.3);
             border-left:.3em solid rgb(196, 183, 3);
             -webkit-transform:translateZ(0);
             -ms-transform:translateZ(0);
             transform:translateZ(0);
             -webkit-animation:loader 1.1s infinite linear;
             animation:loader 1.1s infinite linear;
             &:after{border-radius:50%;width:15em;height:15em}
    }
 .loader   .inside{
        background-image:url('../images/ls_liftsteel-logo-png_5.png');
        background-position:50% 50%;
        background-repeat:no-repeat;
        -webkit-transform:translateZ(0);
        -ms-transform:translateZ(0);transform:translateZ(0);
        -webkit-animation:zoom 1.1s infinite linear;
        animation:zoom 1.1s infinite linear;
        max-width: 110px;
        background-size: contain;
    }

.e3-form-policy-text{
	display:none;
}
@-webkit-keyframes loader{
    0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}
    100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}
}
@keyframes loader{
    0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}
    100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}
}