/* CSS proměnné pro konzistentní barvy a hodnoty */
:root {
    /* Základní barvy */
    --primary-color: #0052A5;
    --primary-dark: #004080;
    --primary-light: #1a6ebd;
    --secondary-color: #FFDD00;
    --secondary-dark: #FFD000;
    --secondary-light: #FFEA80;
    
    /* Neutrální barvy */
    --text-color: #333;
    --text-light: #555;
    --text-lighter: #777;
    --bg-light: #f8f9fa;
    --bg-lighter: #f0f0f0;
    --border-color: #ddd;
    
    /* Akcentové barvy */
    --success-color: #27AE60;
    --error-color: #E74C3C;
    --warning-color: #f1c40f;
    
    /* Stíny */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 15px 35px rgba(0, 0, 0, 0.2);
    
    /* Přechody */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Zaoblení */
    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 15px;
    --radius-xl: 20px;
    --radius-full: 50px;
    
    /* Velikosti písma */
    --font-xs: 0.75rem;
    --font-sm: 0.875rem;
    --font-md: 1rem;
    --font-lg: 1.25rem;
    --font-xl: 1.5rem;
    --font-2xl: 2rem;
    --font-3xl: 2.5rem;
}

/* Základní reset a nastavení */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: #fff;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-normal);
}

ul {
    list-style: none;
}

/* Animace pro postupné zobrazení prvků */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay-1 {
    animation-delay: 0.2s;
}

.fade-in-delay-2 {
    animation-delay: 0.4s;
}

.fade-in-delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigační lišta */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    padding: 15px 0;
    transition: all var(--transition-normal);
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 10px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
}

.mobile-menu-toggle:hover {
    background-color: rgba(0, 82, 165, 0.1);
}

.mobile-menu-toggle:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Mobile navigation styles */
@media (max-width: 768px) {
    .navbar {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        padding: 10px 0;
    }
    
    .navbar-container {
        flex-direction: row !important;
        justify-content: space-between;
        align-items: center;
        position: relative;
        padding: 0 20px;
        gap: 0;
    }
    
    .logo {
        order: 1;
        flex-shrink: 0;
    }
    
    .logo img {
        max-height: 50px;
    }
    
    .mobile-menu-toggle {
        display: block !important;
        order: 2;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--primary-color);
        cursor: pointer;
        padding: 10px;
        border-radius: var(--radius-sm);
        transition: all var(--transition-normal);
        z-index: 1001;
    }
    
    .mobile-menu-toggle:hover {
        background-color: rgba(0, 82, 165, 0.1);
    }
    
    .mobile-menu-toggle:focus {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
    }
    
    /* Skrytí desktop navigace na mobilech */
    .nav-links {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        z-index: 999;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        order: 3;
        margin-top: 10px;
    }
    
    .nav-links.mobile-open {
        display: flex !important;
    }
    
    .nav-links li {
        margin: 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
        padding: 15px 0;
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        display: block;
        padding: 10px 15px;
        font-size: var(--font-md);
        border-radius: var(--radius-md);
        transition: all var(--transition-normal);
    }
    
    .nav-links a:hover {
        background-color: rgba(0, 82, 165, 0.1);
        color: var(--primary-color);
    }
    
    .btn-portal {
        margin: 10px auto;
        display: inline-block;
        min-width: 200px;
    }
    
    .search-container {
        margin: 15px auto 0;
        max-width: 250px;
    }
    
    .search-container input {
        width: 100%;
    }
    
    .search-container input:focus {
        width: 100%;
    }
}

/* Skrytí desktop navigace na všech mobilních zařízeních */
@media (max-width: 768px) {
    .nav-links {
        display: none !important;
    }
    
    .nav-links.mobile-open {
        display: flex !important;
    }
    
    .mobile-menu-toggle {
        display: block !important;
    }
}

/* Zajištění, že se hamburger menu zobrazí i na menších mobilech */
@media (max-width: 480px) {
    .mobile-menu-toggle {
        display: block !important;
        font-size: 1.3rem;
        padding: 8px;
    }
    
    .navbar-container {
        padding: 0 15px;
    }
    
    .logo img {
        max-height: 45px;
    }
}

@media (max-width: 360px) {
    .mobile-menu-toggle {
        display: block !important;
        font-size: 1.2rem;
        padding: 6px;
    }
    
    .navbar-container {
        padding: 0 12px;
    }
    
    .logo img {
        max-height: 40px;
    }
}

.btn-portal {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white !important;
    border: none;
    padding: 10px 20px;
    font-size: var(--font-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.btn-portal:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: var(--font-xl);
    font-weight: 700;
    color: var(--primary-color);
    transition: transform var(--transition-normal);
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    transition: transform var(--transition-normal);
    max-height: 80px;
    width: auto;
}

.logo:hover img {
    transform: scale(1.05);
}

.logo span {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
    position: relative;
}

.nav-links a {
    font-weight: 500;
    transition: all var(--transition-normal);
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-normal);
}

.nav-links a:not(.btn):hover::after,
.nav-links a.active:not(.btn)::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

/* Page Header */
.page-header {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
    margin-top: 100px;
}

.page-header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    z-index: -2;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.page-header-content {
    text-align: center;
    z-index: 1;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: var(--font-sm);
    opacity: 0.9;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-current {
    color: var(--secondary-color);
    font-weight: 600;
}

.page-title {
    font-size: var(--font-3xl);
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-subtitle {
    font-size: var(--font-lg);
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Hero sekce */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
    margin-top: 0;
    padding-top: 100px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    z-index: -2;
    transform: scale(1.05);
    animation: pulse 15s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    gap: 60px;
    z-index: 1;
}

.hero-left {
    flex: 1;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 1s ease forwards 0.3s;
}

.hero-right {
    flex: 1;
    text-align: center;
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 1s ease forwards 0.5s;
}

.about-section {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg);
}

.about-section h2 {
    font-size: var(--font-2xl);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.about-section p {
    font-size: var(--font-md);
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.95);
}

.hero-content {
    max-width: 100%;
    padding: 0;
    z-index: 1;
}

@keyframes heroContentFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: var(--font-3xl);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.7s;
}

.hero-slogan {
    font-size: var(--font-xl);
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    min-height: 80px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.9s;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: var(--text-color);
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.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: all 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Sekce */
.section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: var(--font-2xl);
    margin-bottom: 50px;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: width var(--transition-normal);
}

.section:hover .section-title::after {
    width: 120px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Galerie */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    top: 0;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform var(--transition-normal);
    max-height: 100%;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-caption {
    padding: 20px;
    background-color: white;
    transition: all var(--transition-normal);
    position: relative;
}

.gallery-caption::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background-color: var(--primary-color);
    transition: height var(--transition-normal);
}

.gallery-item:hover .gallery-caption::before {
    height: 100%;
}

.gallery-caption h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
    transition: transform var(--transition-normal);
}

.gallery-item:hover .gallery-caption h3 {
    transform: translateX(8px);
}

/* Sekce Naše práce */
.our-work-section {
    background-color: var(--bg-light);
    position: relative;
}

.our-work-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 221, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.work-category-title {
    font-size: var(--font-xl);
    color: var(--primary-color);
    margin: 40px 0 20px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.work-category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--secondary-color);
}

.work-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Responzivní úpravy pro sekci Naše práce */
@media (max-width: 768px) {
    .work-category-title {
        font-size: var(--font-lg);
        margin: 30px 0 15px;
    }
    
    .work-gallery {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 480px) {
    .work-category-title {
        font-size: var(--font-md);
        margin: 25px 0 15px;
    }
    
    .work-gallery {
        grid-template-columns: 1fr;
    }
}

.work-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    background-color: white;
    position: relative;
    top: 0;
}

.work-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.work-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all var(--transition-normal);
    max-height: 100%;
}

.work-item:hover .work-img {
    transform: scale(1.05);
}

.work-caption {
    padding: 20px;
    transition: all var(--transition-normal);
}

.work-caption h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: var(--font-lg);
    transition: all var(--transition-normal);
}

.work-item:hover .work-caption h3 {
    color: var(--primary-light);
}

.work-caption p {
    color: var(--text-light);
    font-size: var(--font-sm);
    line-height: 1.6;
    transition: all var(--transition-normal);
}

.work-item:hover .work-caption p {
    color: var(--text-color);
}

/* Sekce Recenze */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    top: 0;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    color: rgba(0, 82, 165, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
    transition: all var(--transition-normal);
}

.testimonial-card:hover::before {
    transform: scale(1.2);
    color: rgba(0, 82, 165, 0.15);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-light);
    position: relative;
    z-index: 1;
    transition: all var(--transition-normal);
}

.testimonial-card:hover .testimonial-text {
    color: var(--text-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-lighter);
    font-size: var(--font-xl);
    transition: all var(--transition-normal);
}

.testimonial-card:hover .author-avatar {
    background-color: var(--primary-light);
    color: white;
    transform: scale(1.1);
}

.author-info h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    transition: all var(--transition-normal);
}

.testimonial-card:hover .author-info h4 {
    color: var(--primary-light);
}

.author-info p {
    color: var(--text-lighter);
    font-size: var(--font-sm);
}

.rating {
    color: var(--warning-color);
    margin-top: 5px;
    transition: all var(--transition-normal);
}

.testimonial-card:hover .rating {
    transform: scale(1.1);
}

/* Modální okno */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
    display: flex;
}

.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    width: 80%;
    max-width: 600px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-lighter);
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-color);
}

/* Zápatí */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.footer-column:hover h3::after {
    width: 80px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    margin-top: 40px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Font Awesome ikony - obecné nastavení */
.fas, .far, .fa, .fab {
    font-size: 1rem; /* Základní velikost ikon */
}

/* Responzivní design - Pokročilé breakpointy pro všechna mobilní zařízení */

/* Extra Large Tablets (1024px - 1200px) */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
        padding: 0 30px;
    }
    
    .navbar-container {
        padding: 0 30px;
    }
    
    .hero-container {
        gap: 50px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* Large Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        max-width: 900px;
        padding: 0 25px;
    }
    
    .navbar-container {
        padding: 0 25px;
    }
    
    .hero-container {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-slogan {
        font-size: var(--font-lg);
    }
    
    .section {
        padding: 70px 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 35px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 35px;
    }
    
    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 35px;
    }
}

