/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #64748b;
    --border: #e2e8f0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: var(--light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

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

/* ===== HEADER & NAVIGATION ===== */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-dark {
    background: #111827;
    box-shadow: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.header-dark .navbar {
    padding: 0.6rem 0;
}

.header-dark .nav-menu a {
    color: rgba(255,255,255,0.8);
}

.header-dark .nav-menu a:hover {
    color: #fff;
}

.header-dark .logo-img {
    filter: brightness(0) invert(1);
    height: 36px;
}

.header-dark .menu-toggle span {
    background: white;
}

/* Header na hlavní stránce s hero obrázkem */
.header-home {
    background: transparent;
    box-shadow: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

/* Navigační lišta na hlavní stránce - posunuta dolů */
.header-home .navbar {
    padding-top: 150px;
}

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

/* Logo na hlavní stránce - zvětšené a v levém rohu */
.header-home .logo {
    position: absolute;
    top: 20px;
    left: 20px;
}

.logo-img {
    height: 100px;
    width: auto;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Logo na hlavní stránce - zvětšené */
.header-home .logo-img {
    height: 150px;
}

@media (max-width: 768px) {
    .logo-img {
        height: 60px;
    }

    /* Logo na hlavní stránce - responsive */
    .header-home .logo-img {
        height: 100px;
    }

    /* Navigační lišta na hlavní stránce - menší padding na mobilu */
    .header-home .navbar {
        padding-top: 80px;
    }
}

.logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    background: white;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Navigační tlačítka na hlavní stránce s hero pozadím */
.header-home .nav-menu a {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.nav-menu a:hover {
    color: white;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    border-color: var(--primary-color);
}

.nav-menu a:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(37, 99, 235, 0.3);
}

/* ===== PRŮHLEDNÝ NAVIGAČNÍ BOX V HERO SEKCI ===== */
.hero-nav-box {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(150, 150, 150, 0.25);
    backdrop-filter: blur(15px);
    border-radius: 26px;
    padding: 26px 30px 26px 210px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 1000px;
}

.hero-nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    height: 60px;
}

.hero-logo-img {
    height: 240px;
    width: auto;
    border-radius: 12px;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -200px;
}

.hero-nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.hero-nav-menu li {
    margin: 0;
}

.hero-nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.24rem;
    padding: 0.98rem 1.95rem;
    border-radius: 33px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    display: inline-block;
    white-space: nowrap;
}

.hero-nav-menu a:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
    border-color: var(--primary-color);
}

/* Skrýt původní header na hlavní stránce */
.header-home {
    display: none;
}

/* ===== HERO MENU TOGGLE (HAMBURGER) ===== */
.hero-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    flex-direction: column;
    gap: 5px;
}

.hero-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hero-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hero-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.hero-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== HERO MENU OVERLAY ===== */
.hero-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-menu-overlay.active {
    display: block;
    opacity: 1;
}


/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/static/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 0;
    text-align: center;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 1rem;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero obsah zarovnaný vlevo pod navigační box */
.hero-content-right {
    text-align: left;
    position: absolute;
    left: calc(50% - 40px);
    transform: translateX(-50%);
    top: 280px;
    max-width: 1200px;
    width: 100%;
    padding: 0 30px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: calc(2rem + 60px);
}

.hero-tagline {
    margin-top: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    letter-spacing: 0.2px;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    line-height: 1.5;
    -webkit-appearance: none;
    appearance: none;
    vertical-align: middle;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.6);
    transform: translateY(-3px);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-success {
    background: var(--success-color);
    color: white;
}

.btn-danger {
    background: var(--danger-color);
    color: white;
}

/* ===== SECTIONS ===== */
section {
    padding: 4rem 0;
}

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

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.services-section-heading {
    font-size: 3.5rem;
    text-align: left;
    position: relative;
    padding-bottom: 18px;
    padding-left: 24px;
    display: inline-block;
    line-height: 1.1;
}

.services-section-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 5px;
    background: linear-gradient(to bottom, var(--accent-color), var(--primary-color));
    border-radius: 4px;
}

.services-section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 60%, transparent 100%);
    border-radius: 2px;
}

.services-section-heading .heading-motif {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 6px;
}

/* ===== BENEFITS GRID ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 20px;
    }
}

/* ===== USP BAR ===== */
.usp-bar {
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 36px 0;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.usp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 24px;
    position: relative;
}

.usp-item + .usp-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    bottom: 16px;
    width: 1px;
    background: var(--border);
}

.usp-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    color: var(--primary-color);
    position: relative;
}

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

.usp-icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.07);
}

.usp-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
    line-height: 1.3;
}

.usp-item span {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .usp-item:nth-child(3)::before {
        display: none;
    }

    .usp-item:nth-child(3),
    .usp-item:nth-child(4) {
        border-top: 1px solid var(--border);
    }
}

/* ===== SERVICE DETAIL SECTION (Fotka + Text střídavě) ===== */
.services-detail-section {
    background: #f8fafc;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services-detail-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    background-image:
        linear-gradient(135deg, #e2e8f0 25%, transparent 25%),
        linear-gradient(-135deg, #e2e8f0 25%, transparent 25%),
        linear-gradient(45deg, #cbd5e1 25%, transparent 25%),
        linear-gradient(-45deg, #cbd5e1 25%, transparent 25%);
    background-size: 450px 450px;
    background-position: 0 0, 0 225px, 225px -225px, -225px 0;
    opacity: 1;
    mask-image:
        linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0) 100%),
        linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 40%);
    -webkit-mask-image:
        linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0) 100%),
        linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 40%);
    mask-composite: multiply;
    -webkit-mask-composite: source-in;
    pointer-events: none;
    z-index: 0;
}

.services-detail-section::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 35%;
    height: 50%;
    background-image:
        linear-gradient(135deg, #e2e8f0 25%, transparent 25%),
        linear-gradient(-135deg, #e2e8f0 25%, transparent 25%),
        linear-gradient(45deg, #cbd5e1 25%, transparent 25%),
        linear-gradient(-45deg, #cbd5e1 25%, transparent 25%);
    background-size: 450px 450px;
    background-position: 0 0, 0 225px, 225px -225px, -225px 0;
    opacity: 1;
    mask-image:
        linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0) 100%),
        linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 20%, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
    -webkit-mask-image:
        linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0) 100%),
        linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 20%, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
    mask-composite: multiply;
    -webkit-mask-composite: source-in;
    pointer-events: none;
    z-index: 0;
}

.pattern-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 50%;
    background-image:
        linear-gradient(135deg, #e2e8f0 25%, transparent 25%),
        linear-gradient(-135deg, #e2e8f0 25%, transparent 25%),
        linear-gradient(45deg, #cbd5e1 25%, transparent 25%),
        linear-gradient(-45deg, #cbd5e1 25%, transparent 25%);
    background-size: 450px 450px;
    background-position: 0 0, 0 225px, 225px -225px, -225px 0;
    opacity: 1;
    mask-image:
        linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0) 100%),
        linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 40%);
    -webkit-mask-image:
        linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0) 100%),
        linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 40%);
    mask-composite: multiply;
    -webkit-mask-composite: source-in;
    pointer-events: none;
    z-index: 0;
}

.services-detail-section .container {
    position: relative;
    z-index: 1;
}

.service-detail-row {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-detail-row > * {
    flex: 1;
}

.service-detail-row:last-child {
    margin-bottom: 0;
}

/* Reverse layout pro střídání - fotka vpravo */
.service-detail-row-reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.service-detail-image img:hover {
    transform: scale(1.05);
}

.service-detail-content {
    padding: 20px;
}

.service-detail-content .pkg-price {
    font-size: 2rem;
    font-weight: 800;
    color: #0ea5e9;
    margin: 20px 0 16px;
}

.service-detail-content .pkg-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.service-detail-content h3 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-detail-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-detail-content ul li {
    font-size: 1.05rem;
    color: #64748b;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Responzivní styly pro mobily */
@media (max-width: 768px) {
    .service-detail-row {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
    }

    .service-detail-row-reverse {
        flex-direction: column;
    }

    /* Zajistit, aby obrázek byl vždy nahoře */
    .service-detail-image {
        order: 1;
    }

    .service-detail-content {
        order: 2;
    }

    .service-detail-content {
        padding: 0;
    }

    .service-detail-content h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .service-detail-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .service-detail-content ul li {
        font-size: 0.95rem;
        padding: 10px 0;
        padding-left: 25px;
    }

    .service-detail-image {
        border-radius: 15px;
    }

    .service-detail-image img {
        border-radius: 15px;
    }
}

/* ===== SERVICES / PRICING ===== */
.services {
    background: white;
}

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

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.service-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
}

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

.service-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.2);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.service-description {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.service-info {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.info-label {
    font-weight: 600;
}

.service-promo {
    background: var(--accent-color);
    color: white;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    margin-top: 1rem;
    font-size: 1.1rem;
}

.service-details h4 {
    margin: 1.5rem 0 1rem;
    color: var(--dark);
}

.service-details ul {
    list-style: none;
    padding-left: 0;
}

.service-details li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.service-footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border);
}

