/* Reset a základní styly */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #94CCEE;
    --secondary-color: #2c3e50;
    --accent-color: #94CCEE;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #94CCEE 0%, #7BB3E0 100%);
    --gradient-dark: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
}
.sethidden {display: none !important;}

/* Mřížkové pozadí jen pro hlavní stránku */
body.homepage {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(149,202,237,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

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

/* Navigace */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    backdrop-filter: blur(25px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(30, 58, 138, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 250, 252, 0.99) 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(30, 58, 138, 0.15);
}

/* Progress bar pro scrollování */
.scroll-progress {
    position: fixed;
    top: 90px;
    left: 0;
    height: 4px;
    background: #94CCEE;
    width: 0%;
    transition: width 0.1s ease-out;
    z-index: 9999;
    box-shadow: 0 2px 4px rgba(148, 204, 238, 0.5);
    opacity: 1;
    display: block;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    height: 90px;
    gap: 2rem;
}

.nav-logo a {
    display: block;
    text-decoration: none;
}

.nav-logo .logo {
    height: 70px;
    transition: transform 0.3s ease;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex: 1;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
    background: rgba(30, 58, 138, 0.05) !important;
    backdrop-filter: blur(10px);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

.nav-link:hover::before {
    opacity: 1;
}

/* Skrýt ikony na desktopu kromě šipky dropdown */
.nav-link i:not(.fa-chevron-down) {
    display: none;
}


.dropdown {
    position: relative;
}

.dropdown-menu {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background: #eaf0ff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
}

/* Zobrazit dropdown při hoveru na desktopu */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 1200px;
    transform: translateX(-50%);
    z-index: -1;
}

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

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    text-align: center;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: rgba(30, 58, 138, 0.08);
    color: var(--primary-color);
}

.dropdown-menu a i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Navigační akce */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary-color);
    font-weight: 500;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border-radius: 12px;
    border: 1px solid rgba(30, 58, 138, 0.2);
    backdrop-filter: blur(10px);
}

.phone-number:hover {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
    border-color: var(--primary-color);
}

.phone-number i {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.phone-number:hover i {
    color: var(--white);
}


.phone-number a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-number:hover a {
    color: var(--white);
}

.auth-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn-auth {
    padding: 0.5rem 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 58, 138, 0.2);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

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

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

.btn-auth.login {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    color: var(--text-dark);
    border-color: rgba(30, 58, 138, 0.2);
}

.btn-auth.login:hover {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

.btn-auth.login i {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

/* Skrýt ikonku účtu na desktopu */
.user-account-mobile {
    display: none;
}

.btn-auth.register {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-auth.register:hover {
    background: var(--secondary-color);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

.hamburger-btn {
    display: none;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    margin: 0;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 90px;
    box-sizing: border-box;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e40af 100%);
    z-index: -2;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(149,202,237,0.2)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(47, 83, 102, 0.7);
    z-index: 1;
}


.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 1200px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    max-width: 100%;
    animation: heroFadeIn 0.8s ease-out 0.2s both;
}



.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 300;
    animation: heroFadeIn 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: heroFadeIn 0.8s ease-out 0.6s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    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.2), transparent);
    transition: left 0.5s;
}

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

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(148, 204, 238, 0.3);
}

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(148, 204, 238, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--white);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
}

/* Section Styles */
section {
    padding: 3rem 0;
}

.services {
    background: var(--white);
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 300;
}

/* About Section */
.about {
    background: var(--light-gray);
    padding: 3rem 0;
}

.btn-more:hover {
    background: var(--accent-color) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Cookies Bar */
.cookies-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    display: none;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookies-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookies-text {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
}

.cookies-text i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.cookies-text p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookies-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-cookies {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-cookies.accept {
    background: var(--accent-color);
    color: var(--white);
}

.btn-cookies.accept:hover {
    background: #0056b3;
    transform: translateY(-1px);
}

.btn-cookies.decline {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.btn-cookies.decline:hover {
    background: var(--light-gray);
    border-color: var(--text-light);
}

.btn-cookies.info {
    background: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.btn-cookies.info:hover {
    background: var(--accent-color);
    color: var(--white);
}

/* Gallery Toggle Styles */
.gallery-item-hidden {
    display: none !important;
}

.gallery-item-hidden.show {
    display: block !important;
}

.gallery-toggle {
    text-align: center;
    margin-top: 2rem;
}

.gallery-toggle .btn {
    transition: all 0.3s ease;
}

.gallery-toggle .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .cookies-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }

    .cookies-text {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .cookies-buttons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
    }

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

.about-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-intro {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease-out 0.1s forwards;
}

.about-intro p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
    text-align: center;
}


/* Motto Section with Car Animation */
.motto-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.car-animation {
    position: relative;
    width: 300px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 1rem;
}

.car-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    animation: carDrive 6s ease-in-out infinite;
    z-index: 2;
    position: relative;
}

.road-line {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        var(--primary-color) 0px,
        var(--primary-color) 20px,
        transparent 20px,
        transparent 40px
    );
    animation: roadMove 3s linear infinite;
    opacity: 0.8;
}

.motto {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: var(--primary-color) !important;
    margin: 0 !important;
}

.company-values {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.detail-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    text-align: left !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start;
    gap: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease-out forwards;
}

.detail-item:nth-child(1) {
    animation-delay: 0.1s;
}

.detail-item:nth-child(2) {
    animation-delay: 0.2s;
}

.detail-item:nth-child(3) {
    animation-delay: 0.3s;
}

.detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.detail-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
    animation-play-state: paused;
}

.detail-item:hover .detail-icon {
    transform: scale(1.2) rotate(5deg);
    animation-play-state: paused;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    transition: all 0.3s ease;
    flex-shrink: 0;
    animation: iconPulse 2s ease-in-out infinite;
}


.detail-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.detail-content h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.detail-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.services-overview {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    text-align: center;
}

.services-overview h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.services-overview p {
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
}

.about-text {
    max-width: 100%;
    margin: 0;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    width: 100%;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-icon i {
    font-size: 2rem;
    color: var(--white);
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

/* Center the last service card when there's only one in the last row */
.services-grid .service-card:nth-child(7) {
    grid-column: 2;
}

.service-card {
    background: transparent;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    transform: scale(0.95);
}

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

.service-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.service-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.service-svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.service-link {
    color: var(--white);
    background: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    border: none;
    position: relative;
    overflow: hidden;
}

.service-link:hover {
    background: #3b82f6;
    color: var(--white);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.service-link i {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-link:hover i {
    transform: translateX(3px) scale(1.1);
}

/* Testimonials Section */
.testimonials {
    background: var(--light-gray);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.03) 0%, rgba(59, 130, 246, 0.03) 100%);
    z-index: 0;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    background: var(--white);
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    gap: 1.2rem;
    background: var(--white);
    text-align: center;
    min-height: 300px;
}

.customer-photo {
    flex-shrink: 0;
    position: relative;
}

.customer-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.testimonial-slide:hover .customer-image {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.testimonial-quote {
    width: 100%;
    text-align: center;
}

.testimonial-quote p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin: 0;
    position: relative;
    padding: 0 1rem;
}


.customer-info {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.customer-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.customer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: left;
}

.customer-position {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
    text-align: left;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2.5rem;
    position: relative;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.carousel-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.carousel-btn:hover::before {
    opacity: 1;
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(30, 58, 138, 0.2);
}

.carousel-btn i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.carousel-btn:hover i {
    color: var(--white);
}

.carousel-dots {
    display: flex;
    gap: 0.8rem;
}

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

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.dot:hover::before {
    border-color: var(--primary-color);
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

.dot.active::before {
    border-color: var(--primary-color);
}

/* Partners Section */
.partners {
    background: var(--white);
    padding: 4rem 0;
}

.partners-category {
    margin-bottom: 4rem;
}

.partners-category:last-child {
    margin-bottom: 0;
}

.category-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.category-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.category-header p {
    color: var(--text-light);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.partners-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.partner-logo {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 120px;
    position: relative;
    overflow: hidden;
}

.partner-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.logo-image {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    transition: all 0.3s ease;
}

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

.logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-align: center;
}

.logo-placeholder i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.logo-placeholder span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Styly pro obrázky partnerů */
.partner-img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

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

/* Styly pro zásady ochrany osobních údajů */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    color: var(--text-color);
}

.privacy-content h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

.privacy-content h2:first-child {
    margin-top: 0;
}

.privacy-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.privacy-content ul {
    margin: 1rem 0 1.5rem 0;
    padding-left: 1.5rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.privacy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.privacy-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.privacy-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.privacy-intro {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-light);
    background: #f8f9fa;
    padding: 1.5rem;
    border-left: 4px solid var(--accent-color);
    border-radius: 0 8px 8px 0;
    margin-bottom: 2rem;
}

.privacy-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--accent-color);
    text-align: center;
    font-size: 1.1rem;
    color: var(--primary-color);
}

/* Styly pro GDPR souhlas */
.gdpr-consent {
    margin: 1.5rem 0;
}

.gdpr-consent .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-color);
}

