/* ==============================================
   /assets/css/style.css - KOMPLETNÍ VERZE S ANIMACEMI
   ============================================== */
:root {
    /* Color System */
    --color-sand: #FDF8F0;
    --color-cream: #FFFBF5;
    --color-warm-white: #FFFDF9;
    --color-deep-teal: #1B4332;
    --color-teal: #2D6A4F;
    --color-teal-light: #40916C;
    --color-soft-gold: #D4A373;
    --color-gold-light: #E8C9A0;
    --color-warm-ember: #B5838D;
    --color-rose: #C9A9B0;
    
    --color-text-primary: #2B2D2F;
    --color-text-secondary: #54595F;
    --color-text-tertiary: #7A7F85;
    
    --color-border: rgba(0,0,0,0.06);
    --color-border-strong: rgba(0,0,0,0.12);
    
    --color-glass-bg: rgba(255,255,255,0.65);
    --color-glass-bg-strong: rgba(255,255,255,0.85);
    --color-glass-border: rgba(255,255,255,0.4);
    
    /* Shadows */
    --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-sm: 0 4px 20px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.07);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.09);
    --shadow-xl: 0 30px 70px rgba(0,0,0,0.12);
    --shadow-glow-gold: 0 0 40px rgba(212,163,115,0.2);
    --shadow-glow-teal: 0 0 40px rgba(45,106,79,0.15);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-accent: 'Clash Display', 'Inter', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    
    /* Radius */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    --radius-full: 100px;
    
    /* Transitions */
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-cream);
    color: var(--color-text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
    letter-spacing: -0.01em;
}

/* Premium Background */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(212,163,115,0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(45,106,79,0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 0%, rgba(181,131,141,0.03) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

/* ==============================================
   TYPOGRAFIE
   ============================================== */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--color-deep-teal);
    line-height: 1.2;
}

.hero-title {
    font-size: clamp(3.5rem, 7vw, 6rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--color-text-secondary);
    max-width: 600px;
}

.accent-text {
    color: var(--color-soft-gold);
    font-style: italic;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-teal);
    background: rgba(45,106,79,0.08);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

/* ==============================================
   HEADER
   ============================================== */
.site-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 64px);
    max-width: 1280px;
    z-index: 1000;
    background: rgba(255, 251, 245, 0.75);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 16px 32px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06), 0 0 0 1px rgba(255,255,255,0.5) inset;
    transition: all 0.5s var(--ease-out-expo);
}

.site-header.scrolled {
    top: 10px;
    padding: 12px 32px;
    background: rgba(255, 251, 245, 0.9);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 45px;
    width: auto;
    transition: transform 0.3s var(--ease-out-back);
}

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

.header-glow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-soft-gold), transparent);
    opacity: 0.5;
}

.main-nav {
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--color-text-primary);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 100px;
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-deep-teal);
    background: white;
    box-shadow: var(--shadow-sm);
}

.nav-indicator {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--color-soft-gold);
    border-radius: 1px;
    transition: transform 0.3s var(--ease-out-back);
}

.nav-link.active .nav-indicator {
    transform: translateX(-50%) scaleX(1);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-deep-teal);
    border-radius: 2px;
    transition: all 0.3s var(--ease-smooth);
}