.footer-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.footer-item .icon {
    font-size: 2rem;
}

/* ===== PORTFOLIO / REALIZACE ===== */
.portfolio {
    background: var(--light);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.portfolio-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.image-container {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.image-container img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.image-overlay span {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.label-before {
    background: var(--danger-color);
}

.label-after {
    background: var(--success-color);
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-info h3 {
    margin-bottom: 0.5rem;
}

.no-content {
    text-align: center;
    color: var(--gray);
    padding: 3rem;
}

/* ===== REVIEWS ===== */
.reviews {
    background: linear-gradient(160deg, #f0f4ff 0%, #f8fafc 100%);
    padding: 80px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 0;
}

.review-card {
    background: #fff;
    padding: 2rem 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(37, 99, 235, 0.07);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.13);
}

.review-quote {
    font-size: 5rem;
    line-height: 1;
    color: var(--primary-color);
    opacity: 0.08;
    position: absolute;
    top: 8px;
    right: 20px;
    font-family: Georgia, serif;
    pointer-events: none;
    user-select: none;
}

.review-rating {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 0.9rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.75;
    flex: 1;
    margin-bottom: 1.5rem;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #60a5fa);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

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

.review-source {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    color: var(--gray);
}

.review-date {
    color: var(--gray);
    font-size: 0.875rem;
}

@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

.review-form-section {
    max-width: 600px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: var(--light);
    border-radius: 12px;
}

.review-form-section h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.form-note {
    font-size: 0.875rem;
    color: var(--gray);
    margin-top: 1rem;
    text-align: center;
}

.form-help {
    font-size: 0.875rem;
    color: var(--gray);
    margin-top: 0.25rem;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--light);
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ===== FLASH MESSAGES ===== */
.flash-messages {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
}

.flash {
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: slideIn 0.3s ease;
}

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

.flash-success {
    background: var(--success-color);
    color: white;
}

.flash-danger {
    background: var(--danger-color);
    color: white;
}

.flash-warning {
    background: var(--warning-color);
    color: white;
}

.flash-info {
    background: var(--primary-color);
    color: white;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer .container {
    max-width: 100%;
    padding: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    gap: 2rem;
    width: 100%;
}

.footer-logo-section {
    flex-shrink: 0;
    padding-left: 40px;
}

.footer-middle-columns {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex: 1;
}

.footer-review-form {
    flex-shrink: 0;
    padding-right: 40px;
    width: 350px;
}

.footer-logo {
    width: 400px !important;
    height: auto !important;
    border-radius: 10px;
    object-fit: contain;
    box-shadow: 0 2px 8px rgba(255,255,255,0.1);
}

/* Formulář recenzí ve footeru */
.footer-review-form h3 {
    margin-bottom: 1rem;
}

.review-form-footer .form-group {
    margin-bottom: 1rem;
}

.review-form-footer label {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    color: #e2e8f0;
}

.review-form-footer input,
.review-form-footer select,
.review-form-footer textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #475569;
    border-radius: 4px;
    background: #334155;
    color: white;
    font-size: 0.9rem;
}

.review-form-footer input:focus,
.review-form-footer select:focus,
.review-form-footer textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(252, 176, 69, 0.3);
}

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

.review-form-footer .btn {
    width: 100%;
    padding: 0.6rem;
    margin-top: 0.5rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

/* Footer logo - odstraněno, nyní je výše s .footer-logo-section */

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    padding-left: 20px;
    padding-right: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--gray);
}

/* ===== ADMIN STYLES ===== */
.admin-page {
    background: var(--light);
}

.admin-nav {
    background: var(--dark);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.admin-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-logo-img {
    height: 55px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.admin-logo h2 {
    color: white;
    font-size: 1.75rem;
    margin: 0;
    font-weight: 700;
}

.admin-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.admin-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.admin-menu a:hover {
    color: var(--accent-color);
}

.logout-link {
    color: var(--danger-color) !important;
}

.admin-container {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 20px;
}

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

.admin-header h1 {
    font-size: 2rem;
}

/* ===== ADMIN LOGIN ===== */
.admin-login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.login-box {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 400px;
}

.login-logo {
    display: block;
    margin: 0 auto 1.5rem;
    height: 80px;
    width: auto;
    border-radius: 12px;
    object-fit: contain;
}

.login-box h1 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.login-box p {
    text-align: center;
    color: var(--gray);
    margin-bottom: 2rem;
}

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

.login-footer {
    text-align: center;
    margin-top: 2rem;
}

.login-footer a {
    color: var(--primary-color);
    text-decoration: none;
}

/* ===== ADMIN DASHBOARD ===== */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.dashboard-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.card-alert {
    color: var(--danger-color);
    font-weight: 600;
    margin: 0.5rem 0;
}

.card-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.admin-quick-actions {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.action-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

/* ===== ADMIN TABLES ===== */
.admin-table-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    background: var(--dark);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.admin-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}

.admin-table tr:hover {
    background: var(--light);
}

.table-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.table-images {
    display: flex;
    gap: 0.5rem;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-success {
    background: var(--success-color);
    color: white;
}

.badge-warning {
    background: var(--warning-color);
    color: white;
}

.highlight-pending {
    background: rgba(245, 158, 11, 0.1);
}

.highlight-unread {
    background: rgba(37, 99, 235, 0.05);
    font-weight: 600;
}

.contact-info {
    font-size: 0.875rem;
}

.contact-info div {
    margin: 0.25rem 0;
}

.action-buttons-group {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--gray);
}

/* ===== ADMIN FORMS ===== */
.admin-form-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 800px;
}

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

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 700px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
    max-height: 95vh;
    overflow-y: auto;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 2px solid var(--border);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 12px 12px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.75rem;
}

.modal-close {
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s;
}

.modal-close:hover {
    transform: scale(1.2);
}

.modal-body {
    padding: 2rem;
}

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

/* Modal form styling */
.modal-body .form-group {
    margin-bottom: 1.5rem;
}

.modal-body .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ===== MOBILE MENU ===== */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 5px 0;
    transition: all 0.3s;
    border-radius: 3px;
}

/* Hamburger menu na hlavní stránce */
.header-home .menu-toggle span {
    background: white;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

body.menu-open {
    overflow: hidden;
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
    z-index: 10002;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

#lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

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

#lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem 2rem;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 40px;
    }

    #lightbox-img {
        max-width: 95%;
        max-height: 80vh;
    }

    #lightbox-caption {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
        bottom: 15px;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    /* Container and sections */
    .container {
        padding: 0 15px;
    }

    section {
        padding: 3rem 0;
    }

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

    .services-section-heading {
        font-size: 3.5rem;
    }

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

    /* Navigation */
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    /* Mobilní menu na hlavní stránce */
    .header-home .nav-menu {
        background: rgba(0, 0, 0, 0.95);
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        backdrop-filter: blur(10px);
    }

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

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        width: 90%;
        margin: 0 auto 1rem;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        border-radius: 25px;
        border: 2px solid var(--primary-color);
        background: white;
        box-shadow: 0 3px 10px rgba(37, 99, 235, 0.2);
        color: var(--dark);
    }

    /* Mobilní menu tlačítka na hlavní stránce */
    .header-home .nav-menu a {
        border: 2px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
        color: white;
    }

    /* Hero section */
    .hero {
        background-attachment: scroll;
        padding: 0;
        min-height: 100vh;
        height: 100vh;
    }

    /* Průhledný navigační box - responsive */
    .hero-nav-box {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 20px 30px;
        gap: 20px;
        max-width: 95%;
        min-width: auto;
        width: auto;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-nav-logo {
        flex-shrink: 0;
        height: auto;
    }

    .hero-logo-img {
        height: 65px;
        position: static;
        transform: none;
        left: auto;
    }

    /* Zobrazit hamburger tlačítko na mobilech */
    .hero-menu-toggle {
        display: flex;
        padding: 8px;
        margin-left: auto;
        flex-shrink: 0;
        position: relative;
        z-index: 10002;
    }

    .hero-menu-toggle span {
        width: 24px;
        height: 2px;
    }

    /* Nav-box nad overlay */
    .hero-nav-box {
        z-index: 10001 !important;
        position: absolute !important;
    }

    /* Skrýt social ikony na mobilech */
    .sluzba-nav-socials {
        display: none;
    }

    /* Mobilní popup – vycentrovaný na obrazovce */
    .hero-nav-menu {
        display: none !important;
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        right: auto !important;
        bottom: auto !important;
        margin: 0 !important;
        transform: translate(-50%, -50%) !important;
        width: min(85vw, 320px) !important;
        height: auto !important;
        max-height: 75vh !important;
        background: #0f172a !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        gap: 0 !important;
        padding: 12px 0 20px !important;
        z-index: 10000 !important;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6) !important;
        overflow-y: auto !important;
        border-radius: 20px !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

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

    /* Řádky odkazů */
    .hero-nav-menu li {
        width: 100% !important;
        margin: 0 !important;
        list-style: none !important;
        display: block !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    }

    .hero-nav-menu li:first-child {
        margin-top: 0 !important;
    }

    .hero-nav-menu a {
        display: block !important;
        padding: 16px 28px !important;
        font-size: 1rem !important;
        font-weight: 500 !important;
        color: rgba(255, 255, 255, 0.85) !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        text-transform: none !important;
        letter-spacing: normal !important;
        white-space: nowrap !important;
        transition: background 0.15s, color 0.15s, padding-left 0.15s !important;
        text-decoration: none !important;
    }

    .hero-nav-menu a:hover,
    .hero-nav-menu a:focus {
        background: rgba(255, 255, 255, 0.06) !important;
        color: #fff !important;
        padding-left: 36px !important;
        transform: none !important;
        box-shadow: none !important;
    }

    /* Hero obsah - responsive */
    .hero-content-right {
        text-align: center;
        max-width: 90%;
        top: 140px;
        bottom: auto;
        padding: 0 20px;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-buttons {
        justify-content: center;
        margin-top: 2rem;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

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

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-top: 8rem;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 1rem;
    }

    /* Scroll down button - mobile */
    .scroll-down-btn {
        transform: translateX(-50%) !important;
        bottom: 30px;
        left: 50% !important;
    }

    .scroll-down-btn:hover {
        transform: translateX(-50%) translateY(-5px) !important;
    }

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

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }

    .service-card {
        padding: 1.5rem;
    }

    /* Pořadí balíčků na mobilu */
    .service-card:nth-child(1) {
        order: 2; /* Klasická údržba - druhá */
    }

    .service-card:nth-child(2) {
        order: 1; /* Vánoční - první */
    }

    .service-card:nth-child(3) {
        order: 3; /* Hloubkové - třetí */
    }

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

    .service-description {
        font-size: 0.95rem;
    }

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

    .footer-item {
        flex-direction: column;
        text-align: center;
    }

    .footer-item .icon {
        font-size: 2.5rem;
    }

    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Reviews */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .review-form-section {
        padding: 1.5rem;
    }

    /* Admin */
    .admin-menu {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .admin-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .before-after {
        grid-template-columns: 1fr;
    }

    .image-container img {
        height: 200px;
    }

    /* Modal */
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 90vh;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-body .form-row {
        grid-template-columns: 1fr;
    }

    .modal-header {
        padding: 1rem 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.25rem;
    }

    .modal-footer {
        flex-direction: column;
        gap: 0.75rem;
    }

    .modal-footer .btn {
        width: 100%;
    }

    /* Footer */
    .footer .container {
        padding: 0 20px;
    }

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

    .footer-logo-section {
        order: -2; /* Logo první na mobilu */
        padding-left: 0;
        text-align: center;
    }

    .footer-logo {
        width: 120px !important; /* Menší logo na mobilu */
        max-width: 90%;
    }

    .footer-middle-columns {
        flex-direction: column;
        gap: 2rem;
        order: 0;
    }

    .footer-review-form {
        order: -1; /* Formulář bude druhý na mobilu */
        padding-right: 0;
        width: 100%;
        text-align: center;
    }

    .footer-section {
        padding: 1rem 0;
    }

    /* Buttons */
    .btn {
        font-size: 0.95rem;
        padding: 0.875rem 1.5rem;
    }
}

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

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

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

    .services-section-heading {
        font-size: 3rem;
    }

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

    .btn {
        font-size: 0.875rem;
        padding: 0.75rem 1.25rem;
    }
}

/* ===== TEMPLATE SELECTOR (Realizace Form) ===== */
.template-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.template-option {
    cursor: pointer;
    position: relative;
}

.template-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.template-card {
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
}

.template-option:hover .template-card {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.template-option input[type="radio"]:checked + .template-card {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(30, 64, 175, 0.05) 100%);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.template-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.template-name {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.template-desc {
    font-size: 0.8rem;
    color: var(--gray);
}

.template-fields {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.gallery-uploads,
.video-foto-uploads {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.gallery-upload-item,
.video-foto-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gallery-upload-item label,
.video-foto-item label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray);
}

.gallery-upload-item input[type="file"],
.video-foto-item input[type="file"] {
    font-size: 0.85rem;
}

/* ===== GRAPH CONTROLS ===== */
.graph-controls {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.graph-controls-left {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.graph-controls-right {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.graph-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--border);
    background: white;
    color: var(--dark);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.graph-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.05);
}

.graph-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.graph-date-picker {
    padding: 0.5rem;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--dark);
    background: white;
    transition: border-color 0.2s ease;
}

.graph-date-picker:focus {
    outline: none;
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .template-selector {
        grid-template-columns: repeat(2, 1fr);
    }

    .graph-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .graph-controls-left,
    .graph-controls-right {
        width: 100%;
        justify-content: center;
    }
}

/* ===== FRONTEND REALIZACE TEMPLATES ===== */

/* Šablona JEDNA FOTKA */
.single-photo {
    width: 100%;
}

.single-photo .image-container {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 8px;
}

.single-photo .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Šablona GALERIE */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
    width: 100%;
}

/* Pokud jsou jen 2 fotky, nastavit stejnou výšku jako před/po */
.gallery-grid-two {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0 !important;
}

.gallery-grid-two .gallery-item {
    aspect-ratio: auto !important;
    height: 250px !important;
}

.gallery-grid-two .gallery-item img {
    height: 250px !important;
    object-fit: cover !important;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

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

/* Šablona VIDEO + FOTKY */
.video-with-photos {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
}

.video-photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 1;
}

.video-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-photo-item:hover img {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .video-photos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }
}

