/* ============================================
   CSS Variables & Reset
   ============================================ */
:root {
    /* Color Palette */
    --primary-100: #00CED1;
    --primary-200: #00b0b3;
    --primary-300: #ffffff;
    --accent-100: #7FFFD4;
    --accent-200: #009974;
    --text-100: #000000;
    --text-200: #2c2c2c;
    --bg-100: #FFFFFF;
    --bg-200: #f5f5f5;
    --bg-300: #cccccc;
    --nav-bg: #f8f6f3;

    /* Spacing */
    --section-padding: 150px 0;
    --container-padding: 0 5%;

    /* Typography - Updated v3.0 */
    /* Titles: Helvetica Neue */
    --font-title: 'Helvetica Neue', 'HelveticaNeue', Helvetica, Arial, sans-serif;
    /* Body text: Times New Roman */
    --font-body: 'Times New Roman', TimesNewRoman, Times, serif;
}

/* ============================================
   Scroll to Top Button
   ============================================ */
#scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-100);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 206, 209, 0.3);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

#scrollToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scrollToTop:hover {
    background: var(--primary-200);
    box-shadow: 0 6px 20px rgba(0, 206, 209, 0.4);
    transform: translateY(-3px);
}

#scrollToTop:active {
    transform: translateY(-1px);
}

#scrollToTop svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    #scrollToTop {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }

    #scrollToTop svg {
        width: 20px;
        height: 20px;
    }
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-200);
    background-color: var(--bg-100);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-100);
}

/* Unstyled clickable links for contact info */
.contact-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:visited,
.contact-link:active {
    color: inherit;
    text-decoration: none;
}

.contact-link:hover {
    color: #00ced1;
    text-decoration: none;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text-100);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-200);
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
}

.large-text {
    font-family: var(--font-body);
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* ============================================
   Container & Layout
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section-padding {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--bg-200);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%) !important;
    width: 80%;
    background: white;
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 15px;
    padding-right: 15px;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    z-index: 2500;
}

.nav-logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
    object-fit: contain;
    display: block;
}

.nav-logo:hover img {
    transform: scale(1.05);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-200);
    font-family: var(--font-title);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    transition: color 0.3s ease;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-100);
    transition: width 0.3s ease;
}

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

.nav-menu a:hover::after {
    width: 100%;
}

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

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 280px;
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 1rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

/* Desktop hover functionality - only on larger screens */
@media (min-width: 1201px) {
    .nav-dropdown:hover .dropdown-arrow {
        transform: rotate(180deg);
    }

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

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.875rem 1.5rem;
    color: var(--text-200);
    text-decoration: none;
    font-family: var(--font-title);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: rgba(0, 206, 209, 0.1);
    color: var(--primary-100);
    padding-left: 2rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 2001;
    padding: 5px;
    background: transparent;
    border: none;
    position: relative;
    width: 35px;
    height: 35px;
    justify-content: center;
    align-items: center;
}

.hamburger span {
    width: 25px;
    height: 2.5px;
    background: var(--text-100);
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
    position: absolute;
}

.hamburger span:nth-child(1) {
    transform: translateY(-7.5px);
}

.hamburger span:nth-child(2) {
    transform: translateY(0);
}

.hamburger span:nth-child(3) {
    transform: translateY(7.5px);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 0 2rem;
    max-width: 1400px;
    animation: fadeInUp 1.2s ease-out;
}

.hero-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 6vw, 4rem);
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.2;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--primary-100);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 206, 209, 0.3);
}

.hero-cta:hover {
    background: var(--primary-200);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 206, 209, 0.4);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 25px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--primary-100);
    color: white;
    box-shadow: 0 5px 20px rgba(0, 206, 209, 0.3);
}

.btn-primary:hover {
    background: var(--primary-200);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 206, 209, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-100);
    border-color: var(--primary-100);
}

.btn-secondary:hover {
    background: var(--primary-100);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 206, 209, 0.3);
}

.btn-link {
    color: var(--primary-100);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-link:hover {
    color: var(--primary-200);
    transform: translateX(5px);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* ============================================
   About Section
   ============================================ */
.about-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 5rem;
}

.about-badge {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-200);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.about-main-title {
    font-family: var(--font-title);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 1.3;
    color: var(--text-100);
    font-weight: 600;
    margin: 0;
}

.about-layout {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-wrapper {
    position: relative;
    width: 60%;
    max-width: 700px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.about-main-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 500px;
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
}

.about-box {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    max-width: 380px;
    z-index: 2;
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform, opacity;
}

.about-box-left {
    left: 0;
    top: 15%;
    transform: translateX(-150px) translateY(30px);
}

.about-box-left.animate-in {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

.about-box-right {
    right: 0;
    bottom: 15%;
    transform: translateX(150px) translateY(30px);
}

.about-box-right.animate-in {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

.about-box-title {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-100);
    margin-bottom: 1rem;
}

.about-box-text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-200);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-box-stats {
    margin-top: 2rem;
}

.stat-users {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatars {
    display: flex;
    align-items: center;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 2px solid white;
    margin-left: -8px;
}

.user-avatar:first-child {
    margin-left: 0;
}

.stat-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-200);
}

/* Responsive Design for About Section */
@media (max-width: 1024px) {
    .about-layout {
        min-height: 500px;
    }

    .about-box {
        max-width: 320px;
        padding: 2rem;
    }

    .about-box-left {
        left: -20px;
    }

    .about-box-right {
        right: -20px;
    }
}

@media (max-width: 768px) {
    .about-layout {
        flex-direction: column;
        min-height: auto;
        gap: 1.5rem;
    }

    .about-image-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .about-main-image {
        min-height: 300px;
    }

    .about-box {
        position: relative;
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        bottom: 0 !important;
        max-width: 100%;
        transform: translateY(50px);
    }

    .about-box.animate-in {
        transform: translateY(0);
    }

    .about-header {
        margin-bottom: 3rem;
    }

    /* Reduce gap between about content and CTA buttons on mobile */
    .about-section .cta-buttons {
        margin-top: 1.5rem;
    }
}

/* ============================================
   Products Carousel
   ============================================ */
.section-badge {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-200);
    text-transform: none;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.products-carousel-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 2rem 0;
    overflow: visible;
}

