/*
Theme Name: IT Helpers Custom
Author: Adam Majak
Version: 1.2
*/

/* --- ZÁKLAD A TYPOGRAFIA --- */
body {
    margin: 0;
    padding: 0;
    background: #1b1b1b;
    color: #F9FAFB;
    font-family: "Montserrat", "apple-system", "system-ui", "Segoe UI", "Roboto", sans-serif;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- GLOBÁLNE GLASS EFEKTY --- */
.glass {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: inset 0 1px 4px rgba(255, 255, 255, 0.15), inset 0 -1px 3px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
}

.glassBox {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: inset 0 1px 4px rgba(255, 255, 255, 0.15), inset 0 -1px 3px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    padding: 20px;
}

.glassButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 10px 25px;
    background: #035695;
    backdrop-filter: blur(12px);
    color: #F9FAFB;
    text-decoration: none;
    box-shadow: inset 0 1px 4px rgba(255, 255, 255, 0.2), inset 0 -1px 3px rgba(0, 0, 0, 0.4);
    transition: 0.3s ease;
}

.glassButton--outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: none;
}
.glassButton--outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: #fff;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: nowrap; }
.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
}
.hero-btn--primary {
    background: #035695;
    color: #fff;
    border: 2px solid #035695;
}
.hero-btn--primary:hover { background: #0468b1; border-color: #0468b1; }
.hero-btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.6);
}
.hero-btn--outline:hover { border-color: #fff; background: rgba(255,255,255,0.07); }

/* --- TOP BAR --- */
.top-bar { padding: 15px 0 5px 0; }
.top-bar-items { display: flex; justify-content: space-between; align-items: center; }
.top-left { display: flex; gap: 15px; }
.top-item {
    font-size: 13px;
    padding: 5px 15px 5px 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #F9FAFB;
    border-radius: 50px;
}
.hours-mobile { display: none; }
.brxe-icon { font-size: 18px; color: #ffffff; display: inline-block; vertical-align: middle; }

/* --- HLAVNÁ NAVIGÁCIA --- */
.main-nav-section { padding: 0px 0; position: relative; z-index: 100; }
.nav-glass-wrapper { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.nav-logo img {
    height: 85px; 
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}
.nav-logo img:hover { transform: scale(1.02); }

.nav-menu-container.glass {
    display: flex;
    align-items: center;
    padding: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
}

.bricks-nav-menu { display: flex; list-style: none; margin: 0; padding: 0; align-items: center; }
.bricks-nav-menu li { position: relative; }
.bricks-nav-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border-radius: 999px;
}

.bricks-nav-menu .menu-item-has-children > a::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 10px;
}

.bricks-nav-menu > .current-menu-item > a {
    background: #035695 !important;
    color: #ffffff !important;
    box-shadow: inset 0 1px 4px rgba(255, 255, 255, 0.25), inset 0 -1px 3px rgba(0, 0, 0, 0.4);
}

/* --- PODMENU --- */
.bricks-nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: rgba(15, 15, 15, 0.95) !important; 
    backdrop-filter: blur(25px) saturate(150%);
    -webkit-backdrop-filter: blur(25px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 12px;
    margin-top: 15px;
    list-style: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.bricks-nav-menu li:hover > .sub-menu { opacity: 1; visibility: visible; }
.bricks-nav-menu .sub-menu li a {
    color: #ffffff !important;
    font-weight: 500;
    background: transparent !important;
    padding: 10px 15px !important;
    display: block;
    border-radius: 12px;
}
.bricks-nav-menu .sub-menu li a:hover { background: rgba(255, 255, 255, 0.1) !important; }
.bricks-nav-menu .sub-menu li.sub-menu-all { border-top: 1px solid rgba(255, 255, 255, 0.12); margin-top: 6px; padding-top: 6px; }

/* --- HAMBURGER (len mobil) --- */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 10px; width: 44px; height: 44px; justify-content: center; align-items: center; flex-direction: column; gap: 6px; border-radius: 12px; transition: background 0.2s; }
.nav-toggle-bar { display: block; width: 24px; height: 2px; background: #fff; border-radius: 1px; transition: transform 0.3s ease, opacity 0.3s ease; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --- RESPONSIVITA & MOBIL --- */
@media (max-width: 991px) {
    .main-nav-section .container { padding: 0 16px; }
    .nav-glass-wrapper { gap: 16px; }
    .nav-logo img { height: 56px; }
    .nav-toggle { display: flex; }
    /* Drawer zostáva v DOM, ale je mimo obrazovky; mobile-design.css ho skryje a zobrazí len pri .mobile-nav-open */
    .nav-menu-container {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        margin: 0;
        border-radius: 0;
        padding: 80px 20px 24px;
        flex-direction: column;
        align-items: stretch;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.3s ease, visibility 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    }
    body.mobile-nav-open .nav-menu-container { transform: translateX(0); visibility: visible; }
    body.mobile-nav-open .nav-overlay { opacity: 1; visibility: visible; }
    .bricks-nav-menu { flex-direction: column; align-items: stretch; gap: 4px; }
    .bricks-nav-menu li a { padding: 14px 18px; border-radius: 14px; justify-content: space-between; }
    .bricks-nav-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        margin-top: 4px;
        margin-left: 0;
        padding-left: 12px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: none;
        background: transparent;
    }
    .bricks-nav-menu li.menu-open > .sub-menu { max-height: 2000px; }
    .bricks-nav-menu .menu-item-has-children > a::after { transition: transform 0.3s; }
    .bricks-nav-menu li.menu-open > a::after { transform: rotate(180deg); }
}
@media (max-width: 768px) {
    .desktop-menu, .nav-cta { display: none; }
    .top-bar-items { justify-content: center; flex-wrap: wrap; gap: 8px; }
    .top-bar { padding: 10px 0; }
    .contact-group .hide-mobile { display: none !important; }
    .top-item { font-size: 12px; padding: 6px 10px; }
}
.nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 999; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; }