/* ===== FAQ ACCORDION ===== */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-question-text {
    flex: 1;
}

.faq-toggle {
    font-size: 1rem;
    color: #2563eb;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-toggle {
    transform: rotate(180deg);
}

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

.faq-item.open .faq-answer {
    max-height: 1000px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer-content {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
}

.faq-answer-content p {
    margin: 0 0 1rem 0;
}

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

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

.faq-answer-content ul:last-child {
    margin-bottom: 0;
}

.faq-answer-content li {
    margin: 0.5rem 0;
}

.faq-answer-content strong {
    color: #1e293b;
    font-weight: 600;
}

.faq-answer-content code {
    background: #f1f5f9;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: #2563eb;
}

/* Active link v navigaci */
.nav-menu a.active {
    color: white;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

/* Responzivní FAQ */
@media (max-width: 768px) {
    .faq-question {
        font-size: 1rem;
        padding: 1rem;
        gap: 0.75rem;
    }

    .faq-icon {
        font-size: 1.25rem;
    }

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

    .faq-answer-content {
        font-size: 0.95rem;
    }
}

/* ===== MODERN BLOG STYLES ===== */

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
    min-height: 340px;
    display: flex;
    flex-direction: column;
}

.blog-hero .hero-nav-box {
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    min-width: unset;
    border-radius: 0;
    padding: 0 40px;
    height: 80px;
    overflow: visible;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    box-shadow: none;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    gap: 24px;
    flex-shrink: 0;
}

.blog-hero .hero-nav-logo {
    position: relative;
    height: 100%;
    flex-shrink: 0;
}

.blog-hero .hero-logo-img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 210px;
    width: auto;
    border-radius: 6px;
}

.blog-hero .hero-nav-menu {
    flex: 1;
    justify-content: center;
    margin: 0;
}

.blog-hero .hero-nav-menu a {
    font-size: 0.95rem;
    padding: 0.55rem 1.2rem;
}

.blog-hero-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0 3.5rem;
    position: relative;
    z-index: 1;
}

.blog-article-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-article-header .hero-nav-box {
    transform: none;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    min-width: unset;
    border-radius: 0;
    padding: 0 40px;
    height: 72px;
    overflow: visible;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    border: none;
    gap: 24px;
}

.blog-article-header .hero-nav-logo {
    position: relative;
    height: 72px;
    flex-shrink: 0;
}

