/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #003984;
    --white: #FFFFFF;
    --light-blue: #BBDEFB;
    --light-gray: #EFEFEF;
    --font-family: 'Poppins', sans-serif;
    --letter-spacing: 0.85px;
    --line-height: 1.5;
    --animation-duration: 0.4s;
    --transition-timing: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
    color: var(--primary-blue);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 25px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.section-divider {
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
    margin: 0 auto;
    border-radius: 10px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    box-shadow: 0 2px 10px rgba(0, 57, 132, 0.2);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 57, 132, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1400px;
    margin: 0;
    width: 100%;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.company-name {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-blue);
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.company-tagline {
    font-size: 0.72rem;
    font-weight: 300;
    color: #888;
    letter-spacing: 0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 16px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.instagram-icon {
    color: var(--primary-blue);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 57, 132, 0.1);
}

.instagram-icon:hover {
    color: var(--light-blue);
    background: rgba(0, 57, 132, 0.2);
    transform: scale(1.1);
}

.instagram-icon svg {
    width: 20px;
    height: 20px;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 400;
    font-size: 0.88rem;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--light-blue);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--light-blue);
    transition: width 0.3s ease;
}

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

/* Rezervácia CTA tlačidlo v nav */
.nav-link-cta {
    background: var(--primary-blue);
    color: #fff !important;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.2s;
}

.nav-link-cta:hover {
    background: #002a6b;
    color: #fff !important;
    transform: translateY(-2px);
}

.nav-link-cta::after { display: none !important; }

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Hero Section */
.hero-sticker {
    position: absolute;
    bottom: 48px;
    left: 28px;
    width: 210px;
    background: #d32f2f;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 16px 18px;
    box-sizing: border-box;
    transform: rotate(-4deg);
    z-index: 200;
    box-shadow: 0 6px 24px rgba(0,0,0,0.35);
    cursor: default;
    transition: transform 0.3s ease;
    gap: 6px;
}

.hero-sticker:hover {
    transform: rotate(-1deg) scale(1.02);
}

.hero-sticker-new {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.03em;
}

.hero-sticker p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.6rem;
    font-weight: 400;
    color: rgba(255,255,255,0.92);
    line-height: 1.5;
    margin: 0;
}

.hero-sticker-btn {
    display: inline-block;
    background: var(--primary-blue);
    color: #fff !important;
    font-size: 0.6rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    padding: 2px 8px;
    border-radius: 20px;
    text-decoration: none;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .hero-sticker {
        width: 150px;
        bottom: 30px;
        left: 10px;
        padding: 12px 13px;
        gap: 4px;
    }
    .hero-sticker-new { font-size: 0.85rem; }
    .hero-sticker p { font-size: 0.55rem; }
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 120px;
    padding-bottom: 60px;
    box-sizing: border-box;
}

.hero-slide {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: opacity 1.5s ease-in-out;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
    pointer-events: none;
}

.hero-slide {
    display: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 3;
    pointer-events: none;
}

/* Growing Circle Breaking Animation */
.water-droplet-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    pointer-events: none;
}