@media (max-width: 767px) {
    .mobile-bottom-nav { display: block; position: fixed; bottom: 25px; left: 50%; transform: translateX(-50%); width: 90%; max-width: 400px; z-index: 1000; }
    .nav-container-glass { display: flex; justify-content: space-around; align-items: center; padding: 12px 20px; background: rgba(17, 17, 17, 0.8); backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 50px; box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6); }
    .nav-item-icon { color: white; font-size: 24px; text-decoration: none; }
}

/* --- RESET ODKAZOV --- */
a { text-decoration: none !important; color: inherit; transition: 0.3s; }
.bricks-nav-menu li a, .contact-link, .top-item { text-decoration: none !important; }

/* --- HERO SEKCE --- */
.hero-section { overflow: hidden; }
.hero-toggles { display: flex; justify-content: center; gap: 20px; margin-bottom: 80px; }
.toggle-btn { font-size: 28px; font-weight: 700; padding: 15px 40px; border-radius: 999px; transition: 0.3s all ease; }
.toggle-btn.active { background: #035695; color: #ffffff; box-shadow: 0 10px 25px rgba(3, 86, 149, 0.4); }
.toggle-btn.inactive { color: #ffffff; background: transparent; opacity: 0.8; }
.toggle-btn.inactive:hover { opacity: 1; background: rgba(255, 255, 255, 0.05); }

.hero-content-wrapper { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.hero-text { flex: 1; max-width: 600px; }
.hero-title { font-size: 42px; font-weight: 800; line-height: 1.2; margin-bottom: 15px; }
.hero-subtitle { font-size: 16px; opacity: 0.85; margin-bottom: 25px; }
.hero-highlight { font-size: 21px; font-weight: 700; margin-bottom: 12px; color: #ffffff; }
.hero-description { font-size: 15px; opacity: 0.75; margin-bottom: 35px; }
.hero-actions .glassButton { padding: 10px 30px; font-weight: 700; }

.hero-image { flex: 1; display: flex; justify-content: flex-end; }
.hero-image img { max-width: 110%; height: auto; }

@media (min-width: 992px) { .hide-desktop { display: none !important; } }
@media (max-width: 991px) {
    .hero-content-wrapper { flex-direction: column; text-align: center; }
    .hero-image { justify-content: center; }
    .hero-image img { max-width: 90%; }
}
@media (max-width: 768px) {
    .hero-title { font-size: 26px; }
    .hero-highlight { font-size: 16px; }
    .hero-subtitle { font-size: 14px; }
    .hero-description { font-size: 14px; }
    .hero-toggles { margin-bottom: 30px; gap: 12px; }
    .toggle-btn { font-size: 16px; padding: 10px 20px; }
    .hero-actions { justify-content: center; }
    .hero-btn { padding: 10px 18px; font-size: 13px; }
    .hero-content-wrapper { gap: 28px; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 22px; }
    .hero-highlight { font-size: 15px; }
    .toggle-btn { font-size: 14px; padding: 8px 16px; }
}

/* --- SERVICES SLIDER: veľký 183×205px, malý 183×95px, zips, zarovnanie spodku --- */
/* Sekcia bez bočného paddingu; medzery sú len medzi blokmi (column-gap) */
.services-marquee-section { width: 100%; padding-left: 0; padding-right: 0; box-sizing: border-box; }
.services-marquee-wrapper { overflow: hidden; width: 100%; box-sizing: border-box; }
.services-marquee { position: relative; overflow: visible; min-height: 460px; padding-top: 40px; margin-top: -20px; box-sizing: border-box; }

.services-track {
    display: grid;
    grid-template-rows: 205px 205px;
    row-gap: 0;
    column-gap: 48px; /* výrazná medzera medzi blokmi služieb */
    width: max-content;
    will-change: transform;
    animation: services-marquee-left 45s linear infinite;
}

/* Druhý riadok mierne hore (zips), veľké aj malé bloky majú spodok v rovnakej úrovni (align-self: end) */
.services-track .service-item--row-2 {
    margin-top: -60px;
    align-self: end;
}

.services-track.is-paused { animation-play-state: paused; }

/* 4 kópie obsahu = posun o -25% pre jeden cyklus, potom reset = plynulý nekonečný loop */
@keyframes services-marquee-left {
    from { transform: translateX(0); }
    to   { transform: translateX(-25%); }
}

.service-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px) saturate(140%);
    -webkit-backdrop-filter: blur(15px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.15),
        inset 0 4px 15px rgba(255, 255, 255, 0.05),
        inset 0 -4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px 12px;
    transition: transform 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none !important;
    color: inherit;
    cursor: pointer;
    min-height: 0;
}

.service-item::before { display: none; }

/* Veľký blok – 183×205px, s obrázkom */
.service-item--big {
    width: 183px;
    height: 205px;
}

/* Malý blok – 183×95px, bez obrázka */
.service-item--small {
    width: 183px;
    height: 95px;
}

.service-item--row-1.service-item--small {
    align-self: start;
}

.service-item--row-2.service-item--small {
    align-self: end;
}

.service-item-image img {
    max-height: 100px;
    width: auto;
    margin-bottom: 8px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.25));
}

