body, html {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

@font-face {
    font-family: bootstrap-icons;
    src: url(https://cdn.jsdelivr.net../fonts/bootstrap-icons.woff2) format("woff2");
    font-display: swap;
}

:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --dark-bg: #212529;
    --light-bg: #f8f9fa;
    --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --brand-blue: #35B9ED;
    --brand-orange: #E37D3E;
    --text-dark: #2c3e50;
}

body {
    font-family: var(--font-main);
    color: #333;
    line-height: 1.4;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    padding-top: 30px;
    font-display: swap;
}

.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    will-change: transform;
}

.hero-section .display-3, .hero-section .display-4, .hero-section h1 {
    text-shadow: 2px 2px 8px rgba(0,0,0,.8), 0 0 20px rgba(0,0,0,.4);
    font-weight: 800;
}

.hero-section p.lead {
    text-shadow: 1px 1px 10px rgba(0,0,0,.9);
    font-weight: 600;
}

.pricing-grid {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    align-items: stretch;
    padding-top: 25px;
    width: 100%;
}

.pricing-card-main {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eee;
    padding: 30px 20px 25px;
    position: relative;
    flex: 1 1 300px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    transition: all .4s cubic-bezier(.165,.84,.44,1);
    box-shadow: 0 4px 15px rgba(0,0,0,.05);
}

.pricing-card-main:hover {
    transform: translateY(-12px) scale(1.01) !important;
    border-color: var(--brand-blue);
    box-shadow: 0 25px 50px rgba(0,0,0,.12) !important;
    z-index: 10;
}

.pricing-card-main:hover .h2 {
    transform: scale(1.1);
    color: var(--brand-orange) !important;
    transition: .3s;
}

.floating-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    color: var(--brand-blue);
    border: 2px solid var(--brand-blue);
    padding: 6px 22px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,.1);
    white-space: nowrap;
}

.hero-section.active .reveal-content {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn .8s cubic-bezier(.22, 1, .36, 1) forwards;
    animation-delay: .2s;
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.card, .p-4.h-100.bg-light {
    transition: transform .4s cubic-bezier(.165, .84, .44, 1), box-shadow .4s cubic-bezier(.165, .84, .44, 1);
    border-radius: 15px;
    border: none;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,.05);
    position: relative;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.hover-lift:hover {
    transform: translateY(-7px) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,.12) !important;
    z-index: 10;
}

.hover-lift::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: -20px;
    z-index: -1;
}

@media (max-width: 768px) {
    .footer-profi {
        padding: 2.5rem 0 1.5rem 0 !important;
        text-align: center;
    }
    .footer-profi h5 {
        font-size: .9rem !important;
        margin-bottom: 1.2rem !important;
        letter-spacing: 1px;
    }
    .footer-profi p.small, .footer-profi ul.list-unstyled li {
        font-size: .8rem !important;
        opacity: .85;
        margin-bottom: .6rem;
    }
    .footer-profi a {
        transition: color .3s ease;
    }
    .footer-profi hr.border-secondary {
        margin: 1.5rem 0 !important;
        opacity: .1;
    }
    .footer-profi p.mb-0.small {
        font-size: .7rem !important;
        opacity: .6;
    }
}

.btn-primary {
    background-color: var(--brand-blue) !important;
    border-color: var(--brand-blue) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    transition: all .3s ease;
    text-transform: uppercase;
    color: #fff !important;
}

.btn-primary:hover {
    background-color: var(--brand-orange) !important;
    border-color: var(--brand-orange) !important;
    transform: translateY(-2px);
}

.bg-whatsapp, .btn-whatsapp {
    background-color: #25d366 !important;
    color: #fff !important;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    transition: transform .3s ease, background .3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bg-whatsapp:hover, .btn-whatsapp:hover {
    background-color: #128c7e !important;
    color: #fff !important;
    transform: scale(1.03);
}

.top-promo-bar {
    background-color: var(--brand-orange);
    color: #fff;
    text-align: center;
    padding: 8px 15px;
    font-size: .9rem;
    font-weight: 700;
    z-index: 2005;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    letter-spacing: .5px;
    box-shadow: 0 2px 10px rgba(227,125,62,.3);
}

@media (min-width: 992px) {
    .navbar {
        background-color: #fff !important;
    }
    .navbar-nav .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
    .dropdown-menu::before {
        content: "";
        position: absolute;
        top: -20px;
        left: 0;
        right: 0;
        height: 20px;
        display: block;
    }
    .mega-menu {
        position: absolute;
        left: 0;
        right: 0;
        border-top: 3px solid var(--brand-blue) !important;
    }
}

