/* ============================================================
   INDEX STRÁNKA - FINÁLNY DESIGN (HERO + LOGO + SLIDER)
   ============================================================ */

/* 1. ZÁKLADNÉ NASTAVENIE HERO */
.hero-new {
    height: 100vh;
    min-height: 650px;
    background: #050816; /* Tmavý základ, kým sa nenačíta fotka */
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Silný gradient pre čitateľnosť textu na ľavej strane */
    background: linear-gradient(110deg, rgba(5, 8, 22, 1) 35%, rgba(5, 8, 22, 0.4) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
    width: 100%;
}

.hero-content-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between;
    gap: 40px;
}

/* 2. TEXTY A TLAČIDLÁ */
.hero-text-block {
    flex: 0 1 55%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #4da3ff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.hero-text-block h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 900;
}

.hero-text-block h1 span {
    color: #4da3ff;
}

.hero-description {
    max-width: 580px;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #cbd5e0;
    margin-bottom: 40px;
}

.hero-action-group {
    display: flex;
    gap: 20px;
    margin-bottom: 45px;
}

.btn-main-hero {
    background: #4da3ff;
    color: white;
    padding: 16px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(77, 163, 255, 0.3);
}

.btn-secondary-hero {
    background: rgba(255,255,255,0.05);
    color: white;
    padding: 16px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    transition: 0.3s;
}

.btn-main-hero:hover { background: #358ee0; transform: translateY(-3px); }

.hero-features {
    display: flex;
    gap: 30px;
    font-size: 0.95rem;
}

.hero-features i { color: #4da3ff; margin-right: 8px; }

/* 3. VEĽKÉ LOGO (ŠTÝL Z MENU) */
.hero-logo-block {
    flex: 0 1 40%;
    display: flex;
    justify-content: center;
}

.hero-big-logo-wrapper {
    animation: floatLogo 6s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(77, 163, 255, 0.2));
}

.logo.large-version {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo.large-version i {
    font-size: 9rem;
    color: #4da3ff;
    margin-bottom: 10px;
}

.logo.large-version .logo-text {
    font-size: 3.8rem;
    font-weight: 900;
    color: white;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.logo.large-version .logo-text span {
    color: #4da3ff;
}

/* 4. NEKONEČNÝ SLIDER */
.services-slider-section {
    padding: 100px 0;
    background: #f8fafc;
    overflow: hidden;
}

.slider-header {
    text-align: center;
    margin-bottom: 60px;
}

.slider-header h2 {
    color: #0a3d62;
    font-size: 2.5rem;
    font-weight: 800;
}

.accent-line {
    width: 70px; height: 5px;
    background: #4da3ff;
    margin: 15px auto;
    border-radius: 10px;
}

.slide-track {
    display: flex;
    gap: 30px;
    width: calc(320px * 12); /* 6 originálov + 6 duplikátov */
    animation: scrollSlider 40s linear infinite;
}

.slide-card {
    width: 320px;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    text-decoration: none;
}

.slide-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: 0.8s;
}

.slide-info {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(5, 8, 22, 0.9), transparent);
    color: white;
}

/* 5. ANIMÁCIE A RESPONZIVITA */
@keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes scrollSlider {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-320px * 6 - 180px)); }
}

@media (max-width: 992px) {
    .hero-content-wrapper { flex-direction: column; text-align: center; }
    .hero-text-block { flex: 1 1 100%; }
    .hero-action-group { justify-content: center; }
    .logo.large-version i { font-size: 6rem; }
    .logo.large-version .logo-text { font-size: 2.5rem; }
}
/* --- COMPACT CTA DESIGN (BEZ KRÍŽIKA) --- */
.cta-mini {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 280px;
    background: #ffffff;
    padding: 18px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 9999;
    display: flex;
    align-items: center;
    border-left: 4px solid #4da3ff; /* Modrý akcent na boku */
}

.cta-mini-content {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.cta-mini-content i {
    color: #4da3ff;
    font-size: 1.4rem;
}

.cta-mini-text h4 {
    margin: 0;
    font-size: 0.95rem;
    color: #0a3d62;
    font-weight: 800;
}

.cta-mini-text p {
    margin: 0;
    font-size: 0.8rem;
    color: #718096;
}

.cta-mini-link {
    margin-left: auto;
    background: #4da3ff;
    color: #ffffff;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    transition: 0.3s;
}

.cta-mini-link:hover {
    background: #358ee0;
    transform: translateY(-2px);
}