/* ==============================================
   HERO SECTION
   ============================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,163,115,0.1);
    border: 1px solid rgba(212,163,115,0.3);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-deep-teal);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-soft-gold);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    margin: 24px 0 40px;
    line-height: 1.7;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 80%;
    z-index: 1;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    animation: float 20s infinite alternate ease-in-out;
}

.fe-1 { width: 450px; height: 450px; background: radial-gradient(circle, rgba(212,163,115,0.15), transparent 70%); top: 0; right: 10%; animation-duration: 18s; }
.fe-2 { width: 350px; height: 350px; background: radial-gradient(circle, rgba(45,106,79,0.12), transparent 70%); bottom: 10%; left: 5%; animation-duration: 22s; animation-delay: -5s; }
.fe-3 { width: 250px; height: 250px; background: radial-gradient(circle, rgba(181,131,141,0.12), transparent 70%); top: 30%; right: 30%; animation-duration: 25s; animation-delay: -10s; }

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--color-soft-gold);
    opacity: 0.3;
    animation: float-particle 15s infinite alternate ease-in-out;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    100% { transform: translate(40px, -50px) scale(1.08) rotate(5deg); }
}

@keyframes float-particle {
    0% { transform: translate(0, 0); opacity: 0.2; }
    50% { transform: translate(50px, -30px); opacity: 0.4; }
    100% { transform: translate(-30px, -60px); opacity: 0.15; }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-tertiary);
    animation: bounce-scroll 2s infinite;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-soft-gold), transparent);
    animation: scroll-line 2s infinite;
}

@keyframes bounce-scroll {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scroll-line {
    0% { height: 0; opacity: 0; }
    50% { height: 40px; opacity: 1; }
    100% { height: 0; opacity: 0; }
}

/* ==============================================
   BUTTONY
   ============================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    transition: all 0.4s var(--ease-out-back);
    white-space: nowrap;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-deep-teal), var(--color-teal));
    color: white;
    box-shadow: 0 10px 30px rgba(27,67,50,0.25);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-primary:hover::after {
    transform: translateX(100%);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 20px 40px rgba(27,67,50,0.35);
}

.btn-outline {
    background: transparent;
    color: var(--color-deep-teal);
    border: 2px solid rgba(27,67,50,0.2);
}

.btn-outline:hover {
    background: var(--color-deep-teal);
    color: white;
    border-color: var(--color-deep-teal);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(27,67,50,0.2);
}

/* ==============================================
   VISION & MISSION CARDS S OBRÁZKY
   ============================================== */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 48px;
}

.vision-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.6s var(--ease-out-expo);
    position: relative;
}

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

.vision-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.vision-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.vision-card:hover .vision-image {
    transform: scale(1.08);
}

.vision-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(27,67,50,0.7) 100%);
}

.vision-image-badge {
    position: absolute;
    bottom: 20px;
    left: 24px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-deep-teal);
}

.vision-content {
    padding: 32px;
}

.vision-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.vision-content p {
    color: var(--color-text-secondary);
    margin-bottom: 12px;
    line-height: 1.7;
}

/* ==============================================
   STATISTICS SECTION
   ============================================== */
.stats-section {
    background: linear-gradient(180deg, transparent, rgba(45,106,79,0.03), transparent);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 40px 24px;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-soft-gold), var(--color-teal));
    border-radius: 2px;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-deep-teal);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

/* ==============================================
   SERVICE CARDS
   ============================================== */
.service-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: all 0.5s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-soft-gold), var(--color-teal));
    transform: scaleX(0);
    transition: transform 0.5s var(--ease-out-expo);
}

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

.service-card:hover {
    box-shadow: var(--shadow-lg), var(--shadow-glow-teal);
    transform: translateY(-8px);
}

.service-icon {
    color: var(--color-soft-gold);
    margin-bottom: 8px;
}

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

.service-card p {
    color: var(--color-text-secondary);
    flex-grow: 1;
}