.navbar {
    border-bottom: 3px solid var(--brand-blue);
    overflow: visible !important;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 600;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--brand-blue) !important;
}

.reveal-content, .reveal-item, .reveal-right {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(10px);
    transition: transform 1.2s cubic-bezier(.22, 1, .36, 1), opacity 1.2s cubic-bezier(.22, 1, .36, 1), filter 1s ease-out;
}

.reveal-section.active .reveal-content, .reveal-section.active .reveal-item, .reveal-section.active .reveal-right {
    opacity: 1;
    transform: translateY(0) translateX(0);
    filter: blur(0);
}

.reveal-section.active .reveal-item:nth-child(1) {
    transition-delay: .1s;
}

.reveal-section.active .reveal-item:nth-child(2) {
    transition-delay: .25s;
}

.reveal-section.active .reveal-item:nth-child(3) {
    transition-delay: .4s;
}

.reveal-section.active .reveal-item:nth-child(4) {
    transition-delay: .55s;
}

.reveal-section.active .reveal-item:nth-child(5) {
    transition-delay: .7s;
}

.reveal-section.active .reveal-item:nth-child(6) {
    transition-delay: .85s;
}

@media (max-width: 768px) {
    .pricing-grid {
        flex-wrap: nowrap !important;
        flex-direction: row !important;
        justify-content: flex-start !important;
        overflow-x: auto !important;
        padding: 25px 15px 35px 15px !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 10px !important;
    }
    .pricing-grid::-webkit-scrollbar {
        display: none;
    }
    .pricing-card-main {
        min-width: 70vw !important;
        max-width: 70vw !important;
        flex: 0 0 auto !important;
        scroll-snap-align: center;
        display: flex !important;
        box-shadow: 0 10px 25px rgba(0,0,0,.1) !important;
    }
    .floating-cta {
        display: block;
        position: fixed;
        bottom: 25px;
        right: 25px;
        z-index: 1050;
    }
}

@media (max-width: 768px) {
    .reveal-section .row.g-4 {
        display: flex !important;
        flex-wrap: wrap !important;
        --bs-gutter-x: 0.8rem;
        --bs-gutter-y: 0.8rem;
    }
    .reveal-section .col-md-3 {
        width: 50% !important;
        margin-top: 0;
    }
    .benefit-box {
        padding: .8rem .5rem !important;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .benefit-box .h1 {
        font-size: 1.8rem !important;
        margin-bottom: .4rem !important;
    }
    .benefit-box h5 {
        font-size: .9rem;
        margin-bottom: .3rem !important;
    }
    .benefit-box p.small {
        font-size: .75rem !important;
        line-height: 1.2;
    }
}

@media (max-width: 768px) {
    .py-6.reveal-section {
        padding-top: 1.8rem !important;
        padding-bottom: 1.8rem !important;
    }
    .reveal-right {
        order: -1;
        margin-bottom: 1.5rem;
    }
    .reveal-right:hover,
    .reveal-right:active {
        overflow: visible !important;
        z-index: 100;
    }
    .reveal-right > img {
        height: 160px;
        width: 100%;
        object-fit: cover;
        transition: all 0.4s ease;
    }
    .reveal-right > img:hover,
    .reveal-right > img:active {
        height: auto;
        object-fit: contain;
        z-index: 100;
        position: relative;
        transform: scale(1.05) translateY(-5px) !important;
    }
    .reveal-content h2.fw-bold {
        font-size: 1.25rem !important;
        margin-bottom: 1.2rem !important;
        padding-left: 12px !important;
        border-left-width: 4px !important;
    }
    .edu-accordion .accordion-button {
        padding: .8rem 1rem !important;
    }
    .edu-icon {
        font-size: 1.3rem;
        margin-right: 12px !important;
    }
    .edu-title-group .h5 {
        font-size: .95rem !important;
        margin-bottom: 0 !important;
    }
    .edu-title-group small {
        font-size: .75rem !important;
        line-height: 1.1;
    }
    .accordion-body {
        font-size: .85rem !important;
        padding: 1rem !important;
        line-height: 1.5;
    }
    .accordion-item {
        margin-bottom: .75rem !important;
    }
}

@media (max-width: 768px) {
    .hero-servis-putac h2.display-5 {
        font-size: 1.55rem !important;
        line-height: 1.25;
        margin-bottom: 1rem !important;
    }
    .hero-servis-putac p.lead {
        font-size: .85rem !important;
        line-height: 1.5;
        margin-bottom: 1.5rem !important;
        opacity: .85;
    }
    .hero-servis-putac .row.g-3 .col-sm-6 {
        width: 50% !important;
        margin-bottom: .5rem;
    }
    .hero-servis-putac .h4.mb-0.me-3 {
        font-size: 1.3rem !important;
        margin-right: .6rem !important;
    }
    .hero-servis-putac h6.fw-bold {
        font-size: .85rem !important;
        margin-bottom: 2px !important;
    }
    .hero-servis-putac p.small {
        font-size: .7rem !important;
        line-height: 1.2;
    }
    .hero-servis-putac .btn-lg {
        padding: 12px 20px !important;
        font-size: .85rem !important;
        width: 100%;
        letter-spacing: .5px;
    }
    #servisnyDetail .card-body {
        font-size: .8rem !important;
        padding: 1.25rem !important;
    }
    .hero-servis-putac .badge {
        font-size: .65rem !important;
        padding: 6px 12px !important;
    }
}

