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

:root {
    /* Colors */
    --primary-color: #2c3e50;
    --primary-dark: #1a252f;
    --primary-light: #34495e;
    --secondary-color: #FF9500;
    --accent-color: #FF9500;
    --text-dark: #1d1d1f;
    --text-light: #6e6e73;
    --bg-light: #f5f5f7;
    --bg-white: #ffffff;
    --border-color: rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);

    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* ===================================
   Navigation
   =================================== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--glass-shadow);
    border-bottom: 1px solid var(--glass-border);
    z-index: 9999;
    transition: var(--transition-normal);
}

#navbar.scrolled {
    box-shadow: var(--shadow-lg);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: var(--font-primary);
    color: var(--text-dark);
}

.logo i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.logo-name {
    font-weight: 600;
    white-space: nowrap;
}

.logo-subtitle {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.85em;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link:not(.btn-primary):hover {
    color: var(--primary-color);
}

.nav-link:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-fast);
}

.nav-link:not(.btn-primary):hover::after {
    width: 100%;
}

.nav-link.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
}

.nav-link.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Workshop CTA in navigation - desktop only */
@media (min-width: 769px) {
    .nav-link.workshop-cta {
        border: 2px solid var(--secondary-color);
        padding: 0.5rem 1.25rem;
        border-radius: 50px;
        color: var(--secondary-color);
        font-weight: 600;
    }

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

    .nav-link.workshop-cta:hover {
        background: var(--secondary-color);
        color: white;
        transform: translateY(-2px);
    }
}

.hamburger {
    display: none;
}

/* ===================================
   Hero Section
   =================================== */
#hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow: hidden;
    padding: 120px 0 80px;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--text-dark);
    z-index: 1;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.hero-title .highlight {
    color: var(--secondary-color);
    display: block;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 1rem;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 2.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    text-align: center;
    font-family: var(--font-secondary);
}

.btn-primary {
    background: var(--accent-color);
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    background: #ea580c;
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.feature-item i {
    font-size: 1.25rem;
    color: var(--accent-color);
}

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

.scroll-indicator i {
    color: white;
    font-size: 2rem;
    opacity: 0.7;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===================================
   Section Styles
   =================================== */
section {
    padding: var(--spacing-xl) 0;
    position: relative;
    scroll-margin-top: 100px;
    background: white;
}

section:nth-child(even) {
    background: linear-gradient(135deg, #f5f7fa 0%, #e3e7ed 100%);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

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

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

.service-card {
    grid-column: span 2;
}

/* Vycentrování poslední 2 karet - začínají od 2. sloupce (celkem 6 sloupců) */
.service-card:nth-child(7) {
    grid-column: 2 / 4;
}

.service-card:nth-child(8) {
    grid-column: 4 / 6;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-normal);
    text-align: center;
    border: 1px solid var(--glass-border);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px 0 rgba(255, 149, 0, 0.2);
    border-color: rgba(255, 149, 0, 0.5);
    background: rgba(255, 255, 255, 0.9);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--secondary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: var(--transition-normal);
}

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

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

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

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

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

.service-card-negative {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.05) 0%, rgba(192, 57, 43, 0.08) 100%);
    border: 2px solid rgba(231, 76, 60, 0.4);
    position: relative;
    overflow: hidden;
}

.service-card-negative::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
}

.service-card-negative .service-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.service-card-negative h3 {
    color: #c0392b;
    font-weight: 700;
}

.service-card-negative .service-list li:before {
    content: "✗";
    color: #e74c3c;
}

.services-note {
    text-align: center;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    color: var(--text-dark);
    font-size: 1.1rem;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    margin-bottom: 3rem;
}

.services-note a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

