:root {
    --primary-dark: #e8e8e8;
    --secondary-dark: #f0f0f0;
    --accent-blue: #0C006E;
    --accent-gold: #ff9900;
    --accent-red: #e74c3c;
    --accent-yellow: #ffc107;
    --text-dark: #333333;
    --text-muted: #666666;
    --success: #27ae60;
    --border: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes iconSpinY {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

@keyframes iconHammer {
    0%, 100% {
        transform: rotate(-20deg);
    }
    50% {
        transform: rotate(-5deg) translateY(3px);
    }
}

@keyframes iconSway {
    0%, 100% {
        transform: rotate(-3deg);
    }
    50% {
        transform: rotate(3deg);
    }
}

@keyframes iconSpin {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(20deg);
    }
}

@keyframes iconBuild {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(12deg) translateX(3px);
    }
}

@keyframes iconTilt {
    0%, 100% {
        transform: skewX(-3deg);
    }
    50% {
        transform: skewX(3deg);
    }
}

@keyframes iconPaint {
    0%, 100% {
        transform: rotate(0deg) skewY(-5deg);
    }
    25% {
        transform: rotate(-25deg) skewY(-5deg);
    }
    50% {
        transform: rotate(0deg) skewY(5deg);
    }
    75% {
        transform: rotate(25deg) skewY(-5deg);
    }
}

@keyframes laserPulse {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 1;
        filter: brightness(1);
    }
    50% {
        transform: translateY(-3px) scale(1.05);
        opacity: 0.85;
        filter: brightness(1.1);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes laserPulse {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 1;
        filter: brightness(1);
    }
    50% {
        transform: translateY(-3px) scale(1.05);
        opacity: 0.85;
        filter: brightness(1.1);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: transparent;
    padding: 0;
    object-fit: contain;
}

.nav-links {
    display: flex !important;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--accent-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
    border-left: 1px solid var(--border);
    padding-left: 1.5rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-muted);
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.85rem;
}

.lang-btn.active {
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-color: var(--accent-gold);
}

.lang-btn:hover {
    border-color: var(--accent-gold);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--accent-gold);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(-45deg, #0c006e, #23a6d5, #ff9900, #0c006e);
    background-size: 400% 400%;
    background-position: 0% 50%;
    animation: gradientShift 15s ease infinite;
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Animated background shapes */
.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 80px 80px, 120px 120px, 150px 150px;
    animation: slideBackground 20s linear infinite;
    top: 0;
    left: 0;
    z-index: 1;
}

@keyframes slideBackground {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(80px, 80px);
    }
}

/* Floating elements background */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
    animation: floatBubbles 30s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes floatBubbles {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

/* Weather Animations */
@keyframes snowfall {
    0% {
        transform: translateY(-100px) translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateY(500px) translateX(100px);
        opacity: 0;
    }
}

@keyframes rainfall {
    0% {
        transform: translateY(-100px);
        opacity: 1;
    }
    100% {
        transform: translateY(500px);
        opacity: 0;
    }
}

@keyframes fogDrift {
    0%, 100% {
        transform: translateX(0) translateY(0);
        opacity: 0.1;
    }
    50% {
        transform: translateX(50px) translateY(-20px);
        opacity: 0.3;
    }
}

@keyframes cloudFloat {
    0%, 100% {
        transform: translateX(0) translateY(0);
        opacity: 0.05;
    }
    50% {
        transform: translateX(30px) translateY(-10px);
        opacity: 0.15;
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.9;
    }
}

@keyframes moonGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
        transform: scale(1.05);
    }
}