@media (max-width: 768px) {
    #expert-tepovanie {
        padding-top: .5rem !important;
        padding-bottom: 1.5rem !important;
    }
    #expert-tepovanie h2.display-5 {
        font-size: 1.4rem !important;
        margin-bottom: .6rem !important;
        line-height: 1.2;
    }
    #expert-tepovanie p.lead {
        font-size: .85rem !important;
        margin-bottom: 1.25rem !important;
        line-height: 1.4;
        padding: 0 10px;
    }
    #expert-tepovanie .accordion-item {
        margin-bottom: .5rem !important;
        border-radius: 12px !important;
    }
    #expert-tepovanie .accordion-body {
        font-size: .8rem !important;
        padding: .85rem 1rem !important;
        line-height: 1.45;
    }
    #expert-tepovanie .edu-title-group .h5 {
        font-size: .9rem !important;
    }
    #expert-tepovanie .edu-title-group small {
        font-size: .7rem !important;
        margin-top: 1px;
    }
}

@media (max-width: 768px) {
    #faq-sekcia .row.g-4 {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        padding: 15px 15px 25px 15px !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 10px !important;
    }
    #faq-sekcia .row.g-4::-webkit-scrollbar {
        display: none;
    }
    #faq-sekcia .col-md-6 {
        flex: 0 0 80% !important;
        max-width: 80% !important;
        width: 80% !important;
        scroll-snap-align: center;
        display: flex !important;
    }
    #faq-sekcia .p-4 {
        padding: 1.2rem !important;
        width: 100%;
        height: 100%;
    }
    #faq-sekcia h5.small-title {
        font-size: .95rem !important;
        min-height: 2.8rem;
        display: flex;
        align-items: center;
    }
    #faq-sekcia p.small {
        font-size: .8rem !important;
        line-height: 1.4;
    }
    #faq-sekcia .mb-5 {
        margin-bottom: 1rem !important;
    }
}

@media (max-width: 768px) {
    #lokality.py-6 {
        padding-top: 1.8rem !important;
        padding-bottom: 1.8rem !important;
    }
    #lokality h3.mb-5 {
        font-size: 1.3rem !important;
        margin-bottom: 1.5rem !important;
    }
    #lokality h6.mb-3 {
        font-size: .75rem !important;
        margin-bottom: .8rem !important;
        letter-spacing: 1px;
    }
    #lokality .location-tag {
        padding: 6px 14px !important;
        font-size: .75rem !important;
        border-radius: 8px !important;
    }
    #lokality .gap-2 {
        gap: .4rem !important;
    }
    #lokality .col-lg-6:first-child {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    #kontakt.py-6 {
        padding-top: 1.8rem !important;
        padding-bottom: 1.8rem !important;
    }
    #kontakt h2.display-5 {
        font-size: 1.55rem !important;
        margin-bottom: .5rem !important;
    }
    #kontakt p.lead {
        font-size: .85rem !important;
        margin-bottom: 1.5rem !important;
    }
    #kontakt .alert-warning {
        padding: .75rem !important;
        margin-bottom: 1.25rem !important;
        font-size: .8rem !important;
    }
    #kontakt .alert-warning i {
        font-size: 1.2rem !important;
        margin-right: .5rem !important;
    }
    #kontakt .form-control-lg, #kontakt .form-select-lg {
        padding: .6rem 1rem !important;
        font-size: .95rem !important;
        min-height: auto !important;
    }
    #kontakt .form-label {
        font-size: .65rem !important;
        margin-bottom: .2rem !important;
    }
    #kontakt .row.g-3 {
        --bs-gutter-y: 0.6rem !important;
    }
    #kontakt textarea.form-control {
        height: 80px !important;
    }
    #kontakt .form-check-label {
        font-size: .7rem !important;
        line-height: 1.3;
    }
    #kontakt .mt-4.pt-4.border-top {
        margin-top: 1.5rem !important;
        padding-top: 1.5rem !important;
        margin-left: -1.5rem !important;
        margin-right: -1.5rem !important;
        margin-bottom: -1.5rem !important;
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    #kontakt .mt-4.pt-4 p.fw-bold {
        font-size: .8rem !important;
        margin-bottom: .5rem !important;
    }
    #kontakt .btn-lg, #kontakt .btn-whatsapp {
        padding: 10px 20px !important;
        font-size: .9rem !important;
    }
}