.service-item-title {
    font-size: 13px;
    font-weight: 600;
    color: #F9FAFB;
    z-index: 1;
    line-height: 1.25;
}

.service-item--big .service-item-title {
    font-size: 14px;
}

/* HOVER */
.service-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.03);
}

.service-item:active, .service-item:focus {
    outline: none;
    color: #F9FAFB;
}

/* Services marquee – mobil (šírka stĺpcov pre menšie karty) */
@media (max-width: 768px) {
    .services-marquee { min-height: 320px; padding-top: 24px; }
    .services-track {
        grid-template-columns: repeat(var(--marquee-cols), 140px);
        grid-template-rows: 160px 130px;
        column-gap: 0;
        gap: 0;
        margin-top: 5px;
    }
    .services-track .service-item { justify-self: center; }
    .service-item--big { width: 140px; height: 160px; }
    .service-item--small { width: 140px; height: 78px; }
    .service-item-title { font-size: 11px; }
    .service-item--big .service-item-title { font-size: 12px; }
    .service-item-image img { max-height: 70px; }
    .services-track .service-item--row-2 { margin-top: -40px; }
}
@media (max-width: 480px) {
    .services-marquee { min-height: 260px; padding-top: 16px; }
    .services-track {
        grid-template-columns: repeat(var(--marquee-cols), 120px);
        grid-template-rows: 160px 130px;
        column-gap: 0;
        gap: 0;
        margin-top: 5px;
    }
    .service-item--big { width: 120px; height: 130px; }
    .service-item--small { width: 120px; height: 64px; }
    .service-item-title { font-size: 10px; }
    .service-item-image img { max-height: 55px; }
    .services-track .service-item--row-2 { margin-top: -32px; }
}