/* Weather type effects */
.hero.weather-cloudy {
    background: linear-gradient(-45deg, #0c006e, #4a5568, #ff9900, #0c006e) !important;
}

.hero.weather-rain {
    background: linear-gradient(-45deg, #0c006e, #2d3748, #ff9900, #0c006e) !important;
}

.hero.weather-drizzle {
    background: linear-gradient(-45deg, #0c006e, #4a5568, #ff9900, #0c006e) !important;
}

.hero.weather-snow {
    background: linear-gradient(-45deg, #0c006e, #e2e8f0, #ff9900, #0c006e) !important;
}

.hero.weather-fog {
    background: linear-gradient(-45deg, #0c006e, #cbd5e0, #ff9900, #0c006e) !important;
}

/* Night effect - darker gradient */
.hero.weather-night {
    background: linear-gradient(-45deg, #0a003d, #1a1a3a, #0c006e, #0a003d) !important;
}

.hero.weather-night.weather-clear {
    background: linear-gradient(-45deg, #0a003d, #1a1a3a, #ff9900, #0a003d) !important;
}

.hero.weather-night.weather-cloudy {
    background: linear-gradient(-45deg, #0a003d, #2d2d4a, #ff9900, #0a003d) !important;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    color: white;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero p {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.8s ease-out 0.2s both;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #ffa500 100%);
    color: var(--primary-dark);
    padding: 0.7rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 214, 10, 0.3);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    animation: slideDown 0.8s ease-out 0.4s both;
    position: relative;
    overflow: hidden;
}

.cta-button::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;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 214, 10, 0.4);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f9f9f9;
}

.services h2,
.about h2,
.contact h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--accent-blue);
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem;
    width: 100% !important;
    max-width: 1400px !important;
}

.service-card {
    background: linear-gradient(135deg, white 0%, #f5f5f5 100%);
    border: 2px solid var(--accent-blue);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    cursor: pointer;
    user-select: none;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.1);
}

.service-card:hover {
    border-color: var(--accent-red);
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.25);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    animation: iconFloat 3s ease-in-out infinite;
}

.service-icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* Specific animations for each service icon */
/* Gravírování (1) - Laser pulses */
.service-card:nth-child(1) .service-icon {
    animation: laserPulse 2s ease-in-out infinite;
}

/* Tvorba webů (2) - Code tilts */
.service-card:nth-child(2) .service-icon {
    animation: iconTilt 2s ease-in-out infinite;
}

/* Správa nemovitostí (3) - Hammer hits down */
.service-card:nth-child(3) .service-icon {
    animation: iconHammer 1.2s ease-in-out infinite;
    transform-origin: center top;
}

/* Údržba venkovních prostor (4) - Leaf sways */
.service-card:nth-child(4) .service-icon {
    animation: iconSway 2.5s ease-in-out infinite;
    transform-origin: bottom center;
}

/* Rozvozy prádla (5) - Shirt bounces */
.service-card:nth-child(5) .service-icon {
    animation: iconBounce 2s ease-in-out infinite;
}

/* Jazyky (6) - Globe spins on Y axis */
.service-card:nth-child(6) .service-icon {
    animation: iconSpinY 4s linear infinite;
    perspective: 1000px;
}

/* Správa tvůrců (7) - Star sways */
.service-card:nth-child(7) .service-icon {
    animation: iconSway 2.5s ease-in-out infinite;
    transform-origin: bottom center;
}

/* Stěhování (8) - Dolly bounces */
.service-card:nth-child(8) .service-icon {
    animation: iconBounce 2s ease-in-out infinite;
}

/* Grafika a Design (9) - Paint brush sways and rotates */
.service-card:nth-child(9) .service-icon {
    animation: iconPaint 3s ease-in-out infinite;
    transform-origin: center center;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex-grow: 1;
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.5;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    color: var(--text-muted);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    word-break: break-word;
    overflow-wrap: break-word;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f9f9f9;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-blue);
    margin-top: 0.3rem;
}

.contact-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: white;
    border: 2px solid #ddd;
    border-radius: 6px;
    padding: 1rem;
    color: var(--text-dark);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: #f0f8ff;
    box-shadow: 0 0 10px rgba(0, 102, 204, 0.2);
}

.contact-form select {
    cursor: pointer;
}

.contact-form option {
    background: white;
    color: var(--text-dark);
}