@media (max-width: 768px) {
    #sluzby .row.g-4 {
        --bs-gutter-x: 0.6rem;
        --bs-gutter-y: 0.6rem;
    }
    #sluzby .col-md-6 {
        width: 50% !important;
    }
    #sluzby .card {
        border-radius: 12px !important;
    }
    #sluzby .card-img-top {
        height: 120px !important;
    }
    #sluzby .card-body {
        padding: .75rem !important;
    }
    #sluzby .card-body h3.h5 {
        font-size: .85rem !important;
        line-height: 1.2;
        margin-bottom: .4rem !important;
        min-height: 2.1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    #sluzby .card-text.small {
        font-size: .7rem !important;
        line-height: 1.3;
        margin-bottom: .5rem !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    #sluzby .price-tag, #sluzby .text-primary.fs-5 {
        font-size: .9rem !important;
        margin-bottom: .5rem !important;
    }
    #sluzby .btn {
        padding: 6px 4px !important;
        font-size: .75rem !important;
        letter-spacing: 0;
    }
    #sluzby .card-body.p-5 {
        padding: 1.5rem .75rem !important;
    }
    #sluzby .card-body.p-5 h3 {
        font-size: 1rem !important;
    }
}

.service-info-container {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10001;
}

.info-icon {
    width: 26px;
    height: 26px;
    background-color: var(--brand-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    cursor: help;
}

.footer-profi {
    background-color: #0f2b46;
    color: #fff;
    border-top: 5px solid var(--brand-orange);
    padding: 35px 0;
}

.footer-profi a {
    color: #e0e0e0;
    text-decoration: none;
}

.footer-profi a:hover {
    color: var(--brand-blue);
}

.footer-profi h5 {
    color: var(--brand-blue);
    font-weight: 700;
    text-transform: uppercase;
}

.location-tag {
    transition: all .3s ease;
    border: 1px solid #eee;
    padding: 10px 22px;
    display: inline-block;
    border-radius: 50px;
    font-weight: 600;
    background: #fff;
    text-decoration: none;
    color: var(--text-dark);
}

.location-tag:hover {
    background-color: var(--brand-blue);
    color: #fff !important;
    transform: translateY(-3px);
}

.edu-accordion .accordion-item {
    border-radius: 15px !important;
    overflow: hidden;
}

.edu-accordion .accordion-button {
    padding: 15px;
    background-color: #fff !important;
}

.edu-accordion .accordion-button:not(.collapsed) {
    color: var(--brand-blue);
    border-bottom: 1px solid #f0f0f0;
}

#faq-sekcia .bg-white {
    box-shadow: 0 10px 30px rgba(0,0,0,.08) !important;
    transition: transform .3s;
    border-radius: 25px !important;
}

#faq-sekcia .bg-white:hover {
    transform: translateY(-5px);
}

#sluzby .card-img-top {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

#sluzby .card {
    border-radius: 15px !important;
    overflow: hidden;
}

.italic {
    font-style: italic;
}

.loc-card {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    border: 1px solid rgba(0,0,0,.05);
    transition: transform .3s ease;
}

.loc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #28a745;
    border-radius: 50%;
    display: inline-block;
    animation: locPulse 2s infinite;
}

@keyframes locPulse {
    0% { box-shadow: 0 0 0 0 rgba(40,167,69,.7); }
    70% { box-shadow: 0 0 0 6px rgba(40,167,69,0); }
    100% { box-shadow: 0 0 0 0 rgba(40,167,69,0); }
}

#sticky-contact-bar {
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: all .4s cubic-bezier(.22, 1, .36, 1);
    pointer-events: none;
}

#sticky-contact-bar.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

#kontakt .btn, .hero-section .btn {
    padding: 10px 24px !important;
    font-size: 15px !important;
    letter-spacing: .5px;
    text-transform: uppercase;
}

#kontakt .btn-whatsapp {
    padding: 10px 24px !important;
}

.edu-accordion .accordion-item {
    transition: transform .4s cubic-bezier(.165, .84, .44, 1), box-shadow .4s cubic-bezier(.165, .84, .44, 1);
    backface-visibility: hidden;
}