/* --- CENNÍK SEKCE --- */
.pricing-section {
    padding: 80px 0 40px;
    text-align: center;
}



.section-title span {
    font-weight: 800;
}


.section-title {
    font-size: 38px;
    margin-bottom: 5px; /* Zmenšená medzera k čiare */
    text-transform: none;
    letter-spacing: -0.5px;
}

/* Prvé slovo - tenšie */
.section-title .light {
    font-weight: 300; /* Alebo 400, ak chceš aby to bolo stále dobre čitateľné */
}

/* Druhé slovo - tucné */
.section-title .bold {
    font-weight: 800;
}

/* Modrý predel pod nadpisom */
.pricing-divider {
    width: 320px;
    height: 8px;
    background: #035695;
    margin: 0 auto 60px;
    border-radius: 50px;
}
.pricing-divider--wide { width: 500px; }

.pricing-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.pricing-column {
    flex: 1;
    text-align: left;
}

/* Skupiny cien */
.pricing-group {
    margin-bottom: 40px;
}

.pricing-group h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Zoznam cien s bodkami */
.price-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-list li {
    display: flex;
    align-items: flex-end;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 500;
}

.dots {
    flex-grow: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    margin: 0 10px 4px 10px;
}

.price {
    font-weight: 700;
    min-width: 40px;
}

/* Poznámky pod cenami */
.price-note {
    display: inline-block;
    padding: 4px 15px;
    font-size: 12px;
    font-weight: 600;
    color: #035695; /* Modrá farba textu poznámky */
    margin: 5px 0 15px 0;
}

/* Stredový obrázok */
.pricing-image {
    flex: 0 0 350px; /* Fixná šírka pre stred */
    display: flex;
    justify-content: center;
}

.pricing-image img {
    max-width: 130%;
    height: auto;
}

.pricing-cta {
    margin-top: 50px;
}