.blog-article-header .hero-logo-img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 180px;
    width: auto;
    border-radius: 6px;
}

.blog-article-header .hero-nav-menu {
    flex: 1;
    justify-content: center;
    margin: 0;
}

.blog-article-header .hero-nav-menu a {
    font-size: 0.95rem;
    padding: 0.55rem 1.2rem;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

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

/* Blog hero – mobilní nav (stejný styl jako mainpage) */
@media (max-width: 768px) {
    .blog-hero .hero-nav-box {
        height: auto;
        padding: 16px 20px;
        top: 16px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: auto;
        max-width: 94%;
        border-radius: 20px;
        gap: 16px;
    }

    .blog-hero .hero-logo-img {
        height: 60px;
        position: static;
        transform: none;
        top: auto;
        left: auto;
    }

    .blog-hero .hero-nav-logo {
        height: auto;
    }

    .blog-hero .sluzba-nav-socials {
        display: none;
    }

    .blog-hero-body {
        padding-top: 100px;
    }
}

/* Modern Search Box */
.blog-search-container {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.blog-search-wrapper {
    position: relative;
    display: flex;
    gap: 0.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    padding: 0.5rem;
    background: white;
}

.blog-search-input-wrapper {
    flex: 1;
    position: relative;
}

.blog-search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.2rem;
    pointer-events: none;
}

.blog-search-input {
    width: 100%;
    padding: 0.85rem 1.25rem 0.85rem 3rem !important;
    font-size: 1rem;
    border: none !important;
    border-radius: 50px !important;
    outline: none;
    background: transparent;
    transition: all 0.3s ease;
}

.blog-search-input:focus {
    background: #f8fafc;
}

/* Modern Blog Cards */
.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.modern-blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.modern-blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.modern-blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.25);
}

.blog-card-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.blog-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-blog-card:hover .blog-card-image::after {
    opacity: 1;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modern-blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    z-index: 10;
}

.blog-card-content {
    padding: 2rem;
}

.blog-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-title a {
    color: var(--dark);
    text-decoration: none;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    background-size: 0% 2px;
    background-repeat: no-repeat;
    background-position: left bottom;
    transition: background-size 0.3s ease;
}

.modern-blog-card:hover .blog-card-title a {
    background-size: 100% 2px;
}

.blog-card-excerpt {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: #94a3b8;
}

.blog-card-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-card-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.blog-card-button:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.5);
}

.blog-card-button::after {
    content: '→';
    transition: transform 0.3s ease;
}

.blog-card-button:hover::after {
    transform: translateX(5px);
}

/* Reading Progress Bar */
.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.5);
}

/* Article Header */
.article-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.article-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.article-header-content {
    position: relative;
    z-index: 1;
}

/* Enhanced Article Content */
.enhanced-blog-content {
    font-size: 1.125rem;
    line-height: 1.9;
    color: #1e293b;
}

.enhanced-blog-content h2 {
    font-size: 2.25rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.enhanced-blog-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.enhanced-blog-content h3 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 600;
}

.enhanced-blog-content p {
    margin-bottom: 1.75rem;
}

.enhanced-blog-content ul,
.enhanced-blog-content ol {
    margin-bottom: 2rem;
    padding-left: 2.5rem;
}

.enhanced-blog-content li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.enhanced-blog-content li::marker {
    color: var(--primary-color);
    font-weight: bold;
}

.enhanced-blog-content strong {
    color: var(--dark);
    font-weight: 700;
}

.enhanced-blog-content a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.enhanced-blog-content a:hover {
    border-bottom-color: var(--primary-color);
}

.enhanced-blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2.5rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.enhanced-blog-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(245, 158, 11, 0.05));
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    font-style: italic;
    color: #475569;
}

/* Social Share Buttons */
.social-share-floating {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
    opacity: 0;
    animation: fadeInLeft 0.5s ease forwards;
    animation-delay: 0.5s;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px) translateY(-50%);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(-50%);
    }
}

.share-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    position: relative;
}

.share-button::before {
    content: attr(data-tooltip);
    position: absolute;
    left: 60px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.share-button:hover::before {
    opacity: 1;
}

.share-button:hover {
    transform: scale(1.15);
}

.share-facebook {
    background: #1877f2;
}

.share-twitter {
    background: #1da1f2;
}

.share-linkedin {
    background: #0077b5;
}

.share-copy {
    background: #64748b;
}

/* Enhanced CTA Box */
.enhanced-cta-box {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.enhanced-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.enhanced-cta-content {
    position: relative;
    z-index: 1;
}

.enhanced-cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.enhanced-cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Modern Tags */
.modern-tags-container {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

.modern-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(245, 158, 11, 0.1));
    color: var(--primary-color);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-right: 0.75rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.modern-tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

/* Loading Skeleton */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.skeleton {
    animation: shimmer 2s infinite linear;
    background: linear-gradient(to right, #f0f0f0 4%, #e0e0e0 25%, #f0f0f0 36%);
    background-size: 1000px 100%;
}

.skeleton-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.skeleton-image {
    height: 240px;
    background: linear-gradient(to right, #f0f0f0 4%, #e0e0e0 25%, #f0f0f0 36%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite linear;
}

.skeleton-content {
    padding: 2rem;
}

.skeleton-title {
    height: 24px;
    background: linear-gradient(to right, #f0f0f0 4%, #e0e0e0 25%, #f0f0f0 36%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite linear;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.skeleton-text {
    height: 16px;
    background: linear-gradient(to right, #f0f0f0 4%, #e0e0e0 25%, #f0f0f0 36%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite linear;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

/* Enhanced Pagination */
.modern-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 4rem;
}

.pagination-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--border);
    background: white;
    color: var(--dark);
}

.pagination-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.pagination-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .social-share-floating {
        left: 10px;
    }

    .share-button {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .blog-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .social-share-floating {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin: 2rem 0;
        animation: none;
        opacity: 1;
    }

    .share-button::before {
        display: none;
    }

    .enhanced-blog-content {
        font-size: 1.05rem;
    }

    .enhanced-blog-content h2 {
        font-size: 1.75rem;
    }

    .enhanced-blog-content h3 {
        font-size: 1.4rem;
    }

    .enhanced-cta-box {
        padding: 2rem 1.5rem;
    }

    .enhanced-cta-box h3 {
        font-size: 1.5rem;
    }

    .enhanced-cta-box p {
        font-size: 1rem;
    }
}

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

    .blog-card-title {
        font-size: 1.25rem;
    }
}

/* ===== ZIMNÍ NABÍDKA / WINTER OFFER ===== */
.service-card-winter {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border: 4px solid #60a5fa;
    color: white;
    position: relative;
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.3), 0 0 20px rgba(96, 165, 250, 0.2);
}

.service-card-winter:hover {
    box-shadow: 0 20px 50px rgba(30, 58, 138, 0.4), 0 0 30px rgba(96, 165, 250, 0.3);
    transform: translateY(-8px);
}

.service-card-winter h3 {
    color: #dbeafe;
    font-size: 1.75rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.service-card-winter .service-description {
    color: #e0f2fe;
}

.badge-winter {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.4);
    letter-spacing: 0.5px;
}

.service-info-winter {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(96, 165, 250, 0.3);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.service-info-winter .info-label {
    color: #dbeafe;
    font-weight: 700;
}

.service-info-winter .info-item {
    color: #e0f2fe;
}

.service-promo-winter {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.2) 0%, rgba(96, 165, 250, 0.1) 100%);
    border: 2px solid #60a5fa;
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.25rem;
    text-align: center;
}

.service-promo-winter .original-price {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
    font-size: 1rem;
    display: block;
}

.service-promo-winter .winter-price {
    color: #dbeafe;
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.service-promo-winter .discount-badge {
    background: #dbeafe;
    color: #1e3a8a;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    align-self: center;
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.3);
}

.service-card-winter .service-details {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(96, 165, 250, 0.2);
    margin: 1.5rem 0;
}

.service-card-winter .service-details h4 {
    color: #dbeafe;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.service-card-winter .service-details ul {
    list-style: none;
    padding: 0;
}

.service-card-winter .service-details li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
    color: #e0f2fe;
    line-height: 1.5;
}

.service-card-winter .service-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #dbeafe;
    font-size: 1.2rem;
    font-weight: bold;
}

.service-tip-winter {
    background: rgba(96, 165, 250, 0.15);
    border-left: 4px solid #60a5fa;
    padding: 1rem;
    border-radius: 6px;
    margin: 1.5rem 0;
    color: #e0f2fe;
    font-size: 0.95rem;
}

.service-tip-winter strong {
    color: #dbeafe;
    font-weight: 700;
}