.edu-accordion .accordion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,.1) !important;
    z-index: 5;
}

.edu-accordion .accordion-button:active {
    transform: scale(.98);
    background-color: rgba(53,185,237,.05) !important;
    transition: transform .1s ease;
}

.edu-accordion .accordion-button:not(.collapsed) .edu-icon {
    transform: scale(1.2) rotate(5deg);
    transition: transform .3s ease;
}

:root {
    --brand-blue: #35B9ED;
    --brand-orange: #E37D3E;
    --brand-shadow-blue: rgba(53, 185, 237, 0.2);
    --brand-shadow-orange: rgba(227, 125, 62, 0.3);
}

.btn, .btn-light, .btn-outline-primary, .btn-primary, .btn-whatsapp {
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: all .3s cubic-bezier(.165, .84, .44, 1) !important;
    border-width: 2px !important;
}

.btn-outline-primary, .btn-primary {
    background-color: var(--brand-blue) !important;
    border-color: var(--brand-blue) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px var(--brand-shadow-blue);
}

.btn-outline-primary:hover, .btn-primary:active, .btn-primary:hover, .hero-servis-putac .btn:hover, .location-tag:active, .location-tag:hover {
    background-color: var(--brand-orange) !important;
    border-color: var(--brand-orange) !important;
    color: #fff !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px var(--brand-shadow-orange) !important;
}

.benefit-box, .border-primary, .loc-card, .pricing-card-main {
    border-color: var(--brand-blue) !important;
    transition: all .3s ease !important;
}

.benefit-box:hover, .card:hover, .hover-lift:hover {
    border-color: var(--brand-orange) !important;
    box-shadow: 0 15px 35px var(--brand-shadow-orange) !important;
}

.card:hover h3, .hover-lift:hover .h1, .hover-lift:hover .h2, .hover-lift:hover .h3, .hover-lift:hover h5, .hover-lift:hover i {
    color: var(--brand-orange) !important;
    transition: color .3s ease;
}

.card:hover .price-tag, .card:hover .text-primary {
    color: var(--brand-orange) !important;
}

.hero-servis-putac {
    border: 2px solid var(--brand-blue) !important;
}

.hero-servis-putac:hover {
    border-color: var(--brand-orange) !important;
}

#sticky-contact-bar {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .4s cubic-bezier(.22, 1, .36, 1);
}

#sticky-contact-bar.is-visible {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

#sticky-contact-bar a {
    background: 0 0;
    transition: all .2s ease !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    text-decoration: none !important;
}

#sticky-contact-bar a.wa-link {
    background-color: #25d366 !important;
    color: #fff !important;
}

#sticky-contact-bar a:not(.wa-link):active, #sticky-contact-bar a:not(.wa-link):hover {
    background-color: var(--brand-orange) !important;
    color: #fff !important;
}

#sticky-contact-bar a.wa-link:active, #sticky-contact-bar a.wa-link:hover {
    background-color: #128c7e !important;
    color: #fff !important;
}

#kontakt .alert-warning {
    animation: alertPulse 2s cubic-bezier(.4, 0, .2, 1) infinite;
    border: 1px solid rgba(227,125,62,.2) !important;
    transition: all .3s ease;
    background-color: #fff9f5 !important;
}

@keyframes alertPulse {
    0% { background-color: #fff9f5; border-color: rgba(227,125,62,.1); }
    50% { background-color: rgba(227,125,62,.08); border-color: rgba(227,125,62,.4); box-shadow: inset 0 0 10px rgba(227,125,62,.05); }
    100% { background-color: #fff9f5; border-color: rgba(227,125,62,.1); }
}

#kontakt .bi-fire {
    animation: organicFire 2s cubic-bezier(.4, 0, .2, 1) infinite;
    display: inline-block;
    color: #ff4500 !important;
}

@keyframes organicFire {
    0% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(227, 125, 62, .3)); }
    50% { transform: scale(1.15); filter: drop-shadow(0 0 8px rgba(227, 125, 62, .7)) drop-shadow(0 0 15px rgba(227, 125, 62, .2)); }
    100% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(227, 125, 62, .3)); }
}

#kontakt .form-control:focus, #kontakt .form-select:focus {
    background-color: #fff !important;
    border-color: var(--brand-blue) !important;
    box-shadow: 0 0 0 4px var(--brand-shadow-blue) !important;
    transform: translateY(-2px);
    transition: all .3s ease;
}

#kontakt .btn-primary {
    background: linear-gradient(135deg, var(--brand-blue) 0, #007bff 100%) !important;
    border: none !important;
    position: relative;
    overflow: hidden;
    padding: 14px 28px !important;
}