/* Standard Tablets (768px) */
@media (max-width: 768px) {
    .navbar {
        position: static;   /* už není přilepená */
    }
    body {
        padding-top: 0;     /* kompenzace se ruší */
    }
    .hero {
        padding-top: 0;     /* hero začíná hned pod lištou */
    }

    .container {
        max-width: 100%;
        padding: 0 20px;
    }

    .navbar {
        padding: 12px 0;
    }

    .navbar-container {
        flex-direction: column;
        padding: 0 20px;
        gap: 15px;
    }
    
    .logo img {
        max-height: 55px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .nav-links li {
        margin: 0;
    }

    /* Hero optimalizace pro tablety */
    .hero {
        margin-top: 0;
        height: 80vh;
        min-height: 600px;
    }

    .page-header {
        margin-top: 0;
        height: 35vh;
        min-height: 280px;
    }

    .hero-container {
        flex-direction: column;
        gap: 35px;
        text-align: center;
        padding: 0 20px;
    }

    .hero-left, .hero-right {
        flex: none;
        width: 100%;
    }

    /* Skrytí sekce "O nás" na mobilních zařízeních */
    .about-section {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-slogan {
        font-size: var(--font-lg);
        min-height: 60px;
    }

    .section-title {
        font-size: var(--font-xl);
    }

    .section {
        padding: 60px 0;
    }

    /* Grid optimalizace pro tablety */
    .gallery, .work-gallery, .testimonials {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .gallery-img, .work-img {
        height: 220px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
    
    .trust-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
    }

    /* Trust indicators optimalizace */
    .trust-indicators {
        justify-content: center;
        gap: 12px;
    }
    
    .trust-item {
        font-size: var(--font-xs);
        padding: 8px 12px;
    }
    
    .stats-mini {
        gap: 20px;
    }
    
    .hero-benefits {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .cta-buttons {
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .btn-large, .btn-xl {
        min-width: 180px;
        padding: 12px 25px;
        font-size: var(--font-md);
    }

    /* Language switcher optimalizace */
    .lang-button {
        padding: 8px 15px;
        font-size: var(--font-sm);
    }

    .lang-dropdown {
        min-width: 150px;
        right: -5px;
    }

    .lang-option {
        padding: 12px 15px;
        font-size: var(--font-sm);
    }

    .lang-option .flag {
        font-size: 1.1rem;
        width: 18px;
    }

    /* Ikony optimalizace */
    .fas, .far, .fa, .fab {
        font-size: 0.9rem;
    }
    
    li .fas, li .far, li .fa {
        font-size: 0.85rem;
        width: 16px;
        margin-right: 8px;
    }

    /* Formuláře optimalizace */
    .form-row {
        flex-direction: column;
    }
    
    .form-row > .form-group {
        margin-right: 0;
        margin-left: 0;
        width: 100%;
    }
    
    .search-container input {
        width: 160px;
    }
    
    .search-container input:focus {
        width: 200px;
    }

    /* Jobs sekce optimalizace */
    .jobs-hero {
        padding: 45px 30px;
        margin-bottom: 50px;
    }
    
    .jobs-stats {
        gap: 25px;
    }
    
    .regions-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }
    
    .job-details {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Process section optimalizace */
    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 30px;
    }
    
    .process-step {
        padding: 30px 20px;
    }
    
    .step-number {
        width: 55px;
        height: 55px;
        font-size: var(--font-xl);
    }
}

/* Small Tablets / Large Phones (600px - 768px) */
@media (max-width: 600px) {
    .container {
        padding: 0 18px;
    }

    .navbar-container {
        padding: 0 18px;
    }

    .hero {
        height: 75vh;
        min-height: 550px;
    }

    .page-header {
        height: 30vh;
        min-height: 250px;
    }

    .hero-container {
        gap: 30px;
        padding: 0 18px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-slogan {
        font-size: var(--font-md);
        min-height: 50px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: var(--font-lg);
        margin-bottom: 40px;
    }

    /* Grid adjustments */
    .gallery, .work-gallery, .testimonials {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-img, .work-img {
        height: 200px;
    }

    .benefits-grid, .trust-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Trust indicators pro menší tablety */
    .trust-indicators {
        gap: 10px;
    }
    
    .trust-item {
        font-size: 0.7rem;
        padding: 6px 10px;
    }
    
    .stats-mini {
        gap: 15px;
    }
    
    .hero-benefits {
        gap: 15px;
    }
    
    .cta-buttons {
        gap: 10px;
    }
    
    .btn-large, .btn-xl {
        min-width: 160px;
        padding: 10px 20px;
        font-size: var(--font-sm);
    }

    /* Jobs optimalizace */
    .jobs-hero {
        padding: 35px 25px;
    }
    
    .jobs-stats {
        gap: 20px;
    }
    
    .regions-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    /* Urgent CTA optimalizace */
    .urgent-cta-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .urgent-cta-left h2 {
        font-size: var(--font-xl);
    }
}

/* Standard Mobile Phones (480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .navbar {
        padding: 10px 0;
    }

    .navbar-container {
        padding: 0 15px;
        gap: 12px;
    }
    
    .logo img {
        max-height: 45px;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        font-size: var(--font-sm);
        padding: 8px 12px;
    }

    /* Hero optimalizace pro mobily */
    .hero {
        margin-top: 0;
        height: 70vh;
        min-height: 500px;
    }

    .page-header {
        margin-top: 0;
        height: 25vh;
        min-height: 200px;
    }

    .hero-container {
        gap: 25px;
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero-slogan {
        font-size: var(--font-sm);
        min-height: 40px;
        margin-bottom: 20px;
    }

    .page-title {
        font-size: var(--font-xl);
    }

    .page-subtitle {
        font-size: var(--font-md);
    }

    /* Sections optimalizace */
    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: var(--font-lg);
        margin-bottom: 30px;
    }

    /* Buttons optimalizace */
    .btn {
        padding: 10px 20px;
        font-size: var(--font-sm);
    }
    
    .btn-large, .btn-xl {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: var(--font-sm);
        min-width: auto;
    }

    /* Images optimalizace */
    .gallery-img, .work-img {
        height: 180px;
    }
    
    .service-image {
        height: 180px;
    }

    /* Icons optimalizace */
    .fas, .far, .fa, .fab {
        font-size: 0.8rem;
    }
    
    li .fas, li .far, li .fa {
        font-size: 0.75rem;
        width: 14px;
        margin-right: 6px;
    }

    /* Trust indicators pro mobily */
    .trust-indicators {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .trust-item {
        font-size: 0.65rem;
        padding: 6px 12px;
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
    
    .stats-mini {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .stat-mini .stat-number {
        font-size: var(--font-lg);
    }
    
    .stat-mini .stat-label {
        font-size: 0.65rem;
    }
    
    .hero-benefits {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .benefit-item {
        font-size: var(--font-xs);
        text-align: center;
    }
    
    /* Optimalizace CTA tlačítek pro mobily */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin: 25px 0;
        padding: 0 10px;
    }
    
    .btn-large, .btn-xl {
        width: 100%;
        max-width: 320px;
        padding: 16px 20px;
        font-size: var(--font-md);
        min-width: auto;
        font-weight: 700;
        text-align: center;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        letter-spacing: 0.5px;
    }
    
    .btn-primary {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        border: 2px solid var(--primary-color);
        color: white;
    }
    
    .btn-primary:hover, .btn-primary:active {
        background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
        transform: translateY(-2px);
        box-shadow: var(--shadow-xl);
    }
    
    .btn-partnership {
        background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
        border: 2px solid var(--secondary-color);
        color: var(--text-color);
    }
    
    .btn-partnership:hover, .btn-partnership:active {
        background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%);
        transform: translateY(-2px);
        box-shadow: var(--shadow-xl);
    }
    
    .urgency-indicator {
        flex-direction: column;
        gap: 8px;
        font-size: var(--font-sm);
        margin-top: 25px;
        text-align: center;
    }

    /* Grid layouts pro mobily */
    .gallery, .work-gallery, .testimonials {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .benefits-grid, .trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-step {
        padding: 25px 15px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: var(--font-lg);
    }

    /* Cards optimalizace */
    .benefit-card, .trust-card {
        padding: 25px 20px;
    }
    
    .benefit-icon, .trust-icon {
        width: 60px;
        height: 60px;
        font-size: var(--font-lg);
    }

    .service-card {
        margin-bottom: 20px;
    }

    .service-content {
        padding: 20px;
    }

    .service-cta {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    /* Footer optimalizace */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-column {
        text-align: center;
    }

    /* Language switcher pro mobily */
    .lang-button {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .lang-dropdown {
        min-width: 130px;
        right: -15px;
    }

    .lang-option {
        padding: 10px 12px;
        font-size: 0.75rem;
    }

    .lang-option .flag {
        font-size: 0.9rem;
        width: 14px;
    }

    /* Search optimalizace */
    .search-container input {
        width: 120px;
        font-size: var(--font-xs);
    }
    
    .search-container input:focus {
        width: 150px;
    }

    /* Jobs sekce pro mobily */
    .jobs-hero {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .jobs-hero h3 {
        font-size: var(--font-lg);
    }
    
    .jobs-hero p {
        font-size: var(--font-sm);
    }
    
    .jobs-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-number {
        font-size: var(--font-xl);
    }
    
    .regions-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .region-card {
        padding: 20px 15px;
    }
    
    .job-card-header {
        padding: 20px 15px;
    }
    
    .job-card-content {
        padding: 20px 15px;
    }
    
    .job-card-content li {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 12px;
    }

    /* Urgent CTA pro mobily */
    .urgent-cta-section {
        padding: 60px 0;
    }
    
    .urgent-cta-content {
        gap: 25px;
    }
    
    .urgent-cta-left h2 {
        font-size: var(--font-lg);
    }
    
    .urgent-cta-left p {
        font-size: var(--font-sm);
    }
    
    .urgency-features {
        gap: 10px;
    }
    
    .urgency-item {
        font-size: var(--font-sm);
        justify-content: center;
    }
    
    .contact-options {
        gap: 15px;
    }
    
    .contact-info {
        gap: 8px;
    }
    
    .contact-info p {
        font-size: var(--font-sm);
        flex-direction: column;
        gap: 5px;
    }

    /* Modal optimalizace pro mobily */
    .modal-content {
        width: 95%;
        margin: 10px;
        padding: 20px;
        max-height: 85vh;
    }

    /* Form optimalizace pro mobily */
    .form-control {
        padding: 10px 12px;
        font-size: var(--font-sm);
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        font-size: var(--font-sm);
        margin-bottom: 6px;
    }

    /* Testimonials optimalizace */
    .testimonial-card {
        padding: 20px 15px;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: var(--font-md);
    }

    /* Work section optimalizace */
    .work-category-title {
        font-size: var(--font-md);
        margin: 20px 0 15px;
    }
    
    .work-item {
        margin-bottom: 15px;
    }
    
    .work-caption {
        padding: 15px;
    }
    
    .work-caption h3 {
        font-size: var(--font-md);
        margin-bottom: 8px;
    }
    
    .work-caption p {
        font-size: var(--font-xs);
    }
}

/* Extra Small Mobile Phones (360px) */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .navbar-container {
        padding: 0 12px;
    }

    .hero {
        height: 65vh;
        min-height: 450px;
    }

    .hero-container {
        padding: 0 12px;
        gap: 20px;
    }

    .hero-title {
        font-size: 1.4rem;
        line-height: 1.2;
    }

    .hero-slogan {
        font-size: 0.8rem;
        min-height: 35px;
    }

    .section {
        padding: 35px 0;
    }

    .section-title {
        font-size: var(--font-md);
        margin-bottom: 25px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 0.75rem;
    }

    .btn-large, .btn-xl {
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .gallery-img, .work-img {
        height: 160px;
    }

    .trust-item {
        font-size: 0.6rem;
        padding: 5px 8px;
    }

    .benefit-icon, .trust-icon {
        width: 50px;
        height: 50px;
        font-size: var(--font-md);
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: var(--font-md);
    }

    .process-step {
        padding: 20px 12px;
    }

    .jobs-hero {
        padding: 25px 15px;
    }

    .region-card, .job-card-content {
        padding: 15px 12px;
    }

    .modal-content {
        width: 98%;
        margin: 5px;
        padding: 15px;
    }

    .form-control {
        padding: 8px 10px;
        font-size: 0.8rem;
    }

    .testimonial-card {
        padding: 15px 12px;
    }

    .work-caption {
        padding: 12px;
    }

    .footer-container {
        gap: 25px;
    }
}

/* Ultra Small Devices (320px) */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }

    .navbar-container {
        padding: 0 10px;
    }

    .hero {
        height: 60vh;
        min-height: 400px;
    }

    .hero-container {
        padding: 0 10px;
        gap: 15px;
    }

    .hero-title {
        font-size: 1.2rem;
        line-height: 1.1;
    }

    .hero-slogan {
        font-size: 0.75rem;
        min-height: 30px;
    }

    .section {
        padding: 30px 0;
    }

    .section-title {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .btn {
        padding: 6px 12px;
        font-size: 0.7rem;
    }

    .btn-large, .btn-xl {
        padding: 8px 12px;
        font-size: 0.75rem;
    }

    .gallery-img, .work-img {
        height: 140px;
    }

    .trust-item {
        font-size: 0.55rem;
        padding: 4px 6px;
    }

    .benefit-icon, .trust-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .process-step {
        padding: 15px 10px;
    }

    .jobs-hero {
        padding: 20px 12px;
    }

    .region-card, .job-card-content {
        padding: 12px 10px;
    }

    .modal-content {
        width: 100%;
        margin: 0;
        padding: 12px;
        border-radius: 0;
    }

    .form-control {
        padding: 6px 8px;
        font-size: 0.75rem;
    }

    .testimonial-card {
        padding: 12px 10px;
    }

    .work-caption {
        padding: 10px;
    }

    .footer-container {
        gap: 20px;
    }

    .nav-links {
        gap: 5px;
    }

    .nav-links a {
        font-size: 0.7rem;
        padding: 6px 8px;
    }

    .lang-button {
        padding: 4px 8px;
        font-size: 0.65rem;
    }

    .lang-option {
        padding: 8px 10px;
        font-size: 0.65rem;
    }
}

/* Landscape orientation optimalizace pro mobilní zařízení */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: 90vh;
        min-height: 400px;
    }

    .page-header {
        height: 60vh;
        min-height: 200px;
    }

    .hero-container {
        gap: 20px;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .hero-slogan {
        font-size: var(--font-sm);
        min-height: 30px;
        margin-bottom: 15px;
    }

    .section {
        padding: 30px 0;
    }

    .trust-indicators {
        gap: 8px;
    }

    .stats-mini {
        flex-direction: row;
        gap: 15px;
    }

    .hero-benefits {
        flex-direction: row;
        gap: 15px;
        flex-wrap: wrap;
    }

    .cta-buttons {
        flex-direction: row;
        gap: 10px;
        flex-wrap: wrap;
    }
}

/* Animace */
@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.slide-in-left {
    animation: slideInLeft 1s ease forwards;
}

.slide-in-right {
    animation: slideInRight 1s ease forwards;
}

.zoom-in {
    animation: zoomIn 1s ease forwards;
}

.bounce {
    animation: bounce 2s ease infinite;
}

/* Efekty při najetí myší */
.hover-grow {
    transition: transform 0.3s ease;
}

.hover-grow:hover {
    transform: scale(1.05);
}

.hover-shadow {
    transition: box-shadow 0.3s ease;
}

.hover-shadow:hover {
    box-shadow: var(--shadow-xl);
}

.hover-bright {
    transition: filter 0.3s ease;
}

.hover-bright:hover {
    filter: brightness(1.1);
}

/* Oznámení */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

/* Formulářové prvky */
.form-control {
    display: block;
    width: 100%;
    padding: 12px 15px;
    font-size: var(--font-md);
    line-height: 1.5;
    color: var(--text-color);
    background-color: #fff;
    background-clip: padding-box;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.form-control:focus {
    color: var(--text-color);
    background-color: #fff;
    border-color: var(--primary-light);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(0, 82, 165, 0.15);
}

.form-control:hover:not(:focus) {
    border-color: var(--primary-color);
}

.form-control::placeholder {
    color: var(--text-lighter);
    opacity: 0.7;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: var(--bg-lighter);
    opacity: 0.7;
    cursor: not-allowed;
}

.form-control.is-invalid {
    border-color: var(--error-color);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23E74C3C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='8' x2='12' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'%3E%3C/line%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    padding-right: 40px;
}

.form-control.is-valid {
    border-color: var(--success-color);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2327AE60' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'%3E%3C/path%3E%3Cpolyline points='22 4 12 14.01 9 11.01'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    padding-right: 40px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
    transition: color var(--transition-normal);
}

.form-group:hover label {
    color: var(--primary-color);
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}

.form-row > .form-group {
    flex: 1 0 0%;
    padding-right: 10px;
    padding-left: 10px;
}

/* Specifické styly pro různé typy vstupních polí */
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 40px;
}

select.form-control:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230052A5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

input[type="file"].form-control {
    padding: 8px;
    cursor: pointer;
}

.form-text {
    display: block;
    margin-top: 5px;
    font-size: var(--font-sm);
    color: var(--text-lighter);
}

/* Checkbox styly */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: var(--font-md);
    -webkit-user-select: none;
    user-select: none;
    color: var(--text-color);
    transition: color var(--transition-normal);
}

.checkbox-container:hover {
    color: var(--primary-color);
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: #fff;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
}

.checkbox-container:hover .checkmark {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 8px;
    top: 4px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Rating select styly */
.rating-select {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    margin-bottom: 15px;
}

.rating-option {
    margin-right: 15px;
}

.rating-option input {
    display: none;
}

.rating-option label {
    cursor: pointer;
    color: var(--text-lighter);
    transition: color var(--transition-normal);
}

.rating-option:hover label,
.rating-option:hover ~ .rating-option label,
.rating-option input:checked ~ label {
    color: var(--warning-color);
}

/* Language switcher */
.language-switcher {
    position: relative;
}

.lang-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    padding: 8px 15px;
    cursor: pointer;
    transition: all var(--transition-normal);
    color: var(--text-color);
    font-size: var(--font-sm);
    font-weight: 500;
}

.lang-button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.lang-button .fas {
    font-size: 0.9rem;
}

.current-lang {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 160px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
    margin-top: 5px;
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 15px;
    background: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    color: var(--text-color);
    font-size: var(--font-sm);
    text-align: left;
}

.lang-option:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.lang-option.active {
    background-color: var(--primary-color);
    color: white;
}

.lang-option.active:hover {
    background-color: var(--primary-dark);
}

.lang-option .flag {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.lang-option .lang-name {
    flex: 1;
    font-weight: 500;
}

/* Vyhledávací pole v navigaci */
.search-container {
    display: flex;
    align-items: center;
    position: relative;
}

.search-container input {
    padding: 8px 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: var(--font-sm);
    width: 180px;
    transition: all var(--transition-normal);
}

.search-container input:focus {
    width: 220px;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(0, 82, 165, 0.15);
    outline: none;
}

.search-container button {
    background: none;
    border: none;
    color: var(--text-lighter);
    cursor: pointer;
    position: absolute;
    right: 10px;
    transition: color var(--transition-normal);
}

.search-container button:hover {
    color: var(--primary-color);
}

/* Responzivní úpravy pro formuláře */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
    
    /* Úprava velikosti ikon v seznamech */
    li .fas, li .far, li .fa {
        font-size: 0.9rem;
        width: 16px;
        text-align: center;
        margin-right: 8px;
    }
    
    .form-row > .form-group {
        margin-right: 0;
        margin-left: 0;
        width: 100%;
    }
    
    .search-container input {
        width: 150px;
    }
    
    .search-container input:focus {
        width: 180px;
    }
}

/* Zajištění responzivity všech obrázků */
img {
    max-width: 100%;
    height: auto;
}

/* Specifické úpravy pro ikony v seznamech */
li .fas, li .far, li .fa {
    width: 18px;
    text-align: center;
    margin-right: 10px;
}

/* Úprava velikosti ikon v hodnocení */
.rating .fas, .rating .far, .rating .fa {
    font-size: 0.95rem;
}

/* Styly pro sekci nabídky práce */
.jobs-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.jobs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(0, 82, 165, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Jobs Hero */
.jobs-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    margin-bottom: 60px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.jobs-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 221, 0, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.jobs-hero-content {
    position: relative;
    z-index: 1;
}

.jobs-hero-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

.jobs-hero h3 {
    font-size: var(--font-2xl);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.jobs-hero p {
    font-size: var(--font-lg);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.jobs-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.stat-item:nth-child(1) { animation-delay: 0.2s; }
.stat-item:nth-child(2) { animation-delay: 0.4s; }
.stat-item:nth-child(3) { animation-delay: 0.6s; }

.stat-number {
    font-size: var(--font-3xl);
    font-weight: 700;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 5px;
}

.jobs-stat-highlight {
    color: #FFD700;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* White color for stat labels in jobs section */
.jobs-hero .stat-label {
    color: #ffffff;
}

.stat-label {
    font-size: var(--font-md);
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

/* Jobs Positions */
.jobs-positions {
    margin-bottom: 60px;
}

.jobs-section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: var(--font-xl);
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
}

.jobs-section-title i {
    color: var(--secondary-color);
    font-size: var(--font-2xl);
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.region-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.region-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.region-card:hover::before {
    transform: scaleX(1);
}

.region-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.region-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: all var(--transition-normal);
}

.region-card:hover .region-icon {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.region-card h4 {
    font-size: var(--font-lg);
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.region-status {
    display: inline-block;
    padding: 5px 15px;
    border-radius: var(--radius-full);
    font-size: var(--font-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.region-status.available {
    background-color: rgba(39, 174, 96, 0.1);
    color: var(--success-color);
    border: 1px solid var(--success-color);
}

/* Job Details */
.job-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.job-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-color);
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.job-card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.job-card-header i {
    font-size: var(--font-2xl);
    color: var(--secondary-color);
}

.job-card-header h3 {
    font-size: var(--font-xl);
    font-weight: 600;
    margin: 0;
}

.job-card-content {
    padding: 30px;
}

.job-card-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-card-content li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.job-card-content li:hover {
    background-color: rgba(0, 82, 165, 0.05);
    transform: translateX(5px);
}

.job-card-content li:last-child {
    margin-bottom: 0;
}

.job-card-content li i {
    color: var(--primary-color);
    font-size: var(--font-lg);
    margin-top: 2px;
    flex-shrink: 0;
}

.job-benefits .job-card-content li i {
    color: var(--success-color);
}

.job-card-content li span {
    color: var(--text-color);
    line-height: 1.5;
    font-weight: 500;
}

/* Jobs CTA */
.jobs-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.jobs-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 82, 165, 0.1) 0%, transparent 70%);
    animation: rotate 25s linear infinite reverse;
}

.jobs-cta-content {
    position: relative;
    z-index: 1;
}

.jobs-cta h3 {
    font-size: var(--font-2xl);
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.jobs-cta p {
    font-size: var(--font-lg);
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.jobs-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn i {
    margin-right: 8px;
}

/* Responzivní úpravy pro jobs sekci */
@media (max-width: 768px) {
    .jobs-hero {
        padding: 40px 25px;
        margin-bottom: 40px;
    }
    
    .jobs-hero h3 {
        font-size: var(--font-xl);
    }
    
    .jobs-hero p {
        font-size: var(--font-md);
    }
    
    .jobs-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: var(--font-2xl);
    }
    
    .regions-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .region-card {
        padding: 20px;
    }
    
    .job-details {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .job-card-header {
        padding: 20px;
    }
    
    .job-card-content {
        padding: 25px;
    }
    
    .jobs-cta {
        padding: 40px 25px;
    }
    
    .jobs-cta h3 {
        font-size: var(--font-xl);
    }
    
    .jobs-cta p {
        font-size: var(--font-md);
    }
    
    .jobs-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .jobs-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .jobs-hero {
        padding: 30px 20px;
    }
    
    .jobs-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .regions-grid {
        grid-template-columns: 1fr;
    }
    
    .job-card-content li {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .jobs-section-title {
        flex-direction: column;
        gap: 10px;
    }
}

/* Styly pro eshop */
.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.product-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    background-color: white;
    position: relative;
    top: 0;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.product-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all var(--transition-normal);
    max-height: 100%;
}

.product-info {
    padding: 20px;
}

.product-title {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: var(--font-lg);
}

.product-description {
    color: var(--text-light);
    font-size: var(--font-sm);
    margin-bottom: 15px;
}

.product-price {
    font-weight: bold;
    font-size: var(--font-lg);
    color: var(--primary-color);
    margin-bottom: 15px;
}

.add-to-cart {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--secondary-color);
    color: var(--text-color);
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.add-to-cart:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Responzivní úpravy pro eshop */
@media (max-width: 768px) {
    .products-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .product-img {
        height: 200px;
    }
    
    .product-title {
        font-size: var(--font-md);
    }
    
    .product-price {
        font-size: var(--font-md);
    }
    
    .add-to-cart {
        padding: 8px 16px;
        font-size: var(--font-sm);
    }
}

@media (max-width: 480px) {
    .products-container {
        grid-template-columns: 1fr;
    }
    
    .product-img {
        height: 180px;
    }
}

/* Styly pro stránku služeb */
.services-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-intro h2 {
    font-size: var(--font-2xl);
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.services-intro p {
    font-size: var(--font-lg);
    color: var(--text-light);
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: var(--font-sm);
    font-weight: 500;
    transition: all var(--transition-normal);
}

.feature-tag:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.service-btn {
    margin-top: 15px;
    padding: 10px 25px;
    font-size: var(--font-sm);
}

/* Process Section */
.process-section {
    margin: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    padding: 60px 40px;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 82, 165, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 30px 20px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-2xl);
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.process-step:hover .step-number {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--text-color);
    transform: scale(1.1);
}

.step-content h3 {
    font-size: var(--font-lg);
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
    transition: color var(--transition-normal);
}

.process-step:hover .step-content h3 {
    color: var(--primary-dark);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: var(--font-md);
}

/* Advantages Section */
.advantages-section {
    margin: 80px 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.advantage-item {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.advantage-item:hover::before {
    transform: scaleX(1);
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-2xl);
    margin: 0 auto 25px;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.advantage-item:hover .advantage-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--text-color);
    transform: scale(1.1) rotate(5deg);
}

.advantage-item h3 {
    font-size: var(--font-lg);
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
    transition: color var(--transition-normal);
}

.advantage-item:hover h3 {
    color: var(--primary-dark);
}

.advantage-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: var(--font-md);
}

/* Services CTA */
.services-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    text-align: center;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.services-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 82, 165, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.services-cta-content {
    position: relative;
    z-index: 1;
}

.services-cta h2 {
    font-size: var(--font-2xl);
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.services-cta p {
    font-size: var(--font-lg);
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responzivní úpravy pro stránku služeb */
@media (max-width: 768px) {
    .services-intro {
        margin-bottom: 40px;
    }
    
    .services-intro h2 {
        font-size: var(--font-xl);
    }
    
    .services-intro p {
        font-size: var(--font-md);
    }
    
    .process-section {
        margin: 60px 0;
        padding: 40px 25px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .advantages-section {
        margin: 60px 0;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .advantage-item {
        padding: 30px 25px;
    }
    
    .services-cta {
        padding: 40px 25px;
        margin: 60px 0;
    }
    
    .services-cta h2 {
        font-size: var(--font-xl);
    }
    
    .services-cta p {
        font-size: var(--font-md);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .process-section {
        padding: 30px 20px;
    }
    
    .process-step {
        padding: 25px 15px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: var(--font-xl);
    }
    
    .advantage-icon {
        width: 70px;
        height: 70px;
        font-size: var(--font-xl);
    }
    
    .feature-tag {
        font-size: var(--font-xs);
        padding: 4px 10px;
    }
}

/* Styly pro přehled služeb na hlavní stránce */
.services-overview {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.services-intro-text {
    font-size: var(--font-lg);
    color: var(--text-light);
    margin-bottom: 50px;
    line-height: 1.7;
}

.services-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.service-preview-item {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-preview-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.service-preview-item:hover::before {
    transform: scaleX(1);
}

.service-preview-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-2xl);
    margin: 0 auto 25px;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.service-preview-item:hover .service-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--text-color);
    transform: scale(1.1) rotate(5deg);
}

.service-preview-item h3 {
    font-size: var(--font-lg);
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
    transition: color var(--transition-normal);
}

.service-preview-item:hover h3 {
    color: var(--primary-dark);
}

.service-preview-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: var(--font-md);
}

.services-cta-home {
    margin-top: 40px;
}

.services-cta-home .btn {
    padding: 15px 35px;
    font-size: var(--font-lg);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Styly pro intro sekce */
.work-intro, .testimonials-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.work-intro h2, .testimonials-intro h2 {
    font-size: var(--font-2xl);
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.work-intro p, .testimonials-intro p {
    font-size: var(--font-lg);
    color: var(--text-light);
    line-height: 1.7;
}

/* Styly pro statistiky */
.work-stats, .satisfaction-stats {
    margin: 80px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-2xl);
    margin: 0 auto 25px;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.stat-card:hover .stat-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--text-color);
    transform: scale(1.1) rotate(5deg);
}

.stat-number {
    font-size: var(--font-3xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    transition: color var(--transition-normal);
}

.stat-card:hover .stat-number {
    color: var(--primary-dark);
}

.stat-label {
    font-size: var(--font-md);
    color: var(--text-light);
    font-weight: 500;
}

/* Styly pro CTA sekce */
.work-cta, .testimonials-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    text-align: center;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.work-cta::before, .testimonials-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 82, 165, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.work-cta-content, .testimonials-cta-content {
    position: relative;
    z-index: 1;
}

.work-cta h2, .testimonials-cta h2 {
    font-size: var(--font-2xl);
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.work-cta p, .testimonials-cta p {
    font-size: var(--font-lg);
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Styly pro formulář recenzí */
.review-form-container {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

.review-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 82, 165, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.section-subtitle {
    font-size: var(--font-xl);
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.review-form-intro {
    text-align: center;
    font-size: var(--font-md);
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.rating-select {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rating-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.rating-option label:hover {
    background-color: rgba(0, 82, 165, 0.05);
    border-color: var(--primary-light);
}

.rating-option input:checked + label {
    background-color: rgba(0, 82, 165, 0.1);
    border-color: var(--primary-color);
}

.rating-option label span {
    font-weight: 500;
    color: var(--text-color);
}

/* Responzivní úpravy pro přehled služeb */
@media (max-width: 768px) {
    .services-intro-text {
        font-size: var(--font-md);
        margin-bottom: 40px;
    }
    
    .services-preview {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .service-preview-item {
        padding: 30px 25px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: var(--font-xl);
    }
    
    .services-cta-home .btn {
        padding: 12px 30px;
        font-size: var(--font-md);
    }

    /* Responzivní úpravy pro statistiky */
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: var(--font-xl);
    }
    
    .stat-number {
        font-size: var(--font-2xl);
    }

    /* Responzivní úpravy pro intro sekce */
    .work-intro, .testimonials-intro {
        margin-bottom: 40px;
    }
    
    .work-intro h2, .testimonials-intro h2 {
        font-size: var(--font-xl);
    }
    
    .work-intro p, .testimonials-intro p {
        font-size: var(--font-md);
    }

    /* Responzivní úpravy pro CTA sekce */
    .work-cta, .testimonials-cta {
        padding: 40px 25px;
        margin: 60px 0;
    }
    
    .work-cta h2, .testimonials-cta h2 {
        font-size: var(--font-xl);
    }
    
    .work-cta p, .testimonials-cta p {
        font-size: var(--font-md);
    }

    /* Responzivní úpravy pro formulář recenzí */
    .review-form-container {
        padding: 40px 25px;
        margin: 60px 0;
    }
    
    .rating-select {
        gap: 10px;
    }
    
    .rating-option label {
        padding: 8px 12px;
        font-size: var(--font-sm);
    }
}

@media (max-width: 480px) {
    .service-preview-item {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: var(--font-lg);
    }
    
    .services-cta-home .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Responzivní úpravy pro statistiky na mobilech */
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: var(--font-lg);
    }

    /* Responzivní úpravy pro formulář recenzí na mobilech */
    .review-form-container {
        padding: 30px 20px;
    }
    
    .rating-option label {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}

/* Nové styly pro vylepšenou hlavní stránku */

/* Trust indicators v hero sekci */
.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: var(--radius-full);
    font-size: var(--font-sm);
    font-weight: 500;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.trust-item i {
    color: var(--secondary-color);
    font-size: var(--font-md);
}

/* Mini statistiky v hero sekci */
.stats-mini {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    gap: 20px;
}

.stat-mini {
    text-align: center;
    flex: 1;
}

.stat-mini .stat-number {
    display: block;
    font-size: var(--font-xl);
    font-weight: 700;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 5px;
}

.stat-mini .stat-label {
    font-size: var(--font-xs);
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Hero benefits */
.hero-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--font-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

.benefit-item i {
    color: var(--secondary-color);
    font-size: var(--font-md);
}

/* CTA buttons */
.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
}

.btn-large {
    padding: 15px 35px;
    font-size: var(--font-md);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 200px;
    justify-content: center;
}

.btn-xl {
    padding: 18px 40px;
    font-size: var(--font-lg);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-partnership {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--text-color);
    border: 2px solid var(--secondary-color);
    font-weight: 700;
}

.btn-partnership:hover {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%);
    border-color: var(--secondary-dark);
    color: var(--text-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Urgency indicator */
.urgency-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: var(--font-sm);
    color: var(--secondary-color);
    font-weight: 600;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

.urgency-indicator i {
    animation: bounce 2s ease-in-out infinite;
}

/* Trust section */
.trust-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    position: relative;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 82, 165, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.trust-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.trust-card:hover::before {
    transform: scaleX(1);
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.trust-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-2xl);
    margin: 0 auto 25px;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.trust-card:hover .trust-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--text-color);
    transform: scale(1.1) rotate(5deg);
}

.trust-card h3 {
    font-size: var(--font-lg);
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
    transition: color var(--transition-normal);
}

.trust-card:hover h3 {
    color: var(--primary-dark);
}

.trust-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: var(--font-md);
}

/* Services section vylepšení */
.services-section {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: var(--font-lg);
    color: var(--text-light);
    margin-top: 15px;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    position: relative;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 82, 165, 0.8) 0%, rgba(0, 82, 165, 0.6) 100%);
    opacity: 0;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-price {
    background: var(--secondary-color);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: var(--font-lg);
    transform: translateY(20px);
    transition: transform var(--transition-normal);
}

.service-card:hover .service-price {
    transform: translateY(0);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: var(--font-xl);
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
    transition: color var(--transition-normal);
}

.service-card:hover .service-content h3 {
    color: var(--primary-dark);
}

.service-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
}

.btn-service {
    background: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--font-sm);
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
}

.btn-service:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.service-time {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: var(--font-sm);
    color: var(--text-lighter);
    font-weight: 500;
}

.service-time i {
    color: var(--secondary-color);
}

/* Services bottom CTA */
.services-bottom-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    padding: 50px 40px;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.services-bottom-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 82, 165, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.services-bottom-cta h3 {
    font-size: var(--font-xl);
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.services-bottom-cta p {
    font-size: var(--font-md);
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Benefits section */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    position: relative;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255, 221, 0, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-2xl);
    margin: 0 auto 25px;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--text-color);
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
    font-size: var(--font-lg);
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
    transition: color var(--transition-normal);
}

.benefit-card:hover h3 {
    color: var(--primary-dark);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: var(--font-md);
}

/* Urgent CTA section */
.urgent-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.urgent-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 221, 0, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.urgent-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.urgent-cta-left h2 {
    font-size: var(--font-3xl);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.urgent-cta-left p {
    font-size: var(--font-lg);
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.urgency-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.urgency-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: var(--font-md);
    font-weight: 500;
}

.urgency-item i {
    color: var(--secondary-color);
    font-size: var(--font-lg);
    width: 20px;
    text-align: center;
}

.urgent-cta-right {
    text-align: center;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: var(--font-md);
    opacity: 0.9;
}

.contact-info p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-info i {
    color: var(--secondary-color);
    width: 20px;
    text-align: center;
}

/* Process section vylepšení */
.process-section {
    padding: 100px 0;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 40px 30px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.process-step:hover::before {
    transform: scaleX(1);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-2xl);
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.process-step:hover .step-number {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--text-color);
    transform: scale(1.1);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 82, 165, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-xl);
    margin: 0 auto 20px;
    transition: all var(--transition-normal);
}

.process-step:hover .step-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.process-step h3 {
    font-size: var(--font-lg);
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
    transition: color var(--transition-normal);
}

.process-step:hover h3 {
    color: var(--primary-dark);
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: var(--font-md);
}

/* Responzivní úpravy pro nové prvky */
@media (max-width: 768px) {
    .trust-indicators {
        justify-content: center;
        gap: 15px;
    }
    
    .trust-item {
        font-size: var(--font-xs);
        padding: 8px 12px;
    }
    
    .stats-mini {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero-benefits {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large, .btn-xl {
        width: 100%;
        max-width: 300px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .trust-card {
        padding: 30px 25px;
    }
    
    .trust-icon {
        width: 70px;
        height: 70px;
        font-size: var(--font-xl);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-image {
        height: 200px;
    }
    
    .services-bottom-cta {
        padding: 40px 25px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefit-card {
        padding: 30px 25px;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: var(--font-xl);
    }
    
    .urgent-cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .urgent-cta-left h2 {
        font-size: var(--font-2xl);
    }
    
    .urgent-cta-left p {
        font-size: var(--font-md);
    }
    
    .urgency-features {
        align-items: center;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-step {
        padding: 30px 25px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: var(--font-xl);
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: var(--font-lg);
    }
}

@media (max-width: 480px) {
    .trust-item {
        flex-direction: column;
        gap: 5px;
        text-align: center;
        padding: 10px;
    }
    
    .stats-mini .stat-number {
        font-size: var(--font-lg);
    }
    
    .hero-benefits {
        gap: 10px;
    }
    
    .benefit-item {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .urgency-indicator {
        flex-direction: column;
        gap: 5px;
    }
    
    .trust-icon, .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: var(--font-lg);
    }
    
    .service-content {
        padding: 25px;
    }
    
    .service-cta {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .urgent-cta-left h2 {
        font-size: var(--font-xl);
    }
    
    .contact-options {
        gap: 15px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: var(--font-lg);
    }
    
    .step-icon {
        width: 45px;
        height: 45px;
        font-size: var(--font-md);
    }
}

/* Enhanced Calculator Styles */
.calculator-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    border-radius: var(--radius-lg);
}

.calculator-header h2 {
    font-size: var(--font-xl);
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
}

.calculator-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 30px;
    background: var(--bg-light);
    border-radius: var(--radius-full);
    padding: 5px;
    box-shadow: var(--shadow-sm);
}

.calc-tab {
    flex: 1;
    max-width: 200px;
    padding: 15px 30px;
    background: transparent;
    border: none;
    border-radius: var(--radius-full);
    font-size: var(--font-md);
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calc-tab:hover {
    color: var(--primary-color);
    background: rgba(0, 82, 165, 0.05);
}

.calc-tab.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.calculator-content {
    min-height: 400px;
    padding: 20px 0;
}

.calculator-question {
    text-align: center;
    margin-bottom: 40px;
}

.calculator-question h3 {
    font-size: var(--font-xl);
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
}

.calculator-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.calculator-options.damage-options {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.calculator-option {
    background: white;
    border: 3px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.calculator-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.calculator-option:hover::before {
    transform: scaleX(1);
}

.calculator-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.calculator-option.selected {
    border-color: var(--primary-color);
    background: rgba(0, 82, 165, 0.05);
    box-shadow: var(--shadow-lg);
}

.option-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all var(--transition-normal);
}

.calculator-option:hover .option-icon {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.option-icon svg {
    width: 100%;
    height: 100%;
}

.option-icon i {
    font-size: 3rem;
}

.option-label {
    font-size: var(--font-lg);
    font-weight: 600;
    color: var(--primary-color);
    transition: color var(--transition-normal);
}

.calculator-option:hover .option-label {
    color: var(--primary-dark);
}

.calculator-result {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.calculator-result.no-price {
    padding: 40px 20px;
}

.result-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
    box-shadow: var(--shadow-lg);
}

.price-display {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 40px 30px;
    border-radius: var(--radius-xl);
    margin-bottom: 30px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.price-display::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 221, 0, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.service-type {
    font-size: var(--font-lg);
    font-weight: 500;
    margin-bottom: 10px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.price-amount {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.price-subtitle {
    font-size: var(--font-sm);
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.price-details {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 25px;
    margin-bottom: 25px;
    text-align: left;
}

.price-details h4 {
    font-size: var(--font-lg);
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item .label {
    font-weight: 500;
    color: var(--text-light);
}

.detail-item .value {
    font-weight: 600;
    color: var(--primary-color);
}

.price-note {
    background: rgba(255, 221, 0, 0.1);
    border: 1px solid var(--secondary-color);
    border-radius: var(--radius-md);
    padding: 15px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--font-sm);
    color: var(--text-color);
}

.price-note i {
    color: var(--secondary-color);
    font-size: var(--font-md);
    flex-shrink: 0;
}

.result-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.result-actions .btn {
    padding: 15px 30px;
    font-size: var(--font-md);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 200px;
    justify-content: center;
}

/* Responzivní úpravy pro kalkulačku */
@media (max-width: 768px) {
    .calculator-header {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .calculator-header h2 {
        font-size: var(--font-lg);
    }
    
    .calc-tab {
        padding: 12px 20px;
        font-size: var(--font-sm);
    }
    
    .calculator-options {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .calculator-option {
        padding: 25px 15px;
    }
    
    .option-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .option-icon i {
        font-size: 2rem;
    }
    
    .option-label {
        font-size: var(--font-md);
    }
    
    .price-amount {
        font-size: 3rem;
    }
    
    .result-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .result-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .calculator-tabs {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }
    
    .calc-tab {
        max-width: none;
        padding: 10px 15px;
    }
    
    .calculator-option {
        padding: 20px 10px;
    }
    
    .option-icon {
        width: 50px;
        height: 50px;
    }
    
    .option-icon i {
        font-size: 1.5rem;
    }
    
    .price-display {
        padding: 30px 20px;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .price-details {
        padding: 20px;
    }
    
    .detail-item {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}

/* Styly pro kalkulační modul */
.calculator-modal-content {
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
}

.calculator-step {
    min-height: 400px;
    padding: 20px 0;
}

.step-header {
    text-align: center;
    margin-bottom: 40px;
}

.step-header .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-2xl);
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
}

.step-header h3 {
    font-size: var(--font-xl);
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.step-header p {
    color: var(--text-light);
    font-size: var(--font-md);
}

/* Výběr typu nábytku */
.furniture-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.furniture-type-card {
    background: white;
    border: 3px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.furniture-type-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.furniture-type-card.selected {
    border-color: var(--primary-color);
    background: rgba(0, 82, 165, 0.05);
    box-shadow: var(--shadow-lg);
}

.furniture-3d-model {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    perspective: 1000px;
}

/* 3D Sofa model - vylepšený */
.sofa-3d {
    position: relative;
    width: 220px;
    height: 120px;
    transform-style: preserve-3d;
    transform: rotateX(-15deg) rotateY(-20deg);
    transition: transform var(--transition-normal);
    margin: 0 auto;
}

.furniture-type-card:hover .sofa-3d {
    transform: rotateX(-15deg) rotateY(-20deg) scale(1.1);
}

/* Základna sedačky - hlavní sedací část */
.sofa-base {
    position: absolute;
    width: 180px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--primary-light) 100%);
    border-radius: 12px;
    bottom: 0;
    left: 20px;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--primary-dark);
}

.sofa-base::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 6px;
}

/* Opěradlo sedačky */
.sofa-back {
    position: absolute;
    width: 180px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
    border-radius: 12px 12px 0 0;
    bottom: 45px;
    left: 20px;
    transform: rotateX(15deg);
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    border: 1px solid var(--primary-dark);
}

.sofa-back::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 10px;
    right: 10px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 3px;
}

/* Područky sedačky */
.sofa-arm {
    position: absolute;
    width: 35px;
    height: 75px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
    border-radius: 18px;
    bottom: 15px;
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    border: 1px solid var(--primary-dark);
}

.sofa-arm.left {
    left: 5px;
    transform: rotateY(-15deg) rotateZ(-2deg);
}

.sofa-arm.right {
    right: 5px;
    transform: rotateY(15deg) rotateZ(2deg);
}

.sofa-arm::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 3px;
    right: 3px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 3px;
}

/* Polštáře sedačky */
.sofa-cushion {
    position: absolute;
    width: 52px;
    height: 25px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-color) 50%, var(--secondary-light) 100%);
    border-radius: 26px;
    bottom: 55px;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.2),
        inset 0 -1px 2px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--primary-color);
    transform: rotateX(-5deg);
}

.sofa-cushion::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 8px;
    right: 8px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 3px;
}

.sofa-cushion.left {
    left: 30px;
    transform: rotateX(-5deg) rotateZ(-1deg);
}

.sofa-cushion.center {
    left: 84px;
    transform: rotateX(-5deg);
}

.sofa-cushion.right {
    left: 138px;
    transform: rotateX(-5deg) rotateZ(1deg);
}

/* Nohy sedačky */
.sofa-3d::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 30px;
    width: 160px;
    height: 8px;
    background: linear-gradient(135deg, #2F1B14 0%, #4A2C1A 100%);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* 3D Chair model - vylepšený */
.chair-3d {
    position: relative;
    width: 140px;
    height: 120px;
    transform-style: preserve-3d;
    transform: rotateX(-15deg) rotateY(-20deg);
    transition: transform var(--transition-normal);
    margin: 0 auto;
}

.furniture-type-card:hover .chair-3d {
    transform: rotateX(-15deg) rotateY(-20deg) scale(1.1);
}

/* Základna křesla - sedací část */
.chair-base {
    position: absolute;
    width: 110px;
    height: 55px;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 50%, #CD853F 100%);
    border-radius: 12px;
    bottom: 0;
    left: 15px;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    border: 1px solid #654321;
}

.chair-base::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 6px;
}

/* Opěradlo křesla */
.chair-back {
    position: absolute;
    width: 110px;
    height: 70px;
    background: linear-gradient(135deg, #654321 0%, #8B4513 50%, #A0522D 100%);
    border-radius: 12px 12px 0 0;
    bottom: 35px;
    left: 15px;
    transform: rotateX(12deg);
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    border: 1px solid #543A1A;
}

.chair-back::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 3px;
}

/* Područky křesla */
.chair-arm {
    position: absolute;
    width: 25px;
    height: 60px;
    background: linear-gradient(135deg, #654321 0%, #8B4513 50%, #A0522D 100%);
    border-radius: 12px;
    bottom: 20px;
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    border: 1px solid #543A1A;
}

.chair-arm.left {
    left: 5px;
    transform: rotateY(-15deg) rotateZ(-3deg);
}

.chair-arm.right {
    right: 5px;
    transform: rotateY(15deg) rotateZ(3deg);
}

.chair-arm::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 2px;
    right: 2px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 3px;
}

/* Polštář křesla */
.chair-cushion {
    position: absolute;
    width: 90px;
    height: 20px;
    background: linear-gradient(135deg, #A0522D 0%, #CD853F 50%, #DEB887 100%);
    border-radius: 45px;
    bottom: 45px;
    left: 25px;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.2),
        inset 0 -1px 2px rgba(0, 0, 0, 0.1);
    border: 1px solid #8B4513;
    transform: rotateX(-8deg);
}

.chair-cushion::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 10px;
    right: 10px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 3px;
}

/* Nohy křesla */
.chair-3d::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 25px;
    width: 90px;
    height: 8px;
    background: linear-gradient(135deg, #2F1B14 0%, #4A2C1A 100%);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.furniture-type-card h4 {
    font-size: var(--font-lg);
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.furniture-type-card p {
    color: var(--text-light);
    font-size: var(--font-sm);
}

/* Výběr typu servisu */
.service-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.service-type-card {
    background: white;
    border: 3px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.service-type-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-type-card.selected {
    border-color: var(--primary-color);
    background: rgba(0, 82, 165, 0.05);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-2xl);
    margin: 0 auto 20px;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.service-type-card:hover .service-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--text-color);
    transform: scale(1.1);
}

.service-type-card h4 {
    font-size: var(--font-lg);
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.service-type-card p {
    color: var(--text-light);
    font-size: var(--font-sm);
}

/* Interaktivní nábytek */
.interactive-furniture {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.furniture-model {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid var(--border-color);
}

.interactive-sofa, .interactive-chair {
    position: relative;
    cursor: pointer;
    transform-style: preserve-3d;
    transform: scale(1.5);
}

.clickable-part {
    position: absolute;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all var(--transition-normal);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

.clickable-part:hover {
    border-color: var(--primary-color);
    background: rgba(0, 82, 165, 0.15);
    box-shadow: 
        0 0 15px rgba(0, 82, 165, 0.3),
        inset 0 0 10px rgba(0, 82, 165, 0.1);
    transform: scale(1.02);
}

.clickable-part.selected {
    border-color: var(--secondary-color);
    background: rgba(255, 221, 0, 0.25);
    box-shadow: 
        0 0 20px rgba(255, 221, 0, 0.6),
        inset 0 0 15px rgba(255, 221, 0, 0.2);
    transform: scale(1.05);
}

.clickable-part::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: all var(--transition-normal);
}

.clickable-part:hover::before {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.5);
}

.clickable-part.selected::before {
    background: var(--secondary-color);
    opacity: 1;
    transform: translate(-50%, -50%) scale(2);
    box-shadow: 0 0 10px rgba(255, 221, 0, 0.8);
}

.problem-legend {
    background: white;
    border-radius: var(--radius-lg);
    padding: 25px;
    border: 2px solid var(--border-color);
    height: fit-content;
}

.problem-legend h4 {
    font-size: var(--font-md);
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.problem-legend ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.problem-legend li {
    padding: 8px 12px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    font-size: var(--font-sm);
    display: flex;
    align-items: center;
    gap: 8px;
}

.problem-legend li i {
    color: var(--secondary-color);
}

/* Výsledek kalkulace */
.calculation-result {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-top: 20px;
}

.calculation-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 15px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.summary-item .label {
    font-weight: 500;
    color: var(--text-light);
}

.summary-item .value {
    font-weight: 600;
    color: var(--primary-color);
}

.price-breakdown {
    background: white;
    border-radius: var(--radius-lg);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}

.price-breakdown h4 {
    font-size: var(--font-lg);
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.price-items {
    margin-bottom: 20px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item .description {
    color: var(--text-color);
    font-weight: 500;
}

.price-item .amount {
    color: var(--primary-color);
    font-weight: 600;
}

.price-total {
    border-top: 2px solid var(--border-color);
    padding-top: 15px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.total-row.final {
    font-size: var(--font-lg);
    font-weight: 700;
    color: var(--primary-color);
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    margin-top: 10px;
}

.calculation-note {
    background: rgba(255, 221, 0, 0.1);
    border: 1px solid var(--secondary-color);
    border-radius: var(--radius-md);
    padding: 15px;
    margin-bottom: 25px;
}

.calculation-note p {
    margin: 0;
    color: var(--text-color);
    font-size: var(--font-sm);
    display: flex;
    align-items: center;
    gap: 8px;
}

.calculation-note i {
    color: var(--secondary-color);
}

.calculation-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Navigace kalkulátoru */
.calculator-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* Responzivní úpravy pro kalkulátor */
@media (max-width: 768px) {
    /* Modální okno kalkulátoru pro tablety */
    .calculator-modal-content {
        width: 95%;
        max-width: 95%;
        margin: 10px auto;
        padding: 20px;
        max-height: 95vh;
        overflow-y: auto;
    }
    
    .calculator-header {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .calculator-header h2 {
        font-size: var(--font-lg);
        line-height: 1.3;
    }
    
    .calculator-tabs {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }
    
    .calc-tab {
        max-width: none;
        padding: 12px 20px;
        font-size: var(--font-sm);
    }
    
    .step-header {
        margin-bottom: 30px;
    }
    
    .step-header .step-number {
        width: 50px;
        height: 50px;
        font-size: var(--font-xl);
        margin-bottom: 15px;
    }
    
    .step-header h3 {
        font-size: var(--font-lg);
        margin-bottom: 8px;
    }
    
    .step-header p {
        font-size: var(--font-sm);
    }
    
    /* Výběr nábytku pro tablety */
    .furniture-types {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .furniture-type-card {
        padding: 25px 20px;
    }
    
    .furniture-3d-model {
        height: 130px;
        margin-bottom: 15px;
    }
    
    .sofa-3d, .chair-3d {
        transform: scale(1.1) rotateX(-12deg) rotateY(-18deg);
    }
    
    /* Výběr servisu pro tablety */
    .service-types {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-type-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: var(--font-xl);
        margin-bottom: 15px;
    }
    
    /* Interaktivní nábytek pro tablety */
    .interactive-furniture {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .furniture-model {
        padding: 25px;
        min-height: 250px;
    }
    
    .interactive-sofa, .interactive-chair {
        transform: scale(1.3);
    }
    
    .problem-legend {
        padding: 20px;
    }
    
    /* Výsledky kalkulace pro tablety */
    .calculation-summary {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .summary-item {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 12px 15px;
    }
    
    .price-breakdown {
        padding: 20px;
    }
    
    .calculation-result {
        padding: 25px;
    }
    
    .calculation-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .calculation-actions .btn {
        width: 100%;
        max-width: 300px;
        padding: 15px 25px;
        font-size: var(--font-md);
    }
    
    /* Navigace kalkulátoru pro tablety */
    .calculator-navigation {
        flex-direction: column;
        gap: 15px;
        margin-top: 25px;
    }
    
    .calculator-navigation .btn {
        width: 100%;
        max-width: 250px;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    /* Modální okno kalkulátoru pro mobily */
    .calculator-modal-content {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 15px;
        max-height: 100vh;
        border-radius: 0;
        overflow-y: auto;
    }
    
    .calculator-header {
        padding: 10px;
        margin-bottom: 15px;
    }
    
    .calculator-header h2 {
        font-size: var(--font-md);
        line-height: 1.2;
    }
    
    .calculator-tabs {
        padding: 8px;
        gap: 8px;
    }
    
    .calc-tab {
        padding: 10px 15px;
        font-size: var(--font-xs);
        letter-spacing: 0.3px;
    }
    
    .calculator-step {
        min-height: auto;
        padding: 15px 0;
    }
    
    .step-header {
        margin-bottom: 20px;
    }
    
    .step-header .step-number {
        width: 40px;
        height: 40px;
        font-size: var(--font-lg);
        margin-bottom: 12px;
    }
    
    .step-header h3 {
        font-size: var(--font-md);
        margin-bottom: 6px;
    }
    
    .step-header p {
        font-size: var(--font-xs);
    }
    
    /* Výběr nábytku pro mobily */
    .furniture-types {
        gap: 15px;
    }
    
    .furniture-type-card {
        padding: 20px 15px;
        border-width: 2px;
    }
    
    .furniture-type-card h4 {
        font-size: var(--font-md);
        margin-bottom: 8px;
    }
    
    .furniture-type-card p {
        font-size: var(--font-xs);
    }
    
    .furniture-3d-model {
        height: 100px;
        margin-bottom: 12px;
    }
    
    .sofa-3d, .chair-3d {
        transform: scale(0.9) rotateX(-8deg) rotateY(-12deg);
    }
    
    /* Výběr servisu pro mobily */
    .service-types {
        gap: 15px;
    }
    
    .service-type-card {
        padding: 20px 15px;
        border-width: 2px;
    }
    
    .service-type-card h4 {
        font-size: var(--font-md);
        margin-bottom: 8px;
    }
    
    .service-type-card p {
        font-size: var(--font-xs);
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: var(--font-lg);
        margin-bottom: 12px;
    }
    
    /* Interaktivní nábytek pro mobily */
    .interactive-furniture {
        gap: 20px;
    }
    
    .furniture-model {
        padding: 20px;
        min-height: 200px;
    }
    
    .interactive-sofa, .interactive-chair {
        transform: scale(1.1);
    }
    
    .clickable-part {
        border-width: 3px;
        min-width: 20px;
        min-height: 20px;
    }
    
    .clickable-part::before {
        width: 12px;
        height: 12px;
    }
    
    .problem-legend {
        padding: 15px;
    }
    
    .problem-legend h4 {
        font-size: var(--font-sm);
        margin-bottom: 12px;
    }
    
    .problem-legend li {
        padding: 6px 10px;
        font-size: var(--font-xs);
        margin-bottom: 6px;
    }
    
    /* Výsledky kalkulace pro mobily */
    .calculation-result {
        padding: 20px;
    }
    
    .calculation-summary {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .summary-item {
        padding: 10px 12px;
        gap: 6px;
    }
    
    .summary-item .label {
        font-size: var(--font-xs);
    }
    
    .summary-item .value {
        font-size: var(--font-sm);
        font-weight: 700;
    }
    
    .price-breakdown {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .price-breakdown h4 {
        font-size: var(--font-md);
        margin-bottom: 15px;
    }
    
    .price-item {
        padding: 8px 0;
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
    
    .price-item .description {
        font-size: var(--font-xs);
    }
    
    .price-item .amount {
        font-size: var(--font-sm);
        font-weight: 700;
    }
    
    .total-row {
        padding: 6px 0;
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
    
    .total-row.final {
        font-size: var(--font-md);
        padding-top: 12px;
        margin-top: 8px;
    }
    
    .calculation-note {
        padding: 12px;
        margin-bottom: 20px;
    }
    
    .calculation-note p {
        font-size: var(--font-xs);
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
    
    .calculation-actions {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .calculation-actions .btn {
        max-width: 100%;
        padding: 12px 20px;
        font-size: var(--font-sm);
        font-weight: 600;
    }
    
    /* Navigace kalkulátoru pro mobily */
    .calculator-navigation {
        gap: 12px;
        margin-top: 20px;
        padding-top: 15px;
    }
    
    .calculator-navigation .btn {
        max-width: 100%;
        padding: 10px 15px;
        font-size: var(--font-sm);
    }
    
    /* Cenové zobrazení pro mobily */
    .price-display {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .service-type {
        font-size: var(--font-md);
        margin-bottom: 8px;
    }
    
    .price-amount {
        font-size: 2.5rem;
        margin-bottom: 8px;
    }
    
    .price-subtitle {
        font-size: var(--font-xs);
    }
    
    .price-details {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .price-details h4 {
        font-size: var(--font-md);
        margin-bottom: 15px;
    }
    
    .detail-item {
        padding: 8px 0;
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
    
    .detail-item .label {
        font-size: var(--font-xs);
    }
    
    .detail-item .value {
        font-size: var(--font-sm);
        font-weight: 700;
    }
}

@media (max-width: 360px) {
    /* Extra malé mobily */
    .calculator-modal-content {
        padding: 12px;
    }
    
    .calculator-header h2 {
        font-size: var(--font-sm);
    }
    
    .calc-tab {
        padding: 8px 12px;
        font-size: 0.7rem;
    }
    
    .step-header .step-number {
        width: 35px;
        height: 35px;
        font-size: var(--font-md);
    }
    
    .furniture-type-card, .service-type-card {
        padding: 15px 12px;
    }
    
    .furniture-3d-model {
        height: 80px;
    }
    
    .sofa-3d, .chair-3d {
        transform: scale(0.7) rotateX(-5deg) rotateY(-8deg);
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: var(--font-md);
    }
    
    .furniture-model {
        padding: 15px;
        min-height: 150px;
    }
    
    .interactive-sofa, .interactive-chair {
        transform: scale(0.9);
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .calculation-actions .btn {
        padding: 10px 15px;
        font-size: var(--font-xs);
    }
}

/* Desktop-only content - skryto na mobilech */
.desktop-only {
    display: block;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    /* Hero sekce zabírá celou obrazovku na mobilech */
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 20px 0;
    }
    
    .hero-container {
        justify-content: center;
        align-items: center;
        min-height: 80vh;
    }
    
    .hero-right {
        width: 100%;
        max-width: 100%;
        flex: none;
    }
    
    .hero-content {
        text-align: center;
        padding: 20px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-slogan {
        font-size: 1.1rem;
        margin-bottom: 30px;
        min-height: auto;
    }
    
    .hero-benefits {
        justify-content: center;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    /* Skrytí některých sekcí na mobilech pro lepší fokus */
    .trust-section {
        padding: 40px 0;
    }
    
    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .trust-card {
        padding: 20px 15px;
    }
    
    .trust-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .trust-card h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .trust-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-slogan {
        font-size: 1rem;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* ----- FINAL MOBILE RESET ----- */
@media (max-width: 768px)  { body, .hero { padding-top: 0 !important; } }
@media (max-width: 600px)  { body, .hero { padding-top: 0 !important; } }
@media (max-width: 480px)  { body, .hero { padding-top: 0 !important; } }
@media (max-width: 360px)  { body, .hero { padding-top: 0 !important; } }
@media (max-width: 320px)  { body, .hero { padding-top: 0 !important; } }
@media (max-height: 500px) and (orientation: landscape) {
    body, .hero { padding-top: 0 !important; }
}

/* ===== PROFESSIONAL FORM STYLES (CRM-INSPIRED) ===== */

/* Professional Form Modal */
.professional-form-modal {
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
}

.professional-form-modal h2 {
    font-size: var(--font-2xl);
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.modal-subtitle {
    font-size: var(--font-md);
    color: var(--text-light);
    margin-bottom: 30px;
    text-align: center;
}

/* Professional Form Container */
.professional-form {
    background: white;
}

/* Form Section with Header */
.form-section {
    margin-bottom: 35px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.form-section:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.form-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.form-section-header i {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-md);
    flex-shrink: 0;
}

.form-section-header h3 {
    font-size: var(--font-lg);
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
}

/* Required Field Indicator */
.required-field::after {
    content: ' *';
    color: var(--error-color);
    font-weight: 700;
}

/* Enhanced Form Controls */
.professional-form .form-control {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px 15px;
    font-size: var(--font-md);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.professional-form .form-control:hover {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(0, 82, 165, 0.05);
}

.professional-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 82, 165, 0.15);
    background: white;
}

.professional-form .form-control::placeholder {
    color: var(--text-lighter);
    font-style: italic;
}

/* Form Group Enhancements */
.professional-form .form-group {
    margin-bottom: 20px;
}

.professional-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
    font-size: var(--font-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Form Row for Side-by-Side Fields */
.professional-form .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 0;
}

/* Select Dropdown Enhancement */
.professional-form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230052A5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 45px;
    cursor: pointer;
}

.professional-form select.form-control:hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231a6ebd' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

/* Textarea Enhancement */
.professional-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
    line-height: 1.6;
}

/* File Input Enhancement */
.professional-form input[type="file"].form-control {
    padding: 10px;
    cursor: pointer;
    border-style: dashed;
}

.professional-form input[type="file"].form-control:hover {
    border-color: var(--primary-color);
    background: rgba(0, 82, 165, 0.02);
}

/* Form Text Helper */
.professional-form .form-text {
    display: block;
    margin-top: 6px;
    font-size: var(--font-xs);
    color: var(--text-lighter);
    font-style: italic;
}

/* Enhanced Checkbox Container */
.professional-form .checkbox-container {
    padding-left: 32px;
    margin-bottom: 15px;
    font-size: var(--font-sm);
    line-height: 1.5;
}

.professional-form .checkbox-container .checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
}

.professional-form .checkbox-container:hover .checkmark {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 82, 165, 0.1);
}

.professional-form .checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.professional-form .checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
}

/* Form Actions */
.form-actions {
    text-align: center;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 2px solid var(--border-color);
}

.form-actions .btn {
    padding: 15px 40px;
    font-size: var(--font-lg);
    font-weight: 700;
    min-width: 250px;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

.form-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.form-note {
    margin-top: 15px;
    font-size: var(--font-sm);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note i {
    color: var(--primary-color);
}

/* Warranty Service Button Styling */
.btn-warranty {
    background: linear-gradient(135deg, #27AE60 0%, #229954 100%);
    color: white;
    border: 2px solid #27AE60;
    font-weight: 700;
}

.btn-warranty:hover {
    background: linear-gradient(135deg, #229954 0%, #27AE60 100%);
    border-color: #229954;
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Form Validation States */
.professional-form .form-control.is-invalid {
    border-color: var(--error-color);
    background-color: rgba(231, 76, 60, 0.05);
}

.professional-form .form-control.is-valid {
    border-color: var(--success-color);
    background-color: rgba(39, 174, 96, 0.05);
}

/* Loading State for Form Submission */
.professional-form.loading {
    opacity: 0.6;
    pointer-events: none;
}

.professional-form.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Responsive Adjustments for Professional Forms */
@media (max-width: 768px) {
    .professional-form-modal {
        width: 95%;
        max-width: 95%;
        margin: 10px auto;
        padding: 20px;
    }
    
    .professional-form-modal h2 {
        font-size: var(--font-xl);
    }
    
    .modal-subtitle {
        font-size: var(--font-sm);
        margin-bottom: 25px;
    }
    
    .form-section {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .form-section-header {
        margin-bottom: 15px;
        padding-bottom: 12px;
    }
    
    .form-section-header i {
        width: 30px;
        height: 30px;
        font-size: var(--font-sm);
    }
    
    .form-section-header h3 {
        font-size: var(--font-md);
    }
    
    .professional-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .professional-form .form-control {
        padding: 10px 12px;
        font-size: var(--font-sm);
    }
    
    .professional-form .form-group label {
        font-size: var(--font-xs);
        margin-bottom: 6px;
    }
    
    .professional-form textarea.form-control {
        min-height: 100px;
    }
    
    .form-actions {
        margin-top: 25px;
        padding-top: 20px;
    }
    
    .form-actions .btn {
        width: 100%;
        max-width: 100%;
        min-width: auto;
        padding: 12px 30px;
        font-size: var(--font-md);
    }
    
    .form-note {
        font-size: var(--font-xs);
        margin-top: 12px;
    }
}

@media (max-width: 480px) {
    .professional-form-modal {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 15px;
        border-radius: 0;
        max-height: 100vh;
    }
    
    .professional-form-modal h2 {
        font-size: var(--font-lg);
    }
    
    .modal-subtitle {
        font-size: var(--font-xs);
        margin-bottom: 20px;
    }
    
    .form-section {
        padding: 15px;
        margin-bottom: 20px;
        border-radius: var(--radius-md);
    }
    
    .form-section-header {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        margin-bottom: 12px;
        padding-bottom: 10px;
    }
    
    .form-section-header i {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .form-section-header h3 {
        font-size: var(--font-sm);
    }
    
    .professional-form .form-control {
        padding: 8px 10px;
        font-size: var(--font-xs);
    }
    
    .professional-form .form-group {
        margin-bottom: 15px;
    }
    
    .professional-form .form-group label {
        font-size: 0.7rem;
        margin-bottom: 5px;
    }
    
    .professional-form select.form-control {
        background-size: 16px;
        padding-right: 35px;
    }
    
    .professional-form textarea.form-control {
        min-height: 80px;
    }
    
    .professional-form .checkbox-container {
        padding-left: 28px;
        font-size: var(--font-xs);
    }
    
    .professional-form .checkbox-container .checkmark {
        width: 20px;
        height: 20px;
    }
    
    .form-actions {
        margin-top: 20px;
        padding-top: 15px;
    }
    
    .form-actions .btn {
        padding: 10px 25px;
        font-size: var(--font-sm);
    }
    
    .form-note {
        flex-direction: column;
        gap: 5px;
        margin-top: 10px;
    }
}

/* Form Type Selection Styles */
.form-type-selection {
    text-align: center;
    margin-bottom: 30px;
    padding: 30px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    border-radius: var(--radius-lg);
}

.form-type-selection h3 {
    font-size: var(--font-xl);
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 600;
}

.form-type-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-form-type {
    padding: 15px 35px;
    font-size: var(--font-md);
    font-weight: 600;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-normal);
    min-width: 220px;
    box-shadow: var(--shadow-sm);
}

.btn-form-type:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-form-type.active {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.contact-form-container {
    animation: fadeInUp 0.5s ease forwards;
}

.contact-form-container h3 {
    font-size: var(--font-xl);
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

@media (max-width: 768px) {
    .form-type-selection {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .form-type-selection h3 {
        font-size: var(--font-lg);
        margin-bottom: 20px;
    }
    
    .form-type-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn-form-type {
        width: 100%;
        max-width: 300px;
        min-width: auto;
        padding: 12px 25px;
        font-size: var(--font-sm);
    }
    
    .contact-form-container h3 {
        font-size: var(--font-lg);
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .form-type-selection {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .form-type-selection h3 {
        font-size: var(--font-md);
        margin-bottom: 15px;
    }
    
    .btn-form-type {
        max-width: 100%;
        padding: 10px 20px;
        font-size: var(--font-xs);
    }
    
    .contact-form-container h3 {
        font-size: var(--font-md);
        margin-bottom: 15px;
    }
}