.products-carousel {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.product-card {
    background: #1a2332;
    border-radius: 10px;
    padding: 3rem 2.5rem;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    min-height: 420px;
    min-width: 350px;
    max-width: 350px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
    transition: left 0.6s ease;
    z-index: 1;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.product-card > * {
    position: relative;
    z-index: 2;
}

.product-number {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    width: 50px;
    height: 50px;
    background: white;
    color: #1a2332;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.product-icon {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
}

.product-icon svg {
    width: 64px;
    height: 64px;
}

.product-title {
    font-family: var(--font-title);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-100);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.product-description {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    margin: 0;
    flex-grow: 1;
}

/* Carousel Navigation */
.carousel-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--primary-100);
    color: var(--primary-100);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 206, 209, 0.2);
}

.carousel-btn:hover {
    background: var(--primary-100);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 206, 209, 0.3);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: scale(1);
}

.carousel-btn:disabled:hover {
    background: white;
    color: var(--primary-100);
}

.carousel-dots {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cccccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    background: var(--primary-200);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: var(--primary-100);
    width: 16px;
    height: 16px;
}

/* Responsive Design for Carousel */
@media (max-width: 1200px) {
    .product-card {
        min-width: 320px;
        max-width: 320px;
        padding: 2.5rem 2rem;
        min-height: 380px;
    }
}

@media (max-width: 768px) {
    .product-card {
        min-width: 90vw;
        max-width: 90vw;
        padding: 2.5rem 2rem;
        min-height: 360px;
    }

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

    .product-icon svg {
        width: 52px;
        height: 52px;
    }

    .carousel-btn {
        width: 44px;
        height: 44px;
    }

    .carousel-navigation {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .product-card {
        min-width: 85vw;
        max-width: 85vw;
        padding: 2rem 1.5rem;
        min-height: 340px;
    }
}

/* ============================================
   Custom Production Grid (2 Cards)
   ============================================ */
.production-section .container {
    display: flex;
    flex-direction: row;
    gap: 4rem;
    align-items: center;
}

.production-section .section-header {
    flex: 0 0 50%;
    max-width: 50%;
    text-align: left;
}

/* First Individuálne pomocky section - vertical layout */
#products {
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--accent-200) 100%);
    color: white;
}

#products .container {
    flex-direction: column;
    align-items: stretch;
}

#products .section-header {
    flex: none;
    max-width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
}

#products .section-title {
    color: white;
    margin-bottom: 0.5rem;
}

#products .custom-production-grid {
    width: 100%;
}

/* Section image for products2 */
#production .section-image {
    flex: 0 0 45%;
    max-width: 350px;
    margin: 0 auto;
}

#production .section-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.production-section .section-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.custom-production-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    flex: 1;
    margin: 0;
    padding: 0;
    align-items: flex-start;
}

.product-dropdown-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 250px;
}

.product-card.clickable {
    cursor: pointer;
    position: relative;
    transition: all 0.4s ease;
    height: 80px;
    min-height: 80px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    width: 100%;
    min-width: auto;
    max-width: none;
    box-sizing: border-box;
}

.product-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    padding: 0 1.5rem;
    position: relative;
    height: 100%;
}

.product-card.clickable .product-icon {
    margin: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card.clickable .product-icon svg {
    width: 32px;
    height: 32px;
    display: block;
}

.product-card.clickable .product-title {
    margin: 0;
    padding: 0;
    font-size: 1.1rem;
    flex-grow: 1;
    line-height: 1.2;
    display: flex;
    align-items: center;
}

.product-card.clickable .dropdown-arrow {
    position: relative;
    bottom: auto;
    right: auto;
    width: 32px;
    height: 32px;
    background: var(--primary-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.product-card.clickable .dropdown-arrow svg {
    width: 16px;
    height: 16px;
    color: white;
    transition: transform 0.3s ease;
}

.product-dropdown-item.active .product-card .dropdown-arrow svg {
    transform: rotate(180deg);
}

.product-card.clickable:hover {
    transform: translateY(-3px);
}

.product-dropdown-item.active .product-card.clickable {
    border-radius: 10px 10px 0 0;
}

.product-dropdown-item.active .product-card.clickable:hover {
    transform: none;
}

/* Dropdown Content */
.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #1a2332;
    border-radius: 0 0 10px 10px;
    margin-top: -10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    box-sizing: border-box;
}

.product-dropdown-item.active .dropdown-content {
    max-height: 500px;
    margin-top: 0;
}

.dropdown-inner {
    padding: 2rem 1.5rem;
    border: none;
    border-radius: 0;
    background: transparent;
    width: 100%;
    box-sizing: border-box;
}

.dropdown-inner p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-weight: 500;
}

.dropdown-inner p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .production-section .container {
        flex-direction: column !important;
        gap: 2rem;
    }

    .production-section .section-header {
        flex: none;
        max-width: 100%;
        text-align: center;
    }

    .production-section .section-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .custom-production-grid {
        flex-direction: column !important;
        gap: 50px;
        max-width: 100%;
        align-items: stretch;
        width: 100%;
    }

    .product-dropdown-item {
        width: 100%;
        min-width: auto;
    }

    .product-card.clickable {
        width: 100%;
    }

    .product-card.clickable .product-title {
        font-size: 1rem;
    }

    .product-header {
        padding: 0 1rem;
        gap: 0.75rem;
    }

    .dropdown-inner {
        padding: 1.5rem 1rem;
    }

    .dropdown-inner p {
        font-size: 0.95rem;
    }

    .product-dropdown-item.active .dropdown-content {
        max-height: 600px;
    }
}