/* Oblast působnosti */
.coverage-area {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 3rem 2.5rem;
    border-radius: 28px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.coverage-area h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.coverage-area h3 i {
    color: var(--secondary-color);
    margin-right: 0.75rem;
}

.coverage-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

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

.coverage-item {
    background: rgba(255, 255, 255, 0.6);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    font-weight: 500;
    color: var(--text-dark);
    border: 1px solid rgba(255, 149, 0, 0.2);
    transition: var(--transition-normal);
}

.coverage-item i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.coverage-item:hover {
    background: rgba(255, 149, 0, 0.1);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.coverage-note {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-light);
    margin-top: 2rem;
}

.coverage-note a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

/* ===================================
   Jak na to Section
   =================================== */
.steps-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.step-item {
    flex: 1;
    min-width: 200px;
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-normal);
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
}

.step-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step-item p {
    color: var(--text-light);
}

.step-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* ===================================
   Pricing Section
   =================================== */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 3rem 2.5rem;
    border-radius: 28px;
    box-shadow: var(--glass-shadow);
    position: relative;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: var(--transition-normal);
}

.pricing-card.featured {
    border: 2px solid rgba(255, 149, 0, 0.6);
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 25px 70px 0 rgba(255, 149, 0, 0.25);
}

.pricing-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px 0 rgba(255, 149, 0, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price-amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-currency {
    font-size: 1.25rem;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.pricing-features i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.pricing-info {
    background: rgba(255, 149, 0, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--border-color);
}

.pricing-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.pricing-info ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-info li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.6;
}

.pricing-info i {
    color: var(--primary-color);
    margin-top: 3px;
}

.pricing-note {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.pricing-note i {
    color: var(--accent-color);
}

/* ===================================
   About Section
   =================================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 20px 60px 0 rgba(0, 0, 0, 0.15);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    white-space: nowrap;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

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

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.about-feature {
    text-align: center;
    padding: 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    transition: var(--transition-normal);
    border: 1px solid var(--glass-border);
}

.about-feature:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 30px 0 rgba(255, 149, 0, 0.15);
    transform: translateY(-5px);
    border-color: rgba(255, 149, 0, 0.4);
}

.about-feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-feature h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.about-feature p {
    font-size: 0.95rem;
    margin: 0;
}

.stats {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 2px solid var(--border-color);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-size: 1.05rem;
}

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

/* ===================================
   Gallery Section (Ukázky práce)
   =================================== */
#ukazky-prace {
    background: var(--bg-light);
}

.gallery-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.gallery-intro p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--bg-white);
    transition: var(--transition-normal);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    opacity: 0;
    transition: var(--transition-normal);
    color: white;
}

.gallery-overlay i {
    font-size: 2.5rem;
}

.gallery-overlay span {
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    padding: 0 1rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover {
    box-shadow: 0 20px 60px 0 rgba(255, 149, 0, 0.25);
    transform: translateY(-4px);
}

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

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    padding: 2rem;
    align-items: center;
    justify-content: center;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: lightboxZoom 0.3s ease;
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: var(--shadow-xl);
}

.lightbox-title {
    position: absolute;
    bottom: -3rem;
    left: 0;
    right: 0;
    color: white;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
}

.lightbox-close {
    position: absolute;
    top: -3rem;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: none;
    color: white;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

/* ===================================
   Contact Section
   =================================== */
#kontakt {
    background: var(--bg-light);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    background: var(--primary-color);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    color: white;
    box-shadow: var(--shadow-lg);
}

.contact-info h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    margin-top: 3px;
    color: var(--accent-color);
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-item strong {
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0.9;
}

.contact-item a {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    word-break: break-word;
    overflow-wrap: break-word;
}

.contact-item a:hover {
    color: var(--accent-color);
}

.contact-item span {
    font-size: 1.1rem;
    word-break: break-word;
    overflow-wrap: break-word;
}

.contact-social {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-social h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 3rem;
    border-radius: 28px;
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--glass-border);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 0;
    border: none;
    border-bottom: 2px solid var(--border-color);
    font-size: 1rem;
    font-family: var(--font-secondary);
    transition: var(--transition-fast);
    background: transparent;
}

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

.form-group label {
    position: absolute;
    left: 0;
    top: 1rem;
    color: var(--text-light);
    pointer-events: none;
    transition: var(--transition-fast);
}

.form-group .required {
    color: var(--secondary-color);
    font-weight: 600;
}