.gdpr-consent .checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.gdpr-consent .checkmark {
    position: relative;
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.gdpr-consent .checkbox-label:hover .checkmark {
    border-color: var(--accent-color);
    background: #f8f9fa;
}

.gdpr-consent .checkbox-label input:checked ~ .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.gdpr-consent .checkmark:after {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    display: none;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
}

.gdpr-consent .checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

.gdpr-consent .checkbox-text {
    flex: 1;
}

.gdpr-consent .checkbox-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.gdpr-consent .checkbox-text a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .gdpr-consent .checkbox-label {
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .gdpr-consent .checkmark {
        width: 18px;
        height: 18px;
    }
    
    .gdpr-consent .checkmark:after {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 0 1rem;
    }
    
    .privacy-content h2 {
        font-size: 1.3rem;
    }
    
    .privacy-content p,
    .privacy-content li {
        font-size: 0.95rem;
    }
}

.partners-banner {
    margin-top: 2rem;
    text-align: center;
}

.banner-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
    background: var(--white);
    padding: 4rem 0;
}

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

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

.address-item {
    text-align: left;
}

.address-item strong {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.address-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary-color);
}

.contact-value {
    color: var(--text-light);
    font-size: 0.9rem;
}

.time-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.time-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.time {
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-row .label {
    font-weight: 600;
    color: var(--text-dark);
    min-width: 120px;
}

.contact-row .value {
    color: var(--text-light);
    text-align: right;
}

.phone-link, .email-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.phone-link:hover, .email-link:hover {
    color: var(--secondary-color);
}

.contact-form-section {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 0;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-light);
    font-size: 1rem;
}

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

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

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

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    font-family: inherit;
}

.form-group select {
    width: 100%;
    padding: 1rem 2.5rem 1rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    font-family: inherit;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
}

.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

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

/* Map and Form Container */
.map-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: stretch;
}

/* Map Container */
.map-container {
    margin-bottom: 0;
    text-align: center;
}

.map-container h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    height: 450px;
}