/* ============================================
   Products Slideshow Section
   ============================================ */
.products-section {
    padding: 0 !important;
}

.products-slideshow {
    position: relative;
    width: 100%;
    margin: 0;
}

.products-slides-wrapper {
    position: relative;
    overflow: hidden;
    background: #1a2332;
    max-height: 750px;
    width: 100%;
}

.products-slide {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    opacity: 0;
    transition: opacity 0.6s ease;
    max-height: 750px;
}

.products-slide.active {
    display: grid;
    opacity: 1;
}

.products-slide-image {
    height: 100%;
    max-height: 750px;
    overflow: hidden;
    position: relative;
}

.products-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.products-slide-content {
    padding: 6rem 8rem 8rem 5rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.products-category {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-100);
    margin-bottom: 1rem;
    text-transform: none;
    letter-spacing: 0.5px;
}

.products-slide-title {
    font-family: var(--font-title);
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.products-slide-description {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    margin-bottom: 2.5rem;
}

/* Products Slideshow Navigation - Tab Style */
.products-slideshow-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.products-slide-tabs {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 0;
    max-width: 100%;
    padding: 0;
}

.products-slide-tab {
    flex: 1;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.products-slide-tab:last-child {
    border-right: none;
}

.products-slide-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-100);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.products-slide-tab.active::before {
    transform: scaleX(1);
}

.products-slide-tab.active {
    color: white;
    background: rgba(0, 206, 209, 0.05);
}

.products-slide-tab:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.products-slide-tab .tab-title {
    display: block;
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.products-slide-tab .tab-category {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.7;
}

/* ============================================
   Spacing Adjustments
   ============================================ */
/* Reduce gap between about and production sections */
.about-section {
    padding-bottom: 60px;
}

.production-section {
    padding-top: 60px;
    padding-bottom: 90px;
}

.products-section {
    padding-top: 90px;
}

/* ============================================
   Process Section
   ============================================ */
.process-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    gap: 2rem;
}

.process-header-content {
    flex: 1;
}

.process-badge {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-200);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.process-main-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--text-100);
    line-height: 1.3;
    margin: 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.process-step {
    text-align: left;
}

.process-icon-wrapper {
    margin-bottom: 1.5rem;
}

.process-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.process-icon svg {
    width: 32px;
    height: 32px;
}

.process-icon-turquoise {
    background: var(--primary-100);
    color: white;
}

.process-icon-dark {
    background: #1a2332;
    color: white;
}

.process-icon-light {
    background: var(--bg-300);
    color: var(--text-100);
}

.process-icon-accent {
    background: var(--accent-100);
    color: var(--text-100);
}

.process-step:hover .process-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.process-step-title {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-100);
    margin-bottom: 0.75rem;
}

.process-step-description {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-200);
    margin: 0;
}

/* ============================================
   Service Sections
   ============================================ */

/* Skolioza Grid */
.skolioza-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.skolioza-grid .product-card {
    min-width: auto;
    max-width: none;
    width: 100%;
}

.skolioza-grid .product-card .btn-link {
    color: var(--primary-100);
    margin-top: 1rem;
    display: inline-block;
}

.skolioza-grid .product-card .btn-link:hover {
    color: var(--accent-100);
}

/* Info Boxes */
.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-box {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-100);
}

.info-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.info-box h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-100);
}

.info-box p {
    font-family: var(--font-body);
    color: var(--text-200);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Feature Boxes */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.feature-box {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-100);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-box h4 {
    font-family: var(--font-title);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-100);
}

.feature-box p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-200);
    line-height: 1.5;
}

/* Prevadzky Grid */
.prevadzky-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================
   Gallery Section
   ============================================ */
#prevadzky {
    padding-bottom: 60px;
}

.gallery-section {
    padding-top: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 1rem;
    grid-auto-flow: dense;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.8), rgba(0, 0, 0, 0.5));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

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

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

/* Mobile Slider Navigation */
.mobile-slider-nav {
    display: none;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.mobile-slider-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--primary-100);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-slider-nav button:hover {
    background: var(--primary-200);
    transform: scale(1.1);
}

/* Mobile Slider Styles */
@media (max-width: 768px) {
    .mobile-slider {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 15px;
        padding-bottom: 10px;
        justify-content: flex-start;
        padding-left: calc(50% - 175px);
        padding-right: calc(50% - 175px);
    }

    .mobile-slider::-webkit-scrollbar {
        display: none;
    }

    .mobile-slider .gallery-item,
    .mobile-slider .ortoshop-gallery-item {
        flex: 0 0 350px;
        max-width: 350px;
        scroll-snap-align: center;
        min-height: 250px;
    }

    .mobile-slider .gallery-item-large,
    .mobile-slider .gallery-item-wide,
    .mobile-slider .gallery-item-tall {
        grid-column: auto;
        grid-row: auto;
    }

    .mobile-slider-nav {
        display: flex;
    }
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.75rem 2rem;
    background: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-100);
    text-align: left;
}

.faq-question:hover {
    background: var(--bg-200);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-100);
    transition: transform 0.3s ease;
    font-weight: 300;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 10px calc(2rem + 10px) calc(1.75rem + 10px) calc(2rem + 10px);
}

.faq-answer p {
    line-height: 1.8;
    color: var(--text-200);
}

/* Even-numbered FAQ items styling */
.faq-item:nth-child(even) {
    background: #00ced1;
}

.faq-item:nth-child(even) .faq-question {
    background: #00ced1;
    color: white;
}

.faq-item:nth-child(even) .faq-question:hover {
    background: #00b8bb;
}

.faq-item:nth-child(even) .faq-icon {
    color: white;
}

.faq-item:nth-child(even) .faq-answer {
    background: white;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-content {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--bg-300);
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    background: var(--bg-100);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-100);
    box-shadow: 0 0 0 3px rgba(0, 206, 209, 0.1);
}

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

.submit-btn {
    width: 100%;
    padding: 1.25rem;
    background: var(--primary-100);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 206, 209, 0.3);
}