.growing-circle {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, rgba(187, 222, 251, 0.9), rgba(0, 57, 132, 0.7));
    border-radius: 50%;
    animation: growAndBreak 6s ease-in-out forwards;
    box-shadow: 0 8px 32px rgba(0, 57, 132, 0.4);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.traveling-droplets {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.droplet {
    position: absolute;
    background: linear-gradient(135deg, rgba(187, 222, 251, 0.8), rgba(0, 57, 132, 0.6));
    border-radius: 50%;
    opacity: 0;
    animation: travelAround 8s linear infinite;
}

.droplet-1 {
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 12s;
    --travel-x: 300px;
    --travel-y: -150px;
}

.droplet-2 {
    width: 20px;
    height: 20px;
    animation-delay: 2.5s;
    animation-duration: 15s;
    --travel-x: -250px;
    --travel-y: 200px;
}

.droplet-3 {
    width: 18px;
    height: 18px;
    animation-delay: 3s;
    animation-duration: 10s;
    --travel-x: 200px;
    --travel-y: 250px;
}

.droplet-4 {
    width: 12px;
    height: 12px;
    animation-delay: 3.5s;
    animation-duration: 18s;
    --travel-x: -300px;
    --travel-y: -100px;
}

.droplet-5 {
    width: 25px;
    height: 25px;
    animation-delay: 4s;
    animation-duration: 14s;
    --travel-x: 150px;
    --travel-y: -300px;
}

.droplet-6 {
    width: 16px;
    height: 16px;
    animation-delay: 4.5s;
    animation-duration: 16s;
    --travel-x: -200px;
    --travel-y: 300px;
}

.droplet-7 {
    width: 22px;
    height: 22px;
    animation-delay: 5s;
    animation-duration: 13s;
    --travel-x: 350px;
    --travel-y: 100px;
}

.droplet-8 {
    width: 14px;
    height: 14px;
    animation-delay: 5.5s;
    animation-duration: 17s;
    --travel-x: -150px;
    --travel-y: -250px;
}

.droplet-9 {
    width: 18px;
    height: 18px;
    animation-delay: 6s;
    animation-duration: 11s;
    --travel-x: 280px;
    --travel-y: -180px;
}

.droplet-10 {
    width: 16px;
    height: 16px;
    animation-delay: 6.5s;
    animation-duration: 13s;
    --travel-x: -220px;
    --travel-y: 180px;
}

.droplet-11 {
    width: 22px;
    height: 22px;
    animation-delay: 7s;
    animation-duration: 16s;
    --travel-x: 190px;
    --travel-y: 220px;
}

.droplet-12 {
    width: 13px;
    height: 13px;
    animation-delay: 7.5s;
    animation-duration: 19s;
    --travel-x: -280px;
    --travel-y: -120px;
}

.droplet-13 {
    width: 19px;
    height: 19px;
    animation-delay: 8s;
    animation-duration: 12s;
    --travel-x: 160px;
    --travel-y: -280px;
}

.droplet-14 {
    width: 17px;
    height: 17px;
    animation-delay: 8.5s;
    animation-duration: 15s;
    --travel-x: -190px;
    --travel-y: 260px;
}

.droplet-15 {
    width: 24px;
    height: 24px;
    animation-delay: 9s;
    animation-duration: 14s;
    --travel-x: 320px;
    --travel-y: 140px;
}

.droplet-16 {
    width: 15px;
    height: 15px;
    animation-delay: 9.5s;
    animation-duration: 18s;
    --travel-x: -170px;
    --travel-y: -220px;
}

.droplet-17 {
    width: 21px;
    height: 21px;
    animation-delay: 10s;
    animation-duration: 11s;
    --travel-x: 240px;
    --travel-y: -200px;
}

.droplet-18 {
    width: 14px;
    height: 14px;
    animation-delay: 10.5s;
    animation-duration: 17s;
    --travel-x: -240px;
    --travel-y: 140px;
}

.droplet-19 {
    width: 20px;
    height: 20px;
    animation-delay: 11s;
    animation-duration: 13s;
    --travel-x: 180px;
    --travel-y: 240px;
}

.droplet-20 {
    width: 16px;
    height: 16px;
    animation-delay: 11.5s;
    animation-duration: 20s;
    --travel-x: -200px;
    --travel-y: -180px;
}

@keyframes growAndBreak {
    0% {
        width: 20px;
        height: 20px;
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }
    20% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    40% {
        width: 600px;
        height: 600px;
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }
    60% {
        width: 600px;
        height: 600px;
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    80% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }
}

@keyframes travelAround {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0);
    }
    10% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    25% {
        opacity: 1;
        transform: translate(calc(var(--travel-x) * 0.25), calc(var(--travel-y) * 0.25)) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(calc(var(--travel-x) * 0.5), calc(var(--travel-y) * 0.5)) scale(1);
    }
    75% {
        opacity: 1;
        transform: translate(calc(var(--travel-x) * 0.75), calc(var(--travel-y) * 0.75)) scale(1);
    }
    90% {
        opacity: 1;
        transform: translate(var(--travel-x), var(--travel-y)) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--travel-x), var(--travel-y)) scale(0.8);
    }
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(187, 222, 251, 0.8), rgba(187, 222, 251, 0.2));
    animation: floatBubble 6s ease-in-out infinite;
}

.bubble-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.bubble-2 {
    width: 40px;
    height: 40px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.bubble-3 {
    width: 80px;
    height: 80px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.bubble-4 {
    width: 30px;
    height: 30px;
    top: 30%;
    left: 70%;
    animation-delay: 1s;
}

.bubble-5 {
    width: 50px;
    height: 50px;
    top: 10%;
    left: 50%;
    animation-delay: 3s;
}

@keyframes floatBubble {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.7; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 800px;
    pointer-events: auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 57, 132, 0.3);
}

.btn-primary:hover {
    background: #002766;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 57, 132, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
}

/* Zistiť viac na hero — biela verzia pre tmavé pozadie */
.hero-buttons .btn-secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.1);
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #ffffff;
    color: #ffffff;
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--light-blue);
}

.btn-outline:hover {
    background: var(--light-blue);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    overflow: hidden;
    border-top: 1px solid rgba(0, 57, 132, 0.05);
    border-bottom: 1px solid rgba(0, 57, 132, 0.05);
}

.partners-carousel {
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.partners-track {
    display: flex;
    width: calc(250px * 26);
    animation: scrollLogos 30s linear infinite;
}

.partner-slide {
    width: 250px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.partner-slide img {
    max-width: 100%;
    max-height: 80px;
    filter: grayscale(0%);
    opacity: 0.9;
    transition: all 0.3s ease;
}

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

.partner-slide img[src*="image15"] {
    max-height: 64px;
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 13)); }
}

@media (max-width: 768px) {
    .partner-slide {
        width: 180px;
        padding: 0 25px;
    }
    .partners-track {
        width: calc(180px * 26);
    }
    @keyframes scrollLogos {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-180px * 13)); }
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(187, 222, 251, 0.03) 100%);
    pointer-events: none;
}

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

.about-content p {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 25px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    color: #444;
    line-height: 1.8;
}

.about-text p:nth-child(2) {
    animation-delay: 0.2s;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
    overflow: hidden;
}

.logo-draw-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.logo-draw {
    width: 200px;
    height: 200px;
    object-fit: contain;
    display: block;
    animation: fadeInLogo 1.2s ease forwards;
}

@keyframes fadeInLogo {
    0%   { opacity: 0; transform: scale(0.85); }
    100% { opacity: 1; transform: scale(1); }
}

.cleaning-icon {
    width: 200px;
    height: 200px;
}

.animated-icon {
    width: 100%;
    height: 100%;
}

.circle-bg {
    animation: pulse 3s ease-in-out infinite;
}

.cleaning-line {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawLine 2s ease forwards 0.5s;
}

.center-dot {
    animation: bounce 2s ease-in-out infinite 1s;
}