.btn-winter {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    color: white;
    font-weight: 700;
    border: none;
    box-shadow: 0 10px 25px rgba(96, 165, 250, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-winter:hover {
    background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 100%);
    box-shadow: 0 15px 35px rgba(96, 165, 250, 0.5);
    transform: translateY(-4px);
    color: #fff;
}

/* Responsive adjustments pro zimní nabídku */
@media (max-width: 768px) {
    .service-card-winter {
        border-width: 3px;
    }

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

    .badge-winter {
        font-size: 0.85rem;
        padding: 0.6rem 1.25rem;
        top: -12px;
    }

    .service-promo-winter .winter-price {
        font-size: 2rem;
    }

    .service-promo-winter .discount-badge {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .service-card-winter {
        border-width: 2px;
    }

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

    .badge-winter {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        top: -10px;
    }

    .service-promo-winter {
        padding: 1rem;
    }

    .service-promo-winter .winter-price {
        font-size: 1.75rem;
    }

    .service-promo-winter .discount-badge {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .service-tip-winter {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

/* ===== SCROLL DOWN BUTTON ===== */
.scroll-down-btn {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(calc(-50% + 30px));
    width: 50px;
    height: 50px;
    background: rgba(150, 150, 150, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-down-btn:hover {
    background: rgba(150, 150, 150, 0.5);
    transform: translateX(calc(-50% + 30px)) translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.scroll-down-btn svg {
    display: block;
}

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

@media (max-width: 768px) {
    .scroll-down-btn {
        bottom: 20px;
        width: 45px;
        height: 45px;
    }

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

/* ===== PRICING SECTION ===== */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.pricing-table-wrapper {
    margin-bottom: 40px;
}

.pricing-category {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 40px 0 20px 0;
    font-weight: 700;
}

.pricing-category:first-child {
    margin-top: 0;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.pricing-table thead {
    background: var(--primary-color);
    color: white;
}

.pricing-table {
    table-layout: fixed;
}

.pricing-table th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
}

.pricing-table th:nth-child(1) {
    width: 50%;
}

.pricing-table th:nth-child(2) {
    width: 25%;
}

.pricing-table th:nth-child(3) {
    width: 25%;
}

.pricing-table th:nth-child(2),
.pricing-table th:nth-child(3) {
    text-align: center;
}

.pricing-table tbody tr {
    border-bottom: 1px solid #e2e8f0;
    transition: background 0.2s;
}

.pricing-table tbody tr:hover {
    background: #f8fafc;
}

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

.pricing-table td {
    padding: 16px 20px;
    color: #334155;
}

.pricing-table td:first-child {
    font-weight: 500;
    color: #1e293b;
}

.pricing-table td:nth-child(2) {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    text-align: center;
}

.pricing-table td:nth-child(3) {
    color: #64748b;
    font-style: italic;
    text-align: center;
}

/* Balíčky */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.package-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

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

.package-featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.package-featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary-color);
    color: white;
    padding: 8px 40px;
    font-weight: 700;
    font-size: 0.85rem;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.package-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.package-header h4 {
    font-size: 1.8rem;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 10px 0;
}

.package-time {
    font-size: 1rem;
    opacity: 0.9;
    margin: 5px 0 0 0;
}

.package-content {
    padding: 30px;
}

.package-description {
    font-size: 1.1rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 25px;
    font-style: italic;
}

.package-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.package-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    color: #334155;
    font-size: 1rem;
}

.package-list li:last-child {
    border-bottom: none;
}

.package-card .btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

.pricing-note {
    text-align: center;
    color: #64748b;
    font-style: italic;
    margin-top: 40px;
    font-size: 0.95rem;
}

/* Responzivní styly pro ceník */
@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .package-featured {
        transform: scale(1);
    }

    .package-featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-table {
        font-size: 0.9rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 12px 10px;
    }

    .pricing-table th {
        font-size: 0.95rem;
    }

    .pricing-table td:nth-child(2) {
        font-size: 1rem;
    }

    .pricing-category {
        font-size: 1.5rem;
    }

    .package-header h4 {
        font-size: 1.5rem;
    }

    .package-price {
        font-size: 2rem;
    }

    .package-badge {
        font-size: 0.75rem;
        padding: 6px 35px;
    }
}

/* ===== BALÍČKY – KARTY (Co bychom pro vás udělali) ===== */

.pkg-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.pkg-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pkg-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.pkg-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.pkg-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pkg-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}

.pkg-card-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #1e293b;
    margin: 0;
}

.pkg-desc-intro {
    font-size: 1rem;
    color: #475569;
    margin: 0 0 8px;
    font-style: italic;
}

.pkg-desc {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
    flex: 1;
    padding: 0;
    list-style: none;
}

.pkg-desc li {
    padding: 4px 0 4px 16px;
    position: relative;
}

.pkg-desc li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: #0ea5e9;
    font-weight: 700;
}

.pkg-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0ea5e9;
}

.pkg-btns {
    display: flex;
    gap: 8px;
}

.pkg-btns .btn {
    flex: 1;
    text-align: center;
    padding: 10px 8px;
    font-size: 1rem;
}

/* Info modal list */
.info-modal-list {
    padding-left: 20px;
    margin: 12px 0 0;
}

.info-modal-list li {
    margin-bottom: 8px;
    color: #334155;
    font-size: 0.95rem;
}

/* Responsivní karty */
@media (max-width: 600px) {
    .pkg-cards {
        grid-template-columns: 1fr;
    }

}

/* ===== DETAIL STRÁNKA SLUŽBY ===== */

/* Full-bleed hero */
.sluzba-hero {
    position: relative;
    height: 520px;
    color: white;
}

.sluzba-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.sluzba-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.sluzba-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0.15) 30%,
        rgba(0, 0, 0, 0.6) 70%,
        rgba(0, 0, 0, 0.82) 100%
    );
    display: flex;
    align-items: flex-end;
    padding-bottom: 52px;
}

.sluzba-hero .hero-nav-box {
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    min-width: unset;
    border-radius: 0;
    padding: 0 40px;
    height: 80px;
    overflow: visible;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    box-shadow: none;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    gap: 24px;
}

.sluzba-hero .hero-nav-logo {
    position: relative;
    height: 100%;
    flex-shrink: 0;
}

.sluzba-hero .hero-logo-img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 210px;
    width: auto;
    border-radius: 6px;
}

.sluzba-hero .hero-nav-menu {
    flex: 1;
    justify-content: center;
    margin: 0;
}

.sluzba-hero .hero-nav-menu a {
    font-size: 0.95rem;
    padding: 0.55rem 1.2rem;
}

.sluzba-nav-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.sluzba-nav-socials a {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    transition: color 0.2s, transform 0.2s;
}

.sluzba-nav-socials a:hover {
    color: #fff;
    transform: translateY(-2px);
}

.sluzba-hero-title {
    font-size: 5rem;
    font-weight: 800;
    margin: 0 0 12px;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.sluzba-perex {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 20px;
    line-height: 1.65;
    max-width: 560px;
}

.sluzba-hero-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 24px;
}

.sluzba-hero .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
}

.sluzba-hero .btn-secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

.sluzba-hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.sluzba-detail {
    padding: 72px 0;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.sluzba-detail::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 50%;
    background-image:
        linear-gradient(135deg, #e2e8f0 25%, transparent 25%),
        linear-gradient(-135deg, #e2e8f0 25%, transparent 25%),
        linear-gradient(45deg, #cbd5e1 25%, transparent 25%),
        linear-gradient(-45deg, #cbd5e1 25%, transparent 25%);
    background-size: 450px 450px;
    background-position: 0 0, 0 225px, 225px -225px, -225px 0;
    mask-image:
        linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0) 100%),
        linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 40%);
    -webkit-mask-image:
        linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0) 100%),
        linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 40%);
    mask-composite: multiply;
    -webkit-mask-composite: source-in;
    pointer-events: none;
    z-index: 0;
}

.sluzba-detail::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35%;
    height: 50%;
    background-image:
        linear-gradient(135deg, #e2e8f0 25%, transparent 25%),
        linear-gradient(-135deg, #e2e8f0 25%, transparent 25%),
        linear-gradient(45deg, #cbd5e1 25%, transparent 25%),
        linear-gradient(-45deg, #cbd5e1 25%, transparent 25%);
    background-size: 450px 450px;
    background-position: 0 0, 0 225px, 225px -225px, -225px 0;
    mask-image:
        linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0) 100%),
        linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 40%);
    -webkit-mask-image:
        linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0) 100%),
        linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 40%);
    mask-composite: multiply;
    -webkit-mask-composite: source-in;
    pointer-events: none;
    z-index: 0;
}