.submit-btn:hover {
    background: var(--primary-200);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 206, 209, 0.4);
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.fade-in {
    animation: fadeIn 1s ease-out;
}

/* ============================================
   NEW Prevadzky Box Design
   ============================================ */

/* Disable all animations on prevadzky page */
.prevadzky-main,
.prevadzky-hero,
.prevadzky-cta {
    opacity: 1 !important;
    transform: none !important;
}

.prevadzky-card-new {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    opacity: 1 !important;
}

.prevadzky-card-new:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.prevadzky-image-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.2);
    font-size: 0.9rem;
    overflow: hidden;
}

.prevadzky-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.prevadzky-content {
    padding: 1.75rem 2rem;
}

.prevadzky-title {
    font-family: var(--font-title);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--text-100);
    margin-bottom: 0.4rem;
}

.prevadzky-subtitle-new {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-200);
    margin-bottom: 1.5rem;
}

.prevadzky-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.prevadzky-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.prevadzky-icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
    background: rgba(0, 206, 209, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-100);
    transition: all 0.3s ease;
}

.prevadzky-icon svg {
    width: 18px;
    height: 18px;
}

.prevadzky-card-new:hover .prevadzky-icon {
    background: var(--primary-100);
    color: white;
    transform: scale(1.1);
}

.prevadzky-detail-text {
    flex: 1;
}

.prevadzky-detail-text p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-200);
    margin: 0;
}

.prevadzky-detail-text strong {
    color: var(--text-100);
    font-weight: 600;
}

/* Map Container for Location Cards */
.prevadzky-map {
    margin-top: 1rem;
    width: 100%;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
}

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

/* Responsive Design for New Boxes */
@media (max-width: 768px) {
    .prevadzky-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .prevadzky-content {
        padding: 1.5rem 1.25rem;
    }

    .prevadzky-image-placeholder {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .prevadzky-content {
        padding: 1.25rem 1rem;
    }

    .prevadzky-image-placeholder {
        height: 140px;
    }

    .prevadzky-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
    }

    .prevadzky-icon svg {
        width: 16px;
        height: 16px;
    }

    .prevadzky-detail-text p {
        font-size: 0.8rem;
    }

    .prevadzky-title {
        font-size: 1.1rem;
    }

    .prevadzky-subtitle-new {
        font-size: 0.85rem;
    }
}

/* ============================================
   Responsive Design
   ============================================ */

