 /* ==========================================================================
   1. GLOBÁLNE NASTAVENIA & TYPOGRAFIA
   ========================================================================== */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html { 
    scroll-behavior: smooth; 
}

body {
    font-family: 'Inter', sans-serif;
    background: #000c18; /* Hlboká vesmírna tmavomodrá */
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

.section-padding { 
    padding: 120px 0; 
}

/* --- GLOBALNE SVIETIACE NADPISY --- */
.section-title {
    text-align: center;
    font-weight: 100;
    font-size: 2.8rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 60px;
    color: #00d4ff;
    position: relative;
    display: block;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

/* ==========================================================================
   2. NAVIGÁCIA & ANIMOVANÉ LOGO (REALISTICKÝ TLKOT)
   ========================================================================== */
/* --- GLOBÁLNE VYLEPŠENIE NAVIGÁCIE (TMALÝ NÁPIS, PRIEHĽADNOSŤ) --- */
.main-nav {
    position: fixed;
    top: 0; width: 100%; z-index: 1000;
    padding: 15px 0;
    /* Spriehľadnenie na 40% (z pôvodných 100%), aby bol dym plynulý */
    background: rgba(0, 12, 24, 0.4); 
    backdrop-filter: blur(15px); /* Zachováme rozostrenie pre luxusný efekt */
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

/* Tmavší a menej svietivý nápis SoulBreath, ako chcel Adam */
.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #00d4ff !important; /* Hlbšia azúrová, už menej biela */
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.2) !important; /* Miernejšie svietenie */
}

.nav-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.breathing-logo {
    display: flex; 
    align-items: center; 
    text-decoration: none;
    will-change: transform, opacity;
    animation: deep-logo-breath 5s ease-in-out infinite;
}

@keyframes deep-logo-breath {
    0%, 100% { transform: scale(1); opacity: 0.8; filter: brightness(1); }
    50% { transform: scale(1.1); opacity: 1; filter: brightness(1.2); }
}

.heart-container {
    width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; margin-right: 12px;
    will-change: transform; animation: heart-beat 1.5s ease-in-out infinite;
}

@keyframes heart-beat {
    0% { transform: scale(1); }
    15% { transform: scale(1.25); }
    30% { transform: scale(1.1); }
    45% { transform: scale(1.35); }
    60% { transform: scale(1); }
    100% { transform: scale(1); }
}

.heart-css {
    background-color: #4CAF50; height: 18px; width: 18px;
    position: relative; transform: rotate(-45deg);
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.6);
}
.heart-css::after, .heart-css::before {
    content: ""; background-color: #4CAF50; border-radius: 50%;
    height: 18px; width: 18px; position: absolute;
}
.heart-css::before { top: -9px; left: 0; }
.heart-css::after { left: 9px; top: 0; }

