:root {
    --primary: #3ebcee;   /* Modrá z loga */
    --accent: #e46c31;    /* Oranžová z loga */
    --dark: #1e293b;      /* Prémiová tmavomodrá pre kontrast */
    --light: #f1f5f9;     /* Jemne sivomodré pozadie */
    --white: #ffffff;
    --text: #334155;      /* Tmavší text pre lepšiu čitateľnosť */
    --border: #e2e8f0;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
}

body { 
    background-color: var(--light); 
    color: var(--text); 
    line-height: 1.2; 
    padding-bottom: 0; 
}

h1, h2, h3, h4 { color: var(--dark); }

a { 
    text-decoration: none; 
    color: var(--primary); 
    transition: 0.3s; 
}

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

/* --- Hlavička --- */
header { 
    background: var(--white); 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
    position: sticky; 
    top: 0; 
    z-index: 10000; 
    border-bottom: 2px solid var(--primary);
}

.nav-container { 
    max-width: 1200px; 
    margin: 0 auto;
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 10px 20px; 
}

.logo img { height: 60px; object-fit: contain; }

.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links a { color: var(--dark); font-weight: 700; text-transform: uppercase; font-size: 12px; transition: 0.3s; }
.nav-links a:hover { color: var(--primary); }

/* Burger Menu Ikona */
.menu-icon { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 10002; width: 20px; }
.menu-icon span { display: block; width: 100%; height: 3px; background: #1e293b; border-radius: 4px; transition: 0.4s; }
.menu-icon.active span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.menu-icon.active span:nth-child(2) { opacity: 0; }
.menu-icon.active span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* --- Dropdown --- */
.dropdown { position: relative; padding-bottom: 10px; margin-bottom: -10px; }
.dropdown:hover .dropdown-content { display: block; }
.dropdown-content { 
    display: none; 
    position: absolute; 
    top: 100%;
    left: 0;
    background: white; 
    min-width: 240px; 
    box-shadow: 0 8px 16px rgba(0,0,0,0.1); 
    border-radius: 4px;
    z-index: 10001;
    border-top: 3px solid var(--primary);
    padding: 10px 0;
}
.dropdown-content a { color: var(--dark); padding: 12px 20px; display: block; border-bottom: 1px solid #eee; text-transform: none; font-weight: 500; }
.dropdown-content a:hover { background: #f8fafc; color: var(--primary); }
.dropdown-content a:last-child { border-bottom: none; }

/* --- Tlačidlá --- */
.btn-cta { 
    background-color: var(--accent) !important; 
    color: var(--white) !important; 
    padding: 14px 28px; 
    border-radius: 6px; 
    font-weight: bold; 
    display: inline-block;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}
.btn-cta:hover { background: #d15d26 !important; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

.btn-hero-wa {
    background-color: #25D366 !important;
    color: white !important;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    text-decoration: none;
}
.btn-hero-wa:hover { transform: scale(1.05) translateY(-3px); box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4); }

/* --- Hero Sekcia --- */
.hero-dynamic {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-dynamic::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.hero-dynamic .container { position: relative; z-index: 2; }
.hero-dynamic h1 { font-size: clamp(1rem, 5vw, 3rem); font-weight: 900; color: white !important; text-transform: uppercase; margin-bottom: 20px; text-shadow: 2px 2px 10px rgba(0,0,0,0.7); }
.hero-dynamic p { font-size: clamp(1rem, 2vw, 1.3rem); color: white !important; margin-bottom: 30px; text-shadow: 1px 1px 5px rgba(0,0,0,0.7); }

.hero-btn-wrapper { 
    margin-top: 30px; 
    display: flex; 
    gap: 20px; 
    justify-content: center; 
    flex-wrap: wrap; 
}
.hero-btn-wrapper .btn-hero-wa, 
.hero-btn-wrapper .btn-pill-cta {
    margin: 0;
}

/* --- Obsahová časť --- */
.content-area {
    padding: 30px 0;
    max-width: 900px;
    margin: 0 auto;
    color: #444;
    font-size: 1rem;
}

.content-area h2 {
    color: var(--primary);
    font-size: 2.0rem;
    font-weight: 800;
    margin: 20px 0 20px 0;
    text-transform: uppercase;
    border-left: 6px solid var(--accent);
    padding-left: 15px;
}

.content-area h3 {
    color: var(--dark);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 20px 0 15px 0;
}

.content-area p { margin-bottom: 20px; line-height: 1.8; text-align: justify; }

.content-area ul { margin: 20px 0 30px 20px; list-style: none; }
.content-area li { position: relative; padding-left: 30px; margin-bottom: 12px; line-height: 1.6; }
.content-area li::before {
    content: '■';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.content-area blockquote {
    background: #ffffff;
    border-left: 5px solid var(--primary);
    padding: 10px 20px;
    margin: 10px 0;
    font-style: italic;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* --- Čisté Bloky (nahradené inline štýly) --- */
.block-header { text-align: left; margin-bottom: 20px; }
.eyebrow-text { display: block; color: var(--accent); font-weight: bold; text-transform: uppercase; margin-bottom: 5px; font-size: 0.9rem; }
.block-heading { margin-top: 0; margin-bottom: 20px; color: var(--primary); }
.block-heading.no-margin { margin-bottom: 0; }
.text-content { margin-bottom: 20px; }

/* --- Flex Row (Foto vľavo/vpravo) --- */
.flex-row { display: flex; gap: 30px; align-items: center; }
.flex-row.reverse { flex-direction: row-reverse; }
.flex-row > div { flex: 1; }
.flex-img { width: 100%; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: 0.5s ease; }
.flex-img:hover { transform: scale(1.03); }

/* --- Scroll Galéria v obsahu --- */
.gal-scroll { display: flex; overflow-x: auto; gap: 15px; padding-bottom: 10px; margin-top: 30px; width: 100%; -webkit-overflow-scrolling: touch; }
.gal-pred-po-wrapper { flex: 0 0 85%; display: flex; gap: 10px; }
.gal-solo-wrapper { flex: 0 0 85%; }
.gal-img-wrapper { flex: 1; position: relative; }
.gallery-label { position: absolute; top: 10px; padding: 5px 10px; font-weight: bold; border-radius: 4px; color: white; z-index: 10; }
.gallery-label.label-pred { left: 10px; background: #ff4757; }
.gallery-label.label-po { right: 10px; background: var(--primary); }
.gal-scroll img { width: 100%; height: 250px; object-fit: cover; border-radius: 12px; }

/* --- KONTAKTNÝ FORMULÁR --- */
.contact-form {
    background: var(--white) !important;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin: 0 auto;
    border: 2px solid var(--primary);
    position: relative;
    z-index: 5;
}
.contact-form h3 { color: var(--dark) !important; font-size: 1.8rem; font-weight: 900; margin-bottom: 25px; text-align: center; }
.form-group label { color: var(--dark) !important; font-weight: 700; margin-bottom: 8px; display: block; }
.contact-form input[type="text"], 
.contact-form textarea { background: #f8fafc !important; border: 2px solid #e2e8f0 !important; color: var(--dark) !important; font-size: 1rem; padding: 12px; width: 100%; border-radius: 8px; margin-bottom: 15px; }
.contact-form input:focus, 
.contact-form textarea:focus { border-color: var(--primary) !important; background: var(--white) !important; outline: none; }
.submit-btn { background-color: var(--accent) !important; color: white !important; width: 100%; padding: 18px; font-weight: 900; font-size: 1.1rem; border-radius: 8px; text-transform: uppercase; cursor: pointer; border: none; transition: 0.3s; }
.submit-btn:hover { background-color: #d15d26 !important; transform: translateY(-3px); box-shadow: 0 8px 15px rgba(228, 108, 49, 0.4); }

/* --- RECENZIE --- */
.reviews-section { padding: 80px 0; background: var(--light); }
.reviews-section h2 { text-align: center; font-weight: 900; text-transform: uppercase; margin-bottom: 10px; color: var(--primary); }
.reviews-subtitle { text-align: center; color: var(--accent); font-weight: 700; margin-bottom: 40px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.review-card { background: var(--white); padding: 30px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-bottom: 4px solid var(--primary); transition: all 0.3s ease; }
.review-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
.review-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.review-card .stars { color: #f1c40f; font-size: 1.2rem; margin-bottom: 0; }
.review-meta { font-size: 0.8rem; font-weight: bold; }
.icon-google { color: #ea4335; }
.icon-facebook { color: #1877f2; }
.review-time { color: #64748b; font-weight: normal; }
.review-text { font-style: italic; color: var(--text); margin-bottom: 20px; line-height: 1.7; }
.review-author { font-weight: 800; color: var(--dark); display: block; }
.review-city { font-size: 0.85rem; color: var(--accent); font-weight: 600; text-transform: uppercase; }

/* --- FOOTER --- */
footer { background: var(--dark); color: #cbd5e1; padding: 80px 0 40px; margin-top: 50px; border-top: 5px solid var(--primary); }
footer h4 { color: var(--primary) !important; margin-bottom: 25px; text-transform: uppercase; font-size: 1.2rem; }
footer b { color: var(--accent); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; }

/* --- STICKY BAR --- */
.sticky-bar { display: none; }

/* =========================================
   --- CSS PRE KONTAKT A LOKALITY --- 
========================================= */

/* KONTAKTNÉ KARTY - AUTOMATICKÉ ZAROVNANIE VÝŠKY */
.kontakt-grid ul { 
    list-style: none !important; 
    padding: 0 !important; 
    margin: 0; 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 25px; 
    align-items: stretch; 
}

.kontakt-grid li { 
    list-style: none !important; 
    background: #ffffff; 
    padding: 40px 30px; 
    border-radius: 20px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.15), 0 20px 50px rgba(0,0,0,0.2) !important; 
    border-bottom: 5px solid var(--primary); 
    text-align: center; 
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); 
    margin: 0 !important; 
    position: relative; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* Smrť bodkám a štvorcom */
.kontakt-karty-wrapper li::before, .kontakt-karty-wrapper li::after, .kontakt-karty-wrapper li::marker,
.kontakt-grid li::before, .kontakt-grid li::after, .kontakt-grid li::marker { 
    content: "" !important; display: none !important; opacity: 0 !important; visibility: hidden !important; 
}

.kontakt-grid li:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 15px 40px rgba(0,0,0,0.2), 0 30px 70px rgba(0,0,0,0.3) !important; 
    border-bottom-color: var(--accent); 
}

.kontakt-grid li strong { display: block; font-size: 1.4rem; color: var(--primary); font-weight: 900; margin-bottom: 15px; text-transform: uppercase; }
.kontakt-grid li a { color: var(--dark); text-decoration: none; font-weight: 700; font-size: 1.2rem; }
.kontakt-grid li a:hover { color: var(--accent); }


/* LOKALITY - MODERNÉ BUBLINY VEDĽA SEBA */
.lokality-grid ul { 
    list-style: none !important; 
    padding: 0 !important; 
    margin: 0; 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 15px; 
}

.lokality-grid li { 
    list-style: none !important; 
    background: #ffffff; 
    color: var(--accent); 
    padding: 18px 30px; 
    border-radius: 50px; 
    text-align: center; 
    font-weight: 900; 
    font-size: 1.1rem; 
    position: relative; 
    overflow: hidden; 
    border: 1px solid #f1f5f9; 
    box-shadow: 0 8px 20px rgba(0,0,0,0.1) !important; 
    margin: 0 !important; 
    transition: all 0.3s ease; 
    text-transform: uppercase; 
    flex: 0 1 auto; 
    cursor: pointer;
}

.lokality-grid li::marker, .lokality-grid li::after { content: none !important; display: none !important; }

.lokality-grid li:hover { 
    transform: translateY(-4px); 
    box-shadow: 0 12px 25px rgba(0,0,0,0.15) !important; 
    border-color: var(--primary); 
    color: var(--primary); 
}

.lokality-grid li::before { 
    content: '📍' !important; 
    position: absolute; 
    right: 5px; 
    bottom: -10px; 
    font-size: 2.5rem; 
    opacity: 0.05; 
    z-index: 0; 
    transform: rotate(-15deg); 
    transition: 0.3s;
}

.kontakt-header { text-align: center; margin-bottom: 40px; }

/* --- Telefón v Navbare (Pill Button) --- */
.nav-tel {
    background-color: var(--primary) !important; 
    color: white !important;
    padding: 10px 22px;
    border-radius: 50px; 
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 10px rgba(62, 188, 238, 0.2);
    cursor: pointer;
}

.nav-tel:hover {
    background-color: var(--accent) !important; 
    color: white !important;
    transform: translateY(-3px); 
    box-shadow: 0 8px 20px rgba(228, 108, 49, 0.4); 
}

@media (max-width: 900px) {
    .nav-tel {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

/* =========================================
   --- CSS PRE PREDAMNÚ GALÉRIU --- 
========================================= */
.gallery-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 40px; }
.filter-btn { padding: 12px 24px; border: 2px solid var(--border); border-radius: 50px; background: white; color: var(--dark); font-weight: 700; cursor: pointer; transition: all 0.3s; font-size: 0.95rem; text-transform: uppercase; }
.filter-btn.active, .filter-btn:hover { background: var(--primary); color: white; border-color: var(--primary); box-shadow: 0 5px 15px rgba(62, 188, 238, 0.3); }
.masonry-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; align-items: start; }
.gallery-item { border-radius: 16px; overflow: hidden; position: relative; background: #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s; }
.gallery-item:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.img-solo-wrapper { position: relative; width: 100%; padding-top: 75%; }
.img-solo { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; cursor: pointer; transition: transform 0.5s; }
.gallery-item:hover .img-solo { transform: scale(1.05); }
.pred-po-container { display: flex; flex-direction: column; width: 100%; }
.img-half-wrapper { position: relative; width: 100%; padding-top: 60%; overflow: hidden; }
.img-half-wrapper img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
.badge-pred, .badge-po { position: absolute; top: 15px; left: 15px; padding: 6px 15px; border-radius: 8px; font-weight: 900; color: white; font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; z-index: 10; box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
.badge-pred { background: #ef4444; }
.badge-po { background: var(--primary); }
.divider-line { width: 100%; height: 4px; background: white; z-index: 5; }
.cta-card-gallery { background: var(--dark); padding: 40px 30px; border-radius: 16px; text-align: center; display: flex; flex-direction: column; justify-content: center; height: 100%; min-height: 350px; position: relative; overflow: hidden; }
.cta-card-gallery::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(62, 188, 238, 0.1) 0%, transparent 70%); }
.cta-card-gallery h3 { color: white; font-weight: 900; font-size: 1.6rem; margin-bottom: 15px; position: relative; z-index: 2; }
.cta-card-gallery p { color: #94a3b8; margin-bottom: 25px; font-size: 1rem; position: relative; z-index: 2; }
.btn-wa-gallery { background: #25D366; color: white; padding: 14px 20px; border-radius: 8px; text-decoration: none; font-weight: 800; display: block; margin-bottom: 15px; font-size: 1.1rem; box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3); transition: all 0.3s ease; position: relative; z-index: 2; cursor: pointer; }
.btn-call-gallery { background: var(--primary); color: white; padding: 14px 20px; border-radius: 8px; text-decoration: none; font-weight: 800; display: block; font-size: 1.1rem; box-shadow: 0 5px 15px rgba(62, 188, 238, 0.3); transition: all 0.3s ease; position: relative; z-index: 2; cursor: pointer; }
.btn-wa-gallery:hover, .btn-call-gallery:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
#lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 23, 42, 0.95); z-index: 9999; display: none; justify-content: center; align-items: center; padding: 20px; box-sizing: border-box; backdrop-filter: blur(5px); }
#lightbox img { max-width: 100%; max-height: 90vh; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.5); object-fit: contain; }
#lightbox-close { position: absolute; top: 20px; right: 20px; color: white; font-size: 2.5rem; font-weight: bold; cursor: pointer; background: rgba(0,0,0,0.5); width: 50px; height: 50px; display: flex; justify-content: center; align-items: center; border-radius: 50%; }

/* =========================================
   OPRAVA PRE MOBILY (ZALOMENIE A SWIPE)
========================================= */
@media (min-width: 768px) {
    .pred-po-container { flex-direction: row; }
    .img-half-wrapper { width: 50%; padding-top: 50%; }
    .divider-line { width: 4px; height: auto; }
}

@media (max-width: 900px) {
    body { padding-bottom: 70px; }
    .hero-dynamic { min-height: 450px; }
    
    .nav-links { 
        display: flex; flex-direction: column; width: 100%; 
        max-height: 0; overflow: hidden; opacity: 0; 
        transition: max-height 0.4s ease-out, opacity 0.3s ease-out;
        gap: 0; padding: 0; margin-top: 0;
        background: white; position: absolute; top: 100%; left: 0; z-index: 9999;
    }
    .nav-links.active { max-height: 800px; opacity: 1; padding: 20px 0 10px 0; border-top: 1px solid #f1f5f9; margin-top: 0; }
    .nav-links > a, .dropdown > a { font-size: 16px; width: 100%; padding: 15px 0; border-bottom: 1px solid #f1f5f9; display: block; text-transform: uppercase; font-weight: 700; color: #1e293b; }
    
    .dropdown { padding-bottom: 0; margin-bottom: 0; width: 100%; }
    .dropdown-content { position: static; display: none; padding-left: 20px; box-shadow: none; border: none; background: #f8fafc; margin-top: 10px; border-radius: 8px; }
    .dropdown.open .dropdown-content { display: block; }
    .dropdown > a { display: flex; justify-content: space-between; align-items: center; }
    
    .menu-icon { display: flex; }
    
    .sticky-bar {
        display: flex;
        position: fixed;
        bottom: 0; left: 0; width: 100%;
        z-index: 1000;
        box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
    }
    .sticky-btn {
        flex: 1; text-align: center;
        padding: 18px 10px; font-weight: bold;
        font-size: 16px; color: white !important;
        text-transform: uppercase;
        display: flex; justify-content: center; align-items: center; gap: 10px;
        transition: 0.3s;
    }
    .btn-call { background-color: var(--accent); }
    .btn-wa-small { background-color: #25D366; }
    
    .hero-btn-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .hero-btn-wrapper a {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* Zmenšenie paddingov sekcie */
    .content-area { padding: 35px 20px; }
    
    /* Úprava písma a riadkovania pre lepšiu kompaktnosť */
    .content-area h2 { 
        font-size: 1.5rem; 
        margin: 15px 0 15px 0; 
        border-left-width: 4px; 
        padding-left: 12px;
    }
    .content-area h3 { font-size: 1.15rem; margin: 15px 0 10px 0; }
    .content-area p { text-align: left; font-size: 1rem; line-height: 1.5; margin-bottom: 12px; }
    
    /* Kompaktnejšie zoznamy */
    .content-area ul { margin: 15px 0 20px 15px; }
    .content-area li { padding-left: 25px; margin-bottom: 8px; font-size: 0.95rem; line-height: 1.5; }
    
    /* Zmenšenie paddingov formulára a kariet */
    .contact-form { padding: 25px 20px; }
    .contact-form h3 { font-size: 1.5rem; margin-bottom: 15px; }
    .kontakt-grid li { padding: 25px 20px; }
    .kontakt-grid li strong { font-size: 1.2rem; margin-bottom: 10px; }
    .kontakt-grid li a { font-size: 1.1rem; }
    
    .lokality-grid li { padding: 12px 20px; font-size: 0.9rem; }
    
    .flex-row { flex-direction: column !important; gap: 20px !important; }
    .flex-row > div { width: 100% !important; min-width: unset !important; }
    .flex-row img { width: 100% !important; height: auto !important; }

    .reviews-grid {
        display: flex !important;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        gap: 15px;
        -webkit-overflow-scrolling: touch;
    }
    .review-card { flex: 0 0 85%; scroll-snap-align: center; padding: 20px; }
    .review-text { font-size: 0.9rem; margin-bottom: 15px; line-height: 1.5; }

    .gal-scroll, .gallery-wrapper > div {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        padding-bottom: 15px;
        gap: 15px;
        -webkit-overflow-scrolling: touch;
    }
    .gal-scroll div, .gallery-wrapper > div > div {
        flex: 0 0 85% !important;
        scroll-snap-align: center;
    }

    .reviews-grid::-webkit-scrollbar, 
    .gal-scroll::-webkit-scrollbar { height: 4px; }
    .reviews-grid::-webkit-scrollbar-thumb, 
    .gal-scroll::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }
}
/* =========================================
   --- CENNÍK VYLEPŠENIA (DIZAJN A EFEKTY) --- 
========================================= */

/* Tlačidlo Zavolať ako pilulka (rovnaký tvar ako WA) */
.btn-pill-cta {
    background-color: var(--accent) !important;
    color: white !important;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 900;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    box-shadow: 0 10px 20px rgba(228, 108, 49, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
}
.btn-pill-cta:hover { 
    transform: scale(1.05) translateY(-3px); 
    box-shadow: 0 15px 25px rgba(228, 108, 49, 0.4); 
    background-color: #d15d26 !important;
}

/* Karta pre hlavný nadpis Cenníka */
.cennik-heading-wrapper {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 20px;
}
.cennik-heading-card {
    background: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    display: inline-block;
    color: var(--dark);
    font-weight: 900;
    font-size: 1.8rem;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    border-bottom: 4px solid var(--primary);
    margin: 0;
}

/* Tabuľka Cenníka s plávajúcimi riadkami */
.cennik-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px; /* Vytvorí medzeru medzi riadkami */
}

/* Dizajn samostatného riadku */
.cennik-row {
    background: var(--white);
    transition: all 0.4s ease; /* Pomalý, plynulý prechod bez blikania */
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

/* Striedanie farieb (párne riadky majú jemný nádych firemnej modrej) */
.cennik-row:nth-child(even) {
    background: rgba(62, 188, 238, 0.04); 
}

/* Hover efekt (nadvihnutie + firemný oranžový tieň) */
.cennik-row:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 12px 25px rgba(228, 108, 49, 0.25);
    z-index: 10;
    position: relative;
}

/* Bunky v tabuľke (zaoblenie okrajov pre plávajúci efekt) */
.cennik-row td {
    padding: 18px 25px;
}
.cennik-row td:first-child {
    font-weight: 600;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    color: var(--text);
}
.cennik-row td:last-child {
    text-align: right;
    font-weight: 900;
    color: var(--dark);
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}
/* =========================================
   --- ANIMÁCIE A HOVER EFEKTY (SLUŽBY) --- 
========================================= */

/* Scroll Reveal (Postupné odhaľovanie zospodu) */
.reveal-element {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: opacity, transform;
}
.reveal-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Oživenie textových blokov (Hover karta s pásikom) */
.text-hover-box {
    padding: 20px 25px;
    border-radius: 16px;
    transition: all 0.4s ease;
    border-left: 4px solid transparent;
    background: transparent;
    margin-left: -25px; /* Kompenzácia paddingu, aby text lícoval s fotkami */
}
.text-hover-box:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    border-left: 4px solid var(--accent); /* Oranžový pásik zľava */
}

/* Prispôsobenie pre mobily (menší padding) */
@media (max-width: 768px) {
    .text-hover-box {
        padding: 15px;
        margin-left: -15px;
    }
}
/* =========================================
   --- KOMPLETNÁ OPRAVA MOBILNEJ VERZIE --- 
========================================= */

@media (max-width: 900px) {
    /* 1. Oprava Navbaru a Menu */
    .nav-links {
        padding: 20px !important; /* Odsadenie od krajov displeja */
        text-align: center;
        align-items: center;
    }

    .nav-links > a, .dropdown > a {
        width: 100%;
        padding: 15px 0;
        justify-content: center; /* Vycentrovanie textu v menu */
    }

   /* Oprava pilulky telefónneho čísla v mobilnom menu */
    .nav-tel {
        display: flex !important;
        width: fit-content !important; /* Pilulka sa nepreťahuje na celú šírku */
        margin: 20px auto !important; /* Dokonalé vycentrovanie v menu */
        padding: 12px 35px !important; /* Vytvorí priestor (vzdušnosť) vpravo a vľavo od textu */
        justify-content: center;
        align-items: center;
        gap: 12px !important; /* Medzera medzi ikonou a číslom */
        white-space: nowrap;
        border-radius: 50px !important; /* Tvar pilulky */
    }

    /* Špecifické nastavenie pre ORANŽOVÚ ikonu v pilulke */
    .nav-tel i {
        color: var(--accent) !important; /* Oranžová farba z loga */
        font-size: 1.1rem !important;
        margin: 0 !important; /* Odstránenie prípadných bočných okrajov ikony */
    }
    /* 2. Oprava Dropdownu (Služby) */
    .dropdown-content {
        padding-left: 0 !important;
        text-align: center;
        background: #f1f5f9 !important;
        border-radius: 12px;
        margin: 5px 10px 15px 10px;
    }

    /* 3. Oprava Galérie (2 fotky vedľa seba na mobile) */
    .masonry-grid {
        grid-template-columns: 1fr 1fr !important; /* VŽDY 2 stĺpce */
        gap: 10px !important;
        padding: 0 5px;
    }

    /* Prispôsobenie kariet v galérii pre 2 stĺpce */
    .badge-pred, .badge-po {
        font-size: 0.7rem !important;
        padding: 4px 8px !important;
        top: 8px !important;
        left: 8px !important;
    }

    .cta-card-gallery {
        grid-column: span 2; /* Reklamná karta v galérii bude na celú šírku */
        min-height: auto !important;
        padding: 30px 20px !important;
    }

    /* 4. Oprava textových sekcií na podstránkach */
    .content-area {
        padding: 30px 15px !important; /* Odsadenie textu od okrajov mobilu */
    }
}

/* Oprava pre veľmi malé mobily */
@media (max-width: 400px) {
    .masonry-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    .cennik-heading-card {
        font-size: 1.3rem !important;
        padding: 10px 20px !important;
    }
}