/* Tablets and smaller laptops */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 180px;
    }

    .products-carousel {
        gap: 1.5rem;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .about-main-image {
        min-height: 450px;
    }
}

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

    .navbar {
        width: 90%;
        max-width: 90%;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 240px;
        height: auto;
        max-height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 15px 1.5rem 15px;
        padding-top: 50px;
        box-shadow: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        gap: 0.75rem;
        align-items: flex-start;
        overflow-y: auto;
        z-index: 2000;
        border-radius: 0 0 0 12px;
        opacity: 0;
        visibility: hidden;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .hamburger {
        display: flex;
    }

    .container {
        padding: 0 3%;
    }

    .nav-logo {
        display: flex !important;
    }

    .nav-logo img {
        display: block !important;
        height: 70px;
    }

    /* Mobile Dropdown Styles */
    .nav-dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        width: 100%;
        padding: 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: white;
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, margin-top 0.3s ease, padding 0.3s ease;
        gap: 0.25rem;
        display: flex;
        flex-direction: column;
        border-radius: 0;
        width: 100%;
    }

    .nav-dropdown.active .dropdown-menu {
        max-height: 500px;
        margin-top: 10px;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .nav-dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }

    .dropdown-menu a {
        padding: 0.5rem 0;
        font-size: 0.85rem;
        white-space: normal !important;
        line-height: 1.3;
        word-wrap: break-word;
        max-width: 100%;
        width: 100%;
    }

    .dropdown-menu a:hover {
        padding-left: 0.5rem;
    }

    /* Sériové produkty - Tablet adjustments */
    .products-slides-wrapper {
        max-height: none;
    }

    .products-slide {
        grid-template-columns: 1fr;
        min-height: 750px;
        max-height: none;
    }

    .products-slide-image {
        min-height: 20px;
        max-height: none;
    }

    .products-slide-content {
        padding: 3rem 2.5rem;
        justify-content: flex-start;
        min-height: 530px;
    }

    .products-slide-tab .tab-title {
        font-size: 0.9rem;
    }

    .products-slide-tab .tab-category {
        font-size: 0.75rem;
    }

    .products-slide-tab {
        padding: 1.25rem 1rem;
    }

    .skolioza-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .prevadzky-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 160px;
        gap: 0.875rem;
    }

    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item-wide {
        grid-column: span 2;
    }

    .gallery-item-tall {
        grid-row: span 2;
    }

    .product-card {
        min-height: 380px;
        padding: 2.5rem 2rem;
    }

    .carousel-navigation {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
        --container-padding: 0 1.25rem;
    }

    .navbar {
        top: 15px;
        width: 94%;
        padding: 8px 0;
    }

    .navbar .container {
        padding-left: 12px;
        padding-right: 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-logo {
        display: flex !important;
        z-index: 1001;
    }

    .nav-logo img {
        height: 45px;
        display: block !important;
    }

    .nav-menu {
        width: 260px;
        padding: 15px 1.5rem 15px;
        padding-top: 50px;
        max-height: calc(85vh - 30px);
        gap: 1rem;
        border-radius: 12px;
    }

    .hero-section {
        min-height: 450px;
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }

    .container {
        padding: 0 1.25rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
        gap: 0.75rem;
    }

    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item-wide {
        grid-column: span 2;
    }

    .gallery-item-tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 15px 1.5rem;
    }

    .about-header {
        margin-bottom: 2.5rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    /* Responsive for new elements */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .process-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 3rem;
    }

    .process-header .btn {
        width: 100%;
    }

    /* Further reduce gap between about and production on mobile */
    .about-section {
        padding-bottom: 30px;
    }

    .production-section {
        padding-top: 30px;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

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

    .info-boxes {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

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

    .cta-buttons:not(.cta-box .cta-buttons) {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons:not(.cta-box .cta-buttons) .btn {
        width: 100%;
    }

    .cta-box .cta-buttons {
        flex-direction: row !important;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .process-icon {
        width: 60px;
        height: 60px;
    }

    .process-step-title {
        font-size: 1.15rem;
    }

    .process-step-description {
        font-size: 0.9rem;
    }

    /* Sériové produkty - Mobile adjustments */
    .products-slide {
        min-height: 750px;
    }

    .products-slide-image {
        min-height: 0;
        max-height: 300px;
    }

    .products-slide-content {
        padding: 2.5rem 1.5rem;
        justify-content: flex-start;
        min-height: 720px;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .products-slide-title {
        font-size: 1.75rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .products-slide-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .products-slide-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        gap: 0;
        width: 100%;
    }

    .products-slide-tab {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1rem 0.75rem;
    }

    .products-slide-tab:nth-child(2n) {
        border-right: none;
    }

    .products-slide-tab:nth-child(5),
    .products-slide-tab:nth-child(4) {
        border-bottom: none;
    }

    .products-slide-tab .tab-title {
        font-size: 0.8rem;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.3;
    }

    .products-slide-tab .tab-category {
        font-size: 0.7rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .products-slideshow-nav {
        width: 100%;
        overflow-x: hidden;
    }

    .prevadzky-card {
        padding: 2rem 1.5rem;
    }

    .prevadzky-subtitle {
        font-size: 0.95rem;
    }

    .prevadzky-info {
        padding: 1.25rem;
    }

    .prevadzky-info p {
        font-size: 0.9rem;
    }
}

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

    .navbar {
        top: 10px;
        width: 96%;
    }

    .navbar .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .nav-logo {
        display: flex !important;
    }

    .nav-logo img {
        height: 35px;
        display: block !important;
    }

    .nav-menu {
        width: 85%;
        max-width: 280px;
        padding: 15px 1.5rem 15px;
        padding-top: 50px;
        max-height: calc(85vh - 30px);
        gap: 1rem;
        border-radius: 12px;
    }

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

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .hero-cta {
        padding: 0.75rem 1.75rem;
        font-size: 0.95rem;
    }

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

    .section-badge {
        font-size: 0.85rem;
    }

    .container {
        padding: 0 1rem;
    }

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

    .stat-number {
        font-size: 2rem;
    }

    .info-icon {
        font-size: 2.5rem;
    }

    .process-icon {
        width: 55px;
        height: 55px;
    }

    .process-icon svg {
        width: 28px;
        height: 28px;
    }

    .prevadzky-card {
        padding: 2rem 1.25rem;
    }

    .product-card {
        padding: 2rem 1.5rem;
        min-height: 320px;
    }

    .product-number {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
        top: 1.5rem;
        right: 1.5rem;
    }

    .product-title {
        font-size: 1.4rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
        gap: 0.75rem;
    }

    .gallery-item-large,
    .gallery-item-wide,
    .gallery-item-tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }

    .contact-form {
        padding: 1.75rem 1.25rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    .submit-btn {
        padding: 1rem;
        font-size: 1rem;
    }

    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1rem 1.25rem;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-arrow {
        width: 25px;
        height: 40px;
    }

    /* Sériové produkty - Small mobile adjustments */
    .products-slides-wrapper {
        max-height: none;
    }

    .products-slide {
        min-height: 850px;
        max-height: none;
    }

    .products-slide-image {
        min-height: 50px;
        max-height: 400px;
    }

    .products-slide-content {
        padding: 2rem 1.25rem;
        min-height: 800px;
    }

    .products-slide-title {
        font-size: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .products-slide-description {
        font-size: 0.9rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .products-slide-tabs {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr;
    }

    .products-slide-tab {
        padding: 0.875rem 0.625rem;
    }

    .products-slide-tab .tab-title {
        font-size: 0.75rem;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.2;
    }

    .products-slide-tab .tab-category {
        font-size: 0.65rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }

    .carousel-dot.active {
        width: 14px;
        height: 14px;
    }

    .info-box,
    .feature-box {
        padding: 1.75rem 1.25rem;
    }

    .info-box h3 {
        font-size: 1.25rem;
    }

    .feature-box h4 {
        font-size: 1rem;
    }

    .about-box {
        padding: 1.75rem 1.5rem;
    }

    .about-box-title {
        font-size: 1.3rem;
    }

    .about-box-text {
        font-size: 0.9rem;
    }
}

/* Prevent horizontal scrolling on all devices */
@media (max-width: 1200px) {
    .products-slides-wrapper {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .products-slide {
        overflow-x: hidden;
        max-width: 100%;
    }

    .products-slide-content {
        overflow-x: hidden;
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* Improve touch targets for mobile */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .carousel-btn,
    .faq-question,
    .products-slide-tab {
        min-height: 44px;
    }

    .nav-menu a {
        padding: 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .dropdown-menu a {
        padding: 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}

/* ============================================
   Prevadzky Preview Section (Index Page)
   ============================================ */

.prevadzky-preview {
    margin: 4rem 0;
}

.prevadzky-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--primary-100);
    font-family: var(--font-title);
    line-height: 1;
}

.stat-label {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-200);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* ============================================
   Prevadzky Page Styles
   ============================================ */

/* Hero Section */
.prevadzky-hero {
    background: #00ced1;
    padding: 180px 0 80px;
}

.prevadzky-hero .section-header {
    text-align: center;
}

.prevadzky-hero .section-badge,
.prevadzky-hero .section-title,
.prevadzky-hero .section-subtitle {
    color: white;
}

/* Category Titles */
.prevadzky-category-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 3rem;
    font-weight: 600;
    color: var(--text-100);
    text-align: center;
}

/* Main Grid for Large Cards */
.prevadzky-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Small Grid for Measurement Points */
.prevadzky-grid-small {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Large Prevadzky Cards */
.prevadzky-card {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.prevadzky-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-100);
}

/* Prevadzky Titles */
.prevadzky-small-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-100);
    font-weight: 600;
}

.prevadzky-subtitle {
    color: var(--primary-100);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

/* Prevadzky Info Sections */
.prevadzky-info {
    margin: 2rem 0;
    line-height: 1.8;
}

.prevadzky-info p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-200);
}

.prevadzky-info strong {
    color: var(--text-100);
    font-weight: 600;
}

.prevadzky-info-compact {
    margin: 1rem 0;
    font-size: 0.85rem;
    line-height: 1.6;
}

.prevadzky-info-compact p {
    margin-bottom: 0.5rem;
    color: var(--text-200);
}

.prevadzky-info-compact strong {
    color: var(--text-100);
    font-weight: 600;
}

/* Section Backgrounds */
.prevadzky-main {
    background-color: var(--bg-200);
    padding-top: 20px !important;
}

/* CTA Section */
.prevadzky-cta {
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--accent-200) 100%);
    color: white;
}

.cta-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-box {
    text-align: left;
}

.cta-box h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

.cta-box .cta-buttons {
    justify-content: flex-start;
    flex-direction: row;
}

.cta-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-form .contact-form {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.cta-form input,
.cta-form textarea {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-form input:focus,
.cta-form textarea:focus {
    background: white;
    border-color: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.btn-white {
    background: transparent !important;
    color: white !important;
    border-color: white !important;
}

.btn-white:hover {
    background: white !important;
    color: var(--primary-100) !important;
}

/* Responsive Design for Prevadzky */
@media (max-width: 768px) {
    .prevadzky-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .prevadzky-grid-small {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .prevadzky-card {
        padding: 1.75rem;
    }

    .prevadzky-hero {
        padding: 150px 0 80px;
    }

    .prevadzky-category-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .cta-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-box {
        text-align: center;
    }

    .cta-box .cta-buttons {
        justify-content: center;
    }

    .cta-form {
        padding: 2rem;
    }
}

/* Disable all animations on prevadzky page */
body[data-page="prevadzky"] .prevadzky-card,
body[data-page="prevadzky"] .prevadzky-card-new {
    transition: none !important;
}

body[data-page="prevadzky"] .prevadzky-card:hover,
body[data-page="prevadzky"] .prevadzky-card-new:hover {
    transform: none !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08) !important;
}

body[data-page="prevadzky"] .prevadzky-icon {
    transition: none !important;
}

body[data-page="prevadzky"] .prevadzky-card-new:hover .prevadzky-icon {
    transform: none !important;
    background: rgba(0, 206, 209, 0.1) !important;
    color: var(--primary-100) !important;
}

@media (max-width: 480px) {
    .prevadzky-card {
        padding: 1.5rem;
    }

    .prevadzky-info {
        margin: 1.5rem 0;
    }

    .product-number {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
        top: 1.25rem;
        right: 1.25rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   Footer Section - New Design
   ============================================ */
.footer-new {
    background-color: #f8f9fa;
    padding: 50px 0 30px;
    font-family: var(--font-body);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 20px;
}

/* Brand Section */
.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
}

.logo-icon {
    font-size: 32px;
    font-weight: 300;
    color: var(--text-100);
    line-height: 1;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-100);
    font-family: var(--font-title);
}

.footer-tagline {
    font-size: 15px;
    line-height: 1.6;
    color: #6b6b6b;
    margin-bottom: 25px;
    font-weight: 400;
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: var(--primary-200);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 206, 209, 0.3);
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-100);
    margin-bottom: 20px;
    font-family: var(--font-title);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 0 100px;
}

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

.footer-links a {
    color: #6b6b6b;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.footer-links a:hover {
    color: var(--primary-100);
}

/* Address/Contact Column */
.footer-contacts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contacts li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contacts li .contact-link {
    white-space: nowrap;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.footer-contacts a,
.footer-contacts span {
    color: #6b6b6b;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-contacts a:hover {
    color: var(--primary-100);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: #6b6b6b;
    margin: 0;
}

.footer-gdpr-link {
    font-size: 14px;
    color: #6b6b6b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-gdpr-link:hover {
    color: var(--primary-100);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-separator {
    color: #6b6b6b;
    font-size: 14px;
}

.footer-credits {
    font-size: 14px;
    color: #6b6b6b;
    margin: 0;
}

.footer-credits a {
    color: #6b6b6b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credits a:hover {
    color: var(--primary-100);
}

/* ============================================
   Cookie Banner
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text {
    font-size: 14px;
    color: var(--text-200);
    margin: 0;
    flex: 1;
    min-width: 300px;
    line-height: 1.6;
    font-family: var(--font-body);
}

.cookie-link {
    color: var(--primary-100);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: var(--primary-200);
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 30px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-title);
}

.cookie-accept {
    background: var(--primary-100);
    color: white;
}

.cookie-accept:hover {
    background: var(--primary-200);
}

.cookie-reject {
    background: #e0e0e0;
    color: var(--text-200);
}

.cookie-reject:hover {
    background: #d0d0d0;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
}

/* ============================================
   GDPR Page Styles
   ============================================ */
.gdpr-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.gdpr-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-100);
    margin: 40px 0 20px;
    font-family: var(--font-title);
}

.gdpr-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-100);
    margin: 30px 0 15px;
    font-family: var(--font-title);
}

.gdpr-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.gdpr-intro {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.gdpr-content ul {
    margin: 15px 0 25px 20px;
    padding: 0;
}

.gdpr-content ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.gdpr-content a {
    color: var(--primary-100);
    text-decoration: none;
    transition: color 0.3s ease;
}

.gdpr-content a:hover {
    color: var(--primary-200);
    text-decoration: underline;
}

.gdpr-contact-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-top: 15px;
    line-height: 1.8;
}

/* ============================================
   Footer Responsive Design
   ============================================ */

/* Tablet - Large */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

/* Tablet - Small */
@media (max-width: 768px) {
    .footer-new {
        padding: 50px 0 30px;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-address {
        grid-column: 1 / -1;
    }

    .footer-tagline {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .footer-social {
        gap: 10px;
    }

    .social-btn {
        width: 40px;
        height: 40px;
    }

    .footer-column-title {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .footer-links {
        gap: 0 50px;
    }

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

    .footer-links a,
    .footer-contacts a,
    .footer-contacts span {
        font-size: 14px;
    }

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

/* Mobile */
@media (max-width: 480px) {
    .footer-new {
        padding: 50px 0 25px;
    }

    .footer-content {
        grid-template-columns: auto auto;
        gap: 35px 15px;
        justify-content: start;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .logo-text {
        font-size: 20px;
    }

    .logo-icon {
        font-size: 28px;
    }

    .footer-tagline {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .footer-social {
        gap: 8px;
    }

    .social-btn {
        width: 42px;
        height: 42px;
    }

    .footer-column-title {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .footer-links {
        gap: 0 50px;
    }

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

    .footer-links a {
        font-size: 14px;
    }

    .footer-contacts li {
        gap: 10px;
        margin-bottom: 14px;
    }

    .contact-icon {
        width: 36px;
        height: 36px;
    }

    .contact-icon svg {
        width: 18px;
        height: 18px;
    }

    .footer-contacts a,
    .footer-contacts span {
        font-size: 13px;
    }

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

    .footer-copyright {
        font-size: 13px;
    }
}

/* ========================================
   Skolioza Page Sections
   ======================================== */

.service-section {
    position: relative;
    background: var(--bg-100);
}

.service-section .section-header {
    margin-bottom: 0;
}

[data-page="skolioza"] .intro-section {
    background-image: url('Assets/FOTO AMBULANCIE/_DSC3921.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

[data-page="skolioza"] .intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

[data-page="ortoshop"] .intro-section {
    background-image: url('Assets/ORTOSHOP FOTO/Artboard 13.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

[data-page="ortoshop"] .intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

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

.intro-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-family: var(--font-title);
    font-size: 1.35rem;
    line-height: 1.8;
    color: #ffffff;
    margin: 0;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ========================================
   Doctor Profile Section
   ======================================== */

.doctor-profile {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 3rem auto 0;
    align-items: start;
}

.doctor-image {
    position: relative;
}

.doctor-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: block;
    object-fit: cover;
}

.doctor-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.doctor-bio p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-200);
    margin-bottom: 1.2rem;
}

.doctor-bio p:last-child {
    margin-bottom: 0;
}

/* ========================================
   Insurance Section
   ======================================== */

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 700px;
    margin: 0.5rem auto 2rem;
}

.insurance-card {
    background: transparent;
    border: none;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.insurance-card:hover {
    transform: translateY(-5px);
}

.insurance-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    height: 300px;
}

.insurance-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.insurance-name {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-100);
    line-height: 1.4;
    margin: 0;
}

/* ========================================
   Contact with Map Section
   ======================================== */

.contact-with-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.contact-map {
    height: 100%;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.contact-map iframe {
    display: block;
}

/* ========================================
   ORTOSHOP Page Styles
   ======================================== */

.ortoshop-content {
    max-width: 900px;
    margin: 2rem auto 0;
}

.ortoshop-intro {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-200);
    margin-top: 10px;
    margin-bottom: 2.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ortoshop-highlight {
    font-family: var(--font-title);
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-100);
    margin-top: 2.5rem;
    padding: 2rem;
    background: var(--bg-200);
    border-radius: 12px;
    border-left: 4px solid var(--primary-100);
    font-weight: 600;
}

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

.ortoshop-product-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--bg-200);
}

.ortoshop-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 206, 209, 0.2);
    border-color: var(--primary-100);
}

.ortoshop-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.1) 0%, rgba(127, 255, 212, 0.1) 100%);
    border-radius: 50%;
    color: var(--primary-100);
    transition: all 0.3s ease;
}