@keyframes pulse {
    0%, 100% { stroke-width: 2; opacity: 0.7; }
    50% { stroke-width: 4; opacity: 1; }
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, var(--light-gray) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 57, 132, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 57, 132, 0.05);
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 25px 25px 0 0;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(187, 222, 251, 0.05), rgba(0, 57, 132, 0.03));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 25px;
    pointer-events: none;
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 57, 132, 0.15);
    border-color: rgba(0, 57, 132, 0.1);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    transition: transform 0.4s ease;
    background: linear-gradient(135deg, rgba(187, 222, 251, 0.2), rgba(0, 57, 132, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 18px;
    line-height: 1.4;
}

.service-card p {
    font-weight: 300;
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Why Us Section */
.why-us {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
}

.why-us-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Center the last item if it's odd (5th item in this case) */
.why-us-item:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 470px;
    margin: 0 auto;
}

.why-us-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 57, 132, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0, 57, 132, 0.05);
}

.why-us-item:nth-child(1) { animation-delay: 0.1s; }
.why-us-item:nth-child(2) { animation-delay: 0.2s; }
.why-us-item:nth-child(3) { animation-delay: 0.3s; }
.why-us-item:nth-child(4) { animation-delay: 0.4s; }
.why-us-item:nth-child(5) { animation-delay: 0.5s; }

.why-us-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 57, 132, 0.12);
    border-color: rgba(0, 57, 132, 0.1);
}

.check-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--light-blue), rgba(0, 57, 132, 0.2));
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 57, 132, 0.15);
}

.why-us-item:hover .check-icon {
    background: linear-gradient(135deg, var(--primary-blue), #002766);
    color: var(--white);
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 6px 20px rgba(0, 57, 132, 0.3);
}

.why-us-text h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 12px;
    line-height: 1.3;
}

.why-us-text p {
    font-weight: 300;
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Add mobile optimization for Why Us Section */
@media (max-width: 768px) {
    .why-us-content {
        grid-template-columns: 1fr;
    }
}

/* Google Rating Summary */
.google-rating-summary {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 16px;
    border: 1px solid #e9ecef;
}

.google-rating-summary h3 {
    font-size: 1.75rem;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.google-rating-summary .rating-stars {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.google-rating-summary p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: #666;
}

@media (max-width: 768px) {
    .google-rating-summary {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
    }
    .google-rating-summary h3 {
        font-size: 1.5rem;
    }
    .google-rating-summary .rating-stars {
        font-size: 1.75rem;
    }
}

/* New Review Carousel Styles */
.reviews-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.reviews-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.review-card {
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 57, 132, 0.08);
    text-align: left;
    border: 1px solid rgba(0, 57, 132, 0.05);
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 12px 40px rgba(0, 57, 132, 0.12);
    transform: translateY(-5px);
}

.review-stars {
    margin-bottom: 1rem;
    color: #FFD700;
    font-size: 1.2rem;
    text-shadow: 0 1px 3px rgba(255, 215, 0, 0.3);
}

.review-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #444;
    line-height: 1.7;
    font-size: 1rem;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.review-author strong {
    display: block;
}

.reviews-nav {
    display: none; /* Hidden on mobile */
    position: absolute;
    top: 50%;
    width: 100%;
    justify-content: space-between;
    transform: translateY(-50%);
}

.arrow {
    background: rgba(0, 57, 132, 0.5);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
}

.arrow.prev {
    margin-left: -1rem;
}

.arrow.next {
    margin-right: -1rem;
}

.reviews-dots {
    text-align: center;
    margin-top: 1rem;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background: var(--primary-blue);
}

/* Desktop Styles */
@media (min-width: 769px) {
    .review-card {
        flex: 0 0 calc(100% / 3);
    }

    .reviews-nav {
        display: flex;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, var(--white) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 12px 22px;
    background: #003984;
    color: #ffffff;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 14px rgba(0, 57, 132, 0.3);
}

.phone-btn:hover {
    background: #002766;
    transform: translateY(-2px);
}

.contact-item p {
    font-weight: 300;
    color: #666;
    line-height: 1.6;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 57, 132, 0.1);
}

.contact-form {
    background: #daeeff;
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 57, 132, 0.12);
    border: 1px solid rgba(0, 57, 132, 0.1);
}

.contact-form-intro {
    font-size: 0.95rem;
    font-weight: 400;
    color: #2a4a7f;
    margin-bottom: 28px;
    line-height: 1.6;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.6);
    border-left: 3px solid var(--primary-blue);
    border-radius: 6px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 57, 132, 0.1);
}