.sluzba-detail-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.sluzba-detail-btns {
    display: flex;
    gap: 48px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 32px;
    padding-bottom: 16px;
}

.sluzba-popis h2,
.sluzba-zahrnuto h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.sluzba-popis p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 16px;
}

.sluzba-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.sluzba-list li {
    padding: 10px 0 10px 28px;
    border-bottom: 1px solid #e2e8f0;
    color: #334155;
    font-size: 0.97rem;
    position: relative;
}

.sluzba-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0ea5e9;
    font-weight: 700;
}

.sluzba-list-sep {
    font-weight: 700;
    color: #0ea5e9 !important;
    border-bottom: 2px solid #bae6fd !important;
    margin-top: 12px;
    font-size: 0.85rem !important;
    letter-spacing: 0.05em;
}

.sluzba-list-sep::before {
    content: '' !important;
}

.sluzba-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.sluzba-cta-btns {
    display: flex !important;
    flex-direction: row !important;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.sluzba-cta-btns .btn {
    width: auto !important;
    flex: 0 0 auto;
    display: inline-block !important;
}

.sluzba-cta-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0ea5e9;
    margin-top: 48px;
    margin-left: 48px;
}

.sluzba-ostatni {
    padding: 60px 0;
    background: white;
}

.sluzba-ostatni-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.sluzba-mini-card {
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    display: block;
}

.sluzba-mini-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.13);
}

.sluzba-mini-img {
    height: 160px;
    overflow: hidden;
}

.sluzba-mini-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sluzba-mini-body {
    padding: 14px 16px;
    background: white;
}

.sluzba-mini-body h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px;
}

.sluzba-mini-price {
    font-size: 1rem;
    font-weight: 700;
    color: #0ea5e9;
}

@media (max-width: 768px) {
    .sluzba-hero {
        height: 420px;
    }

    .sluzba-hero .hero-nav-box,
    .sluzba-hero .hero-menu-overlay {
        display: none !important;
    }

    .sluzba-detail-btns {
        display: block !important;
        text-align: center;
        padding: 32px 20px 16px;
    }

    .sluzba-detail-btns .btn {
        display: inline-block !important;
        width: auto !important;
        margin: 0 0 12px 0;
    }

    .sluzba-cta-price {
        margin-left: 0;
        text-align: center;
    }

    .sluzba-hero-title {
        font-size: 2.2rem;
    }

    .sluzba-hero-overlay {
        padding-bottom: 36px;
    }

    .sluzba-detail-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sluzba-ostatni-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 960px) and (orientation: landscape) {
    .sluzba-hero {
        height: auto;
        min-height: 100vh;
    }
}

/* ===== LANDSCAPE MOBILE (telefony na šířku, výška < 600px) ===== */
/* max-height: 600px spolehlivě chytí všechny telefony v landscape (360–490px)
   ale vynechá tablety (iPad landscape = 768px+) */