.form-note {
    font-size: 0.9rem;
    color: #666;
    margin: -0.5rem 0 1rem 0;
    font-style: italic;
}

.form-note .required {
    color: var(--secondary-color);
    font-weight: 600;
    font-style: normal;
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label {
    top: -0.5rem;
    font-size: 0.85rem;
    color: var(--primary-color);
}

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

.form-message {
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid #dc2626;
    display: block;
}

/* Map Container */
.map-container {
    margin-top: 4rem;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--glass-border);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* ===================================
   Footer
   =================================== */
footer {
    background: var(--primary-dark);
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

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

.footer-section h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--accent-color);
}

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

.footer-legal {
    margin-top: 1rem;
}

.footer-legal a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-size: 0.9rem;
}

.footer-legal a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-legal i {
    margin-right: 0.5rem;
}

.footer-legal .separator {
    margin: 0 1rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ===================================
   Form Result Modal
   =================================== */
.form-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10002;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.form-modal-content {
    background: white;
    border-radius: 24px;
    padding: 3rem 2rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.form-modal.show .form-modal-content {
    transform: scale(1);
}

.form-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.form-modal-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #333;
}

.form-modal-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.form-modal-icon.success {
    color: #28a745;
}

.form-modal-icon.error {
    color: #dc3545;
}

.form-modal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-modal-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.form-modal-content .btn {
    min-width: 150px;
}

@media (max-width: 640px) {
    .form-modal-content {
        padding: 2rem 1.5rem;
    }

    .form-modal-icon {
        font-size: 3rem;
    }

    .form-modal-content h3 {
        font-size: 1.5rem;
    }

    .form-modal-content p {
        font-size: 1rem;
    }
}

/* ===================================
   Legal Page Styles
   =================================== */
.legal-page {
    padding: 8rem 0 4rem;
    min-height: 100vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.legal-content h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.legal-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 149, 0, 0.1);
    border-left: 4px solid var(--secondary-color);
    border-radius: 8px;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
}

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

.legal-content ul,
.legal-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #555;
}

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

.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.legal-content a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.legal-table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.legal-table th,
.legal-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.legal-table th {
    font-weight: 600;
    font-family: var(--font-heading);
}

.legal-table tbody tr:hover {
    background: rgba(255, 149, 0, 0.05);
}

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

.legal-contact {
    background: rgba(255, 149, 0, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.legal-contact p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.legal-contact i {
    color: var(--secondary-color);
    width: 20px;
}

.legal-back {
    margin-top: 3rem;
    text-align: center;
}

.legal-back .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.3);
}

.legal-back .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 149, 0, 0.4);
}

@media (max-width: 768px) {
    .legal-page {
        padding: 6rem 0 2rem;
    }

    .legal-content {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

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

    .legal-table th,
    .legal-table td {
        padding: 0.75rem 0.5rem;
    }
}

/* ===================================
   Back to Top Button
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ===================================
   Cookie Consent Banner
   =================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.5rem;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
    border-top: 1px solid var(--glass-border);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookie-consent.show {
    transform: translateY(0);
}

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

.cookie-text h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.cookie-text h4 i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.cookie-text p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

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

.cookie-btn {
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--secondary-color), #FFA930);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.3);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 149, 0, 0.4);
}

.cookie-btn-reject {
    background: rgba(44, 62, 80, 0.1);
    color: var(--text-dark);
    border: 2px solid rgba(44, 62, 80, 0.2);
}

.cookie-btn-reject:hover {
    background: rgba(44, 62, 80, 0.15);
    border-color: var(--primary-color);
}

.cookie-btn-settings {
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cookie-btn-settings:hover {
    background: var(--primary-color);
    color: white;
}

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-modal.show {
    display: flex;
    opacity: 1;
}

.cookie-modal-content {
    background: white;
    border-radius: 24px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cookie-modal-header h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.5rem;
}

.cookie-modal-header h3 i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition-fast);
}

.cookie-modal-close:hover {
    color: var(--primary-color);
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-category {
    margin-bottom: 2rem;
}

.cookie-category-header {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.cookie-category h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.cookie-category p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

.cookie-required {
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Cookie Switch */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked+.cookie-slider {
    background-color: var(--secondary-color);
}

input:checked+.cookie-slider:before {
    transform: translateX(24px);
}

input:disabled+.cookie-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: flex-end;
}