.ortoshop-product-card:hover .ortoshop-card-icon {
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--accent-100) 100%);
    color: white;
    transform: scale(1.1);
}

.ortoshop-card-title {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-100);
    margin-bottom: 0.8rem;
}

.ortoshop-card-text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-200);
    margin: 0;
}

/* Services Grid */
.ortoshop-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.ortoshop-service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

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

.ortoshop-service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 206, 209, 0.1);
    border-radius: 12px;
    color: var(--primary-100);
}

.ortoshop-service-title {
    font-family: var(--font-title);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-100);
    margin-bottom: 0.8rem;
}

.ortoshop-service-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-200);
    margin: 0;
}

/* Target Audience Container */
.ortoshop-audience-container {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin-top: 2.5rem;
}

.ortoshop-audience-image {
    flex: 0 0 400px;
}

.ortoshop-audience-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Target Audience Grid */
.ortoshop-audience-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.ortoshop-audience-card {
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.05) 0%, rgba(127, 255, 212, 0.05) 100%);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 1.2rem 0.8rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.ortoshop-audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 206, 209, 0.1), transparent);
    transition: left 0.5s ease;
}

.ortoshop-audience-card:hover::before {
    left: 100%;
}

.ortoshop-audience-card:hover {
    border-color: var(--primary-100);
    background: white;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 206, 209, 0.25);
}