.card-link {
    font-weight: 600;
    color: var(--color-deep-teal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s var(--ease-smooth);
}

.card-link:hover {
    gap: 14px;
    color: var(--color-teal);
}

/* ==============================================
   CTA SECTION
   ============================================== */
.cta-section {
    padding: 80px 0 120px;
}

.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.cta-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 60px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-badge {
    display: inline-block;
    background: rgba(212,163,115,0.1);
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-deep-teal);
    margin-bottom: 20px;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.cta-text {
    color: var(--color-text-secondary);
    max-width: 550px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.cta-info {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.cta-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.cta-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.cta-shape-1 { width: 300px; height: 300px; background: var(--color-soft-gold); top: -100px; right: -100px; animation: float 20s infinite alternate; }
.cta-shape-2 { width: 200px; height: 200px; background: var(--color-teal); bottom: -50px; left: -50px; animation: float 15s infinite alternate-reverse; }
.cta-shape-3 { width: 150px; height: 150px; background: var(--color-warm-ember); top: 50%; left: 60%; animation: float 18s infinite alternate; animation-delay: -7s; }

/* ==============================================
   GRIDY
   ============================================== */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ==============================================
   SECTIONS
   ============================================== */
.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-title {
    margin-bottom: 16px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* ==============================================
   COOKIE BANNER
   ============================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(27, 67, 50, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.3);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner[hidden] {
    display: block !important;
    transform: translateY(100%);
}

.cookie-banner-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-banner-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
    min-width: 280px;
}

.cookie-banner-icon {
    color: var(--color-soft-gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.cookie-banner-text h3 {
    color: white;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.cookie-banner-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-banner-text a {
    color: var(--color-gold-light);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
}

.cookie-banner-text a:hover {
    color: white;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    flex-shrink: 0;
}

.btn-cookie-settings,
.btn-cookie-accept,
.btn-cookie-reject {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    border: none;
}

.btn-cookie-settings {
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: white;
}

.btn-cookie-settings:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-cookie-accept {
    background: white;
    color: var(--color-deep-teal);
    font-weight: 600;
}

.btn-cookie-accept:hover {
    background: var(--color-gold-light);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-cookie-reject {
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
}

.btn-cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

/* ==============================================
   COOKIE SETTINGS PANEL
   ============================================== */
.cookie-settings-panel {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-settings-panel[hidden] {
    display: none !important;
}

.cookie-settings-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.cookie-settings-content {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 36px;
    max-width: 540px;
    width: 92%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.cookie-settings-header h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--color-deep-teal);
    margin: 0;
}

.cookie-settings-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-settings-close:hover {
    background: #f0f0f0;
    color: #333;
}

.cookie-settings-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.cookie-setting-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 18px;
    background: var(--color-sand);
    border-radius: 16px;
    border: 1px solid var(--color-border);
}

.cookie-setting-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--color-text-primary);
    margin-bottom: 4px;
}

.cookie-setting-info p {
    font-size: 0.82rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin: 0;
}

.cookie-settings-footer {
    text-align: right;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #ccc;
    border-radius: 28px;
    transition: all 0.3s ease;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--color-teal);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(22px);
}

.toggle-switch input:disabled + .toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ==============================================
   FOOTER
   ============================================== */
.site-footer {
    background: var(--color-deep-teal);
    color: rgba(255,255,255,0.85);
    position: relative;
    margin-top: 0;
    padding: 80px 0 0;
}

.footer-waves {
    position: absolute;
    top: -99px;
    left: 0;
    right: 0;
    color: var(--color-deep-teal);
    line-height: 0;
}

.footer-wave {
    display: block;
    width: 100%;
    height: auto;
}

.footer-content {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
}

.footer-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-nav h4,
.footer-contact h4 {
    color: white;
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer-nav a {
    display: block;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.footer-nav a:hover {
    color: var(--color-gold-light);
    transform: translateX(4px);
}

.footer-contact p {
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.footer-contact a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--color-gold-light);
}

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

.footer-legal {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

.footer-legal a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: white;
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 1024px) {
    .site-header {
        top: 10px;
        width: calc(100% - 32px);
        padding: 14px 24px;
        border-radius: 40px;
    }
    
    .mobile-toggle { display: flex; }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(255,251,245,0.98);
        backdrop-filter: blur(40px);
        border-radius: 32px;
        padding: 24px;
        flex-direction: column;
        box-shadow: var(--shadow-xl);
        border: 1px solid rgba(255,255,255,0.5);
    }
    
    .main-nav.active { display: flex; }
    
    .nav-link {
        padding: 14px 24px;
        font-size: 1rem;
        border-radius: 16px;
    }
    
    .vision-mission-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .two-column { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .hero {
        padding: 140px 0 60px;
        min-height: auto;
    }
    
    .hero-title { font-size: clamp(2.5rem, 8vw, 4rem); }
    .hero-visual { display: none; }
    
    .section { padding: 60px 0; }
    .service-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    
    .cta-card { padding: 40px 24px; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-legal { justify-content: center; }
    
    .cookie-banner-inner {
        padding: 16px 20px;
        flex-direction: column;
        gap: 16px;
    }
    
    .cookie-banner-content { min-width: 100%; }
    
    .cookie-banner-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-banner-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-settings-content { padding: 24px; max-height: 90vh; }
    .cookie-setting-item { flex-direction: column; gap: 12px; }
    .toggle-switch { align-self: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ==============================================
   DOPLŇKOVÉ CSS PRO ROZŠÍŘENÉ ANIMACE
   Přidej na konec /assets/css/style.css
   ============================================== */

/* Split Text Animation */
.split-text {
    opacity: 1 !important;
}

.split-text .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px) rotateX(90deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

/* Progressive Reveal */
.progressive-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: none;
}

/* Floating Card 3D efekt */
.floating-card {
    transition: transform 0.1s ease-out, box-shadow 0.1s ease-out;
    transform-style: preserve-3d;
    will-change: transform;
}

/* Glow on Scroll */
.glow-on-scroll {
    transition: box-shadow 0.3s ease;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 2px solid var(--color-soft-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
    mix-blend-mode: difference;
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--color-soft-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

/* Scroll Image Reveal */
.scroll-image-reveal {
    opacity: 0;
    transform: scale(1.1) translateY(30px);
    transition: none;
    will-change: transform, opacity;
}

/* Staggered children delays */
.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 100ms; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 200ms; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 300ms; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 400ms; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 500ms; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 600ms; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 700ms; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Reveal animations base */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Parallax elements */
.parallax-slow,
.parallax-medium,
.parallax-fast {
    will-change: transform;
    transition: transform 0.1s linear;
}

/* Animované pozadí pro hero */
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animated-gradient {
    background-size: 300% 300%;
    animation: gradient-shift 8s ease infinite;
}

/* Pulse animation pro badges */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 163, 115, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(212, 163, 115, 0); }
}

.pulse-glow {
    animation: pulse-glow 2s infinite;
}

/* Shimmer efekt pro karty */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.shimmer-effect {
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255,255,255,0.3) 50%, 
        transparent 100%);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

/* Rotate on scroll */
@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.rotate-slow {
    animation: rotate-slow 30s linear infinite;
}

/* Bounce in */
@keyframes bounce-in {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

.bounce-in {
    animation: bounce-in 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Wave text animation */
@keyframes wave {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-8px); }
    75% { transform: translateY(4px); }
}

.wave-text span {
    display: inline-block;
    animation: wave 2s ease-in-out infinite;
}

/* Skrytí kurzoru na mobilu */
@media (max-width: 1024px) {
    .custom-cursor,
    .cursor-dot {
        display: none;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .reveal, .reveal-left, .reveal-right, .reveal-scale,
    .stagger-children > * {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .split-text .char {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .custom-cursor,
    .cursor-dot {
        display: none;
    }
}

/* ==============================================
   MOBILNÍ ANIMACE - PŘIDEJ DO style.css
   ============================================== */

/* Touch ripple efekt */
.touch-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(212, 163, 115, 0.3);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
    z-index: 1;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Mobilní optimalizace */
.is-mobile .reveal,
.is-mobile .reveal-left,
.is-mobile .reveal-right,
.is-mobile .reveal-scale {
    /* Rychlejší animace na mobilu */
    transition-duration: 0.4s;
}

.is-mobile .stagger-children > * {
    transition-duration: 0.3s;
}

/* Zjednodušené animace na mobilu pro lepší výkon */
@media (max-width: 1024px) {
    .floating-element {
        animation-duration: 30s !important;
    }
    
    .particle {
        display: none; /* Skrýt částice na mobilu pro výkon */
    }
    
    .cta-floating-shape {
        opacity: 0.04;
    }
    
    /* Vypnout parallax na mobilu */
    .parallax-slow,
    .parallax-medium,
    .parallax-fast {
        transform: none !important;
    }
    
    /* Rychlejší přechody */
    .service-card,
    .vision-card,
    .glass-card {
        transition-duration: 0.3s;
    }
    
    /* Aktivní stav pro dotyk */
    .btn:active,
    .service-card:active,
    .vision-card:active {
        transform: scale(0.97);
        transition: transform 0.1s ease;
    }
    
    /* Vylepšený touch target */
    .nav-link,
    .btn,
    .card-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}

/* Animace pro zařízení s podporou smooth scroll */
@supports (scroll-behavior: smooth) {
    html {
        scroll-behavior: smooth;
    }
}

/* Performance optimalizace */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .reveal, .reveal-left, .reveal-right, .reveal-scale,
    .stagger-children > *,
    .split-text .char,
    .progressive-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .custom-cursor,
    .cursor-dot,
    .touch-ripple {
        display: none !important;
    }
}

/* Zvýraznění fokusu pro přístupnost */
@media (pointer: coarse) {
    .btn:focus-visible,
    a:focus-visible,
    input:focus-visible,
    textarea:focus-visible,
    select:focus-visible {
        outline: 3px solid var(--color-soft-gold);
        outline-offset: 2px;
    }
}

/* Animace pro swipe */
.swipe-reactive {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}