.logo-text { font-size: 1.5rem; font-weight: 800; text-transform: uppercase; color: #00d4ff !important; letter-spacing: 1px; }
.logo-text span { color: #4CAF50; font-weight: 300; }

.nav-links { display: flex; list-style: none; align-items: center; }
.nav-links li { margin-left: 30px; }
.nav-links a { text-decoration: none; color: #b3e5ff; font-weight: 600; font-size: 14px; transition: 0.3s; }
.nav-links a:hover { color: #00d4ff; }

.btn-nav { background: #0077ff; padding: 10px 22px; border-radius: 50px; color: #fff !important; box-shadow: 0 0 15px rgba(0, 119, 255, 0.4); }
.btn-nav:hover { background: #4CAF50; box-shadow: 0 0 15px rgba(76, 175, 80, 0.4); }

/* ==========================================================================
   3. HERO SEKCIA (ZOSVETLENÉ DRONOVÉ VIDEO S PODKLADOVÝM TIEŇOM)
   ========================================================================== */
.hero-video-section {
    height: 100vh; display: flex; align-items: center; justify-content: center;
    position: relative; color: #fff; text-align: center; overflow: hidden;
}

.video-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
#bg-video { width: 100%; height: 100%; object-fit: cover; }

/* Finta pre videá: Na počítači skryjeme mobilné video */
.video-mobile { 
    display: none !important; 
}
.video-desktop { 
    display: block; 
}

.video-overlay {
    position: absolute;
    top: 0; left: 0; 
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0, 12, 24, 0.05) 0%, 
        rgba(0, 12, 24, 0.25) 60%, 
        #000c18 100%
    );
}

.hero-content { max-width: 900px; z-index: 1; position: relative; padding: 0 20px; }
.tagline { display: block; font-weight: 600; text-transform: uppercase; letter-spacing: 4px; color: #4CAF50; margin-bottom: 15px; }

.breathing-title {
    font-weight: 100 !important; font-size: 4rem; text-transform: uppercase;
    letter-spacing: 8px; color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px; will-change: transform;
    animation: title-mist-intense 6s ease-in-out infinite;
}

@keyframes title-mist-intense {
    0%, 100% { 
        transform: scale(1); 
        text-shadow: 0 0 25px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 212, 255, 0.4); 
        opacity: 0.9; 
    }
    50% { 
        transform: scale(1.03); 
        text-shadow: 0 0 35px rgba(0, 0, 0, 0.9), 0 0 60px rgba(0, 212, 255, 0.7); 
        opacity: 1; 
    }
}

.description-glow {
    background: rgba(0, 20, 40, 0.5); padding: 25px 40px;
    border-radius: 60px; backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.1); margin-bottom: 40px;
}

.breathing-font { font-size: 1.2rem; font-weight: 300; letter-spacing: 1px; color: #b3e5ff; }
.breathing-font strong { color: #4CAF50; font-weight: 700; }

.hero-actions { display: flex; justify-content: center; }
.btn-main {
    padding: 18px 40px; border-radius: 50px; text-decoration: none;
    font-weight: 800; text-transform: uppercase; transition: 0.4s;
    background: #0077ff; color: #fff; box-shadow: 0 0 25px rgba(0, 119, 255, 0.4);
}
.btn-main:hover { transform: translateY(-4px) scale(1.03); background: #4CAF50; box-shadow: 0 0 25px rgba(76, 175, 80, 0.5); }

/* ==========================================================================
   4. BUBLINKY BENEFITOV (DOKONALÉ KRUHY PODĽA INŠPIRÁCIE Z VIDEA)
   ========================================================================== */
.bubbles-container { background: #000c18; padding: 80px 20px; position: relative; z-index: 5; box-shadow: 0 50px 100px #000c18; }
.bubbles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }

.benefit-bubble {
    background: rgba(0, 20, 40, 0.4) !important;
    padding: 40px 25px; border-radius: 30px; text-align: center;
    backdrop-filter: blur(15px); border: 1px solid rgba(0, 212, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    will-change: transform; animation: bubble-float 6s ease-in-out infinite;
}

.benefit-bubble:nth-child(2) { animation-delay: 1s; }
.benefit-bubble:nth-child(3) { animation-delay: 2s; }
.benefit-bubble:nth-child(4) { animation-delay: 1.5s; }
.benefit-bubble:nth-child(5) { animation-delay: 2.5s; }
.benefit-bubble:nth-child(6) { animation-delay: 0.5s; }

@keyframes bubble-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.bubble-icon {
    width: 80px; height: 80px;
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 25px; font-size: 2rem; color: #00d4ff;
    background: rgba(0, 12, 24, 0.6); box-shadow: 0 0 20px rgba(0, 212, 255, 0.05);
    transition: 0.3s ease;
}

.benefit-bubble h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 12px; text-transform: uppercase; color: #fff; }
.benefit-bubble p { font-size: 0.95rem; color: #b3e5ff; opacity: 0.9; }

.benefit-bubble:hover { animation-play-state: paused; transform: translateY(-10px) scale(1.03) !important; border-color: #00d4ff; box-shadow: 0 20px 40px rgba(0, 212, 255, 0.25); background: rgba(0, 20, 40, 0.6) !important; }
.benefit-bubble:hover .bubble-icon { border-color: #00d4ff; color: #fff; background: #0077ff; box-shadow: 0 0 25px rgba(0, 212, 255, 0.5); }

/* ==========================================================================
   5. SÚVISLÁ OBLASŤ S NEONOVÝM DYMOM
   ========================================================================== */
.background-flow-area {
    background-image: 
        linear-gradient(to bottom, #000c18, rgba(0, 12, 24, 0.75), #000c18),
        url('neon-blue-smoke-green-screen.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: multiply;
}

/* ==========================================================================
   6. SEKCE CITÁT (NOVAK ROZTIAHNUTÝ POD CELÝM TEXTOM AKO VODOTLAČ)
   ========================================================================== */
.quote-section {
    padding: 120px 0;
    position: relative;
}

.quote-wrapper {
    max-width: 850px;
    margin: 0 auto;
    padding: 60px 40px;
    background: rgba(0, 20, 40, 0.6); 
    backdrop-filter: blur(15px);
    border-radius: 40px;
    border: 1px solid rgba(0, 212, 255, 0.25);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    overflow: hidden;
    animation: content-breathe 8s ease-in-out infinite;
}

.quote-wrapper::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('djokovic-silueta.png');
    background-size: contain; 
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08; /* Ultra jemná 8% viditeľnosť zaručí stopercentnú čitateľnosť */
    z-index: -1;
    pointer-events: none;
}

.quote-wrapper blockquote {
    font-size: 2.2rem;
    font-weight: 100;
    color: #00d4ff;
    line-height: 1.4;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
    position: relative;
    z-index: 3;
}

.quote-wrapper cite {
    display: block;
    margin-top: 25px;
    color: #4CAF50;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    z-index: 3;
}

.quote-icon {
    font-size: 2rem;
    color: rgba(0, 212, 255, 0.2);
    margin-bottom: 15px;
    position: relative;
    z-index: 3;
}

@keyframes content-breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.015); }
}

/* ==========================================================================
   7. INFO SEKCIA (O MNE / VEDA O DYCHU)
   ========================================================================== */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.info-text { padding: 50px; background: rgba(0, 20, 40, 0.55); backdrop-filter: blur(12px); border-radius: 40px; border: 1px solid rgba(0, 212, 255, 0.25); }
.tagline-light { color: #00bce4; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; display: block; margin-bottom: 15px; }
.info-text h2 { color: #00d4ff; font-weight: 100; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 25px; text-shadow: 0 0 20px rgba(0, 212, 255, 0.3); }
.info-text p { color: #b3e5ff; font-size: 1.1rem; line-height: 1.8; margin-bottom: 20px; }
.info-text strong { color: #4CAF50; font-weight: 700; }

.highlight-box {
    background: rgba(0, 119, 255, 0.1); border-left: 4px solid #00d4ff;
    padding: 25px; margin-top: 35px; border-radius: 0 20px 20px 0;
}
.highlight-box p { color: #fff; margin-bottom: 0; font-size: 1.05rem; }
.highlight-box strong { color: #00d4ff; }


.info-image { 
    position: relative; 
    display: flex; 
    justify-content: center; 
}

.image-placeholder { 
    position: relative; 
    width: 100%; 
    max-width: 450px; 
}


/* MODRÁ VERZIA MNÍCHA (Hlboký elektrický neón) */
.floating-img { 
    width: 100%; 
    height: auto; 
    border-radius: 40px; 
    position: relative; 
    z-index: 2; 
    animation: simple-float 6s ease-in-out infinite; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.5); 
    
    /* FILTRE PRE ČISTÚ MODRÚ: Otočenie farby na 220° a silný modrý žiarivý tieň */
    filter: hue-rotate(220deg) saturate(1.6) brightness(1.05) drop-shadow(0 0 25px rgba(0, 85, 255, 0.7));
}

/* Veľká svietiaca aura za mníchom */
.glow-circle { 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    width: 130%; 
    height: 130%; 
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 75%); 
    z-index: 1; 
}

@keyframes simple-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}



/* ==========================================================================
   8. TRÉNINGOVÉ PROGRAMY (SKLENENÝ CENNÍK)
   ========================================================================== */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.pricing-card {
    background: rgba(0, 20, 40, 0.6); backdrop-filter: blur(15px);
    padding: 50px 30px; border-radius: 40px; text-align: center; position: relative;
    border: 1px solid rgba(0, 212, 255, 0.15); box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transition: all 0.4s ease; will-change: transform;
    display: flex; flex-direction: column; justify-content: space-between;
}

.pricing-card.featured { border: 2px solid #00d4ff; transform: scale(1.03); z-index: 2; box-shadow: 0 25px 50px rgba(0, 212, 255, 0.15); }
.card-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: #00d4ff; color: #000c18; padding: 6px 22px; border-radius: 20px; font-size: 12px; font-weight: 800; text-transform: uppercase; }

.pricing-card h3 { font-size: 1.6rem; margin-bottom: 20px; color: #fff; text-transform: uppercase; letter-spacing: 1px; }
.price, .price-info { font-size: 3rem; font-weight: 800; color: #00d4ff; margin-bottom: 30px; text-shadow: 0 0 15px rgba(0, 212, 255, 0.3); }
.price-info { font-size: 1.8rem; padding: 10px 0; color: #b3e5ff; }

.features { list-style: none; text-align: left; margin-bottom: 40px; flex-grow: 1; }
.features li { margin-bottom: 15px; font-size: 1rem; color: #b3e5ff; display: flex; align-items: center; }
.features li i { color: #4CAF50; margin-right: 12px; font-size: 1.1rem; }

.btn-card {
    display: block; padding: 16px 25px; background: rgba(0, 119, 255, 0.1); color: #00d4ff;
    text-decoration: none; font-weight: 800; border-radius: 30px; transition: 0.3s; border: 1px solid #0077ff; text-transform: uppercase; letter-spacing: 1px;
    margin-top: auto;
}
.pricing-card.featured .btn-card { background: #0077ff; color: #fff; box-shadow: 0 0 15px rgba(0, 119, 255, 0.3); }
.btn-card:hover { background: #4CAF50; border-color: #4CAF50; color: #fff; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4); }
.pricing-card:hover { transform: translateY(-8px); border-color: #00d4ff; box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15); }

/* ==========================================================================
   9. SKÚSENOSTI KLIENTOV (LUXUSNÁ VELKÁ KARTA)
   ========================================================================== */
.reviews-container-box { max-width: 850px; margin: 0 auto; }
.review-card {
    background: rgba(0, 20, 40, 0.6); backdrop-filter: blur(15px); padding: 50px; border-radius: 40px;
    border: 1px solid rgba(0, 212, 255, 0.25); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    position: relative; transition: 0.4s ease;
}
.review-card:hover { border-color: #00d4ff; box-shadow: 0 30px 60px rgba(0, 212, 255, 0.1); }
.review-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.rating-stars i { color: #00d4ff; font-size: 1.2rem; margin-right: 5px; filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.6)); }
.review-quote-icon i { font-size: 2.5rem; color: rgba(0, 212, 255, 0.15); }
.review-text { color: #b3e5ff; font-size: 1.1rem; line-height: 1.8; margin-bottom: 20px; font-weight: 300; }
.review-text:last-of-type { margin-bottom: 35px; }
.review-author { display: flex; align-items: center; border-top: 1px solid rgba(0, 212, 255, 0.1); padding-top: 25px; }
.author-avatar { width: 55px; height: 55px; background: rgba(0, 119, 255, 0.1); border: 1px solid rgba(0, 212, 255, 0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; }
.author-avatar i { font-size: 1.8rem; color: #00d4ff; }
.author-info h4 { font-size: 1.1rem; font-weight: 600; color: #fff; margin-bottom: 2px; }
.author-info span { font-size: 0.9rem; color: #4CAF50; font-weight: 600; }

/* ==========================================================================
   10. ODBORNÁ CERTIFIKÁCIA (GALÉRIA SO VŠETKÝMI 7 POLOŽKAMI)
   ========================================================================== */
.certificates-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; margin-top: 50px; }
.certificate-bubble {
    background: rgba(0, 20, 40, 0.5); backdrop-filter: blur(15px); padding: 25px; border-radius: 30px;
    text-align: center; border: 1px solid rgba(0, 212, 255, 0.25); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease; display: flex; flex-direction: column;
}

.cert-image-container {
    width: 100%; height: 180px; border-radius: 20px; overflow: hidden; position: relative;
    margin-bottom: 25px; background: rgba(0, 12, 24, 0.6); border: 1px solid rgba(0, 212, 255, 0.1);
    cursor: pointer;
}
.cert-real-img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.5s ease; }
.cert-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0, 119, 255, 0.4), rgba(0, 212, 255, 0.1));
    display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s ease;
}
.cert-overlay i { color: #fff; font-size: 1.8rem; filter: drop-shadow(0 0 10px #00d4ff); }

.certificate-bubble:hover { transform: translateY(-8px); border-color: #00d4ff; box-shadow: 0 25px 50px rgba(0, 212, 255, 0.15); }
.certificate-bubble:hover .cert-real-img { transform: scale(1.08); }
.certificate-bubble:hover .cert-overlay { opacity: 1; }

.certificate-bubble h3 { font-size: 1.15rem; font-weight: 800; color: #fff; margin-bottom: 8px; text-transform: uppercase; line-height: 1.4; min-height: 45px; }
.cert-meta { font-size: 0.8rem; color: #4CAF50; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; }
.cert-desc { font-size: 0.9rem; color: #b3e5ff; line-height: 1.6; font-weight: 300; opacity: 0.85; }

/* ==========================================================================
   11. ČASTO KLADENÉ OTÁZKY (FAQ)
   ========================================================================== */
.faq-grid { max-width: 800px; margin: 0 auto; }
.faq-item { background: rgba(0, 20, 40, 0.55); backdrop-filter: blur(10px); margin-bottom: 15px; border-radius: 20px; overflow: hidden; border: 1px solid rgba(0, 212, 255, 0.1); transition: 0.3s; }
.faq-item summary { padding: 25px 30px; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; color: #fff; font-size: 1.1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: #00d4ff; transition: 0.3s; }
.faq-item[open] summary::after { transform: rotate(45deg); color: #4CAF50; }
.faq-content { padding: 0 30px 25px; color: #b3e5ff; line-height: 1.7; border-top: 1px solid rgba(0, 212, 255, 0.05); padding-top: 15px; }

/* ==========================================================================
   12. KONTAKTNÁ SEKCE & FORMULÁR
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contact-info h2 { font-size: 3rem; font-weight: 100; text-transform: uppercase; margin-bottom: 20px; color: #00d4ff; letter-spacing: 3px; }
.contact-info p { color: #b3e5ff; font-size: 1.1rem; }
.contact-details { margin-top: 40px; }
.contact-item { display: flex; align-items: center; margin-bottom: 25px; font-size: 1.1rem; color: #fff; }
.contact-item i { font-size: 1.5rem; color: #00d4ff; margin-right: 20px; text-shadow: 0 0 10px rgba(0, 212, 255, 0.4); }
.contact-item strong { color: #00d4ff; }

.contact-form-wrapper { background: rgba(0, 20, 40, 0.6); padding: 50px; border-radius: 40px; backdrop-filter: blur(15px); border: 1px solid rgba(0, 212, 255, 0.15); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); }
.input-group { margin-bottom: 20px; }
.input-group input, .input-group textarea { width: 100%; padding: 16px 20px; border-radius: 20px; border: 1px solid rgba(0, 212, 255, 0.15); background: rgba(0, 12, 24, 0.4); font-family: inherit; font-size: 1rem; color: #fff; outline: none; transition: 0.3s; }
.input-group input:focus, .input-group textarea:focus { border-color: #00d4ff; box-shadow: 0 0 15px rgba(0, 212, 255, 0.2); background: rgba(0, 12, 24, 0.6); }
.input-group input::placeholder, .input-group textarea::placeholder { color: rgba(179, 229, 255, 0.5); }

/* ==========================================================================
   13. REÁLNE FUNKČNÁ LUPA (LIGHTBOX MODAL)
   ========================================================================== */
.lightbox {
    display: none; position: fixed; z-index: 2000; padding-top: 40px; left: 0; top: 0; width: 100%; height: 100%;
    overflow: auto; background-color: rgba(0, 12, 24, 0.9); backdrop-filter: blur(10px); animation: fadeInLupa 0.3s;
}
@keyframes fadeInLupa { from {opacity: 0;} to {opacity: 1;} }

.lightbox-content {
    margin: auto; display: block; width: 85%; max-width: 800px; border-radius: 20px;
    border: 3px solid rgba(0, 212, 255, 0.3); box-shadow: 0 0 60px rgba(0, 212, 255, 0.2);
    cursor: default; animation-name: zoom; animation-duration: 0.5s;
}
@keyframes zoom { from {transform:scale(0.5)} to {transform:scale(1)} }

.close-lightbox {
    position: absolute; top: 20px; right: 40px; color: #b3e5ff; font-size: 50px; font-weight: bold;
    transition: 0.3s; cursor: pointer; z-index: 2100;
}
.close-lightbox:hover { color: #00d4ff; transform: rotate(90deg) scale(1.1); }

/* ==========================================================================
   14. PÄTIČKA (FOOTER)
   ========================================================================== */
.footer { background: #000810; padding: 60px 0 20px; color: #b3e5ff; border-top: 1px solid rgba(0, 212, 255, 0.1); position: relative; z-index: 10; }
.footer-content { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(0, 212, 255, 0.1); padding-bottom: 40px; }
.footer-logo p { font-size: 0.9rem; opacity: 0.7; margin-top: 5px; line-height: 1.4; }
.footer-links a { color: rgba(179, 229, 255, 0.6); text-decoration: none; margin: 0 15px; font-size: 0.9rem; transition: 0.3s; }
.footer-links a:hover { color: #00d4ff; }
.socials a { color: #fff; font-size: 1.5rem; margin-left: 20px; transition: 0.3s; }
.socials a:hover { color: #4CAF50; filter: drop-shadow(0 0 10px #4CAF50); }
.footer-bottom { padding-top: 20px; text-align: center; font-size: 0.8rem; opacity: 0.4; }

/* ==========================================================================
   15. KOMPLETNÁ MOBILNÁ RESPONZIVITA (ZJEDNOTENÁ NA KONCI)
   ========================================================================== */
@media (max-width: 992px) {
    .section-title { font-size: 2.2rem; }
    .info-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .info-text { padding: 30px; }
    .pricing-card.featured { transform: scale(1); }
    .footer-content { flex-direction: column; gap: 30px; text-align: center; }
    .socials a { margin: 0 10px; }
    
    
    
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .contact-form-wrapper { padding: 30px; }
    .quote-section { padding: 80px 0; }
    .quote-wrapper { padding: 40px 25px; }
    .quote-wrapper blockquote { font-size: 1.6rem; }
    .quote-wrapper::after { opacity: 0.05; }
    .review-card { padding: 30px 20px; border-radius: 30px; }
    .review-text { font-size: 1rem; }
    .certificate-bubble { padding: 35px 20px; }
    .certificate-bubble h3 { font-size: 1.15rem; }
    .lightbox-content { width: 95%; margin-top: 60px; }
    .close-lightbox { font-size: 40px; top: 15px; right: 20px; }
    .video-desktop { display: none !important; }
    .video-mobile { display: block !important; width: 100%; height: 100%; object-fit: cover; }
    
    /* --- KOMPRESIU HERO SEKCIE PRE MOBIL (ABY BOLO VIDNO ATLÉTA) --- */
    .hero-video-section {
        align-items: center;
    }

    .hero-content {
        height: 100%; /* Rozšírime na plnú výšku, aby fungovalo auto-margin */
        display: flex;
        flex-direction: column;
        justify-content: center; /* Vodorovne v strede */
    }
    
    .hero-content .tagline {
        margin-top: auto; /* Prvý element (tagline) dostane auto-margin-top */
        padding-top: 15px; /* Nech to nelepí úplne na spodok */
    }

    .tagline {
        font-size: 0.8rem !important;
        letter-spacing: 2px !important;
        margin-bottom: 10px !important;
    }

    .breathing-title { 
        font-size: 2.1rem !important; 
        letter-spacing: 4px !important; 
        margin-bottom: 15px !important;
    }

    .description-glow {
        padding: 15px 20px !important;
        margin-bottom: 30px !important;
        border-radius: 25px !important;
        background: rgba(0, 20, 40, 0.65) !important;
    }

    .breathing-font {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }

    .btn-main {
        padding: 14px 32px !important;
        font-size: 0.85rem !important;
    }
    
    
   .nav-links {
        display: none;
    }
    
    /* Zapneme a nastyľujeme hamburger toggle */
    .menu-toggle {
        display: flex; /* Zobrazí tlačidlo */
        width: 30px;
        height: 25px;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        z-index: 1001; /* Aby bol vždy nad menu */
        border: none;
        background: transparent;
        padding: 0;
    }
    
    /* Tri čiary hamburgera */
    .menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background: #fff; /* Biely pre viditeľnosť na tme */
        border-radius: 3px;
        transition: 0.3s ease; /* Pre neskoršiu animáciu na X */
    } 
    
    
  /* --- ŠTÝLOVANIE ROZBALENÉHO MOBILNÉHO MENU --- */
    
    .nav-links {
        display: none; /* V základnom stave je menu skryté */
        flex-direction: column;
        position: absolute;
        top: 100%; /* Rozbalí sa presne spod spodného okraja navigácie */
        left: 0;
        width: 100%;
        background: rgba(0, 12, 24, 0.98); /* Tmavé nepriehľadné pozadie, nech nepresvitá text pod ním */
        backdrop-filter: blur(20px);
        padding: 30px 0;
        border-bottom: 1px solid rgba(0, 212, 255, 0.15);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
        z-index: 999;
    }

    /* KÚZLO: Keď skript pridá .active, menu sa bleskovo zobrazí */
    .nav-links.active {
        display: flex !important;
    }

    /* Upratanie odkazov pod seba s peknými rozostupmi */
    .nav-links li {
        margin: 15px 0 !important;
        text-align: center;
        width: 100%;
        padding: 0;
    }

    .nav-links li a {
        font-size: 1.2rem !important;
        display: block;
        padding: 10px 0;
        color: #b3e5ff;
    }
    
    /* BONUS: Animácia hamburgera na elegantné "X", keď je menu otvorené */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }  
      
    
}



.hero-content {
        height: 100vh; /* Natiahneme na celú výšku mobilu */
        display: flex;
        flex-direction: column;
        justify-content: flex-end; /* Text sa prilepí k spodnej časti */
        padding-bottom: 80px;      /* Toto odsunie text od spodného okraja */
        padding-left: 20px;
        padding-right: 20px;
    }
    

/* --- NOVÁ SEKCIA PROGRAM DETAILS (2 STĹPCE) --- */
.program-details-section {
    background: rgba(0, 12, 24, 0.4);
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: rgba(0, 20, 40, 0.4);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.details-col h3 {
    color: #00d4ff;
    margin-bottom: 20px;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.details-col p {
    margin-bottom: 15px;
    color: #b3e5ff;
    line-height: 1.7;
}

.details-col ul {
    list-style: none;
    margin-top: 15px;
}

.details-col ul li {
    margin-bottom: 10px;
    color: #b3e5ff;
}

@media (max-width: 768px) {
    .details-grid {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 30px;
    }
}

/* Styling pre sekciu cieľového publika v kartách */
.target-audience {
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.9rem;
    color: #b3e5ff;
    line-height: 1.4;
}

.target-audience em {
    display: block;
}

/* Styling pre Adamove poznámky v kartách */
.audience-note {
    margin: 15px 0 25px 0;
    padding: 10px;
    font-size: 0.9rem;
    color: #00d4ff; /* Jemná modrá, aby to ladilo s webom */
    border-top: 1px solid rgba(255,255,255,0.1);
    font-style: italic;
}

/* --- BUBLINKY (INFO BOXES) --- */
.info-bubble {
    background: rgba(255, 255, 255, 0.03); 
    border: 1px solid rgba(0, 212, 255, 0.2); 
    border-radius: 25px; 
    padding: 30px;
    margin: 30px auto;
    max-width: 850px;
    text-align: center;
    backdrop-filter: blur(10px); 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); 
    color: #ffffff;
    line-height: 1.6;
}

.info-bubble p {
    margin-bottom: 0;
}

/* Verzia pre poznámku (s čiarkovaným okrajom) */
.info-bubble.secondary {
    border-style: dashed;
    border-color: rgba(0, 212, 255, 0.4);
    padding: 20px;
    font-style: italic;
    opacity: 0.9;
    margin-top: -10px; /* Aby boli vizuálne spojené s prvou bublinou */
}

/* Uistenie, že bublinky budú vyzerať dobre aj na mobile */
@media (max-width: 768px) {
    .info-bubble {
        padding: 20px;
        border-radius: 15px;
    }
}

/* --- HORIZONTÁLNE CITÁTY --- */
.quote-row-horizontal {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch; /* Zabezpečí, že všetky bubliny budú rovnako vysoké */
    gap: 25px; /* Medzera medzi jednotlivými bublinami */
    margin: 40px 0;
}

.quote-bubble-item {
    flex: 1; /* Každá bublina zaberie presne rovnakú šírku */
    background: rgba(255, 255, 255, 0.04); /* Jemný čistý podklad */
    border: 1px solid rgba(0, 212, 255, 0.15); /* Decentný okraj */
    border-radius: 20px; /* Zaoblené rohy bubliny */
    padding: 30px 25px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Posunie autora citátu na spodok boxu */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover efekt pre citáty */
.quote-bubble-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
}

/* Styling ikonky citácie uvnitř bubliny */
.quote-bubble-item .quote-icon {
    font-size: 1.5rem;
    color: #00BCE4; /* Použijeme tvoju azúrovú farbu */
    margin-bottom: 15px;
    opacity: 0.7;
}

.quote-bubble-item blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 20px;
    border: none;
    padding: 0;
}

.quote-bubble-item cite {
    font-size: 0.9rem;
    font-weight: 600;
    color: #b3e5ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

/* RESPONSIVITA: Na mobiloch a tabletoch skočí pod seba */
@media (max-width: 991px) {
    .quote-row-horizontal {
        flex-direction: column; /* Prepne zarovnanie na zvislé */
        gap: 20px;
    }
}

/* --- VEĽKÁ BUBLINA PRE HLAVNÝ NADPIS BENEFITOV --- */
.benefit-title-bubble {
    background: rgba(255, 255, 255, 0.05); /* Jemné sklenené pozadie */
    border: 2px solid #00BCE4; /* Viditeľnejší azúrový okraj */
    border-radius: 30px; /* Zaoblená veľká bublina */
    padding: 25px 40px;
    max-width: 900px;
    margin: 0 auto 50px auto; /* Vycentrovanie a medzera od spodného gridu */
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 188, 228, 0.15); /* Jemný azúrový podmaz */
    backdrop-filter: blur(10px);
}

.benefit-title-bubble h2 {
    font-size: 2.2rem; /* Poradne veľké písmo */
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* Optimalizácia na mobiloch, aby sa obrovské písmo prispôsobilo displeju */
@media (max-width: 768px) {
    .benefit-title-bubble {
        padding: 20px;
        margin-bottom: 30px;
        border-radius: 20px;
    }
    .benefit-title-bubble h2 {
        font-size: 1.6rem; /* Menšie písmo pre smartfóny */
    }
}


/* --- OPRAVA STABILITY KARUSELU --- */

/* Odstránime scale efekt, ktorý spôsobuje blikanie/skladanie pod seba */
.carousel-item { 
    display: none !important; /* Bootstrap potrebuje toto pre správny beh */
    transition: transform 0.6s ease-in-out;
    backface-visibility: hidden;
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
    display: flex !important; /* Použijeme flex na zarovnanie */
    flex-direction: column;
}

/* Toto zabezpečí, že jedna recenzia bude vždy viditeľná */
.carousel-inner {
    display: flex !important;
    width: 100%;
}


 /* --- OPRAVA ZOBRAZENIA ŠÍPOK (VYNÚTENIE) --- */
.carousel-control-prev, 
.carousel-control-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 100 !important; /* Musia byť nad kartou recenzie */
    opacity: 1 !important;  /* Zabezpečí viditeľnosť */
    background: #00BCE4 !important; /* Tyrkysová farba */
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    cursor: pointer !important;
    border: none !important;
    text-decoration: none !important;
}

/* Uistíme sa, že šípky nie sú schované mimo karuselu */
.carousel-control-prev { left: 5px !important; }
.carousel-control-next { right: 5px !important; }

/* Farba ikony vnútri */
.carousel-control-prev i, 
.carousel-control-next i {
    color: #ffffff !important;
    font-size: 20px !important;
}


/* --- ČISTÝ KARUSEL --- */
#reviewsCarousel .carousel-inner {
    display: flex !important;
    overflow: hidden;
}

#reviewsCarousel .carousel-item {
    display: none !important;
    width: 100%;
    flex: 0 0 100% !important;
    transition: transform 0.6s ease-in-out !important;
}

#reviewsCarousel .carousel-item.active,
#reviewsCarousel .carousel-item-next,
#reviewsCarousel .carousel-item-prev {
    display: flex !important;
    flex-direction: column;
}

/* Zabezpečenie šípok */
.review-control-btn {
    position: absolute;
    top: 50% !important;
    transform: translateY(-50%);
    width: 50px !important;
    height: 50px !important;
    background: #00BCE4 !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: white !important;
    z-index: 20;
    cursor: pointer;
}
.carousel-control-prev { left: 0 !important; }
.carousel-control-next { right: 0 !important; } 





/* Responzivita pre mobilné zariadenia */
@media (max-width: 576px) {
    .reviews-carousel-wrapper {
        padding: 0 10px; /* Zmenšíme padding, aby recenzia mala na displeji dosť miesta */
    }
    .review-control-btn {
        position: relative;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        top: auto;
        transform: none;
        margin: 20px 10px 0 10px;
    }
    /* Vycentrovanie šípok pod recenziu na mobile */
    #reviewsCarousel {
        text-align: center;
    }
}







/* --- PODSTRÁNKA O MNE --- */
.sub-title-cyan {
    color: #00BCE4;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.about-hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.about-hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #e0f4f8;
}

/* Karty s číslami */
.about-counters {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.counter-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 188, 228, 0.15);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.counter-card:hover {
    transform: translateY(-5px);
    border-color: #00BCE4;
}

.counter-icon {
    font-size: 2rem;
    color: #00BCE4;
    margin-bottom: 10px;
}

.counter-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 5px;
}

.counter-label {
    font-size: 0.95rem;
    color: #b3d4db;
}

/* Cik-cak príbehové sekcie */
.alt-bg {
    background: rgba(255, 255, 255, 0.02);
}

.story-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.story-row.reverse {
    flex-direction: row-reverse;
}

.story-col {
    flex: 1;
}

.story-col h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.decor-line {
    width: 60px;
    height: 3px;
    background: #00BCE4;
    margin-bottom: 25px;
}

.rounded-image {
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* RESPONSIVITA */
@media (max-width: 991px) {
    .about-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .story-row, .story-row.reverse {
        flex-direction: column;
        gap: 40px;
    }
    .about-hero-text h1 {
        font-size: 2.4rem;
    }
}



/* --- UPRAVENÉ CERTIFIKÁTY (VIDNO ICH CELÉ) --- */
.cert-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cert-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 188, 228, 0.4);
    box-shadow: 0 15px 35px rgba(0, 188, 228, 0.15);
}

/* Obalový kontajner dostane pevnú výšku, aby boli karty v jednej rovine */
.cert-image-container {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2); /* Jemný tmavý podklad pod certifikát */
    height: 260px; /* Výška boxu pre certifikát - uprav podľa uváženia */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px; /* Vytvorí pekný vnútorný okraj, aby certifikáty neboli nalepené na krajoch */
}

/* Kľúčová zmena pre zobrazenie celej fotky */
.cert-real-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* TOTO zaistí, že certifikát bude vidno VŽDY CELÝ bez orezania */
    transition: transform 0.5s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Pridá jemný tieň samotnému papieru certifikátu */
}

/* Efekt po prejdení myšou (overlay zostáva na celom boxe) */
.cert-hover-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 188, 228, 0.8); /* Azúrová farba s priehľadnosťou */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cert-image-container:hover .cert-real-img {
    transform: scale(1.05); /* Jemné priblíženie papiera */
}

.cert-image-container:hover .cert-hover-overlay {
    opacity: 1;
}

.cert-hover-overlay i {
    color: #ffffff;
    font-size: 2rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.cert-image-container:hover .cert-hover-overlay i {
    transform: scale(1);
}

/* Texty pod certifikátom */
.cert-info {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Zarovná texty odhora */
}

.cert-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.4;
}

.cert-info p {
    font-size: 0.85rem;
    color: #00BCE4;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- SEKRETCIA: MOJA FILOZOFIA (BUBLINA) --- */
.philosophy-section {
    background: transparent; /* Ponechá tmavé pozadie z tvojho body/wrapperu */
    position: relative;
    overflow: hidden;
}

.philosophy-bubble {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px; /* Vytvorí peknú oblú bublinu */
    padding: 50px 40px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 
                0 0 40px rgba(0, 188, 228, 0.03); /* Veľmi jemná azúrová žiara */
    backdrop-filter: blur(10px); /* Sklenený efekt */
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.philosophy-bubble:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 188, 228, 0.25); /* Pri prejdení myšou bublina jemne zažiari */
}

/* Ikona na vrchu bubliny */
.bubble-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 188, 228, 0.1);
    border: 1px solid rgba(0, 188, 228, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -80px auto 25px auto; /* Vytlačí ikonu mierne nad okraj bubliny */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.bubble-icon i {
    color: #00BCE4; /* Tvoja korporátna azúrová */
    font-size: 1.5rem;
}

.philosophy-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.philosophy-text p {
    font-size: 1.15rem; /* O niečo väčší, dobre čitateľný text */
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85); /* Jemne zmäkčená biela, aby netiahla oči */
    text-align: center;
    margin-bottom: 20px;
}

.philosophy-text p:last-child {
    margin-bottom: 0;
}

/* Optimalizácia pre mobilné zariadenia */
@media (max-width: 768px) {
    .philosophy-bubble {
        padding: 40px 25px;
        margin-top: 20px;
    }
    .philosophy-title {
        font-size: 1.8rem;
    }
    .philosophy-text p {
        font-size: 1.05rem;
        text-align: left; /* Na mobile sa dlhší text číta lepšie zarovnaný doľava */
    }
}

/* ==========================================================================
   PODSTRÁNKA PROGRAMY & KONZULTÁCIA - ŠTYLIZÁCIA
   ========================================================================== */

.text-cyan { color: #00BCE4; }

/* Hero sekcia podstránky */
.program-hero {
    background: linear-gradient(to bottom, rgba(10, 17, 23, 0.9), rgba(15, 23, 30, 1));
    padding-top: 140px;
    padding-bottom: 60px;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 20px auto;
    line-height: 1.6;
}
.philosophy-quote {
    margin: 30px auto;
    max-width: 700px;
    padding: 15px 25px;
    border-left: 3px solid #00BCE4;
    background: rgba(0, 188, 228, 0.03);
    border-radius: 0 15px 15px 0;
}
.philosophy-quote p {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
}
.program-duration-badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: #00BCE4;
    font-weight: 600;
    margin-top: 15px;
}

/* KARTY PROGRAMOV / CENNÍK */
.pricing-section { background-color: #0d151c; }
.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s ease;
}
.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
/* Zvýraznená individuálna karta */
.pricing-card.highlighted {
    background: rgba(0, 188, 228, 0.03);
    border-color: rgba(0, 188, 228, 0.3);
    box-shadow: 0 15px 35px rgba(0, 188, 228, 0.05);
}
.card-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: #00BCE4;
    color: #0a1117;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}
.pricing-header h3 {
    font-size: 1.35rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
}
.pricing-header .price {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}
.pricing-header .per-person { font-size: 1rem; color: rgba(255,255,255,0.5); font-weight: 400; }
.pricing-header .duration {
    display: block;
    font-size: 0.9rem;
    color: #00BCE4;
    margin-top: 10px;
    font-weight: 600;
}
.pricing-features {
    margin: 30px 0;
    padding: 0;
    list-style: none;
    flex-grow: 1;
}
.pricing-features li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}
.pricing-features li i {
    color: #00BCE4;
    margin-right: 12px;
    margin-top: 4px;
    font-size: 0.85rem;
}
.pricing-footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 20px;
}
.suitable-for {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    line-height: 1.5;
}

/* --- VYNÚTENIE VODOROVNÉHO ZORADENIA --- */
.pricing-section .row {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
}

/* Poistka pre stĺpce, aby boli 3 vedľa seba */
@media (min-width: 992px) {
    .pricing-section .col-lg-4 {
        flex: 0 0 33.333% !important;
        max-width: 33.333% !important;
    }
}

/* TIMELINE - AKO PROGRAM PREBIEHA */
.timeline-container {
    position: relative;
    padding: 20px 0;
}
.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-number {
    font-size: 2rem;
    font-weight: 800;
    color: #00BCE4;
    background: rgba(0, 188, 228, 0.1);
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    border: 1px solid rgba(0, 188, 228, 0.2);
}
.timeline-content h3 { font-size: 1.3rem; color: #ffffff; margin-bottom: 8px; font-weight: 700; }
.timeline-content p { color: rgba(255, 255, 255, 0.75); margin: 0; line-height: 1.6; }

/* VŠEOBECNÉ INFORMÁCIE BLOK */
.info-box-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 40px;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}
.info-grid-item h5 {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.info-grid-item h5 i { color: #00BCE4; margin-right: 10px; }
.info-grid-item p { color: rgba(255, 255, 255, 0.65); font-size: 0.9rem; line-height: 1.6; margin: 0; }

/* 2. BOX KONZULTÁCIA (ROZDELENÝ BOX NA DVE STRANY) */
.consultation-section { background-color: #0a1117; }
.consultation-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.consultation-left {
    padding: 60px;
    background: linear-gradient(135deg, rgba(0, 188, 228, 0.05) 0%, rgba(10, 17, 23, 0) 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.consultation-left h2 { font-size: 2.2rem; font-weight: 800; color: #ffffff; margin: 15px 0 25px; line-height: 1.3; }
.consult-desc { color: rgba(255, 255, 255, 0.8); font-size: 1.1rem; line-height: 1.6; margin-bottom: 40px; }

.consult-benefits { padding: 0; list-style: none; margin: 0; }
.consult-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.consult-benefits li:last-child { margin-bottom: 0; }
.benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 188, 228, 0.1);
    border: 1px solid rgba(0, 188, 228, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}
.benefit-icon i { color: #00BCE4; font-size: 0.95rem; }
.consult-benefits li span { color: rgba(255, 255, 255, 0.9); font-size: 1rem; font-weight: 500; }

/* PRAVÁ STRANA FORMULÁR */
.consultation-right { padding: 60px; background: rgba(255, 255, 255, 0.01); }
.consultation-right h3 { font-size: 1.8rem; color: #ffffff; font-weight: 700; margin-bottom: 10px; }
.form-lead { color: rgba(255, 255, 255, 0.6); font-size: 0.95rem; line-height: 1.5; margin-bottom: 30px; }

.custom-form .input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
.custom-form label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.custom-form input, 
.custom-form select, 
.custom-form textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 14px 18px;
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
}
.custom-form input:focus, 
.custom-form select:focus, 
.custom-form textarea:focus {
    outline: none;
    border-color: #00BCE4;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 15px rgba(0, 188, 228, 0.15);
}
.custom-form select option {
    background: #0d151c; /* Tmavé pozadie pre možnosti v roletke */
    color: #ffffff;
}

/* RESPONSIVE DESIGN (MOBILNÁ OPTIMALIZÁCIA) */
@media (max-width: 991px) {
    .info-grid { grid-template-columns: 1fr; gap: 20px; }
    .consultation-left, .consultation-right { padding: 40px 30px; }
    .consultation-left { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
    .consultation-left h2 { font-size: 1.8rem; }
}

/* --- PODSVIETENIE LOGA BIELYM SVETLOM (GLOW EFEKT) --- */
.info-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    position: relative;
    display: inline-block;
    padding: 30px;
}

/* Biely žiariaci kruh umiestnený presne za panáčikom */
.glow-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;       /* Šírka žiary - podľa potreby uprav */
    height: 250px;      /* Výška žiary */
    background: rgba(255, 255, 255, 0.08); /* Veľmi jemný biely stred */
    border-radius: 50%;
    /* Viacvrstvový box-shadow vytvorí plynulé hlboké biele svetlo do málotmava */
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.4),  
                0 0 80px rgba(255, 255, 255, 0.2),  
                0 0 120px rgba(255, 255, 255, 0.1);
    z-index: 1;
    pointer-events: none; /* Aby kruh neprekážal myši */
    animation: pulseGlow 4s ease-in-out infinite alternate; /* Animácia dýchania svetla */
}

/* Samotný obrázok panáčika */
.floating-img {
    position: relative;
    z-index: 2; /* Musí byť pred žiariacim kruhom */
    max-width: 100%;
    height: auto;
    /* Drop shadow pridá jemnú žiaru tesne okolo obrysu orezaného panáčika */
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.25)); 
    animation: floatAnim 6s ease-in-out infinite; /* Jemné vznášanie sa */
}

/* --- ANIMÁCIE PRE MAGICKÝ EFEKT --- */

/* 1. Efekt dýchajúceho svetla (svetlo sa jemne zväčšuje a sťahuje) */
@keyframes pulseGlow {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

/* 2. Jemné vznášanie panáčika hore a dole (evokuje ľahkosť a dych) */
@keyframes floatAnim {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px); /* Panáčik sa hladko podvihne */
    }
    100% {
        transform: translateY(0px);
    }
}

/* --- NOVÝ ŠTÝL PRE ZVÄČŠENÉ ŠÍPKY VEDĽA BUBLINKY --- */

/* Hlavný obal karuselu pridá bočný priestor, aby šípky mali kde dýchať a neprekrývali text */
.reviews-carousel-wrapper {
    position: relative;
    padding: 0 70px; /* Vytvorí priestor 70px vľavo a vpravo pre šípky */
    max-width: 900px;
    margin: 0 auto;
}

/* Štýl pre obe ovládacie tlačidlá šípok */
.review-control-btn {
    width: 50px !important;       /* Širšia klikateľná zóna */
    height: 50px !important;      /* Výška tlačidla */
    background: rgba(255, 255, 255, 0.05) !important; /* Veľmi jemné transparentné krúžkové pozadie */
    border-radius: 50%;
    top: 50% !important;          /* Centrovanie na stred výšky bubliny */
    transform: translateY(-50%);
    opacity: 0.6 !important;
    transition: all 0.3s ease !important;
}

/* Efekt pri prejdení myšou nad šípku */
.review-control-btn:hover {
    opacity: 1 !important;
    background: rgba(255, 255, 255, 0.15) !important;
    color: #00BCE4 !important; /* Farba tvojho brandu (tyrkysová) pri hoveri */
}

/* Presné vysunutie ľavej šípky VEDĽA bublinky */
.carousel-control-prev.review-control-btn {
    left: 0px !important;
}

/* Presné vysunutie pravej šípky VEDĽA bublinky */
.carousel-control-next.review-control-btn {
    right: 0px !important;
}

/* Zväčšenie samotnej ikony šípky (fa-chevron) */
.review-control-btn i {
    font-size: 1.8rem !important; /* Výrazná, väčšia a čistá šípka */
    color: #ffffff;
    transition: transform 0.2s ease;
}

/* Jemný mikro-pohyb pri klikaní */
.review-control-btn:active i {
    transform: scale(0.9);
}

/* --- RESPONDZÍVNOSŤ PRE MOBILY --- */
@media (max-width: 768px) {
    .reviews-carousel-wrapper {
        padding: 0 45px; /* Na mobile trochu zmenšíme bočný odstup, aby bublina nebola príliš úzka */
    }
    .review-control-btn {
        width: 40px !important;
        height: 40px !important;
    }
    .review-control-btn i {
        font-size: 1.4rem !important; /* O niečo menšie šípky na mobiloch */
    }
}

 /* --- ČISTÁ OPRAVA CERTIFIKÁTOV (vlož na koniec style-profi7.css) --- */

.certificates-section .row {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
}

.certificates-section .col-lg-3 {
    flex: 0 0 25% !important;
    max-width: 25% !important;
}

/* ZÁKLAD KARTY - vymaž všetky ostatné .cert-card definície! */
.cert-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    background: #011222 !important; /* Tmavomodré pozadie bubliny */
    border-radius: 15px !important;
    overflow: hidden !important;
    transition: transform 0.3s ease !important;
    border: 1px solid rgba(0, 188, 228, 0.2) !important;
}

/* OBRÁZOK */
.cert-image-container {
    width: 100% !important;
    position: relative;
    overflow: hidden;
}

.cert-real-img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

/* TEXT */
.cert-info {
    padding: 20px !important;
    text-align: center !important;
    flex-grow: 1 !important;
}

/* Zabezpečí, že šípky budú v strede výšky karty */
.reviews-carousel-wrapper {
    position: relative;
    padding: 0 60px; /* Priestor pre šípky */
}

.review-control-btn {
    position: absolute;
    top: 40% !important; /* Vertikálny stred */
    width: 50px !important;
    height: 50px !important;
    background: rgba(0, 188, 228, 0.2) !important;
    border-radius: 50%;
    color: #fff !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.review-control-btn:hover {
    background: #00BCE4 !important;
}

/* YouTube tlačidlo - hover efekt */
.review-video-link a:hover {
    text-decoration: underline !important;
    opacity: 0.8;
}