/* Footer */
.footer {
    background: var(--primary-blue);
    padding: 40px 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.footer-logo span {
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
}

.footer-text p {
    color: var(--white);
    font-weight: 300;
}

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

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none !important;
    }

    .hamburger {
        display: flex;
        position: relative;
        z-index: 1001;
    }

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

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

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

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

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .reviews-track {
        gap: 20px;
    }

    .review-card {
        min-width: 300px;
        padding: 30px 20px;
    }

    .nav-social {
        display: flex;
    }
    
    /* About section mobile */
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        gap: 30px;
    }
    
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .about-visual {
        display: flex;
    }
    .logo-draw {
        max-width: 160px;
    }
    
    /* Services mobile */
    .services {
        padding: 60px 0;
    }

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

    .service-card {
        padding: 30px 25px;
    }

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

    .service-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Why us mobile */
    .why-us {
        padding: 60px 0;
    }

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

    .why-us-item {
        padding: 25px;
        gap: 18px;
    }

    /* Reset centering on mobile - all items should be full width */
    .why-us-item:nth-child(5) {
        grid-column: 1;
        max-width: none;
        margin: 0;
    }

    .why-us-text h4 {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }

    .why-us-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .check-icon {
        font-size: 1.3rem;
        width: 45px;
        height: 45px;
    }
    
    /* Reviews mobile */
    .reviews {
        padding: 60px 0;
    }
    
    .reviews-carousel {
        margin: 0 -20px 30px -20px;
    }
    
    .reviews-track {
        gap: 20px;
        padding: 0 20px;
    }
    
    .review-card {
        /* Remove calc() widths - let JavaScript handle responsive sizing */
        padding: 25px 20px;
        margin: 0 auto;
    }
    
    .review-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .review-text::before {
        font-size: 1.5rem;
        top: -3px;
        left: -3px;
    }
    
    .carousel-indicators {
        margin-top: 30px;
        gap: 10px;
    }
    
    /* Contact mobile */
    .contact {
        padding: 60px 0;
    }
    
    .contact-content {
        gap: 40px;
    }
    
    .contact-item {
        padding: 20px;
    }
    
    .contact-item h4 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .contact-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 8px;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    /* Footer mobile */
    .footer {
        padding: 30px 0;
    }
    
    .footer-content {
        padding: 0 20px;
    }
    
    .footer-logo {
        gap: 12px;
    }
    
    .footer-logo-img {
        height: 35px;
    }
    
    .footer-logo span {
        font-size: 1.1rem;
    }
    
    .footer-text p {
        font-size: 0.9rem;
    }
    
    /* Water droplet mobile */
    .growing-circle {
        width: 15px;
        height: 15px;
    }
    
    @keyframes growAndBreak {
        0% {
            width: 15px;
            height: 15px;
        }
        40% {
            width: 400px;
            height: 400px;
        }
    }
    
    /* Droplets mobile - spread around hero section */
    .droplet {
        animation-duration: 8s !important;
    }
    
    .droplet-1 { --travel-x: 180px; --travel-y: -120px; }
    .droplet-2 { --travel-x: -160px; --travel-y: 140px; }
    .droplet-3 { --travel-x: 140px; --travel-y: 160px; }
    .droplet-4 { --travel-x: -180px; --travel-y: -80px; }
    .droplet-5 { --travel-x: 100px; --travel-y: -180px; }
    .droplet-6 { --travel-x: -120px; --travel-y: 180px; }
    .droplet-7 { --travel-x: 200px; --travel-y: 60px; }
    .droplet-8 { --travel-x: -100px; --travel-y: -160px; }
    .droplet-9 { --travel-x: 160px; --travel-y: -100px; }
    .droplet-10 { --travel-x: -140px; --travel-y: 120px; }
    .droplet-11 { --travel-x: 120px; --travel-y: 140px; }
    .droplet-12 { --travel-x: -160px; --travel-y: -60px; }
    .droplet-13 { --travel-x: 80px; --travel-y: -140px; }
    .droplet-14 { --travel-x: -100px; --travel-y: 160px; }
    .droplet-15 { --travel-x: 180px; --travel-y: 80px; }
    .droplet-16 { --travel-x: -80px; --travel-y: -120px; }
    .droplet-17 { --travel-x: 140px; --travel-y: -80px; }
    .droplet-18 { --travel-x: -120px; --travel-y: 100px; }
    .droplet-19 { --travel-x: 100px; --travel-y: 120px; }
    .droplet-20 { --travel-x: -140px; --travel-y: -100px; }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        padding: 0 15px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0 20px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .section-divider {
        width: 60px;
        height: 3px;
    }

    .container {
        padding: 0 15px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-width: 120px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    /* Navigation mobile */
    .nav-container {
        padding: 8px 12px;
    }

    .logo {
        height: 40px;
    }

    .company-name {
        font-size: 1.1rem;
    }

    .nav-menu {
        top: 55px;
        height: calc(100vh - 55px);
        padding-top: 20px;
        width: 100vw !important;
        transform: none !important;
    }

    .nav-link {
        font-size: 1rem;
        padding: 12px 0;
    }

    /* Services mobile */
    .services-grid {
        gap: 20px;
        padding: 0 15px;
    }

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

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

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

    /* Why us mobile */
    .why-us-content {
        gap: 20px;
        padding: 0 15px;
    }

    .why-us-item {
        padding: 20px;
    }

    /* Reset centering on small mobile too */
    .why-us-item:nth-child(5) {
        grid-column: 1;
        max-width: none;
        margin: 0;
    }

    .why-us-text h4 {
        font-size: 1.1rem;
    }

    .why-us-text p {
        font-size: 0.9rem;
    }

    /* Reviews mobile - show only 1 review at a time */
    .reviews-carousel {
        margin: 0 -15px 30px -15px;
    }

    .reviews-track {
        gap: 20px;
        padding: 0 15px;
    }

    .review-card {
        /* Remove calc() widths - let JavaScript handle responsive sizing */
        padding: 25px 20px;
        margin: 0 auto;
    }

    .review-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .review-text::before {
        font-size: 1.2rem;
        top: -2px;
        left: -2px;
    }

    .review-stars {
        margin-bottom: 15px;
    }

    .star {
        font-size: 1.1rem;
    }

    .review-author strong {
        font-size: 0.9rem;
    }

    .company {
        font-size: 0.8rem;
    }

    .carousel-indicators {
        margin-top: 25px;
        gap: 8px;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }

    /* Contact mobile */
    .contact-content {
        gap: 30px;
        padding: 0 15px;
    }

    .contact-item {
        padding: 15px;
    }

    .contact-item h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .contact-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

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

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 16px;
        border-radius: 8px;
    }

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

    /* Footer mobile */
    .footer-content {
        padding: 20px 15px;
        gap: 15px;
    }

    .footer-logo {
        gap: 10px;
    }

    .footer-logo-img {
        height: 35px;
    }

    .footer-logo span {
        font-size: 1rem;
    }

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

    /* Water droplet mobile */
    .growing-circle {
        width: 12px;
        height: 12px;
    }

    @keyframes growAndBreak {
        0% {
            width: 12px;
            height: 12px;
        }
        40% {
            width: 300px;
            height: 300px;
        }
    }

    /* Droplets mobile small screens */
    .droplet {
        animation-duration: 8s !important;
    }
    
    .droplet-1 { --travel-x: 140px; --travel-y: -100px; }
    .droplet-2 { --travel-x: -120px; --travel-y: 110px; }
    .droplet-3 { --travel-x: 110px; --travel-y: 130px; }
    .droplet-4 { --travel-x: -140px; --travel-y: -60px; }
    .droplet-5 { --travel-x: 80px; --travel-y: -140px; }
    .droplet-6 { --travel-x: -100px; --travel-y: 140px; }
    .droplet-7 { --travel-x: 150px; --travel-y: 50px; }
    .droplet-8 { --travel-x: -80px; --travel-y: -120px; }
    .droplet-9 { --travel-x: 120px; --travel-y: -80px; }
    .droplet-10 { --travel-x: -110px; --travel-y: 100px; }
    .droplet-11 { --travel-x: 100px; --travel-y: 110px; }
    .droplet-12 { --travel-x: -130px; --travel-y: -50px; }
    .droplet-13 { --travel-x: 70px; --travel-y: -110px; }
    .droplet-14 { --travel-x: -90px; --travel-y: 120px; }
    .droplet-15 { --travel-x: 130px; --travel-y: 70px; }
    .droplet-16 { --travel-x: -70px; --travel-y: -100px; }
    .droplet-17 { --travel-x: 110px; --travel-y: -70px; }
    .droplet-18 { --travel-x: -100px; --travel-y: 90px; }
    .droplet-19 { --travel-x: 90px; --travel-y: 100px; }
    .droplet-20 { --travel-x: -110px; --travel-y: -90px; }
} 
/* Hero mobile fix */
@media (max-width: 768px) {
    #hero-slides-wrapper img {
        object-position: center top;
    }

    .hero {
        min-height: 70vh;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 60vh;
    }
}