#kontakt .btn-primary:hover {
    background: linear-gradient(135deg, var(--brand-orange) 0, #d46d2f 100%) !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px var(--brand-shadow-orange) !important;
}

#kontakt .mt-4.pt-4.border-top {
    background: rgba(53,185,237,.08) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(53,185,237,.2) !important;
    border-radius: 0 0 1rem 1rem;
    margin-top: 2rem !important;
}

#kontakt .btn-whatsapp {
    background-color: #25d366 !important;
    color: #fff !important;
    border: none !important;
    transition: all .3s ease !important;
}

#kontakt .btn-whatsapp:hover {
    background-color: #128c7e !important;
    transform: scale(1.02);
}

.footer-profi {
    background: radial-gradient(circle at 50% 0, #163a5f 0, #0f2b46 100%) !important;
    position: relative;
    overflow: hidden;
}

.footer-profi h5 {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 1.5rem !important;
}

.footer-profi h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--brand-orange);
    transition: width .4s cubic-bezier(.165, .84, .44, 1);
}

.footer-profi .col-md-6:hover h5::after {
    width: 60px;
}

.footer-profi ul li a {
    transition: all .3s ease !important;
    display: inline-block;
}

.footer-profi ul li a:hover {
    color: var(--brand-blue) !important;
    transform: translateX(8px);
    opacity: 1 !important;
}

.footer-profi a[href^="mailto:"], .footer-profi a[href^="tel:"] {
    transition: color .3s ease;
}

.footer-profi a[href^="tel:"]:hover {
    color: var(--brand-orange) !important;
}

.footer-profi hr {
    border-top: 1px solid rgba(53,185,237,.15) !important;
}

.footer-profi .row.align-items-center.opacity-50 {
    transition: opacity .5s ease;
}

.footer-profi:hover .row.align-items-center.opacity-50 {
    opacity: .8 !important;
}

.pricing-grid .reveal-item:nth-child(1) {
    transition-delay: .1s;
}

.pricing-grid .reveal-item:nth-child(2) {
    transition-delay: .25s;
}

.pricing-grid .reveal-item:nth-child(3) {
    transition-delay: .4s;
}

.pricing-card-main .h2 {
    transition: transform .3s cubic-bezier(.175, .885, .32, 1.275), color .3s ease;
}

.pricing-card-main:hover .h2 {
    color: var(--brand-orange) !important;
    transform: scale(1.15) translateY(-2px);
}

@keyframes badgePulse {
    0% { box-shadow: 0 0 0 0 rgba(53,185,237,.4); }
    70% { box-shadow: 0 0 0 8px rgba(53,185,237,0); }
    100% { box-shadow: 0 0 0 0 rgba(53,185,237,0); }
}

#cennik .p-4.bg-white.rounded-4.border {
    border: 0;
    border-left: 5px solid var(--brand-blue);
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    transition: transform .3s ease, box-shadow .3s ease, border-left-color .3s ease;
}

#cennik .p-4.bg-white.rounded-4.border:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(227,125,62,.15);
    border-left-color: var(--brand-orange);
}

#cennik .p-4.bg-white.rounded-4.border:hover h6 {
    color: var(--brand-orange) !important;
    transition: color .3s;
}

#cennik .border-success.border-5 {
    animation: waBreathing 3s infinite ease-in-out;
    border-left-width: 6px !important;
}

@keyframes waBreathing {
    0% { border-left-color: #25d366; box-shadow: -5px 0 10px rgba(37,211,102,.1); }
    50% { border-left-color: #128c7e; box-shadow: -5px 0 20px rgba(37,211,102,.25); }
    100% { border-left-color: #25d366; box-shadow: -5px 0 10px rgba(37,211,102,.1); }
}

@media (max-width: 768px) {
    #cennik button.btn-outline-primary {
        width: 100%;
        padding: 10px 15px !important;
        font-size: .85rem !important;
        white-space: normal;
        height: auto;
        background-color: #fff;
        color: var(--brand-blue);
        border: 2px solid var(--brand-blue);
        box-shadow: none;
    }
    #cennik button.btn-outline-primary:active {
        background-color: var(--brand-blue);
        color: #fff;
        transform: scale(.98);
    }
}

.navbar {
    overflow: visible !important;
    z-index: 1050;
}

.dropdown-menu {
    margin-top: 2px !important;
    border-top: none !important;
    border-radius: 0 0 8px 8px !important;
}

.blog-card {
    cursor: pointer;
}

.blog-card .stretched-link::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    z-index: 10;
}