.submit-btn {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #ff8800 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #f5f5f5 0%, white 100%);
    padding: 2rem 0;
    text-align: center;
    border-top: 2px solid var(--accent-blue);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

/* Responsive Design */
/* Ultra small phones - < 380px */
@media (max-width: 380px) {
    .container {
        padding: 0 12px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo-img {
        width: 40px;
        height: 40px;
    }

    .services-grid {
        gap: 0.8rem;
    }

    .service-card {
        padding: 1.2rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    .service-features li {
        font-size: 0.8rem;
    }

    /* Responsive inline style grids for ultra-small screens */
    div[style*="grid-template-columns: repeat(3, 1fr)"],
    div[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 0.8rem !important;
    }
}

/* Mobile responsive - 1 column for screens <= 450px */
@media (max-width: 450px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
        display: none !important;
        z-index: 999;
    }

    .nav-links.active {
        display: flex !important;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .language-switcher {
        border-left: none;
        padding-left: 0;
        padding-top: 1rem;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .services h2,
    .about h2,
    .contact h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }

    /* Reduce gaps on 450px screens */
    .services-grid {
        gap: 1rem;
    }

    .contact-content {
        gap: 1.5rem;
    }

    .contact-info {
        gap: 1.5rem;
    }

    .contact-item {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .moon {
        font-size: 40px !important;
        right: 5% !important;
        top: 10% !important;
        opacity: 0.12 !important;
    }

    .star {
        opacity: 0.15 !important;
    }

    /* Hide or minimize weather particles on mobile */
    .snowflake {
        opacity: 0.08 !important;
    }

    .raindrop {
        opacity: 0.08 !important;
    }

    .fog-particle {
        opacity: 0.02 !important;
    }

    .cloud-particle {
        opacity: 0.01 !important;
    }

    .services h2,
    .about h2,
    .contact h2 {
        font-size: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .service-card h3 {
        font-size: 1.25rem;
    }

    .language-switcher {
        margin-top: 1rem;
    }

    /* Responsive gaps for mobile devices */
    .services-grid,
    .contact-content {
        gap: 1rem;
    }

    .company-info-grid {
        gap: 1rem;
    }

    .content-grid {
        gap: 1.5rem;
    }

    .features-grid,
    .materials-grid {
        gap: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.5s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 0.7s; }

/* Company Information Section */
.company-info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

.company-info-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 3rem;
    font-weight: 700;
}

.company-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(255, 214, 10, 0.15);
}

.info-card h3 {
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-gold);
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.info-content p {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 0.95rem;
}

.info-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.info-content i {
    color: var(--accent-gold);
    margin-right: 0.8rem;
    width: 20px;
    text-align: center;
}

/* Responsive Design for Company Info */
@media (max-width: 992px) {
    .company-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .company-info-section {
        padding: 60px 0;
    }

    .company-info-section h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .company-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .info-card h3 {
        font-size: 1.1rem;
    }

    .info-content p {
        font-size: 0.9rem;
    }

    /* Reduce gaps on tablets */
    .services-grid {
        gap: 1.5rem;
    }

    .contact-content {
        gap: 1.5rem;
    }

    .content-grid {
        gap: 1.5rem;
    }

    .features-grid {
        gap: 1.5rem;
    }

    .materials-grid {
        gap: 1rem;
    }
}

/* Service Detail Pages */
.service-hero {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-gold) 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.service-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.service-section {
    margin-bottom: 4rem;
}

.service-section h2 {
    color: var(--accent-blue);
    font-size: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent-gold);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 2rem;
}

.content-col {
    padding: 1.5rem;
}

.content-col p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.info-box {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.info-box h3 {
    color: var(--accent-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.info-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 1.2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-blue);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.material-item {
    background: var(--primary-dark);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.material-item:hover {
    background: var(--secondary-dark);
    transform: scale(1.02);
}

.material-item h4 {
    color: var(--accent-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.material-item p {
    color: var(--text-dark);
    line-height: 1.6;
}

.pricing-table {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pricing-table thead {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-gold) 100%);
    color: white;
}

.pricing-table th {
    padding: 1.2rem;
    text-align: left;
    font-weight: 600;
}

.pricing-table td {
    padding: 1.2rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-dark);
}

.pricing-table tbody tr:hover {
    background: var(--primary-dark);
}

.cta-section {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid var(--accent-blue);
}

.cta-section h2 {
    color: var(--accent-blue);
    border: none;
    padding-bottom: 0;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue) 0%, #0C006E 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

.btn-secondary {
    background: var(--primary-dark);
    color: var(--accent-blue);
    border: 2px solid var(--accent-blue);
}

.btn-secondary:hover {
    background: var(--accent-blue);
    color: white;
    transform: translateY(-2px);
}

/* Responsive Service Detail Pages */
@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 1.8rem;
    }

    .service-hero p {
        font-size: 1rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .materials-grid {
        grid-template-columns: 1fr;
    }

    .button-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .service-section h2 {
        font-size: 1.5rem;
    }

    .pricing-table {
        font-size: 0.9rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 0.8rem;
    }

    .cta-section {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .service-hero {
        padding: 2rem 1rem;
    }

    .service-hero h1 {
        font-size: 1.5rem;
    }

    .service-hero p {
        font-size: 0.95rem;
    }

    .info-box {
        padding: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    /* Responsive contact form */
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 0.8rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .contact-form textarea {
        min-height: 120px;
    }
}

/* Cookie Consent Banner */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    padding: 1.5rem 2rem;
    z-index: 9999;
    box-shadow: 0 -8px 24px rgba(12, 0, 110, 0.15);
    animation: slideUp 0.3s ease-out;
    border-top: 4px solid var(--accent-gold);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 250px;
}

.cookie-consent-text p {
    font-size: 0.95rem;
    color: #333333;
    margin: 0;
    line-height: 1.6;
}

.cookie-consent-text p strong {
    color: var(--accent-blue);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.cookie-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    margin-top: 0.5rem;
}

.cookie-link:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--accent-blue) 0%, #0052a3 100%);
    color: white;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(12, 0, 110, 0.3);
}

.cookie-btn-info {
    background: transparent;
    color: var(--accent-blue);
    border: 2px solid var(--accent-blue);
}

.cookie-btn-info:hover {
    background: var(--accent-blue);
    color: white;
    transform: translateY(-2px);
}

/* Mobile responsive */
@media (max-width: 768px) {
    #cookie-consent-banner {
        padding: 1rem;
    }

    .cookie-consent-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-consent-text p {
        font-size: 0.85rem;
    }

    .cookie-consent-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

/* Privacy Policy Page */
.privacy-policy {
    padding: 60px 0;
    background: #f9f9f9;
    min-height: calc(100vh - 100px);
}

.privacy-policy h1 {
    color: var(--accent-blue);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.policy-content h2 {
    color: var(--accent-blue);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 0.5rem;
}

.policy-content h3 {
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.policy-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.policy-content li {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.policy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border);
    text-align: center;
}

.policy-footer p {
    color: var(--accent-blue);
    font-weight: 600;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .policy-content {
        padding: 2rem 1.5rem;
    }

    .privacy-policy h1 {
        font-size: 1.8rem;
    }

    .policy-content h2 {
        font-size: 1.3rem;
    }

    /* Responsive grid for service pages */
    div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }

    div[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
}

/* Tablet breakpoint (768px) - 2 sloupce */
@media (max-width: 768px) and (min-width: 481px) {
    div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    div[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}