/* image17 a image23 - chlapi vpravo, posun pohľad doprava na mobile */
@media (max-width: 768px) {
    #hs2, #hs8 {
        object-position: right center;
    }
}

/* Zvýšená špecifickosť pre image17 a image23 na mobile */
@media (max-width: 768px) {
    #hero-slides-wrapper #hs2,
    #hero-slides-wrapper #hs8 {
        object-position: right center !important;
    }
}

/* =============================================
   HERO CLIENT SELECTOR
   ============================================= */
.hero-client-selector {
    margin-top: 28px;
    opacity: 1;
}

.selector-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-bottom: 16px;
}

.selector-divider-line {
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
}

.selector-divider-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}

.selector-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

/* Split tlačidlo */
.selector-split-btn {
    display: inline-flex;
    align-items: stretch;
    background: #daeeff;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.15);
    border: 1.5px solid rgba(255,255,255,0.4);
    position: relative;
}

.selector-split-half {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    color: var(--primary-blue);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.selector-split-half::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: left 0.5s ease;
}

.selector-split-half:hover::before { left: 100%; }

.selector-split-half:hover {
    background: #c2e4f8;
}

.selector-split-divider {
    width: 1.5px;
    background: rgba(0,57,132,0.2);
    flex-shrink: 0;
    align-self: stretch;
}

.selector-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    padding: 13px 28px;
    background: #daeeff;
    color: var(--primary-blue);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s, transform 0.2s, box-shadow 0.25s;
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.selector-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.5s ease;
}

.selector-btn:hover::before {
    left: 100%;
}

.selector-btn:hover {
    background: #c2e4f8;
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* =============================================
   KLIENTSKE SEKCIE (firmy / domácnosti)
   ============================================= */
.client-section {
    padding: 90px 0;
    background: #ffffff;
}

.client-section-alt {
    background: #f4f7fb;
}

.client-section-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.badge-firma {
    background: #003984;
    color: #ffffff;
    font-size: 0.85rem;
    box-shadow: 0 2px 8px rgba(0, 57, 132, 0.25);
}

.highlight-firma {
    color: #003984;
    font-style: italic;
}

.badge-domacnost {
    background: rgba(0, 150, 100, 0.1);
    color: #00704a;
}

.client-section-content {
    margin: 40px 0;
}


.client-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    border: 2px dashed rgba(0, 57, 132, 0.2);
    border-radius: 16px;
    background: rgba(0, 57, 132, 0.03);
    padding: 40px 20px;
    text-align: center;
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.6;
}

.placeholder-text {
    color: #888;
    font-size: 1rem;
    font-style: italic;
}

.client-section-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-top: 10px;
    font-weight: 300;
}

.client-section-cta {
    text-align: center;
    margin-top: 40px;
}

/* Two column layout for firmy section */
.firmy-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 40px auto;
    align-items: start;
    max-width: 900px;
}

.firmy-col {
    min-width: 0;
}

/* Benefits list */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.benefit-check {
    color: #003984;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 0.92rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 2px 0;
}

.benefit-item p {
    font-size: 0.82rem;
    color: #777;
    margin: 0;
    font-weight: 300;
}

/* Process steps */
.process-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #003984;
    margin-bottom: 28px;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    padding-bottom: 24px;
}

.process-step:last-child {
    padding-bottom: 0;
}