.blog-card:hover .btn-outline-primary {
    background-color: var(--brand-blue) !important;
    color: #fff !important;
    border-color: var(--brand-blue) !important;
    transition: .3s ease;
}

.blog-card * {
    pointer-events: auto;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 25vh !important;
        padding: 25px 0 !important;
    }
    .hero-section h1 {
        font-size: 1.8rem !important;
    }
}

.reveal-section .reveal-right img {
    transform: perspective(1200px) rotateY(-15deg) rotateX(2deg);
    transition: all 1.2s cubic-bezier(.22, 1, .36, 1) !important;
    box-shadow: -20px 20px 50px rgba(0,0,0,.1) !important;
}

.reveal-section.active .reveal-right img {
    transform: perspective(1200px) rotateY(0) rotateX(0);
}

.reveal-section.active h2.border-primary {
    animation: badgePulse 2s infinite;
}

.reveal-section .reveal-right {
    position: relative;
    overflow: hidden;
}

.reveal-section .reveal-right:hover,
.reveal-section .reveal-right:active {
    overflow: visible;
    z-index: 100;
}

.reveal-section .reveal-right::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(53,185,237,.3), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
}

.reveal-section.active .reveal-right::after {
    left: 150%;
    transition: .8s ease-in-out;
    transition-delay: .6s;
}

@keyframes orangePulseInteractive {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(227, 125, 62, .4)); }
    50% { filter: drop-shadow(0 0 25px rgba(227, 125, 62, .8)); }
}

.reveal-section h2.border-primary:hover {
    animation: orangePulseInteractive 2s infinite ease-in-out;
    border-left-color: var(--brand-orange) !important;
}

.edu-accordion .accordion-item {
    transition: all .4s cubic-bezier(.25, 1, .5, 1) !important;
}

.edu-accordion .accordion-item:hover {
    transform: scale(1.03) translateX(15px);
    border-left: 6px solid var(--brand-orange) !important;
    animation: orangePulseInteractive 2s infinite ease-in-out;
    z-index: 10;
}

.edu-accordion .accordion-item:hover .h5 {
    color: var(--brand-orange) !important;
}

.reveal-right > img {
    transform: perspective(1200px) rotateY(-12deg);
    transition: transform .6s cubic-bezier(.165, .84, .44, 1), filter .6s ease;
    cursor: pointer;
}

.reveal-section.active .reveal-right > img {
    transform: perspective(1200px) rotateY(0);
}

.reveal-right > img:hover {
    transform: perspective(1200px) rotateY(0) scale(1.05) translateY(-10px) !important;
    animation: orangePulseInteractive 2s infinite ease-in-out;
    z-index: 20;
    height: auto;
    max-height: none;
    object-fit: contain;
}

.reveal-right::after {
    display: none !important;
    content: none !important;
}

#faq-sekcia .hover-lift:hover {
    border-color: var(--brand-orange) !important;
    box-shadow: 0 15px 35px var(--brand-shadow-orange) !important;
}

#faq-sekcia .hover-lift:hover .small-title {
    color: var(--brand-orange) !important;
    transition: color .3s ease;
}

.edu-accordion .accordion-item:hover {
    border-color: var(--brand-orange) !important;
}

.mobile-action-pill {
    background: rgba(53,185,237,.35) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-radius: 50px !important;
    overflow: hidden !important;
    border: 1px solid rgba(53,185,237,.5) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,.15) !important;
}

#sticky-contact-bar a:not(.wa-link) {
    color: var(--text-dark) !important;
    background: 0 0 !important;
}

#sticky-contact-bar a.wa-link {
    background-color: rgba(37,211,102,.25) !important;
    color: #0b5c53 !important;
}

.mobile-action-pill a.border-end {
    border-right: 1px solid rgba(53,185,237,.4) !important;
}

#sticky-contact-bar a:not(.wa-link):active, #sticky-contact-bar a:not(.wa-link):hover {
    background-color: rgba(227,125,62,.25) !important;
    color: var(--brand-orange) !important;
}

#sticky-contact-bar a.wa-link:active, #sticky-contact-bar a.wa-link:hover {
    background-color: rgba(37,211,102,.4) !important;
    color: #0b5c53 !important;
}

.benefit-box {
    position: relative !important;
}

.wa-mini-trigger {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #25d366;
    color: #fff !important;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    box-shadow: 0 4px 10px rgba(0,0,0,.1);
    z-index: 5;
    transition: all .3s ease;
}

.wa-mini-trigger:hover {
    transform: scale(1.2) rotate(10deg);
    background-color: #128c7e;
}

.wa-mini-trigger svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