/* ===================================
   Responsive Design
   =================================== */
/* ===================================
   Responsive Design
   =================================== */

/* Tablet landscape and small desktop */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

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

    .service-card {
        grid-column: span 1;
    }

    .service-card:nth-child(7),
    .service-card:nth-child(8) {
        grid-column: span 1;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }

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

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

/* Tablet portrait */
@media (max-width: 968px) {
    .logo {
        font-size: 1.1rem;
    }

    .logo i {
        font-size: 1.3rem;
    }

    .logo-text {
        gap: 0.1rem;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        gap: 5px;
        width: 44px;
        height: 44px;
        padding: 8px;
        border-radius: 8px;
        background: transparent;
        border: 1px solid transparent;
        transition: var(--transition-fast);
    }

    .hamburger:hover {
        background: rgba(0, 0, 0, 0.05);
    }

    .hamburger:active {
        background: rgba(0, 0, 0, 0.1);
    }

    #hamburger>span {
        display: block !important;
        width: 22px !important;
        height: 2px !important;
        min-height: 2px !important;
        max-height: 2px !important;
        background-color: #2c3e50 !important;
        border-radius: 2px !important;
        transition: var(--transition-fast);
        flex-shrink: 0;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        font-size: 0 !important;
        line-height: 0 !important;
    }

    .hamburger:hover>span {
        background-color: #1a252f;
    }

    .hamburger.active {
        background: rgba(0, 0, 0, 0.05);
    }

    .hamburger.active>span {
        background-color: #2c3e50;
    }

    .nav-menu {
        position: fixed;
        left: 0;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        padding: 1.5rem 1rem;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        overflow-y: auto;
    }

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

    .nav-menu li {
        padding: 0;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .nav-menu li:last-child {
        border-bottom: none;
        margin-top: 1rem;
    }

    .nav-menu .nav-link {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--text-dark);
        border-radius: 12px;
        margin: 0.25rem 0;
        transition: all 0.2s ease;
    }

    .nav-menu .nav-link:hover {
        background: rgba(44, 62, 80, 0.08);
        color: var(--primary-color);
    }

    .nav-menu .nav-link::after {
        display: none;
    }

    /* Workshop CTA v mobilním menu */
    .nav-menu .nav-link.workshop-cta {
        background: linear-gradient(135deg, #FF9500 0%, #FF7A00 100%);
        color: white !important;
        font-weight: 600;
        border: none;
        padding: 1rem 1.5rem;
        margin: 0.5rem 0;
    }

    .nav-menu .nav-link.workshop-cta:hover {
        background: linear-gradient(135deg, #FF7A00 0%, #FF5500 100%);
        transform: scale(1.02);
    }

    /* Kontakt CTA v mobilním menu */
    .nav-menu .nav-link.btn-primary {
        background: var(--primary-color);
        color: white;
        font-weight: 600;
        padding: 1rem 2rem;
        border-radius: 50px;
        margin-top: 0.5rem;
        display: inline-block;
        width: auto;
    }

    .nav-menu .nav-link.btn-primary:hover {
        background: var(--primary-dark);
        transform: scale(1.02);
    }

    .hamburger.active>span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 4px);
    }

    .hamburger.active>span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .hamburger.active>span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -4px);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pricing-container {
        grid-template-columns: 1fr;
    }

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

    .steps-container {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .lightbox-prev {
        left: -60px;
    }

    .lightbox-next {
        right: -60px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .logo {
        font-size: 0.95rem;
        gap: 0.5rem;
    }

    .logo i {
        font-size: 1.2rem;
    }

    .logo-subtitle {
        font-size: 0.8em;
    }

    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    section {
        padding: 3rem 0;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

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

    .service-card {
        grid-column: span 1;
    }

    .service-card:nth-child(7),
    .service-card:nth-child(8) {
        grid-column: span 1;
    }

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

    .coverage-item {
        padding: 0.6rem 0.75rem;
        font-size: 0.85rem;
        border-radius: 10px;
    }

    .coverage-item i {
        font-size: 0.75rem;
        margin-right: 0.35rem;
    }

    .coverage-area {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }

    .coverage-area h3 {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }

    .coverage-intro {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .coverage-note {
        font-size: 0.9rem;
        margin-top: 1rem;
    }

    /* Pricing mobile */
    .pricing-info {
        padding: 1.25rem 1rem;
        border-radius: 16px;
    }

    .pricing-info h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .pricing-info ul {
        margin-bottom: 1rem;
    }

    .pricing-info li {
        padding: 0.5rem 0;
        font-size: 0.875rem;
        gap: 0.5rem;
    }

    .pricing-info i {
        font-size: 0.85rem;
        min-width: 18px;
    }

    .pricing-note {
        padding: 1rem;
        font-size: 0.85rem;
    }

    .pricing-card {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }

    .pricing-badge {
        display: none;
    }

    .pricing-header h3 {
        font-size: 1.25rem;
    }

    .pricing-features li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }

    .contact-info {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }

    .contact-info h3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .contact-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .contact-item i {
        font-size: 1.2rem;
        margin-top: 2px;
        min-width: 24px;
    }

    .contact-item div {
        min-width: 0;
        flex: 1;
    }

    .contact-item strong {
        font-size: 0.85rem;
    }

    .contact-item a,
    .contact-item span {
        font-size: 0.95rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .contact-form {
        gap: 1.25rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px;
        /* Prevents zoom on iOS */
        padding: 0.875rem 0.875rem 0.875rem 0;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-note {
        font-size: 0.8rem;
    }

    .map-container {
        margin-top: 2.5rem;
        border-radius: 16px;
    }

    .map-container iframe {
        height: 300px;
    }

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

    .gallery-item {
        border-radius: 16px;
    }

    .lightbox-content {
        max-width: 95%;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-title {
        font-size: 1rem;
        bottom: -2.5rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Extra small mobile */
@media (max-width: 400px) {

    .contact-info,
    .contact-form-wrapper {
        padding: 1.25rem 0.875rem;
        border-radius: 14px;
    }

    .contact-info h3 {
        font-size: 1.25rem;
    }

    .contact-item a,
    .contact-item span {
        font-size: 0.875rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.75rem 0.75rem 0.75rem 0;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .coverage-area {
        padding: 1.25rem 0.75rem;
    }

    .coverage-area h3 {
        font-size: 1.2rem;
    }

    .coverage-item {
        padding: 0.5rem 0.6rem;
        font-size: 0.8rem;
    }

    .pricing-info {
        padding: 1rem 0.75rem;
    }

    .pricing-info li {
        font-size: 0.8rem;
    }

    .pricing-note {
        padding: 0.75rem;
        font-size: 0.8rem;
    }
}

/* ===================================
   Utility Classes
   =================================== */
.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: var(--spacing-xs);
}

.mt-2 {
    margin-top: var(--spacing-sm);
}

.mt-3 {
    margin-top: var(--spacing-md);
}

.mt-4 {
    margin-top: var(--spacing-lg);
}

.mb-1 {
    margin-bottom: var(--spacing-xs);
}

.mb-2 {
    margin-bottom: var(--spacing-sm);
}

.mb-3 {
    margin-bottom: var(--spacing-md);
}

.mb-4 {
    margin-bottom: var(--spacing-lg);
}

/* ===================================
   Workshop Banner (Homepage CTA)
   =================================== */
.workshop-banner {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 4rem 0;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.workshop-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.workshop-banner-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.workshop-banner-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.workshop-banner-text {
    color: var(--text-dark);
}

.workshop-banner-text h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.workshop-banner-text p {
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.6;
    margin: 0;
    color: var(--text-dark);
}

.workshop-banner-cta .btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.3);
}

.workshop-banner-cta .btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 149, 0, 0.4);
}

/* ===================================
   Workshop Page Styles
   =================================== */

/* Workshop Hero */
#workshop-hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow: hidden;
    padding: 120px 0 80px;
    z-index: 0;
}

#workshop-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
}

#workshop-hero .hero-content {
    position: relative;
    text-align: center;
    color: var(--text-dark);
    z-index: 1;
}

#workshop-hero .hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

#workshop-hero .hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 1rem;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-dark);
}