/* Connecting line between steps */
.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 19px;
    top: 40px;
    width: 2px;
    height: calc(100% - 12px);
    background: linear-gradient(to bottom, #003984, rgba(0, 57, 132, 0.15));
}

.step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: #003984;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 57, 132, 0.25);
}

.step-content {
    padding-top: 0;
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 4px 0;
}

.step-content p {
    font-size: 0.88rem;
    color: #777;
    margin: 0;
    font-weight: 300;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .selector-buttons {
        flex-direction: column;
        align-items: center;
    }

    .selector-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .selector-split-half {
        padding: 12px 18px;
        font-size: 0.88rem;
    }

    .client-section {
        padding: 50px 0;
    }

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

    .process-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .process-steps {
        max-width: 100%;
    }

    .process-step {
        gap: 14px;
        padding-bottom: 22px;
    }

    .process-step:not(:last-child)::after {
        left: 16px;
        top: 34px;
    }

    .step-number {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 0.85rem;
    }

    .step-content {
        padding-top: 0;
    }

    .step-content h4 {
        font-size: 0.95rem;
    }

    .step-content p {
        font-size: 0.82rem;
    }

    .client-section-cta {
        margin-top: 28px;
    }

    .firmy-two-col {
        grid-template-columns: 1fr;
        gap: 36px;
        margin: 28px 0;
    }
}

/* =============================================
   ACCORDION – Služby pre firmy
   ============================================= */
.accordion-section {
    max-width: 700px;
    margin: 40px auto 0;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accordion-item {
    border: 1px solid rgba(0, 57, 132, 0.15);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--primary-blue);
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    text-align: left;
    transition: background 0.2s;
}

.accordion-btn:hover {
    background: #002d6b;
}

.accordion-btn.open {
    color: #ffffff;
    background: #002d6b;
}

.accordion-icon {
    font-size: 1.3rem;
    font-weight: 300;
    color: #ffffff;
    transition: transform 0.25s;
    flex-shrink: 0;
    margin-left: 12px;
}

.accordion-btn.open .accordion-icon {
    transform: rotate(45deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.accordion-body.open {
    max-height: 600px;
    padding: 4px 20px 16px;
}

.accordion-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion-body ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 57, 132, 0.07);
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.accordion-body ul li:last-child {
    border-bottom: none;
}

.acc-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.4;
}

.acc-desc {
    font-size: 0.83rem;
    font-weight: 300;
    color: #777;
    line-height: 1.5;
}

.accordion-body ul li::before {
    content: '';
    display: none;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .accordion-section {
        margin-top: 28px;
    }

    .accordion-btn {
        font-size: 0.9rem;
        padding: 14px 16px;
    }

    .accordion-body.open {
        padding: 4px 16px 14px;
    }
}

/* =============================================
   FIRMY SEKCIA – Hero blok, trust signals, CTA
   ============================================= */
.firmy-hero {
    text-align: center;
    margin-bottom: 60px;
}

.firmy-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 12px;
}

.firmy-accordion-header {
    text-align: center;
    margin-bottom: 8px;
}

.trust-signals {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 24px;
    margin-top: 20px;
}

.trust-signals span {
    font-size: 0.82rem;
    font-weight: 500;
    color: #666;
    position: relative;
    padding-left: 14px;
}

.trust-signals span::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
}

/* Počítadlo v accordion */
.accordion-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(0, 57, 132, 0.1);
    color: var(--primary-blue);
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 700;
    margin-left: 8px;
    vertical-align: middle;
    flex-shrink: 0;
}

/* Accordion body s opismi */
.accordion-body ul li strong {
    color: #1a1a2e;
    font-weight: 600;
}

/* CTA záver */
.firmy-cta-block {
    text-align: center;
    margin-top: 50px;
    padding: 36px 24px;
    background: rgba(0, 57, 132, 0.04);
    border-radius: 16px;
    border: 1px solid rgba(0, 57, 132, 0.1);
}

.firmy-cta-text {
    font-size: 1rem;
    color: #555;
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto 20px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .firmy-hero {
        margin-bottom: 40px;
    }

    .trust-signals {
        gap: 8px 16px;
    }

    .firmy-cta-block {
        margin-top: 36px;
        padding: 24px 16px;
    }

    .firmy-cta-text {
        font-size: 0.92rem;
    }
}

/* =====================================================
   DOMÁCNOSTI SECTION
   ===================================================== */

.highlight-dom {
    color: var(--primary-blue);
    font-style: italic;
}

.badge-domacnost {
    display: inline-block;
    background: rgba(0, 57, 132, 0.08);
    color: var(--primary-blue);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 18px;
}

/* Services grid – 6 cards */
.dom-services-section {
    margin-top: 60px;
}

.dom-services-section h3 {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 36px;
}

.dom-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.dom-card {
    background: #fff;
    border: 1.5px solid rgba(0, 57, 132, 0.1);
    border-radius: 16px;
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    position: relative;
}

.dom-card:hover {
    box-shadow: 0 8px 32px rgba(0, 57, 132, 0.1);
    transform: translateY(-3px);
}

.dom-card--featured {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 20px rgba(0, 57, 132, 0.12);
}

.dom-card-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.dom-card-icon {
    font-size: 2rem;
    line-height: 1;
}

.dom-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.dom-card p {
    font-size: 0.88rem;
    font-weight: 300;
    color: #555;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.dom-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.dom-card-tags span {
    display: inline-block;
    background: rgba(0, 57, 132, 0.07);
    color: var(--primary-blue);
    font-size: 0.72rem;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.4px;
}