.ortoshop-audience-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--accent-100) 100%);
    border-radius: 50%;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.ortoshop-audience-icon svg {
    width: 24px;
    height: 24px;
}

.ortoshop-audience-card:hover .ortoshop-audience-icon {
    transform: scale(1.15);
    box-shadow: 0 8px 20px rgba(0, 206, 209, 0.4);
}

.ortoshop-audience-title {
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-100);
    margin: 0;
    line-height: 1.3;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.ortoshop-audience-card:hover .ortoshop-audience-title {
    color: var(--primary-100);
}

/* Responsive styles for audience section */
@media (max-width: 768px) {
    .ortoshop-audience-container {
        flex-direction: column;
    }

    .ortoshop-audience-image {
        flex: 1;
        max-width: 100%;
    }

    .ortoshop-audience-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ortoshop-audience-card {
        padding: 1rem 0.5rem;
    }

    .ortoshop-audience-title {
        font-size: 0.75rem;
    }

    /* Other ortoshop sections - 2 column grid on mobile */
    .ortoshop-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .ortoshop-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .ortoshop-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Benefits Grid */
.ortoshop-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.ortoshop-benefit-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ortoshop-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-100) 0%, var(--accent-100) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ortoshop-benefit-card:hover::before {
    opacity: 1;
}