#workshop-hero .hero-description {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 2.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    opacity: 0.95;
    color: var(--text-dark);
}

/* Workshop Sections */
.workshop-section {
    padding: 4rem 0;
}

.workshop-section.bg-light {
    background: var(--bg-light);
}

/* Workshop Intro */
.workshop-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.workshop-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.workshop-intro .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Workshop Grid */
.workshop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.workshop-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    text-align: center;
}

.workshop-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.workshop-icon {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

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

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

/* Accommodation */
.accommodation-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.accommodation-icon {
    font-size: 5rem;
    color: var(--secondary-color);
}

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

.info-box {
    background: rgba(255, 149, 0, 0.1);
    border-left: 4px solid var(--secondary-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.info-box i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.info-box p {
    margin: 0;
    color: var(--text-dark);
}

/* Schedule */
.schedule {
    max-width: 800px;
    margin: 0 auto;
}

.schedule-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.schedule-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.schedule-time {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.schedule-activity {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.schedule-activity i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.schedule-activity h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* Dates Grid */
.dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.date-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.date-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.date-card i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: block;
}

.date-range {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.dates-note {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 2rem;
}

.dates-note i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

/* Instructor */
.instructor-content {
    max-width: 900px;
    margin: 0 auto;
}

.instructor-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.instructor-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.instructor-stats .stat-item {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    color: white;
}

.instructor-stats .stat-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 1;
    color: white;
}

.instructor-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.instructor-stats .stat-label {
    display: block;
    font-size: 0.95rem;
    opacity: 1;
    color: white;
}

/* Workshop CTA Section */
.workshop-cta {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.workshop-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content>p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.workshop-cta .btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.workshop-cta .btn-secondary:hover {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.cta-contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-contact-info p {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin: 0;
}

.cta-contact-info a {
    color: var(--secondary-color);
    font-weight: 600;
}

.cta-contact-info a:hover {
    text-decoration: underline;
}

.separator {
    margin: 0 1rem;
    opacity: 0.5;
}

.cta-footer {
    margin-top: 1.5rem !important;
    font-style: italic;
    opacity: 0.95;
    color: white;
}

/* Workshop Gallery */
.workshop-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.workshop-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    background: white;
    cursor: pointer;
}

.workshop-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.workshop-gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: var(--transition-slow);
}

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

/* ===================================
   Workshop Responsive Styles
   =================================== */
@media (max-width: 768px) {
    .workshop-banner-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }

    .workshop-banner-icon {
        font-size: 3rem;
    }

    .workshop-banner-text h2 {
        font-size: 1.5rem;
    }

    .workshop-banner-text p {
        font-size: 1rem;
    }

    .workshop-banner-cta {
        width: 100%;
    }

    .workshop-banner-cta .btn-large {
        width: 100%;
    }

    #workshop-hero {
        min-height: 60vh;
        padding: 6rem 0 3rem;
    }

    .workshop-intro h2 {
        font-size: 2rem;
    }

    .workshop-intro .lead {
        font-size: 1.05rem;
    }

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

    .accommodation-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .schedule-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .schedule-time {
        justify-content: center;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid var(--border-color);
    }

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

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

    .instructor-stats {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content>p {
        font-size: 1.05rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons .btn-large {
        width: 100%;
    }

    .cta-contact-info p {
        font-size: 0.95rem;
    }

    .separator {
        display: none;
    }

    .cta-contact-info i {
        display: block;
        margin-bottom: 0.5rem;
    }

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

    .workshop-gallery-item img {
        height: 300px;
    }
}