/* "Najpopulárnejšie" badge v accordion btn */
.dom-badge-popular {
    display: inline-block;
    background: var(--primary-blue);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    padding: 2px 10px;
    border-radius: 20px;
    margin-left: 10px;
    vertical-align: middle;
    text-transform: uppercase;
}

/* CTA note below button */
.dom-cta-note {
    display: block;
    margin-top: 12px;
    font-size: 0.82rem;
    font-weight: 300;
    color: #888;
    letter-spacing: 0.3px;
}

/* Responsive – tablets */
@media (max-width: 900px) {
    .dom-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive – mobile */
@media (max-width: 600px) {
    .dom-cards-grid {
        grid-template-columns: 1fr;
    }

    .dom-services-section h3 {
        font-size: 1.2rem;
    }

    .dom-card {
        padding: 24px 18px 20px;
    }
}

/* Landscape mobile – hamburger vždy viditeľný */
@media (max-height: 500px) and (orientation: landscape) {
    .hamburger {
        display: flex !important;
        position: relative;
        z-index: 1001;
    }

    .nav-menu {
        display: none;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        transform: none !important;
        width: 100% !important;
        height: 100% !important;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding-top: 60px;
        overflow-y: auto;
        z-index: 998;
    }

    .nav-menu.active {
        display: flex !important;
    }
}

/* Mobile nav overlay – priamo na body, mimo navbar stacking context */
#mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(172, 220, 246, 0.97);
    z-index: 99999;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    padding: 80px 20px 40px;
    box-sizing: border-box;
}

#mobile-nav-overlay.active {
    display: flex;
}

#mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-blue);
    cursor: pointer;
    line-height: 1;
    padding: 8px;
}

.mobile-nav-link {
    display: block;
    width: 100%;
    text-align: center !important;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    letter-spacing: 0.02em;
    padding: 12px 30px;
    box-sizing: border-box;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.mobile-nav-link:active {
    opacity: 0.7;
}

.mobile-nav-link-cta {
    background: var(--primary-blue);
    color: #fff !important;
    border-radius: 12px;
    margin: 4px 0;
}

/* =====================================================
   REZERVÁCIA SECTION
   ===================================================== */

.rezervacia-section {
    padding: 0 0 90px;
    background: #f0f6ff;
}

.rezervacia-hero {
    background: linear-gradient(135deg, #003984 0%, #0056c7 100%);
    padding: 60px 0 50px;
    text-align: center;
    margin-bottom: 50px;
}

.rezervacia-badge {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.rezervacia-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    opacity: 1;
    animation: none;
    letter-spacing: -0.5px;
    display: block;
}

.rezervacia-perex {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    max-width: 520px;
    margin: 0 auto;
}

.rezervacia-wrapper {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
}

.rez-step {
    background: #fff;
    border-radius: 16px;
    padding: 28px 32px;
    border: 1.5px solid rgba(0, 57, 132, 0.08);
    box-shadow: 0 4px 24px rgba(0, 57, 132, 0.07);
}

.rez-hidden {
    display: none !important;
}

.rez-step-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rez-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--primary-blue);
    color: #fff;
    border-radius: 50%;
    font-size: 0.82rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Client type */
.rez-client-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.rez-client-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 28px 16px;
    background: #f8fbff;
    border: 2px solid rgba(0, 57, 132, 0.12);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.rez-client-btn:hover,
.rez-client-btn.selected {
    border-color: var(--primary-blue);
    background: #daeeff;
    box-shadow: 0 0 0 3px rgba(0, 57, 132, 0.1);
}

.rez-client-icon {
    width: 36px;
    height: 36px;
    color: var(--primary-blue);
}

.rez-client-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.rez-client-desc {
    font-size: 0.78rem;
    font-weight: 400;
    color: #555;
    text-align: center;
}

.rez-client-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-top: 4px;
}

.rez-client-tag {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary-blue);
    background: rgba(0, 57, 132, 0.08);
    border-radius: 20px;
    padding: 3px 10px;
    white-space: nowrap;
}

.rez-client-btn.selected .rez-client-tag {
    background: rgba(0, 57, 132, 0.18);
}

/* Reservation type */
.rez-type-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.rez-type-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 28px 16px;
    background: #f8fbff;
    border: 2px solid rgba(0, 57, 132, 0.12);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.rez-type-btn:hover {
    border-color: var(--primary-blue);
    background: #daeeff;
}

.rez-type-btn svg {
    width: 36px;
    height: 36px;
    color: var(--primary-blue);
}

.rez-type-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.rez-type-desc {
    font-size: 0.78rem;
    font-weight: 300;
    color: #777;
}

/* Services */
.rez-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.rez-service-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 28px 16px;
    background: #f8fbff;
    border: 2px solid rgba(0, 57, 132, 0.12);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.rez-service-btn:hover,
.rez-service-btn.selected {
    border-color: var(--primary-blue);
    background: #daeeff;
    box-shadow: 0 0 0 3px rgba(0, 57, 132, 0.1);
}

.rez-svc-icon {
    width: 36px;
    height: 36px;
    color: var(--primary-blue);
}

.rez-service-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.rez-service-desc {
    font-size: 0.78rem;
    font-weight: 300;
    color: #777;
}

/* Checkboxes and radios */
.rez-check-grid,
.rez-radio-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.rez-section-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.rez-check-item,
.rez-radio-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a1a2e;
    cursor: pointer;
}

.rez-check-item input[type="checkbox"],
.rez-radio-item input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-blue);
    cursor: pointer;
    flex-shrink: 0;
}

.rez-check-other {
    flex-wrap: wrap;
}