.map-wrapper:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.map-wrapper iframe {
    border-radius: 15px;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem 0;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-main {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: flex-start;
}

.footer-logo-container {
    background: var(--white);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.footer-logo {
    height: 60px;
    width: auto;
    display: block;
}

.footer-brand p {
    color: var(--white);
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.footer-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.contact-info p {
    color: var(--white);
    font-size: 0.9rem;
    margin: 0 0 0.6rem 0;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.contact-info p:first-child {
    font-weight: 600;
    opacity: 1;
    margin-bottom: 0.6rem;
}

.contact-info i {
    color: var(--white);
    font-size: 1rem;
    width: 18px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.contact-info p:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.2rem 0.4rem;
    border-radius: 6px;
    display: inline-block;
}

.contact-info a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.footer-services p:first-child {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 1;
    margin-bottom: 0.6rem;
}

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

.services-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.services-column p {
    color: var(--white);
    font-size: 0.9rem;
    margin: 0 0 0.4rem 0;
    opacity: 0.9;
    text-align: left;
}

.services-column p:last-child {
    text-align: left !important;
}

/* Specifické zarovnání pro Ruční mytí */
.footer-services .services-columns .services-column .rucni-myti {
    text-align: left !important;
}

.services-column a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: normal;
    padding: 0.2rem 0.4rem;
    border-radius: 6px;
    display: inline-block;
}

.services-column a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.footer-hours p {
    color: var(--white);
    font-size: 0.9rem;
    margin: 0 0 0.4rem 0;
    opacity: 0.9;
}

.footer-hours p:first-child {
    font-weight: 600;
    opacity: 1;
    margin-bottom: 0.6rem;
}

.contact-hours-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: var(--white);
    font-size: 0.8rem;
    opacity: 0.8;
    margin: 0;
}

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.8rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* About Page Styles */
.about-main {
    padding: 4rem 0;
    margin-top: 0;
}

/* Service Pages Styles */
.service-header {
    padding: 4rem 0 2rem;
    background: var(--white);
}

.service-header h1 {
    color: var(--primary-color);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.service-details {
    padding: 2rem 0 4rem;
    background: var(--white);
}

.service-intro {
    max-width: 100%;
    margin: 0 auto 3rem;
    text-align: center;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    position: relative;
}

.service-intro p {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 500;
    text-align: center;
}

.service-intro p:last-child {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 400;
    font-style: normal;
}

/* Responsive service-intro */
@media (max-width: 768px) {
    .service-intro {
        padding: 2rem 1.5rem;
        margin: 0 auto 2rem;
    }
    
    .service-intro p {
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    .service-intro p:last-child {
        font-size: 1rem;
    }
}


.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-item .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #1e3a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.8rem;
}

.service-item h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-item p {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

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

.service-cta {
    margin-top: 2rem;
    text-align: center;
}

.service-conclusion {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 12px;
    text-align: center;
}

/* Service Details Toggle Styles */
.service-details-content {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.service-more-btn {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-more-btn:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(148, 204, 238, 0.3);
}

.service-more-btn.expanded {
    background: var(--accent-color);
    color: var(--white);
}

.service-more-btn i {
    transition: transform 0.3s ease;
}

.service-more-btn.expanded i {
    transform: rotate(180deg);
}

/* Pricing Section Styles */
.pricing-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.pricing-table {
    max-width: 1000px;
    margin: 3rem auto 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.pricing-card {
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.3s ease;
}

.pricing-card:last-child {
    border-bottom: none;
}

.pricing-card:hover {
    background: rgba(148, 204, 238, 0.05);
}

.pricing-header {
    flex: 0 0 200px;
    margin-right: 2rem;
}

.pricing-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.pricing-time {
    font-size: 0.85rem;
    color: var(--text-light);
    background: rgba(148, 204, 238, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    display: inline-block;
}

.pricing-price {
    flex: 0 0 120px;
    text-align: center;
    margin-right: 2rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
}

.price-note {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.1rem;
}

.pricing-content {
    flex: 1;
    text-align: left;
}

.pricing-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.pricing-content p:last-child {
    margin-bottom: 0;
}

/* Responsive Pricing */
@media (max-width: 768px) {
    .pricing-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .pricing-header {
        flex: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .pricing-header h3 {
        font-size: 1.2rem;
    }
    
    .pricing-price {
        flex: none;
        width: 100%;
        text-align: left;
        margin-right: 0;
    }
    
    .price {
        font-size: 1.4rem;
    }
    
    .pricing-content {
        width: 100%;
    }
    
    .pricing-content p {
        font-size: 0.85rem;
    }
}

.service-conclusion p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

@media (max-width: 768px) {
    .service-conclusion {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .service-conclusion p {
        font-size: 1rem;
    }
}

/* Service Benefits Styles */
.service-benefits {
    margin-top: 4rem;
    padding: 3rem 0;
    background: var(--light-gray);
    border-radius: 12px;
}

.service-benefits h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.benefit-content {
    flex: 1;
}

.benefit-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.benefit-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* Responsive Benefits */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        align-self: center;
        margin-bottom: 1rem;
    }
    
    .service-benefits h3 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
}

.contact-form-section {
    padding: 4rem 0;
    background: var(--white);
    position: relative;
    z-index: 1;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.form-header p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

.contact-form {
    max-width: 100%;
    margin: 0;
    background: transparent;
    padding: 0;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group label {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1rem;
    padding-right: 2.5rem;
}

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

/* Service pages button styles - override for forms */
.contact-form .btn.btn-primary,
.service-details .btn.btn-primary {
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(148, 204, 238, 0.3);
}

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

.contact-form .btn.btn-primary:hover::before,
.service-details .btn.btn-primary:hover::before {
    left: 100%;
}

.contact-form .btn.btn-primary:hover,
.service-details .btn.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(148, 204, 238, 0.4);
}

/* Blog Styles */
.blog-section {
    padding: 2rem 0 4rem;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 350px));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 350px;
}

.blog-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), #1e3a8a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    overflow: hidden;
    position: relative;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
    text-align: left;
}

.blog-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Contact Page Styles */
.contact-section {
    padding: 2rem 0 4rem;
    background: var(--white);
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}


.contact-form-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-form-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.map-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.map-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 600px;
    flex: 1;
}

.map-wrapper h2 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-align: center;
}

.map-wrapper p {
    font-size: 1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 1.5rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.hero-motto {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
    color: var(--primary-color);
}

.partners {
    padding: 4rem 0 2rem;
}

/* About Page Mobile Styles */
@media (max-width: 768px) {
    .about-main {
        margin-top: 0;
        padding: 3rem 0;
    }
    
    .hero-motto {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .partners {
        padding: 3rem 0 1.5rem;
    }
    
    /* Service Pages Mobile Styles */
    .service-header h1 {
        font-size: 2.5rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-item {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .form-header h2 {
        font-size: 2rem;
    }
    
    /* Blog Mobile Styles */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .blog-card {
        max-width: 100%;
    }
    
    .blog-content {
        padding: 1.2rem;
    }
    
    .blog-content h3 {
        font-size: 1.1rem;
    }
    
    .blog-excerpt {
        font-size: 0.85rem;
    }
    
    /* Contact Page Mobile Styles */
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .contact-form-map {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .contact-form-wrapper,
    .map-wrapper {
        padding: 1.5rem;
    }
    
    .form-header h2,
    .map-wrapper h2 {
        font-size: 1.8rem;
    }
    
    .form-header p,
    .map-wrapper p {
        font-size: 0.9rem;
    }
    
    
    .map-container {
        height: 400px;
        border-radius: 8px;
    }
}

/* Mobile Footer */
@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0;
    }
    
    .footer-content {
        gap: 1.2rem;
    }
    
    .footer-main {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
    }
    
    .footer-brand {
        display: none;
    }
    
    .footer-contact {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        width: 100%;
    }
    
    .footer-services {
        text-align: left;
        background: rgba(255, 255, 255, 0.05);
        padding: 1.2rem;
        border-radius: 12px;
    }
    
    .footer-services p:first-child {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
        text-align: left;
    }
    
    .services-columns {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .services-column p {
        font-size: 0.8rem;
        margin: 0 0 0.4rem 0;
        text-align: left;
    }
    
    .services-column p:last-child {
        text-align: left !important;
    }
    
    /* Specifické zarovnání pro Ruční mytí na mobilu */
    .footer-services .services-columns .services-column .rucni-myti {
        text-align: left !important;
    }
    
    .contact-hours-row {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-hours {
        order: -1;
    }
    
    .footer-contact {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .contact-info {
        text-align: left;
        background: rgba(255, 255, 255, 0.05);
        padding: 1rem;
        border-radius: 12px;
    }
    
    .contact-info p {
        justify-content: flex-start;
        font-size: 0.8rem;
        margin: 0 0 0.5rem 0;
    }
    
    .footer-hours {
        text-align: left;
        background: rgba(255, 255, 255, 0.05);
        padding: 1rem;
        border-radius: 12px;
    }
    
    .footer-hours p {
        font-size: 0.8rem;
        margin: 0 0 0.3rem 0;
    }
    
    .footer-hours p:first-child {
        margin-bottom: 0.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
        margin-top: 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.9rem;
    }
    
    .footer-links {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
}

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

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes simpleFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes carDrive {
    0% {
        transform: translateX(-40px);
    }
    50% {
        transform: translateX(40px);
    }
    100% {
        transform: translateX(-40px);
    }
}

@keyframes carBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

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

@keyframes roadMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-40px);
    }
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(30, 58, 138, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(30, 58, 138, 0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-container {
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.9rem;
    }
    
    .phone-number {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .btn-auth {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        font-weight: 500;
        border-radius: 12px;
        text-decoration: none;
        transition: all 0.3s ease;
        border: none;
        display: flex;
        align-items: center;
        gap: 0.4rem;
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(10px);
    }

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

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

    .btn-auth.login {
        background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(59, 130, 246, 0.08) 100%) !important;
        color: var(--text-dark);
    }

    .btn-auth.login:hover {
        background: linear-gradient(135deg, rgba(30, 58, 138, 0.15) 0%, rgba(59, 130, 246, 0.12) 100%) !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
    }

    .btn-auth.login i {
        color: var(--primary-color);
        transition: color 0.3s ease;
    }
}

/* Style dropdown arrow on desktop */
.dropdown .nav-link .fa-chevron-down {
    margin-left: 0.5rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .nav-link .fa-chevron-down {
    transform: rotate(180deg);
}

@media (max-width: 1200px) {
    /* Úplně nový mobilní header design */
    .navbar {
        height: 70px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(30, 58, 138, 0.1);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-container {
        padding: 0 15px;
        height: 70px;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .nav-logo .logo {
        height: 45px;
    }

    .nav-menu {
        display: none;
    }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-left: auto;
    }
    
    .btn-auth.login {
        font-size: 0.8rem;
        padding: 8px 12px;
        white-space: nowrap;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 0;
    }

    .auth-buttons {
        display: none;
    }

    .hamburger-btn {
        display: flex;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        background: var(--primary-color);
        color: white;
        border: none;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        transition: all 0.3s ease;
        margin-left: 8px;
        margin-right: 0;
    }

    .hamburger-btn:hover {
        background: var(--secondary-color);
        transform: scale(1.05);
    }

    .hamburger-btn.active {
        background: var(--secondary-color);
    }

    /* Ikonka účtu v mobilním headeru */
    .user-account-mobile {
        display: flex;
        width: 40px;
        height: 40px;
        padding: 0;
        justify-content: center;
        align-items: center;
        border-radius: 8px;
        margin-left: 8px;
        margin-right: 0;
    }

    .user-account-mobile i {
        font-size: 16px;
    }

    /* Nové mobilní menu */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        padding: 0;
        z-index: 999;
        display: none;
        border-top: 1px solid rgba(30, 58, 138, 0.1);
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu li {
        margin: 0;
    }
    
    .dropdown-menu {
        display: none !important;
    }

    .nav-link {
        display: block;
        padding: 15px 20px;
        color: var(--text-dark);
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        border-bottom: 1px solid rgba(30, 58, 138, 0.08);
        transition: color 0.2s ease;
        margin: 0;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
    }

    .nav-link:hover {
        color: var(--primary-color);
        background: none !important;
        border: none !important;
        box-shadow: none !important;
    }

    .nav-link:active {
        background: none !important;
        border: none !important;
        box-shadow: none !important;
    }

    .nav-link:focus {
        background: none !important;
        border: none !important;
        box-shadow: none !important;
    }

    /* Skrýt aktivní stav na mobilu */
    .nav-link.active {
        background: none !important;
        border: none !important;
        box-shadow: none !important;
    }

    .nav-link.active::before {
        display: none !important;
    }

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

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

    .nav-link i {
        display: inline-block !important;
        margin-right: 10px;
        color: var(--primary-color);
        width: 16px;
        text-align: center;
    }

    /* Dropdown menu */
    .dropdown-menu {
        background: rgba(248, 250, 252, 0.95);
        padding: 0;
        border-left: 3px solid var(--primary-color);
        margin: 0;
        overflow: hidden;
    }

    .dropdown-menu a {
        display: block;
        padding: 6px 20px 6px 40px;
        color: var(--text-dark);
        text-decoration: none;
        font-size: 14px;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
    }

    .dropdown-menu a:hover {
        background: linear-gradient(90deg, rgba(30, 58, 138, 0.05) 0%, rgba(30, 58, 138, 0.02) 100%);
        color: var(--primary-color);
        border-left-color: var(--primary-color);
        padding-left: 45px;
        transform: translateX(3px);
        box-shadow: 0 2px 8px rgba(30, 58, 138, 0.1);
    }


    .scroll-progress {
        top: 70px;
        background: #94CCEE;
        z-index: 9999;
        display: block;
    }

    .hero {
        padding-top: 70px;
    }

    .hero-title {
        font-size: 2.5rem;
        max-width: 100%;
    }

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

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        font-weight: 600;
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
    }

    /* Active dropdown state */
    .dropdown.active .nav-link {
        background: rgba(30, 58, 138, 0.1);
        color: var(--primary-color);
    }

    .dropdown.active .nav-link i {
        transform: rotate(180deg);
        transition: transform 0.3s ease;
    }

    /* Show dropdown menu when active */
    .dropdown-menu {
        display: none !important;
    }

    .dropdown.active .dropdown-menu {
        display: none !important;
    }

    /* Hide dropdown arrow on mobile */
    .dropdown .nav-link .fa-chevron-down {
        display: none !important;
    }

    .about-content {
        gap: 0.4rem;
    }

    .company-values {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .detail-item {
        flex-direction: column !important;
        text-align: center !important;
        gap: 0.8rem;
        opacity: 0;
        transform: translateY(30px);
        animation: slideInUp 0.6s ease-out forwards;
    }

    .detail-item:nth-child(1) {
        animation-delay: 0.1s;
    }

    .detail-item:nth-child(2) {
        animation-delay: 0.2s;
    }

    .detail-item:nth-child(3) {
        animation-delay: 0.3s;
    }
    
    .detail-icon {
        margin: 0 auto !important;
        animation: iconPulse 2s ease-in-out infinite;
    }

    .about-intro p {
        font-size: 1.1rem;
        text-align: center;
    }

    .motto-text h3 {
        font-size: 1.1rem;
    }

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

    .motto-section {
        gap: 0.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .map-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .contact-form-section {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

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

    .partners-category {
        margin-bottom: 3rem;
    }
    
    .category-header {
        margin-bottom: 2rem;
    }
    
    .category-header h3 {
        font-size: 1.5rem;
    }
    
    .partners-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .partner-logo {
        height: 100px;
        padding: 1rem;
    }
    
    .logo-image {
        max-height: 60px;
    }
    
    .logo-placeholder i {
        font-size: 1.5rem;
    }
    
    .logo-placeholder span {
        font-size: 0.8rem;
    }
    
    .partners-banner {
        margin-top: 1.5rem;
    }
    
    .banner-image {
        border-radius: 8px;
    }

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

@media (max-width: 480px) {
    .btn-auth.login {
        font-size: 0.7rem;
        padding: 6px 10px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-actions {
        gap: 6px;
        margin-left: auto;
    }
    
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .service-card {
        padding: 0.8rem;
    }
    
    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .service-card p {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto 0.6rem;
    }
    
    .service-icon i {
        font-size: 1rem;
    }
    
    .service-svg {
        width: 1.2rem;
        height: 1.2rem;
    }
    
    .service-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .value-card,
    .contact-item {
        padding: 1.5rem;
    }

    .testimonials {
        padding: 3rem 0;
    }
    
    .testimonials-carousel {
        max-width: 100%;
        margin: 0 1rem;
        border-radius: 16px;
    }
    
    .testimonial-slide {
        padding: 0.8rem 1rem;
        gap: 1rem;
        min-height: 250px;
    }
    
    .customer-image {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-quote p {
        font-size: 1.1rem;
        padding: 0 0.5rem;
    }
    
    
    .customer-info {
        flex-direction: column;
        gap: 0.3rem;
        text-align: center;
    }
    
    .customer-name {
        font-size: 1rem;
        text-align: center;
    }
    
    .customer-position {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .carousel-controls {
        gap: 1.5rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

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

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img[src] {
    opacity: 1;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .hero,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

/* Active navigation link */
.nav-link.active {
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(59, 130, 246, 0.08) 100%) !important;
    border: 1px solid rgba(30, 58, 138, 0.2);
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.15);
}

.nav-link.active::before {
    opacity: 1;
}

/* Blog Detail Page Styles */
.blog-detail-main {
    padding-top: 100px;
}

.back-to-blog {
    background: var(--white);
    padding: 1rem 0 0.05rem 0;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(148, 204, 238, 0.1);
    border: 1px solid rgba(148, 204, 238, 0.2);
}

.back-btn:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateX(-2px);
    box-shadow: 0 4px 12px rgba(148, 204, 238, 0.3);
}

.back-btn i {
    font-size: 0.9rem;
}

.page-header {
    background: var(--white);
    padding: 3rem 0 2rem;
    margin-bottom: 2rem;
}

.page-header .container {
    max-width: 1200px;
}

.breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

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

.breadcrumb a:hover {
    color: #1e3a8a;
}

.breadcrumb span {
    margin: 0 0.5rem;
    color: var(--text-light);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.article-category {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.article-date,
.article-read-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.page-header h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    text-align: left;
}

.page-header .section-subtitle {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: left;
    opacity: 0.8;
}

.article-featured-image {
    margin: 1.5rem 0 0.3rem 0;
    text-align: center;
}

.featured-img {
    max-width: 100%;
    width: 100%;
    height: 400px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    object-fit: cover;
}

.featured-img:hover {
    transform: scale(1.02);
}

.article-content {
    padding: 0;
}

.content-wrapper {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.article-body {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.article-body h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem;
    line-height: 1.3;
}

.article-body h2:first-child {
    margin-top: 0;
}

.article-body h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 0.8rem;
    line-height: 1.3;
}

.article-body p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.article-conclusion {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    margin: 2.5rem 0;
}

.article-conclusion p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* Article Table Styles */
.table-container {
    margin: 2rem 0;
    overflow-x: auto;
}

.article-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 0;
}

.article-table thead {
    background: var(--accent-color);
}

.article-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
    border: none;
}

.article-table td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-dark);
}

.article-table tbody tr:last-child td {
    border-bottom: none;
}

.article-table tbody tr:nth-child(even) {
    background: #f8fafc;
}

.article-table tbody tr:hover {
    background: #f1f5f9;
}

.article-table td strong {
    color: var(--accent-color);
    font-weight: 600;
}

.article-cta {
    background: var(--accent-color);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

.article-cta h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.article-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.article-cta .btn {
    background: var(--white);
    color: var(--primary-color);
    border: none;
}

.article-cta .btn:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.sidebar-widget h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.related-articles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-article {
    display: block;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid #e2e8f0;
}

.related-article:hover {
    background: #f8fafc;
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.related-article h4 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.related-date {
    color: var(--text-light);
    font-size: 0.85rem;
}

.service-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-links a {
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    border-bottom: 1px solid #e2e8f0;
}

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

/* Blog Detail Mobile Styles */
@media (max-width: 768px) {
    .page-header {
        padding: 2rem 0 1rem;
        margin-bottom: 1.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .article-featured-image {
        margin: 1rem 0 0.2rem 0;
    }
    
    .featured-img {
        height: 300px;
        border-radius: 8px;
    }
    
    .content-wrapper {
        padding: 0 0.5rem;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .article-body {
        padding: 2rem 1.5rem;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
    }
    
    .article-body h3 {
        font-size: 1.2rem;
    }
    
    .article-cta {
        padding: 2rem 1.5rem;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
}

/* Wash Gallery Styles */
.wash-gallery-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

.wash-gallery {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
}

.gallery-slider {
    position: relative;
    background: var(--light-gray);
    border-radius: 25px;
    padding: 4px;
    display: flex;
    width: 500px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gallery-slider-track {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(33.333% - 2.67px);
    height: calc(100% - 8px);
    background: var(--accent-color);
    border-radius: 20px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(148, 204, 238, 0.3);
}

.gallery-slider-track.position-0 {
    transform: translateX(0);
}

.gallery-slider-track.position-1 {
    transform: translateX(100%);
}

.gallery-slider-track.position-2 {
    transform: translateX(200%);
}

.gallery-tab {
    flex: 1;
    padding: 0.8rem 1rem;
    background: transparent;
    border: none;
    border-radius: 20px;
    color: var(--text-light);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    user-select: none;
    font-size: 0.9rem;
}

.gallery-tab:hover {
    color: var(--accent-color);
}

.gallery-tab.active {
    color: var(--white);
}

.gallery-content {
    position: relative;
    min-height: 400px;
    margin-bottom: 0;
    padding-bottom: 0;
    overflow: hidden;
}

.gallery-tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.gallery-tab-content.active {
    display: block !important;
}

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

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

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: var(--white);
    height: 200px;
}

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

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

/* Overlay styles removed - no more popups on hover */

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .gallery-slider {
        width: 100%;
        max-width: 300px;
        background: transparent;
        box-shadow: none;
        padding: 0;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .gallery-slider-track {
        display: none;
    }
    
    .gallery-tab {
        width: 100%;
        max-width: 300px;
        padding: 0.8rem 1.5rem;
        background: var(--white);
        border: 2px solid var(--accent-color);
        border-radius: 8px;
        color: var(--accent-color);
    }
    
    .gallery-tab:hover {
        background: var(--accent-color);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(148, 204, 238, 0.3);
    }
    
    .gallery-tab.active {
        background: var(--accent-color);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(148, 204, 238, 0.3);
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    /* Overlay styles removed for mobile too */
}

/* Company Gallery */
.company-gallery-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

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

.company-gallery-section .gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: var(--white);
    height: 250px;
}

.company-gallery-section .gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.company-gallery-section .gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.company-gallery-section .gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

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

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

.company-gallery-section .gallery-overlay h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* Service Gallery */
.service-gallery-section {
    padding: 4rem 0;
    background: var(--white);
}

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

.service-gallery-section .gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: var(--white);
    height: 220px;
}

.service-gallery-section .gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-gallery-section .gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.service-gallery-section .gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

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

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

.gallery-overlay h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* Responsive Gallery Styles */
@media (max-width: 768px) {
    .company-gallery-section .gallery-grid,
    .service-gallery-section .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .company-gallery-section .gallery-item,
    .service-gallery-section .gallery-item {
        height: 200px;
    }
    
    .gallery-overlay,
    .company-gallery-section .gallery-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .gallery-overlay h4,
    .company-gallery-section .gallery-overlay h4 {
        font-size: 1rem;
    }
}

/* Login Page Styles */
main.login-main,
main.registration-main {
    padding-top: 90px;
    min-height: 100vh;
    background: var(--light-gray);
}

.login-section {
    padding: 4rem 0;
    background: var(--white);
}

.login-container {
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 3rem;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.login-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.login-form-container {
    margin-top: 2rem;
}

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

.login-form label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.login-form input[type="email"],
.login-form input[type="password"],
.login-form input[type="text"],
.login-form input[type="tel"] {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.login-form input[type="email"]:focus,
.login-form input[type="password"]:focus,
.login-form input[type="text"]:focus,
.login-form input[type="tel"]:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(148, 204, 238, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    margin-right: 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.forgot-password {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: var(--secondary-color);
}

.login-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.registration-section {
    padding: 4rem 0;
    background: var(--white);
}

.registration-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 3rem;
}

.registration-header {
    text-align: center;
    margin-bottom: 2rem;
}

.registration-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.info-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.info-section {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-section h4 i {
    font-size: 1rem;
}

.info-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

.registration-process {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 2rem 0 0.5rem 0;
    grid-column: 1 / -1;
}

.registration-process h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.registration-process h4 i {
    font-size: 1rem;
}

.registration-process p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

.registration-form-container {
    margin-top: 2rem;
}

/* Nové styly pro registrační formulář */
.registration-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.registration-form .form-row {
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
    width: 100%;
}

.registration-form .form-row .form-field {
    flex: 1;
}

.form-field {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.form-field label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"] {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-field input[type="text"]:focus,
.form-field input[type="email"]:focus,
.form-field input[type="tel"]:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(148, 204, 238, 0.1);
}

.checkbox-field {
    margin-top: 0.5rem;
}

.checkbox-field .checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin: 0;
}

.checkbox-field .checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-field .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    margin-right: 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-field .checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.checkbox-field .checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.register-btn {
    width: auto;
    max-width: 300px;
    margin: 1rem 0 0 0;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive Login */
@media (max-width: 768px) {
    main.login-main,
    main.registration-main {
        background: var(--white);
    }
    
    .login-container,
    .registration-container {
        margin: 0 1rem;
        padding: 1.5rem;
    }
    
    .login-header h1 {
        font-size: 2rem;
    }
    
    .registration-header h1 {
        font-size: 1.8rem;
    }
    
    .registration-form {
        gap: 0.8rem;
    }
    
    .registration-form .form-row {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .form-field {
        margin: 0;
        padding: 0;
    }
    
    .checkbox-field {
        margin-top: 0.3rem;
    }
    
    .register-btn {
        margin: 0.5rem 0 0 0;
        width: 100%;
        max-width: none;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .info-sections {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .info-section {
        padding: 1rem;
    }
    
    .registration-process {
        margin: 1rem 0;
        padding: 1rem;
    }
    
    .registration-process h4 {
        font-size: 1rem;
    }
    
    .registration-process p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .registration-container {
        margin: 0 0.5rem;
        padding: 1rem;
    }
    
    .registration-form {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .registration-form .form-group:first-child {
        max-width: none;
    }
    
    .info-sections {
        gap: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .info-section {
        padding: 0.8rem;
    }
    
    .info-section h4 {
        font-size: 1rem;
    }
    
    .info-section p {
        font-size: 0.85rem;
    }
    
    .registration-process {
        margin: 0.8rem 0;
        padding: 0.8rem;
    }
    
    .registration-process h4 {
        font-size: 0.95rem;
    }
    
    .registration-process p {
        font-size: 0.8rem;
    }
    
    .register-btn {
        padding: 0.8rem;
        font-size: 1rem;
    }
}


/* Login Link Section */
.login-link {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.login-link p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.login-link-text {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.login-link-text:hover {
    color: var(--secondary-color);
}

/* Privacy Policy Page */
.privacy-section {
    padding: 4rem 0;
    background: var(--white);
}

.privacy-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.privacy-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 2.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

.privacy-content h2:first-child {
    margin-top: 0;
}

.privacy-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.privacy-content ul {
    margin: 1rem 0 1.5rem 0;
    padding-left: 1.5rem;
}

.privacy-content li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

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

/* Responsive Privacy */
@media (max-width: 768px) {
    .privacy-content {
        padding: 0 1rem;
    }
    
    .privacy-content h2 {
        font-size: 1.5rem;
    }
    
    .privacy-content p,
    .privacy-content li {
        font-size: 0.95rem;
    }
}

.terms-link {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* ===== VALIDAČNÍ HLÁŠKY PRO REGISTRACI ===== */

.field-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
}

.field-message {
    font-size: 0.85rem;
    margin-top: 0.4rem;
    display: none; /* Skryté, dokud není aktivováno JS */
    font-weight: 500;
}

.field-message.success {
    color: #22c55e; /* Zelená pro úspěch */
    display: block;
}

.field-message.error {
    color: #ef4444; /* Červená pro chyby */
    display: block;
}

/* Styly pro disabled input */
.form-field input:disabled {
    background-color: #f3f4f6;
    cursor: not-allowed;
    opacity: 0.6;
    border-color: #d1d5db;
}

.form-field input:disabled:focus {
    border-color: #d1d5db;
    box-shadow: none;
}

/* Demo info - jednoduchý text */
.demo-info {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.demo-info p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.demo-info p:first-child {
    margin-top: 0;
}

.demo-info p:last-child {
    margin-bottom: 0;
}

.demo-info code {
    background: #e9ecef;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

/* Simple Image Zoom */
.image-zoom-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.image-zoom-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.zoom-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 70%;
    max-height: 70%;
    cursor: default;
}

.zoomed-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.2s ease;
}

.image-zoom-overlay.active .zoomed-image {
    transform: scale(1);
    opacity: 1;
}

.zoom-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    font-weight: normal;
    transition: all 0.2s ease;
    z-index: 1001;
}

.zoom-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.05);
}

.zoom-close:active {
    transform: scale(0.95);
}

.zoom-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    font-weight: bold;
    transition: all 0.2s ease;
    z-index: 1001;
}

.zoom-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.zoom-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.zoom-prev {
    left: 20px;
}

.zoom-next {
    right: 20px;
}

/* Mobile zoom */
@media (max-width: 768px) {
    .zoom-content {
        max-width: 90%;
        max-height: 80%;
    }
    
    .zoom-close {
        top: 15px;
        right: 15px;
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .zoom-nav {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .zoom-prev {
        left: 15px;
    }
    
    .zoom-next {
        right: 15px;
    }
}

/* ===== MŮJ ÚČET - SPECIFICKÉ STYLY ===== */

/* Account Header */
.account-header {
    background: var(--white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.account-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-align: center;
}

/* Account Tabs */
.account-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-btn:hover {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.tab-btn i {
    font-size: 1rem;
}

/* Tab Content */
.tab-content {
    background: var(--white);
    padding: 2rem 0;
    min-height: 500px;
}

.tab-panel {
    display: none;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.tab-panel.active {
    display: block;
}

/* Form Sections - pouze pro Můj účet */
.account-form .form-section,
.password-form .form-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

/* Form description a section divider - pouze pro Můj účet */
.account-form .form-description,
.password-form .form-description {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.account-form .section-divider,
.password-form .section-divider {
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 2px solid var(--border-color);
}

.account-form .section-divider h3,
.password-form .section-divider h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Warning box - pouze pro Můj účet */
.account-form .warning-box,
.password-form .warning-box {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid var(--accent-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.account-form .warning-text,
.password-form .warning-text {
    color: var(--accent-color);
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}

/* Account Form */
.account-form .form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.account-form .form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.account-form label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.account-form input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.account-form input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(148, 204, 238, 0.1);
}

.account-form input[readonly] {
    background: #f8f9fa;
    color: #6c757d;
}

.field-info {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-top: 0.3rem;
}

/* Tables */
.table-container {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.vehicles-table,
.reservations-table,
.storage-table {
    width: 100%;
    border-collapse: collapse;
}

.vehicles-table th,
.reservations-table th,
.storage-table th {
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
}

.vehicles-table td,
.reservations-table td,
.storage-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.vehicles-table tr:hover,
.reservations-table tr:hover,
.storage-table tr:hover {
    background: #f8f9fa;
}

.no-data {
    text-align: center;
    color: #6c757d;
    font-style: italic;
    padding: 2rem !important;
}

.status-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.active {
    background: #d4edda;
    color: #155724;
}

.action-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.action-link:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.action-link.cancel {
    color: #dc3545;
}

.action-link.cancel:hover {
    color: #c82333;
    text-decoration: underline;
}

/* Section Headers - pouze pro Můj účet */
.account-form .section-header,
.password-form .section-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
}

/* Reservation Actions */
.reservation-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.reservation-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    width: 100%;
}

.reservation-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    min-height: 60px;
}

/* Password Form */
.password-form-container {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.password-title {
    font-size: 2rem;
    font-weight: 700;
    color: #dc3545;
    margin-bottom: 1rem;
    text-align: center;
}

.password-instruction {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.5;
}

.password-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    max-width: 500px;
    margin: 0 auto;
}

.password-form .form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.password-form .form-field {
    display: flex;
    flex-direction: column;
}

.password-form label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.password-form input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.password-form input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(148, 204, 238, 0.1);
}

/* Form Actions - pouze pro Můj účet */
.account-form .form-actions,
.password-form .form-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.account-form .form-actions .btn,
.password-form .form-actions .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
}

/* Specifické styly pro tlačítka v password form */
.password-form .form-actions {
    flex-direction: column;
    gap: 1rem;
    border-top: none;
    padding-top: 0;
}

.password-form .form-actions .btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
}

.password-form .form-actions .btn-primary {
    background: var(--accent-color);
    color: var(--white);
    border: 2px solid var(--accent-color);
}

.password-form .form-actions .btn-primary:hover {
    background: #c0392b;
    border-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(148, 204, 238, 0.4);
}

.password-form .form-actions .btn-secondary {
    background: #f8f9fa;
    color: #6c757d;
    border: 2px solid #dee2e6;
}

/* ===== MODÁLNÍ OKNA PRO MŮJ ÚČET ===== */

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
    overflow: hidden;
}

.modal-header {
    background: var(--accent-color);
    color: var(--white);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.close {
    color: var(--white);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    background: #f8f9fa;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    border-top: 1px solid var(--border-color);
}

.modal-footer .btn {
    min-width: 120px;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
}

/* Modal form styles */
.modal-body .form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.modal-body .form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.modal-body label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.modal-body input,
.modal-body select,
.modal-body textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    box-sizing: border-box;
}

.modal-body input:focus,
.modal-body select:focus,
.modal-body textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(148, 204, 238, 0.1);
}

.modal-body textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* ===== RESPOZIVNÍ DESIGN PRO MŮJ ÚČET ===== */

@media (max-width: 768px) {
    /* Account Header */
    .account-header {
        padding: 1.5rem 0;
    }
    
    .account-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    /* Tabs - horizontální scroll na mobilu */
    .account-tabs {
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
        overflow-x: auto;
        padding: 0 1rem;
        margin: 0 -1rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .account-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .tab-btn {
        flex-shrink: 0;
        padding: 0.8rem 1rem;
        font-size: 0.8rem;
        white-space: nowrap;
        min-width: 120px;
        justify-content: center;
    }
    
    .tab-btn i {
        font-size: 0.9rem;
        margin-right: 0.3rem;
    }
    
    /* Tab Content */
    .tab-content {
        padding: 1rem 0;
        min-height: 400px;
    }
    
    .tab-panel {
        padding: 0 0.5rem;
        max-width: 100%;
    }
    
    /* Form Sections */
    .account-form .form-section,
    .password-form .form-section {
        padding: 1rem;
        margin: 0 0.5rem;
        border-radius: 8px;
    }
    
    .account-form .form-description,
    .password-form .form-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .account-form .section-divider,
    .password-form .section-divider {
        margin: 1.5rem 0;
        padding: 1rem 0;
    }
    
    .account-form .section-divider h3,
    .password-form .section-divider h3 {
        font-size: 1.1rem;
    }
    
    /* Form Fields */
    .account-form .form-row {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .account-form label {
        font-size: 0.9rem;
    }
    
    .account-form input {
        padding: 0.7rem 0.8rem;
        font-size: 0.9rem;
    }
    
    /* Warning Box */
    .account-form .warning-box,
    .password-form .warning-box {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .account-form .warning-text,
    .password-form .warning-text {
        font-size: 0.9rem;
    }
    
    /* Tables - horizontální scroll */
    .table-container {
        margin: 0 0.5rem;
        overflow-x: auto;
        border-radius: 8px;
    }
    
    .vehicles-table,
    .reservations-table,
    .storage-table {
        font-size: 0.8rem;
        min-width: 600px;
    }
    
    .vehicles-table th,
    .reservations-table th,
    .storage-table th,
    .vehicles-table td,
    .reservations-table td,
    .storage-table td {
        padding: 0.6rem 0.4rem;
        white-space: nowrap;
    }
    
    /* Status badges */
    .status-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    /* Action links */
    .action-link {
        font-size: 0.8rem;
    }
    
    /* Reservation Buttons */
    .reservation-actions {
        margin-top: 1.5rem;
    }
    
    .reservation-buttons {
        max-width: 100%;
        margin: 0 0.5rem;
    }
    
    .reservation-btn {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
        min-height: 50px;
        gap: 0.5rem;
    }
    
    .reservation-btn i {
        font-size: 0.9rem;
    }
    
    /* Password Form */
    .password-form-container {
        padding: 0 0.5rem;
    }
    
    .password-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .password-instruction {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .password-form {
        padding: 1.5rem;
    }
    
    .password-form .form-row {
        margin-bottom: 1rem;
    }
    
    .password-form label {
        font-size: 0.9rem;
    }
    
    .password-form input {
        padding: 0.7rem 0.8rem;
        font-size: 0.9rem;
    }
    
    /* Form Actions */
    .account-form .form-actions,
    .password-form .form-actions {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }
    
    .account-form .form-actions .btn,
    .password-form .form-actions .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Modal */
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-header h3 {
        font-size: 1.1rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-footer {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .modal-footer .btn {
        width: 100%;
        padding: 0.8rem 1rem;
    }
    
    .modal-body .form-row {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .modal-body label {
        font-size: 0.9rem;
    }
    
    .modal-body input,
    .modal-body select,
    .modal-body textarea {
        padding: 0.7rem 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* Account Header */
    .account-header {
        padding: 1rem 0;
    }
    
    .account-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    /* Tabs - ještě menší na malých obrazovkách */
    .account-tabs {
        padding: 0 0.5rem;
        margin: 0 -0.5rem;
    }
    
    .tab-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.75rem;
        min-width: 100px;
    }
    
    .tab-btn i {
        font-size: 0.8rem;
        margin-right: 0.2rem;
    }
    
    /* Tab Content */
    .tab-content {
        padding: 0.5rem 0;
        min-height: 350px;
    }
    
    .tab-panel {
        padding: 0 0.25rem;
    }
    
    /* Form Sections */
    .account-form .form-section,
    .password-form .form-section {
        padding: 0.8rem;
        margin: 0 0.25rem;
    }
    
    .account-form .form-description,
    .password-form .form-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .account-form .section-divider,
    .password-form .section-divider {
        margin: 1rem 0;
        padding: 0.8rem 0;
    }
    
    .account-form .section-divider h3,
    .password-form .section-divider h3 {
        font-size: 1rem;
    }
    
    /* Form Fields */
    .account-form .form-row {
        gap: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .account-form label {
        font-size: 0.85rem;
    }
    
    .account-form input {
        padding: 0.6rem 0.7rem;
        font-size: 0.85rem;
    }
    
    /* Warning Box */
    .account-form .warning-box,
    .password-form .warning-box {
        padding: 0.8rem;
        margin: 0.8rem 0;
    }
    
    .account-form .warning-text,
    .password-form .warning-text {
        font-size: 0.85rem;
    }
    
    /* Tables */
    .table-container {
        margin: 0 0.25rem;
    }
    
    .vehicles-table,
    .reservations-table,
    .storage-table {
        font-size: 0.75rem;
        min-width: 500px;
    }
    
    .vehicles-table th,
    .reservations-table th,
    .storage-table th,
    .vehicles-table td,
    .reservations-table td,
    .storage-table td {
        padding: 0.5rem 0.3rem;
        font-size: 0.75rem;
    }
    
    /* Status badges */
    .status-badge {
        font-size: 0.65rem;
        padding: 0.15rem 0.5rem;
    }
    
    /* Action links */
    .action-link {
        font-size: 0.75rem;
    }
    
    /* Reservation Buttons */
    .reservation-actions {
        margin-top: 1rem;
    }
    
    .reservation-buttons {
        margin: 0 0.25rem;
    }
    
    .reservation-btn {
        padding: 0.7rem 0.8rem;
        font-size: 0.8rem;
        min-height: 45px;
    }
    
    .reservation-btn i {
        font-size: 0.85rem;
    }
    
    /* Password Form */
    .password-form-container {
        padding: 0 0.25rem;
    }
    
    .password-title {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
    }
    
    .password-instruction {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .password-form {
        padding: 1rem;
    }
    
    .password-form .form-row {
        margin-bottom: 0.8rem;
    }
    
    .password-form label {
        font-size: 0.85rem;
    }
    
    .password-form input {
        padding: 0.6rem 0.7rem;
        font-size: 0.85rem;
    }
    
    /* Form Actions */
    .account-form .form-actions,
    .password-form .form-actions {
        margin-top: 1rem;
        padding-top: 0.8rem;
    }
    
    .account-form .form-actions .btn,
    .password-form .form-actions .btn {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Modal */
    .modal-content {
        width: 98%;
        margin: 2% auto;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 0.8rem 1rem;
    }
    
    .modal-header h3 {
        font-size: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-footer {
        padding: 0.8rem 1rem;
        gap: 0.6rem;
    }
    
    .modal-footer .btn {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .modal-body .form-row {
        gap: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .modal-body label {
        font-size: 0.85rem;
    }
    
    .modal-body input,
    .modal-body select,
    .modal-body textarea {
        padding: 0.6rem 0.7rem;
        font-size: 0.85rem;
    }
}

/* ===== PNEUSERVIS REZERVACE - SPECIFICKÉ STYLY ===== */
/* Tyto styly se aplikují pouze na stránku pneuservis-rezervace.html */

/* Hlavní kontejner pro rezervace */
.reservation-main {
    padding-top: 6rem;
    min-height: 100vh;
    background: #f8f9fa;
}

/* Hlavička rezervací */
.reservation-header {
    background: var(--white);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.reservation-header .section-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-align: center;
    text-transform: uppercase;
}

.reservation-header .section-header p {
    font-size: 1rem;
    color: var(--text-dark);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 1rem auto;
    line-height: 1.4;
}

/* Legenda kalendáře */
.calendar-legend {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
    margin: 0.5rem auto;
    padding: 0.8rem 1rem;
    background: transparent;
    border-radius: 0;
    max-width: 800px;
    width: 100%;
}

.calendar-legend p {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-dark);
    margin: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    margin: 0;
}

.legend-color.unavailable {
    background: #888;
}

.legend-color.occupied {
    background: #cb86a6;
}

.legend-color.available {
    background: #6ac37a;
}

.legend-color.selected {
    background: #abb50b;
}

.legend-color.own {
    background: #fbbf24;
}

/* Navigace kalendáře */
.calendar-navigation-section {
    background: var(--white);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.calendar-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.week-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.2rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
    text-decoration:none;
}

.week-nav-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

.current-date-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    min-width: 180px;
}

.current-date-display i {
    color: #6b7280;
    font-size: 0.9rem;
}

.calendar-navigation .datepicker {
    padding: 0.8rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    text-align: center;
    min-width: 180px;
    background: var(--white);
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.calendar-navigation .datepicker:hover {
    border-color: var(--accent-color);
}

.calendar-navigation .datepicker:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(148, 204, 238, 0.1);
}

/* Sekce kalendářního gridu */
.calendar-grid-section {
    background: var(--white);
    padding: 0.5rem 0;
}

/* Kontejner pro celý den */
.day-container {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* Nadpisy dnů - zobrazené jako hlavní nadpis pro pracoviště */
.den_nadpis {
    background: linear-gradient(135deg, #94CCEE 0%, #7ba3d1 100%) !important;
    padding: 12px 20px !important;
    margin: 0 !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-align: center !important;
    border: none !important;
    border-radius: 0 !important;
}

.den_nadpis.dnes {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
    color: #ffffff !important;
}

/* Styly pro nadpis pracoviště - starý formát */
.calendar-grid-section strong {
    display: block;
    margin: 0.4rem 0 0.2rem 0;
    padding: 0.2rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
}

/* Nové hezčí zobrazení stanovišť */
.workplace-card {
    background: #f8f9fa;
    border: none;
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: none;
    overflow: hidden;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e5e7eb;
}

.workplace-card:last-child {
    border-bottom: none;
}

.workplace-card:hover {
    background: #f1f3f4;
    transform: none;
}

.workplace-header {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #e5e7eb;
}

.workplace-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 10px;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.workplace-info {
    flex: 1;
}

.workplace-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.2rem 0;
}

.workplace-date {
    font-size: 0.85rem;
    color: var(--accent-color);
    margin: 0;
    line-height: 1.3;
    font-weight: 600;
}

.time-slots-grid {
    padding: 1rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    background: var(--white);
    align-items: flex-start;
    justify-content: flex-start;
}

/* Skrýt bílé pruhy mezi pracovišti */
.calendar-grid-section div[style*="clear:both"] {
    display: none !important;
}

/* Styly pro kontejnery časových slotů - inspirováno designem */
.time-slots-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.3rem !important;
    padding: 0.6rem !important;
    background: #f8f9fa !important;
    border-radius: 6px !important;
    margin-bottom: 0.5rem !important;
    border: 1px solid #e5e7eb !important;
}

.time-row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.3rem !important;
    justify-content: flex-start !important;
    align-items: center !important;
}

/* Staré kontejnery pro kompatibilitu */
.calendar-grid-section div[style*="height:72px"] {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.3rem !important;
    padding: 0.4rem !important;
    background: #f8f9fa !important;
    border-radius: 6px !important;
    margin-bottom: 0.4rem !important;
    min-height: auto !important;
    height: auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
    align-items: flex-start !important;
    align-content: flex-start !important;
    justify-content: flex-start !important;
    border: 1px solid #e9ecef !important;
}

/* Časové sloty */
.pracoviste-blocks {
    display: inline-block !important;
    padding: 0.5rem 0.8rem !important;
    margin: 0.2rem !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    color: var(--white) !important;
    font-weight: 500 !important;
    font-size: 0.85rem !important;
    text-align: center !important;
    min-width: 60px !important;
    height: 36px !important;
    line-height: 1.2 !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    border: 1px solid transparent !important;
    box-sizing: border-box !important;
    vertical-align: top !important;
    flex-shrink: 0 !important;
}

/* Nedostupné sloty (šedé) - inspirováno designem */
.pracoviste-blocks.nothing {
    background: #e5e7eb !important;
    color: #6b7280 !important;
    cursor: not-allowed !important;
    border: 1px solid #d1d5db !important;
}

.pracoviste-blocks.nothing:hover {
    background: #e5e7eb !important;
    transform: none !important;
}

/* Obsazené sloty (růžové) - inspirováno designem */
.pracoviste-blocks.blokace {
    background: #f9a8d4 !important;
    color: #831843 !important;
    cursor: not-allowed !important;
    border: 1px solid #f472b6 !important;
}

.pracoviste-blocks.blokace:hover {
    background: #f9a8d4 !important;
    transform: none !important;
}

/* Volné sloty (zelené) - inspirováno designem */
.pracoviste-blocks:not(.nothing):not(.blokace):not(.vlastni) {
    background: #86efac !important;
    color: #14532d !important;
    border: 1px solid #4ade80 !important;
}

/* Vlastní termín uživatele (žluté) */
.pracoviste-blocks.vlastni {
    background: #fbbf24 !important;
    color: #92400e !important;
    border: 1px solid #f59e0b !important;
    font-weight: 600 !important;
}

.pracoviste-blocks:not(.nothing):not(.blokace):not(.vlastni):hover {
    background: #4ade80 !important;
    color: #14532d !important;
    border-color: #22c55e !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.pracoviste-blocks.vlastni:hover {
    background: #f59e0b !important;
    color: #92400e !important;
    border-color: #d97706 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

/* Footer rezervací */
.reservation-footer {
    background: var(--white);
    padding: 0.5rem 0;
    border-top: 1px solid var(--border-color);
    margin-top: 0.5rem;
}

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

.reservation-info p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.reservation-link {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 0.8rem;
}

.reservation-link:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.reservation-info a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.reservation-info a:hover {
    color: #c0392b;
    text-decoration: underline;
}

/* ===== PNEUSERVIS FORMULÁŘ - SPECIFICKÉ STYLY ===== */
/* Tyto styly se aplikují pouze na stránku pneuservis-formular.html */

/* Hlavní kontejner pro rezervační formulář */
.reservation-form-main {
    padding-top: 6rem;
    min-height: 100vh;
    background: #f8f9fa;
}

/* Hlavička rezervačního formuláře */
.reservation-form-header {
    background: var(--white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.form-header-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-align: center;
    text-transform: uppercase;
}

.form-header-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
    line-height: 1.6;
}

.important-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin: 1.5rem auto 0 auto;
    max-width: 800px;
    text-align: center;
}

.important-notice p {
    color: #856404;
    font-weight: 600;
    margin: 0;
    font-size: 1rem;
}

/* Timer */
.form-timer {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    margin: 1.5rem auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    max-width: 400px;
    width: auto;
}

.form-timer:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
    border-color: var(--accent-color);
}

.form-timer i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

#timer {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 700;
    background: transparent;
    padding: 0;
    border: none;
    min-width: auto;
    text-align: center;
}

.timer-note {
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.2;
}

/* Sekce rezervačního formuláře */
.reservation-form-section {
    background: #f8f9fa;
    padding: 2rem 0;
}

.reservation-form-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

/* Chybová hláška */
.form-error-message {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.error-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.error-content i {
    color: #dc3545;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.error-text h4 {
    color: #721c24;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.error-text p {
    color: #721c24;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.error-close {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    background: none;
    border: none;
    color: #721c24;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.2rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.error-close:hover {
    background: rgba(114, 28, 36, 0.1);
    color: #dc3545;
}

/* Úspěšná hláška */
.form-success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.success-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.success-content i {
    color: #28a745;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.success-text h4 {
    color: #155724;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.success-text p {
    color: #155724;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.success-close {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    background: none;
    border: none;
    color: #155724;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.2rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.success-close:hover {
    background: rgba(21, 87, 36, 0.1);
    color: #28a745;
}

/* Sekce formuláře */
.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e9ecef;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--accent-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section h3::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* Formulářové řádky */
.online-reservation-form .form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.online-reservation-form .form-row:last-child {
    margin-bottom: 0;
}

.online-reservation-form .form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Labely */
.online-reservation-form label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.online-reservation-form label::after {
    content: '';
    width: 2px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 50%;
    margin-left: 0.2rem;
}

/* Inputy */
.online-reservation-form input,
.online-reservation-form select,
.online-reservation-form textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.online-reservation-form input:focus,
.online-reservation-form select:focus,
.online-reservation-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(148, 204, 238, 0.1);
    transform: translateY(-1px);
}

.online-reservation-form input[readonly] {
    background: #f8f9fa;
    color: var(--accent-color);
    font-weight: 600;
    cursor: not-allowed;
}

/* Date-time inputs */
.date-time-inputs {
    display: flex;
    gap: 0.5rem;
}

.date-time-inputs input {
    flex: 1;
}

/* Input s ikonou */
.input-with-icon {
    position: relative;
}

.input-with-icon input {
    padding-right: 2.8rem;
}

.input-with-icon i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    pointer-events: none;
    font-size: 1rem;
}

/* Select s ikonou */
.select-with-icon {
    position: relative;
}

.select-with-icon select {
    padding-right: 2.8rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.select-with-icon i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    pointer-events: none;
    font-size: 1rem;
}

/* Radio skupiny */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.8rem;
}

.radio-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    font-weight: normal;
    line-height: 1.5;
    padding: 0.8rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.radio-label:hover {
    background: #f8f9fa;
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    margin-top: 0.1rem;
    transition: all 0.3s ease;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: var(--accent-color);
    background: var(--accent-color);
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
}

/* Textarea */
.online-reservation-form textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
    line-height: 1.5;
}

/* GDPR souhlas */
.gdpr-consent {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin: 2rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    font-weight: normal;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 0.1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    border-color: var(--accent-color);
    background: var(--accent-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 12px;
}

.checkbox-text {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.terms-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: #c0392b;
    text-decoration: underline;
}

/* Tlačítka */
.form-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
}

.form-actions .btn {
    min-width: 180px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background: #c0392b;
    border-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(148, 204, 238, 0.4);
}

/* Tlačítka pro formuláře - šedé */
.form-actions .btn-secondary {
    background: #6c757d;
    color: var(--white);
    border: 2px solid #6c757d;
}

.form-actions .btn-secondary:hover {
    background: #5a6268;
    border-color: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
}

/* ===== RESPOZIVNÍ DESIGN PRO PNEUSERVIS ===== */

@media (max-width: 768px) {
    /* Pneuservis rezervace */
    .reservation-header .section-header h1 {
        font-size: 1.8rem;
    }
    
    .reservation-header .section-header p {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    
    .calendar-legend {
        flex-wrap: nowrap;
        gap: 1rem;
        padding: 0.6rem 0.8rem;
        margin: 0.8rem;
        overflow-x: auto;
    }
    
    .calendar-legend p {
        font-size: 0.8rem;
        flex-shrink: 0;
    }
    
    .calendar-navigation {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0 1rem;
    }
    
    .calendar-navigation .den {
        width: 100%;
        justify-content: center;
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .calendar-navigation .datepicker {
        width: 100%;
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .calendar-grid-section {
        padding: 0.4rem 0;
    }
    
    .den_nadpis {
        font-size: 0.9rem !important;
        padding: 4px 6px !important;
        margin: 0.3rem 0 0.2rem 0 !important;
    }
    
    .calendar-grid-section strong {
        font-size: 0.9rem;
        margin: 0.3rem 0 0.2rem 0;
    }
    
    /* Responzivní styly pro nové stanoviště */
    .day-container {
        margin-bottom: 1.5rem;
    }
    
    .workplace-card {
        margin-bottom: 0.8rem;
    }
    
    .workplace-header {
        padding: 0.8rem 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .workplace-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 0;
    }
    
    .workplace-title {
        font-size: 1rem;
    }
    
    .workplace-date {
        font-size: 0.8rem;
    }
    
    .time-slots-grid {
        padding: 0.8rem 1rem;
        gap: 0.3rem;
    }
    
    .pracoviste-blocks {
        min-width: 45px;
        padding: 0.3rem 0.5rem;
        font-size: 0.75rem;
        height: 26px;
    }
    
    .calendar-grid-section div[style*="height:72px"] {
        gap: 0.2rem;
        padding: 0.3rem;
        margin-bottom: 0.3rem;
    }
    
    .reservation-info p {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    
    .reservation-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    /* Pneuservis formulář */
    .form-header-content h1 {
        font-size: 2rem;
    }
    
    .form-header-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .important-notice {
        margin: 1rem;
        padding: 0.8rem 1rem;
    }
    
    .important-notice p {
        font-size: 0.9rem;
    }
    
    .form-timer {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        max-width: 350px;
        gap: 0.8rem;
    }
    
    .form-timer i {
        font-size: 1rem;
    }
    
    #timer {
        font-size: 1rem;
        padding: 0;
        min-width: auto;
    }
    
    .timer-note {
        font-size: 0.8rem;
    }
    
    .reservation-form-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .form-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .form-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .online-reservation-form .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .date-time-inputs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .form-actions .btn {
        width: 100%;
        min-width: auto;
    }
    
    .radio-group {
        gap: 0.8rem;
    }
    
    .radio-label {
        padding: 0.6rem;
    }
    
    .gdpr-consent {
        padding: 1rem;
        margin: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    /* Pneuservis rezervace */
    .day-container {
        margin-bottom: 1.2rem;
    }
    
    .reservation-header .section-header h1 {
        font-size: 1.6rem;
    }
    
    .calendar-legend {
        margin: 0.5rem;
        padding: 0.5rem 0.6rem;
        gap: 0.8rem;
        overflow-x: auto;
    }
    
    .calendar-legend p {
        font-size: 0.75rem;
        flex-shrink: 0;
    }
    
    .legend-color {
        width: 14px;
        height: 14px;
    }
    
    .calendar-navigation .den {
        padding: 0.5rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .calendar-navigation .datepicker {
        padding: 0.5rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .den_nadpis {
        font-size: 0.85rem !important;
        padding: 5px 6px !important;
        margin: 0.8rem 0 0.4rem 0 !important;
    }
    
    .calendar-grid-section strong {
        font-size: 0.85rem;
        margin: 0.6rem 0 0.3rem 0;
    }
    
    .pracoviste-blocks {
        min-width: 40px;
        padding: 0.25rem 0.4rem;
        font-size: 0.7rem;
        height: 24px;
    }
    
    .calendar-grid-section div[style*="height:72px"] {
        gap: 0.25rem;
        padding: 0.4rem;
        margin-bottom: 0.4rem;
    }
    
    .reservation-info p {
        font-size: 0.85rem;
    }
    
    .reservation-link {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .calendar-navigation {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .week-nav-btn {
        width: 100%;
        justify-content: center;
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
    
    .current-date-display {
        width: 100%;
        min-width: auto;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        justify-content: center;
    }
    
    .calendar-navigation .datepicker {
        width: 100%;
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
        min-width: auto;
    }
    
    /* Responzivní styly pro nové stanoviště - malé obrazovky */
    .workplace-header {
        padding: 0.6rem 0.8rem;
        gap: 0.6rem;
    }
    
    .workplace-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .workplace-title {
        font-size: 0.95rem;
    }
    
    .workplace-date {
        font-size: 0.75rem;
    }
    
    .time-slots-grid {
        padding: 0.6rem 0.8rem;
        gap: 0.2rem;
    }
    
    /* Pneuservis formulář */
    .form-header-content h1 {
        font-size: 1.8rem;
    }
    
    .reservation-form-container {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .form-section h3 {
        font-size: 1.1rem;
    }
    
    .online-reservation-form input,
    .online-reservation-form select,
    .online-reservation-form textarea {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }
    
    .form-actions .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .radio-label {
        padding: 0.5rem;
        gap: 0.8rem;
    }
    
    .checkbox-label {
        gap: 0.8rem;
    }
    
    .checkmark {
        width: 18px;
        height: 18px;
    }
    
    .radio-custom {
        width: 18px;
        height: 18px;
    }
    
    .form-timer {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
        gap: 0.7rem;
        max-width: 300px;
    }
    
    .form-timer i {
        font-size: 0.9rem;
    }
    
    #timer {
        font-size: 0.9rem;
        padding: 0;
        min-width: auto;
    }
    
    .timer-note {
        font-size: 0.75rem;
    }
}



.ui-datepicker-trigger { position: absolute; top: 11px; left:210px;cursor:pointer;}
.den_nadpis {margin-top:1.1em !important}

.ui.grid > .column:not(.row) {
    padding-top: 0rem;
    padding-bottom: 0rem;
}