.contact-intro {
    padding: 40px 0 0;
    text-align: center;
}
.contact-intro .section-title {
    margin-bottom: 5px;
}
.contact-intro .pricing-divider {
    margin: 0 auto 30px;
}
.contact-intro-text {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Mobilná responsivita cenník */
@media (max-width: 992px) {
    .pricing-grid {
        flex-direction: column;
    }
    .pricing-image {
        order: -1;
        flex: 1;
        margin-bottom: 40px;
    }
    .pricing-image img { max-width: 100%; }
    .pricing-column {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .pricing-section { padding: 40px 0; }
    .section-title { font-size: 28px; }
    .pricing-divider { width: 200px; margin-bottom: 40px; }
    .pricing-divider--wide { width: 280px; }
    .pricing-group h3 { font-size: 18px; }
    .price-list li { font-size: 14px; }
    .glassButton { padding: 12px 24px; font-size: 14px; }
}
@media (max-width: 480px) {
    .pricing-section { padding: 40px 0; }
    .section-title { font-size: 24px; }
    .container { padding: 0 16px; }
}
/* --- KONTAKTNÁ SEKČIA --- */
/* --- KONTAKTNÁ SEKČIA S POZADÍM --- */
.contact-section {
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax efekt */
    position: relative;
    overflow: hidden;
}

/* Jemné stmavenie fotky, aby sklo vyniklo */
.contact-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch; /* Obe karty budú rovnako vysoké */
}

/* PRÉMIOVÉ SKLO */
.glass-premium {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(25px) saturate(160%);
    -webkit-backdrop-filter: blur(25px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 40px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.contact-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -1px;
}

/* CENTROVANIE FORMULÁRA */
.contact-form {
    max-width: 450px;
    margin: 0 auto; /* Toto vycentruje vnútro karty */
}

.form-group { margin-bottom: 25px; }
.form-group label { 
    display: block; 
    margin-bottom: 10px; 
    font-size: 14px; 
    font-weight: 500;
    opacity: 0.9;
}

.glass-input {
    width: 95%;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
    color: white;
    font-family: inherit;
    transition: 0.3s;
}

.glass-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.5);
}

.form-submit-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.submit-btn {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 12px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* INFO KARTA ROZLOŽENIE */
.info-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 15px;
    font-size: 14px;
    line-height: 1.4;
}

.info-item i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 3px;
}

.info-item.full-width {
    grid-column: span 2;
}

/* MAPA */
.contact-map-container {
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    filter: grayscale(1) invert(0.9) contrast(1.2); /* "Dark mode" mapa */
}

/* MOBIL kontakt */
@media (max-width: 992px) {
    .contact-grid { flex-direction: column; }
    .info-details-grid { grid-template-columns: 1fr; }
    .info-item.full-width { grid-column: span 1; }
}
@media (max-width: 768px) {
    .contact-section { padding: 60px 0; background-attachment: scroll; }
    .glass-premium { padding: 28px 20px; }
    .contact-title { font-size: 26px; margin-bottom: 24px; }
    .form-group { margin-bottom: 18px; }
    .glass-input { width: 100%; box-sizing: border-box; }
}
/* --- MINIMALISTICKÝ GLASS FOOTER --- */
.main-footer {
    padding: 40px 0;
    background: #1b1b1b;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 10;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Texty v pätke */
.footer-copy {
    font-size: 14px;
    opacity: 0.6;
}

.footer-copy strong {
    color: #ffffff;
}

/* Sociálne siete */
.footer-socials {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #035695;
    border-color: #035695;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(3, 86, 149, 0.3);
}

/* Právne linky */
.footer-legal a {
    font-size: 13px;
    opacity: 0.5;
    transition: 0.3s;
}

.footer-legal a:hover {
    opacity: 1;
    color: #035695;
}

/* Mobilná úprava */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    /* Na mobile posunieme sociálne siete do stredu */
    .footer-socials {
        order: -1;
    }
}


/* Skryť reCAPTCHA badge (v súlade s ToS — zmienka je v kontaktnom formulári) */
.grecaptcha-badge { visibility: hidden !important; }