.rez-inline-input {
    border: 1px solid rgba(0,57,132,0.2);
    border-radius: 6px;
    padding: 4px 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    width: 180px;
    outline: none;
}

.rez-inline-input:focus {
    border-color: var(--primary-blue);
}

.rez-inspection-row {
    margin-bottom: 20px;
    padding: 14px 16px;
    background: #f0f6ff;
    border-radius: 10px;
    border: 1px solid rgba(0,57,132,0.1);
}

.rez-inspection-check {
    font-weight: 600;
}

.rez-check-note {
    font-weight: 300;
    color: #777;
    font-size: 0.82rem;
}

.rez-next-btn {
    width: 100%;
}

.rez-price {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-blue);
    background: rgba(0, 57, 132, 0.08);
    border-radius: 20px;
    padding: 2px 9px;
    margin-left: 6px;
    white-space: nowrap;
}

.rez-info-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: #e8f4ff;
    border-left: 3px solid var(--primary-blue);
    border-radius: 0 8px 8px 0;
    padding: 11px 14px;
    font-size: 0.83rem;
    color: #333;
    line-height: 1.5;
    margin-bottom: 16px;
}

/* Calendar */
.rez-calendar {
    max-width: 380px;
    margin: 0 auto;
}

.rez-cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.rez-cal-month {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.rez-cal-nav {
    background: none;
    border: 1.5px solid rgba(0, 57, 132, 0.2);
    border-radius: 8px;
    width: 34px;
    height: 34px;
    font-size: 1.3rem;
    color: var(--primary-blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    font-family: 'Poppins', sans-serif;
}

.rez-cal-nav:hover { background: #daeeff; }

.rez-cal-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 8px;
}

.rez-cal-days-header span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #999;
    padding: 4px 0;
}

.rez-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.rez-cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    background: none;
    font-family: 'Poppins', sans-serif;
    transition: all 0.15s ease;
}

.rez-cal-day.available { color: #1a1a2e; background: #f0f7ff; }
.rez-cal-day.available:hover { background: #daeeff; color: var(--primary-blue); }
.rez-cal-day.selected { background: var(--primary-blue); color: #fff; }
.rez-cal-day.today { font-weight: 700; outline: 2px solid var(--primary-blue); }
.rez-cal-day.past, .rez-cal-day.unavailable { color: #ccc; cursor: not-allowed; background: none; }
.rez-cal-day.empty { background: none; cursor: default; }
.rez-cal-day.sunday { color: #ddd; cursor: not-allowed; }

/* Time slots */
.rez-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rez-slot-btn {
    padding: 10px 20px;
    border: 1.5px solid rgba(0, 57, 132, 0.2);
    border-radius: 30px;
    background: #f0f7ff;
    color: var(--primary-blue);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.rez-slot-btn:hover { background: #daeeff; border-color: var(--primary-blue); }
.rez-slot-btn.selected { background: var(--primary-blue); color: #fff; border-color: var(--primary-blue); }

/* Summary */
.rez-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.rez-summary-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 57, 132, 0.08);
    color: var(--primary-blue);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
}

/* Form */
.rez-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.rez-or-label {
    font-size: 0.72rem;
    font-weight: 300;
    color: #999;
}

.rez-submit-btn { width: 100%; margin-top: 8px; }

.rez-submit-note {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    font-weight: 300;
    margin-top: 10px;
}

.rez-firma-field { }

/* File input */
.rez-file-input {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border: 1.5px dashed rgba(0,57,132,0.25);
    border-radius: 8px;
    background: #f8fbff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    cursor: pointer;
    color: #555;
}

.rez-file-note {
    font-size: 0.78rem;
    color: #999;
    font-weight: 300;
    margin-top: 6px;
}

/* Success */
.rez-success {
    background: #fff;
    border-radius: 16px;
    padding: 60px 32px;
    text-align: center;
    border: 1.5px solid rgba(0, 57, 132, 0.08);
}

.rez-success-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.rez-success h3 { font-size: 1.4rem; font-weight: 700; color: var(--primary-blue); margin-bottom: 10px; }
.rez-success p { font-size: 0.95rem; color: #555; font-weight: 300; margin-bottom: 24px; }

/* Telefónny callout nad rezerváciou */
.rez-phone-callout {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 680px;
    margin: 0 auto 20px;
    padding: 13px 20px;
    background: #fff;
    border-radius: 12px;
    border: 1.5px solid rgba(0,57,132,0.1);
    font-size: 0.88rem;
    color: #444;
    box-shadow: 0 2px 12px rgba(0,57,132,0.06);
}

.rez-phone-callout svg { color: var(--primary-blue); }

.rez-phone-link {
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
    white-space: nowrap;
}

.rez-phone-link:hover { text-decoration: underline; }

/* Mobile */
@media (max-width: 600px) {
    .rezervacia-title { font-size: 1.6rem; }
    .rez-step { padding: 20px 16px; }
    .rez-client-grid,
    .rez-type-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .rez-services { grid-template-columns: 1fr 1fr; gap: 10px; }
    .rez-radio-grid { grid-template-columns: 1fr; }
    .rez-check-grid { grid-template-columns: 1fr 1fr; }
    .rez-form-row { grid-template-columns: 1fr; }
    .rez-calendar { max-width: 100%; }
    .rez-client-btn,
    .rez-type-btn,
    .rez-service-btn { padding: 18px 10px; }
    .rez-phone-callout { flex-wrap: wrap; font-size: 0.83rem; }
    .rez-client-tags { gap: 4px; }
    .rez-client-tag { font-size: 0.68rem; padding: 2px 8px; }
}