.ortoshop-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 206, 209, 0.2);
}

.ortoshop-benefit-number {
    font-family: var(--font-title);
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--accent-100) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1;
}

.ortoshop-benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-100);
}

.ortoshop-benefit-title {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-100);
    margin-bottom: 0.8rem;
}

.ortoshop-benefit-text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-200);
    margin: 0;
}

/* ========================================
   Responsive Design for Skolioza Page
   ======================================== */

@media (max-width: 768px) {
    .intro-content {
        max-width: 100%;
        padding: 0 1rem;
    }

    .intro-text {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .doctor-profile {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .doctor-image {
        max-width: 250px;
        margin: 0 auto;
    }

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

    .doctor-bio p {
        font-size: 0.95rem;
    }

    .contact-with-map {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-map {
        height: 350px;
    }

    /* Ortoshop page responsive */
    .ortoshop-products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .ortoshop-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ortoshop-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .ortoshop-highlight {
        font-size: 1rem;
        padding: 1.5rem;
    }

    /* Ambulancia section responsive */
    .ambulancia-box-content {
        padding: 2rem 0.75rem;
        text-align: center;
        max-width: 100%;
    }

    .ambulancia-title {
        font-size: 1.75rem;
    }

    .ambulancia-subtitle {
        font-size: 1rem;
    }

    .ambulancia-box {
        min-height: 400px;
        justify-content: center;
    }
}

/* ============================================
   Ambulancia Section
   ============================================ */

.ambulancia-section {
    background: var(--bg-200);
}

.ambulancia-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 450px;
    display: flex;
    align-items: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.ambulancia-box-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.ambulancia-box-content {
    position: relative;
    z-index: 10;
    padding: 3rem 4rem;
    max-width: 650px;
}

.ambulancia-title {
    font-family: var(--font-title);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.ambulancia-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.ambulancia-box-content .btn {
    display: inline-block;
}

/* ============================================
   Partners Carousel Section
   ============================================ */

.partners-section {
    background: #f8f9fa;
    overflow: hidden;
}

.partners-carousel-wrapper {
    overflow: hidden;
    position: relative;
    padding: 0;
    margin-top: 0;
}

.partners-carousel {
    overflow: hidden;
}

.partners-track {
    display: flex;
    gap: 3rem;
    animation: scroll-partners 30s linear infinite;
    width: max-content;
}

.partner-item {
    flex-shrink: 0;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.partner-item:hover {
    transform: scale(1.05);
}

.partner-item img {
    height: 70px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: all 0.3s ease;
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.partners-carousel:hover .partners-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .partner-item {
        height: 100px;
        padding: 0.75rem;
    }

    .partner-item img {
        height: 70px;
        max-width: 150px;
    }

    .partners-track {
        gap: 2rem;
    }

    .partners-carousel-wrapper::before,
    .partners-carousel-wrapper::after {
        width: 50px;
    }
}

/* ============================================
   Gallery Lightbox
   ============================================ */

#gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    max-width: 50%;
    max-height: 90vh;
    z-index: 10001;
    animation: lightboxZoom 0.3s ease;
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 80%;
        max-height: 85vh;
    }

    .lightbox-image {
        max-height: 85vh;
    }
}

/* Add pointer cursor to gallery items */
.gallery-item,
.ortoshop-gallery-item {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover,
.ortoshop-gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img,
.ortoshop-gallery-item img {
    transition: opacity 0.2s ease;
}

.gallery-item:hover img,
.ortoshop-gallery-item:hover img {
    opacity: 0.9;
}

/* ============================================
   Holiday Popup Banner
   ============================================ */
.holiday-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.holiday-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.holiday-popup {
    position: relative;
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--accent-100) 100%);
    border-radius: 20px;
    padding: 60px 80px;
    max-width: 800px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 206, 209, 0.4);
    text-align: center;
    animation: popupSlideIn 0.4s ease-out;
    border: 3px solid var(--accent-200);
}

@keyframes popupSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.holiday-popup::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid var(--accent-200);
}

.holiday-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-200);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    line-height: 1;
    padding: 0;
    padding-top: 2px;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.holiday-popup-close:hover {
    background: var(--primary-200);
    transform: rotate(90deg) scale(1.1);
}

.holiday-popup h2 {
    font-family: var(--font-title);
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 8px 0;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.holiday-popup h3 {
    font-family: var(--font-title);
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 30px 0;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.holiday-popup-dates {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.holiday-popup-date {
    font-family: var(--font-title);
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.3;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .holiday-popup {
        padding: 40px 30px;
        width: 95%;
        border-radius: 15px;
    }

    .holiday-popup h2 {
        font-size: 24px;
    }

    .holiday-popup h3 {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .holiday-popup-date {
        font-size: 28px;
    }

    .holiday-popup-close {
        width: 35px;
        height: 35px;
        font-size: 20px;
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .holiday-popup {
        padding: 30px 20px;
    }

    .holiday-popup h2 {
        font-size: 20px;
    }

    .holiday-popup h3 {
        font-size: 18px;
    }

    .holiday-popup-date {
        font-size: 24px;
    }
}