/* --- REVIEWS SECTION --- */
.reviews-section { padding: 40px 0 60px; text-align: center; }
.reviews-slider-clip { overflow-x: clip; }
.reviews-slider-wrapper { padding-bottom: 8px; }
.reviews-slider {
    display: flex;
    transition: transform 0.5s ease;
    --per-page: 4;
}
.review-slide {
    flex: 0 0 calc(100% / var(--per-page));
    box-sizing: border-box;
    padding: 0 10px;
}
.review-card {
    padding: 24px;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
    height: 100%;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px) saturate(140%);
    -webkit-backdrop-filter: blur(15px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.15),
        inset 0 4px 15px rgba(255, 255, 255, 0.05),
        inset 0 -4px 15px rgba(0, 0, 0, 0.3);
}
.reviews-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.reviews-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, transform 0.3s;
}
.reviews-dot--active { background: #035695; transform: scale(1.3); }
.review-stars { font-size: 18px; letter-spacing: 2px; }
.star--filled { color: #f59e0b; }
.star--empty { color: rgba(255,255,255,0.2); }
.review-text { font-size: 15px; line-height: 1.6; color: var(--text-secondary, #cbd5e1); flex: 1; }
.review-author { display: flex; flex-direction: column; gap: 2px; margin-top: 8px; }
.review-name { font-weight: 700; font-size: 15px; }
.review-position { font-size: 13px; color: var(--text-secondary, #94a3b8); }

/* --- WAVE DIVIDER --- */
.section-wave-divider {
    width: 100%;
    line-height: 0;
    margin-top: -1px;
}
.section-wave-divider svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* --- STATS SECTION --- */
.stats-section { padding: 70px 0; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 36px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.03);
}
.stat-number {
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1;
    color: #fff;
    text-shadow: 0 0 40px rgba(3, 86, 149, 0.8), 0 0 80px rgba(3, 86, 149, 0.4);
}
.stat-plus { font-size: 0.55em; vertical-align: super; color: #035695; }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.5); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }

@media (max-width: 768px) {
    .reviews-section { padding: 30px 0 50px; }
    .stats-section { padding: 50px 0; }
    .stats-grid { grid-template-columns: 1fr; gap: 16px; }
    .stat-item { padding: 24px 20px; }
    .section-wave-divider svg { height: 40px; }
}

/* --- COOKIE CONSENT (TermsFeed) --- */
#cc-nb-wrapper,
.termsfeed-com---nb {
    background: rgba(18, 18, 18, 0.97) !important;
    border-top: 1px solid rgba(255,255,255,0.08) !important;
    color: #e2e8f0 !important;
    font-family: 'Montserrat', sans-serif !important;
    box-shadow: 0 -8px 30px rgba(0,0,0,0.4) !important;
}
.termsfeed-com---nb .cc-nb-title {
    color: #fff !important;
    font-weight: 700 !important;
}
.termsfeed-com---nb .cc-nb-text {
    color: #94a3b8 !important;
    font-size: 13px !important;
}
/* Tlačidlo Prijať */
.termsfeed-com---nb .cc-nb-okagree,
.termsfeed-com---pc-save {
    background: #035695 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 999px !important;
    font-weight: 700 !important;
    font-family: 'Montserrat', sans-serif !important;
    transition: background 0.2s !important;
}
.termsfeed-com---nb .cc-nb-okagree:hover,
.termsfeed-com---pc-save:hover {
    background: #0468b1 !important;
}
/* Tlačidlo Odmietnuť */
.termsfeed-com---nb .cc-nb-reject {
    background: transparent !important;
    color: #94a3b8 !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    border-radius: 999px !important;
    font-family: 'Montserrat', sans-serif !important;
    transition: border-color 0.2s, color 0.2s !important;
}
.termsfeed-com---nb .cc-nb-reject:hover {
    border-color: #fff !important;
    color: #fff !important;
}
/* Tlačidlo Nastavenia */
.termsfeed-com---nb .cc-nb-changep {
    color: #035695 !important;
    font-family: 'Montserrat', sans-serif !important;
    text-decoration: underline !important;
}
/* Preferences center */
.termsfeed-com---pc-overlay { background: rgba(0,0,0,0.7) !important; }
.termsfeed-com---pc {
    background: #1b1b1b !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 16px !important;
    color: #e2e8f0 !important;
    font-family: 'Montserrat', sans-serif !important;
}
.termsfeed-com---pc .cc-pc-head {
    background: #111 !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 16px 16px 0 0 !important;
}
.termsfeed-com---pc .cc-pc-head-title-text,
.termsfeed-com---pc .cc-cp-body-content-entry-title {
    color: #fff !important;
    font-weight: 700 !important;
}