@media screen and (orientation: landscape) and (max-height: 600px) {

    /* Ochrana před horizontálním přetečením */
    html, body {
        overflow-x: hidden;
    }

    /* ---- SEKCE PADDING ---- */
    section {
        padding: 2rem 0 !important;
    }

    /* ---- KOMPAKTNÍ HEADER (ne-hero stránky) ---- */
    .navbar {
        padding: 8px 0 !important;
    }

    .logo-img {
        height: 36px !important;
    }

    /* ---- HAMBURGER – zobrazit na všech stránkách v landscape ---- */
    .menu-toggle {
        display: block !important;
    }

    /* ---- STANDARD NAV MENU – drawer místo inline ---- */
    /* Platí pro stránky > 768px, kde mobilní styly nestačí */
    .nav-menu {
        position: fixed !important;
        top: 52px !important;
        left: -100% !important;
        width: 100% !important;
        height: calc(100vh - 52px) !important;
        background: white !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding: 1.5rem !important;
        gap: 0.75rem !important;
        transition: left 0.3s ease !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
        z-index: 1000 !important;
        overflow-y: auto !important;
    }

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

    .nav-menu li {
        width: 100% !important;
        text-align: center !important;
    }

    .nav-menu a {
        display: block !important;
        width: 90% !important;
        margin: 0 auto !important;
        padding: 0.8rem 1.2rem !important;
        font-size: 1rem !important;
        border-radius: 25px !important;
        border: 2px solid var(--primary-color) !important;
        background: white !important;
        box-shadow: 0 3px 10px rgba(37, 99, 235, 0.2) !important;
        color: var(--dark) !important;
    }

    /* ---- HERO NAV MENU – centrovaný popup ---- */
    .hero-nav-menu {
        display: none !important;
        position: fixed !important;
        top: 60% !important;
        left: 50% !important;
        right: auto !important;
        bottom: auto !important;
        margin: 0 !important;
        transform: translate(-50%, -50%) !important;
        width: min(85vw, 320px) !important;
        height: auto !important;
        max-height: 65vh !important;
        background: #0f172a !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        gap: 0 !important;
        padding: 12px 0 20px !important;
        z-index: 10000 !important;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6) !important;
        overflow-y: auto !important;
        border-radius: 20px !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

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

    /* Hamburger na hero stránce – vždy viditelný v landscape */
    .hero-menu-toggle {
        display: flex !important;
        padding: 8px !important;
        margin-left: auto !important;
        flex-shrink: 0 !important;
        position: relative !important;
        z-index: 10002 !important;
    }

    /* ---- HLAVNÍ HERO (index.php) ---- */
    /* Výška auto + min 100vh – 100vh má lepší podporu než 100svh */
    .hero {
        height: auto !important;
        min-height: 100vh !important;
        background-attachment: scroll !important;
    }

    /* Nav box – absolutně, ale přes celou šířku nahoře */
    .hero-nav-box {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        border-radius: 0 !important;
        padding: 0 16px !important;
        height: 52px !important;
        gap: 12px !important;
        z-index: 10001 !important;
        box-sizing: border-box !important;
    }

    /* Logo – static, malé */
    .hero-logo-img {
        height: 36px !important;
        position: static !important;
        transform: none !important;
        top: auto !important;
        left: auto !important;
    }

    .hero-nav-logo {
        height: auto !important;
        display: flex !important;
        align-items: center !important;
        flex-shrink: 0 !important;
    }

    /* Hero obsah – absolutně, hned pod nav lištou */
    .hero-content-right {
        top: 60px !important;
        left: 20px !important;
        right: 20px !important;
        transform: none !important;
        max-width: calc(100% - 40px) !important;
        width: auto !important;
        padding: 0 !important;
        text-align: left !important;
    }

    /* Badge a tagline – schovat */
    .hero-badge {
        display: none !important;
    }

    .hero-tagline {
        display: none !important;
    }

    /* Texty – kompaktní */
    .hero-title {
        font-size: 1.3rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.2rem !important;
    }

    .hero-subtitle {
        font-size: 0.85rem !important;
        margin-bottom: 0.4rem !important;
    }

    /* Tlačítka – vodorovně, kompaktní */
    .hero-buttons {
        flex-direction: row !important;
        margin-top: 0.6rem !important;
        gap: 0.75rem !important;
    }

    .hero-buttons .btn {
        width: auto !important;
        padding: 0.5rem 1rem !important;
        font-size: 0.82rem !important;
    }

    /* Scroll šipka – schovat */
    .scroll-down-btn {
        display: none !important;
    }

    /* ---- CENTROVANÉ MENU (hero stránka) ---- */
    .hero-nav-menu li {
        width: 100% !important;
        display: block !important;
        list-style: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    }

    .hero-nav-menu li:first-child {
        margin-top: 0 !important;
    }

    .hero-nav-menu a {
        display: block !important;
        padding: 11px 24px !important;
        font-size: 0.95rem !important;
        text-align: center !important;
        color: rgba(255, 255, 255, 0.85) !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        text-transform: none !important;
        white-space: nowrap !important;
        text-decoration: none !important;
    }

    .hero-nav-menu a:hover,
    .hero-nav-menu a:focus {
        padding-left: 24px !important;
        background: rgba(255, 255, 255, 0.06) !important;
        color: #fff !important;
        transform: none !important;
        box-shadow: none !important;
    }

    /* ---- STANDARDNÍ HEADER NAV (ostatní stránky) ---- */
    .nav-menu {
        top: 52px !important;
        height: calc(100vh - 52px) !important;
        overflow-y: auto !important;
        padding: 0.75rem 1rem !important;
        gap: 0.5rem !important;
    }

    .nav-menu a {
        padding: 0.65rem 1.2rem !important;
        font-size: 0.95rem !important;
        margin-bottom: 0 !important;
    }

    /* ---- SLUZBA HERO (sluzba.php) ---- */
    .sluzba-hero {
        height: auto !important;
        min-height: 100vh !important;
    }

    .sluzba-hero .hero-nav-box {
        height: 52px !important;
        padding: 0 16px !important;
    }

    .sluzba-hero .hero-logo-img {
        height: 38px !important;
        position: static !important;
        transform: none !important;
        left: auto !important;
        top: auto !important;
    }

    .sluzba-hero .hero-nav-menu a {
        font-size: 0.85rem !important;
        padding: 0.4rem 0.8rem !important;
    }

    .sluzba-hero-title {
        font-size: 2rem !important;
    }

    .sluzba-hero-overlay {
        padding-top: 56px !important;
        padding-bottom: 20px !important;
    }

    /* ---- FOOTER ---- */
    .footer-logo-section {
        display: none !important;
    }

    .footer-content {
        flex-wrap: wrap !important;
        gap: 1.5rem !important;
        margin-bottom: 1rem !important;
    }

    .footer-middle-columns {
        flex: 1 !important;
        gap: 1.5rem !important;
        flex-wrap: wrap !important;
        min-width: 0 !important;
    }

    .footer-review-form {
        width: 100% !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .footer-section h3 {
        font-size: 0.9rem !important;
        margin-bottom: 0.4rem !important;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }

    .footer-bottom {
        padding-top: 1rem !important;
        font-size: 0.75rem !important;
    }

    .review-form-footer .form-group {
        margin-bottom: 0.5rem !important;
    }
}

/* ===== DARK THEME (index.php) ===== */

/* Barvy: base #06090f, surface #0d1420, elevated #131e2d */

body.dark-theme {
    background: #06090f;
    color: #e2e8f0;
}

/* Hero – nový obrázek + tmavší overlay */
body.dark-theme .hero {
    background-image: linear-gradient(rgba(0,0,0,0.50), rgba(0,0,0,0.50)),
                      url('/static/images/IMG-20260308-WA0107.jpg');
    background-size: cover, cover;
    background-position: center, top center;
    background-repeat: no-repeat, no-repeat;
    background-attachment: scroll, scroll;
}

/* Černý fade vpravo i vlevo nahoře */
body.dark-theme .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: radial-gradient(ellipse at top left, rgba(0,0,0,0.85) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

/* Plynulý přechod hero → sekce */
body.dark-theme .hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 260px;
    background: linear-gradient(to bottom, transparent, #06090f);
    pointer-events: none;
    z-index: 1;
}

body.dark-theme .hero-nav-box,
body.dark-theme .hero-content-right,
body.dark-theme .hero-menu-toggle,
body.dark-theme .hero-menu-overlay {
    z-index: 2;
}

body.dark-theme .usp-bar {
    background: #0d1420;
    border-color: #1a2535;
}

body.dark-theme .usp-item strong {
    color: #e2e8f0;
}

body.dark-theme .usp-item span {
    color: #64748b;
}

body.dark-theme .usp-item + .usp-item::before {
    background: #1a2535;
}

body.dark-theme .services-detail-section {
    background: #06090f;
}

body.dark-theme .services-detail-section::before,
body.dark-theme .services-detail-section::after,
body.dark-theme .pattern-overlay::before {
    background-image:
        linear-gradient(135deg, #1a2535 25%, transparent 25%),
        linear-gradient(-135deg, #1a2535 25%, transparent 25%),
        linear-gradient(45deg, #0d1a2a 25%, transparent 25%),
        linear-gradient(-45deg, #0d1a2a 25%, transparent 25%);
}

body.dark-theme .service-detail-content h3 {
    color: #e2e8f0;
}

body.dark-theme .service-detail-content p {
    color: #64748b;
}

body.dark-theme .service-detail-content ul li {
    color: #64748b;
    border-bottom-color: #1a2535;
}

body.dark-theme .services {
    background: #06090f;
}

body.dark-theme .service-card {
    background: #0d1420;
    border-color: #1a2535;
    color: #e2e8f0;
}

body.dark-theme .service-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

body.dark-theme .service-card h3 {
    color: #e2e8f0;
}

body.dark-theme .service-description {
    color: #64748b;
}

body.dark-theme .service-info {
    background: #131e2d;
}

body.dark-theme .section-title {
    color: #e2e8f0;
}

body.dark-theme .section-subtitle {
    color: #64748b;
}

body.dark-theme .services-section-heading {
    color: #e2e8f0;
}

body.dark-theme .portfolio {
    background: #0d1420;
}

body.dark-theme .portfolio-item {
    background: #131e2d;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

body.dark-theme .portfolio-info h3 {
    color: #e2e8f0;
}

body.dark-theme .portfolio-info p {
    color: #64748b;
}

body.dark-theme .reviews {
    background: linear-gradient(160deg, #0a1020 0%, #06090f 100%);
}

body.dark-theme .review-card {
    background: #0d1420;
    box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

body.dark-theme .review-text {
    color: #94a3b8;
}

body.dark-theme .review-author {
    color: #e2e8f0;
}

body.dark-theme .review-footer {
    border-top-color: #1a2535;
}

body.dark-theme .contact {
    background: #0d1420;
}

body.dark-theme .contact-form {
    background: #131e2d;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

body.dark-theme .form-group label {
    color: #e2e8f0;
}

body.dark-theme .form-group input,
body.dark-theme .form-group select,
body.dark-theme .form-group textarea {
    background: #0d1420;
    border-color: #1a2535;
    color: #e2e8f0;
}

body.dark-theme .form-group input:focus,
body.dark-theme .form-group select:focus,
body.dark-theme .form-group textarea:focus {
    border-color: var(--primary-color);
}

body.dark-theme .form-note,
body.dark-theme .form-help {
    color: #64748b;
}

body.dark-theme .benefit-card {
    background: #0d1420;
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

body.dark-theme .no-content {
    color: #475569;
}

body.dark-theme .btn-secondary {
    background: transparent;
    color: #93c5fd;
    border-color: #3b82f6;
}

body.dark-theme .btn-secondary:hover,
body.dark-theme .btn-secondary:active {
    background: #3b82f6;
    color: white;
}

body.dark-theme .service-footer {
    border-top-color: #1a2535;
}

body.dark-theme .review-form-section {
    background: #0d1420;
}

/* ===== DARK THEME – pkg-card hover animace (slide-up overlay) ===== */
body.dark-theme .pkg-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: #0a0f1a;
    border: 1px solid #1a2535;
    flex-direction: unset;
}

body.dark-theme .pkg-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
}

body.dark-theme .pkg-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

body.dark-theme .pkg-card:hover .pkg-card-img img {
    transform: scale(1.06);
}

body.dark-theme .pkg-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(6,9,15,0.97) 55%, transparent 100%);
    padding: 20px 20px 18px;
    gap: 8px;
    flex: unset;
    transform: translateY(calc(100% - 130px));
    transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body.dark-theme .pkg-card:hover .pkg-card-body {
    transform: translateY(0);
}

body.dark-theme .pkg-card-body h3 {
    color: #e2e8f0;
}

body.dark-theme .pkg-desc-intro {
    max-height: none;
    overflow: visible;
    opacity: 1;
    color: #94a3b8;
    font-style: italic;
    margin: 0 0 4px;
    transition: none;
}

/* Mobile: overlay animace stejný princip jako desktop – klik místo hover */
@media (max-width: 768px) {
    body.dark-theme .pkg-card {
        height: 280px;
        position: relative;
        overflow: hidden;
        display: block;
    }
    body.dark-theme .pkg-card-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        aspect-ratio: unset;
    }
    body.dark-theme .pkg-card-body {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        flex: unset;
        padding-top: 8px;
        transform: translateY(calc(100% - 60px));
        transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                    padding-top 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    body.dark-theme .pkg-card.expanded .pkg-card-body {
        padding-top: 20px;
    }
    /* zrušit desktop hover na mobilu */
    body.dark-theme .pkg-card:hover .pkg-card-body {
        transform: translateY(calc(100% - 60px));
    }
    /* klik/tap rozbalí kartu */
    body.dark-theme .pkg-card.expanded .pkg-card-body {
        transform: translateY(0);
    }
    /* popisek skrytý dokud není rozbaleno, seznam vždy skrytý */
    body.dark-theme .pkg-desc-intro {
        display: none;
    }
    body.dark-theme .pkg-card.expanded .pkg-desc-intro {
        display: block;
    }
    body.dark-theme .pkg-desc {
        display: none !important;
    }
    /* nadpis větší v zavřeném stavu, zmenší se při rozbalení */
    body.dark-theme .pkg-card-body h3 {
        font-size: 1.7rem;
        transition: font-size 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    body.dark-theme .pkg-card.expanded .pkg-card-body h3 {
        font-size: 1.3rem;
    }
}

body.dark-theme .pkg-desc {
    max-height: none;
    overflow: visible;
    opacity: 1;
    transition: none;
}

body.dark-theme .pkg-desc li {
    color: #94a3b8;
}

body.dark-theme .pkg-price {
    color: #38bdf8;
}

body.dark-theme .pkg-btns .btn-secondary {
    background: transparent;
    border-color: #3b82f6;
    color: #93c5fd;
}

body.dark-theme .pkg-btns .btn-secondary:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

/* ===== FAQ PAGE – BASE STYLES ===== */
.faq-hero-section {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    padding: 60px 0;
    color: white;
    text-align: center;
}
.faq-content-section { padding: 60px 0; background: #f8fafc; }
.faq-search-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}
.faq-search-input {
    width: 100%; padding: 1rem 1.5rem; font-size: 1.1rem;
    border: 2px solid #e2e8f0; border-radius: 8px; outline: none;
    transition: border-color 0.3s; font-family: inherit;
    background: white; color: #1e293b;
}
.faq-search-input:focus { border-color: #2563eb; }
.faq-search-results { margin: 0.75rem 0 0 0; color: #64748b; font-size: 0.95rem; }
.faq-categories-box {
    background: white; padding: 2rem; border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); margin-bottom: 2rem;
}
.faq-categories-title { margin: 0 0 1rem 0; color: #1e293b; }
.faq-category-group { margin-bottom: 3rem; }
.faq-category-heading {
    color: #2563eb; margin-bottom: 1.5rem; font-size: 1.8rem;
    display: flex; align-items: center; gap: 0.5rem;
}
.faq-cta {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    padding: 3rem 2rem; border-radius: 12px;
    text-align: center; color: white; margin-top: 3rem;
}
.faq-cta h2 { margin: 0 0 1rem 0; font-size: 2rem; }
.faq-cta p  { margin: 0 0 1.5rem 0; font-size: 1.1rem; opacity: 0.9; }
.faq-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.faq-contact-section { padding: 60px 0; background: #fff; }
.faq-contact-section h2 {
    text-align: center; font-size: 1.8rem; font-weight: 700;
    margin-bottom: 0.5rem; color: #1e293b;
}
.faq-contact-section > .container > p { text-align: center; color: #64748b; margin-bottom: 2rem; }
.faq-form { display: flex; flex-direction: column; gap: 1rem; }
.faq-input {
    padding: 0.75rem 1rem; border: 1.5px solid #e2e8f0;
    border-radius: 8px; font-size: 1rem; outline: none;
    font-family: inherit; width: 100%; background: white;
    color: #1e293b; transition: border-color 0.3s;
}
.faq-input:focus { border-color: #2563eb; }
.faq-submit-btn {
    background: #2563eb; color: #fff; border: none; padding: 0.85rem;
    border-radius: 8px; font-size: 1rem; font-weight: 600;
    cursor: pointer; width: 100%; font-family: inherit; transition: background 0.2s;
}
.faq-submit-btn:hover { background: #1d4ed8; }

/* ===== DARK THEME – FAQ ===== */
body.dark-theme .faq-hero-section {
    background: linear-gradient(135deg, #0f1f5c 0%, #060d30 100%);
    border-bottom: 1px solid #1a2535;
}
body.dark-theme .faq-content-section { background: #06090f; }
body.dark-theme .faq-search-box {
    background: #0d1420;
    box-shadow: 0 2px 16px rgba(0,0,0,0.4);
    border: 1px solid #1a2535;
}
body.dark-theme .faq-search-input {
    background: #06090f; border-color: #1a2535; color: #e2e8f0;
}
body.dark-theme .faq-search-input:focus { border-color: #3b82f6; }
body.dark-theme .faq-search-results { color: #475569; }
body.dark-theme .faq-categories-box {
    background: #0d1420; box-shadow: 0 2px 16px rgba(0,0,0,0.4);
    border: 1px solid #1a2535;
}
body.dark-theme .faq-categories-title { color: #e2e8f0; }
body.dark-theme .faq-category-heading { color: #60a5fa; }
body.dark-theme .faq-item {
    background: #0d1420;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    border: 1px solid #1a2535;
}
body.dark-theme .faq-item:hover { box-shadow: 0 4px 24px rgba(37,99,235,0.18); border-color: #2a3a50; }
body.dark-theme .faq-question { background: #0d1420; color: #e2e8f0; }
body.dark-theme .faq-question:hover { background: #131e2d; }
body.dark-theme .faq-item.open .faq-question { background: #131e2d; }
body.dark-theme .faq-answer-content { color: #94a3b8; }
body.dark-theme .faq-answer-content strong { color: #e2e8f0; }
body.dark-theme .faq-answer-content code { background: #131e2d; color: #60a5fa; }
body.dark-theme .faq-cta {
    background: linear-gradient(135deg, #1a3070 0%, #0e1e55 100%);
    border: 1px solid #2a3a70;
}
body.dark-theme .faq-contact-section { background: #06090f; }
body.dark-theme .faq-contact-section h2 { color: #e2e8f0; }
body.dark-theme .faq-contact-section > .container > p { color: #64748b; }
body.dark-theme .faq-input {
    background: #0d1420; border-color: #1a2535; color: #e2e8f0;
}
body.dark-theme .faq-input:focus { border-color: #3b82f6; }
body.dark-theme .faq-submit-btn { background: #2563eb; }
body.dark-theme .faq-submit-btn:hover { background: #1d4ed8; }

/* ===== DARK THEME – BLOG ===== */
body.dark-theme .blog-hero {
    background: linear-gradient(160deg, #06090f 0%, #0d1420 60%, #06090f 100%);
}
body.dark-theme .blog-search-wrapper {
    background: #0d1420;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    border: 1px solid #1a2535;
}
body.dark-theme .blog-search-input { color: #e2e8f0; }
body.dark-theme .blog-search-input:focus { background: #131e2d; }
body.dark-theme .modern-blog-card {
    background: #0d1420;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    border: 1px solid #1a2535;
}
body.dark-theme .modern-blog-card:hover {
    box-shadow: 0 20px 60px rgba(37,99,235,0.2);
    border-color: #2a3a50;
}
body.dark-theme .blog-card-title { color: #e2e8f0; }
body.dark-theme .blog-card-title a { color: #e2e8f0; }
body.dark-theme .blog-card-excerpt { color: #64748b; }
body.dark-theme .blog-card-meta {
    border-top-color: #1a2535;
    border-bottom-color: #1a2535;
    color: #64748b;
}

/* ===== FAQ HERO – sdílí blog-hero styly ===== */
body.dark-theme .faq-hero-section {
    background: linear-gradient(160deg, #06090f 0%, #0d1420 60%, #06090f 100%);
}

/* ===== DARK THEME – sluzba.php ===== */
body.dark-theme .sluzba-hero-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0.15) 30%,
        rgba(0, 0, 0, 0.65) 65%,
        #06090f 100%
    );
}

body.dark-theme .sluzba-detail {
    background-color: #06090f;
}
body.dark-theme .sluzba-detail::before,
body.dark-theme .sluzba-detail::after {
    background-image:
        linear-gradient(135deg, #1a2535 25%, transparent 25%),
        linear-gradient(-135deg, #1a2535 25%, transparent 25%),
        linear-gradient(45deg, #131e2d 25%, transparent 25%),
        linear-gradient(-45deg, #131e2d 25%, transparent 25%);
}
body.dark-theme .sluzba-popis h2,
body.dark-theme .sluzba-zahrnuto h2 {
    color: #e2e8f0;
}
body.dark-theme .sluzba-popis p {
    color: #94a3b8;
}
body.dark-theme .sluzba-list li {
    color: #cbd5e1;
    border-bottom-color: #1a2535;
}
body.dark-theme .sluzba-list-sep {
    border-bottom-color: #1e3a5f !important;
}
body.dark-theme .sluzba-ostatni {
    background: #0d1420;
}
body.dark-theme .sluzba-mini-body {
    background: #131e2d;
}
body.dark-theme .sluzba-mini-body h3 {
    color: #e2e8f0;
}
body.dark-theme .sluzba-mini-price {
    color: #38bdf8;
}

/* ===== CROSS-SELL BANNER ===== */
.crosssell-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(150, 150, 150, 0.15);
    backdrop-filter: blur(12px);
    border-left: 4px solid #29B6D8;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 16px 24px;
    border-radius: 8px;
    margin-top: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.crosssell-banner-text {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.crosssell-banner-link {
    color: #29B6D8;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 16px;
}

@media (max-width: 600px) {
    .crosssell-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .crosssell-banner-link {
        margin-left: 0;
    }
}