#sluzby .row.g-4 > div:last-child .card {
    transition: transform .4s cubic-bezier(.165, .84, .44, 1), box-shadow .4s cubic-bezier(.165, .84, .44, 1) !important;
    backface-visibility: hidden;
    transform: translateZ(0);
}

#sluzby .row.g-4 > div:last-child .card:hover {
    transform: translateY(-7px) !important;
    box-shadow: 0 15px 35px var(--brand-shadow-orange) !important;
    border: 2px solid var(--brand-orange) !important;
    z-index: 10;
}

.top-promo-bar {
    background: linear-gradient(180deg, #f19864 0, #e37d3e 50%, #d16b2d 100%);
    color: #fff;
    text-align: center;
    padding: 8px 15px;
    font-size: .92rem;
    font-weight: 700;
    z-index: 2005;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border-top: 1px solid rgba(255,255,255,.3);
    border-bottom: 1px solid rgba(0,0,0,.2);
    box-shadow: 0 4px 15px rgba(0,0,0,.25), inset 0 -1px 3px rgba(0,0,0,.2);
    text-shadow: 0 1px 2px rgba(0,0,0,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: .4px;
    -webkit-font-smoothing: antialiased;
}

@media (max-width: 768px) {
    body {
        padding-top: 50px !important;
    }
    .top-promo-bar {
        padding: 6px 10px;
        display: flex;
        flex-wrap: nowrap;
    }
    .top-promo-bar span {
        font-size: .82rem;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: auto !important;
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
    .hero-section .reveal-content .display-3, .hero-section .reveal-content h1 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: .75rem !important;
        text-transform: none !important;
    }
    .hero-section .reveal-content p.lead {
        font-size: 1rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
    }
    .hero-section .reveal-content .badge {
        white-space: nowrap !important;
        font-size: .75rem !important;
        padding: .35em .5em !important;
        margin-top: .25rem !important;
    }
    .hero-section .reveal-content .mt-4 {
        margin-top: 1rem !important;
    }
    .hero-section .reveal-content .d-grid {
        gap: .5rem !important;
    }
    .hero-section .reveal-content .btn {
        padding-top: .75rem !important;
        padding-bottom: .75rem !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        font-size: 1rem !important;
    }
}

/* --- VLOŽENÝ CHÝBAJÚCI BLOK PRE PRÉMIOVÚ STAROSTLIVOSŤ --- */
.premium-care-box {
    border-left: 4px solid #ffc107;
    background: #fffdf5; 
    border-radius: 12px;
    border: 1px solid #fff3cd; 
    transition: all 0.3s ease;
    padding: 15px; 
    height: 100%;
    position: relative;
    overflow: hidden;
}

.premium-care-box:hover { 
    transform: scale(1.03); 
    background: #fff9e6; 
}

.premium-care-box::after {
    content: '';
    position: absolute;
    top: 0; 
    left: -150%;
    width: 100%; 
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-20deg);
    transition: none;
    pointer-events: none;
}

.premium-care-box:hover::after {
    left: 150%;
    transition: 0.7s ease-in-out;
}
.info-tooltip {
    display: none;
}
/* --- ŠTÝLOVANIE TABULIEK V ČLÁNKOCH --- */
.article-body table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2.5rem 0;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,.04);
    border-radius: 15px;
    overflow: hidden;
    display: block;
    overflow-x: auto;
}

@media (min-width: 768px) {
    .article-body table {
        display: table;
    }
}

.article-body table th {
    background-color: var(--brand-blue);
    color: #fff;
    font-weight: 700;
    padding: 8px 12px; /* Zredukované odsadenie pre mobil */
    text-align: left;
    border: none;
    letter-spacing: 0.5px;
    line-height: 1.3; /* Zredukovaná výška riadku v hlavičke */
}

.article-body table td {
    padding: 8px 12px; /* Zredukované odsadenie pre mobil */
    border-bottom: 1px solid rgba(0,0,0,.05);
    color: var(--text-dark);
    vertical-align: middle;
    line-height: 1.3; /* Zredukovaná výška riadku v bunkách */
}

/* Odstránenie neviditeľnej vaty z odstavcov vygenerovaných admin editorom */
.article-body table td p {
    margin-top: 0;
    margin-bottom: 0;
}

/* Vrátenie pôvodného väčšieho priestoru čisto pre desktop */
@media (min-width: 768px) {
    .article-body table th,
    .article-body table td {
        padding: 16px 20px;
    }
}

.article-body table tr:last-child td {
    border-bottom: none;
}

.article-body table tr:nth-child(even) td {
    background-color: #f8fbff;
}

.article-body table tr:hover td {
    background-color: rgba(53, 185, 237, 0.08);
    transition: background-color 0.3s ease;
}