/*
Theme Name: JUKO
Theme URI: https://juko.sk
Description: JUKO s.r.o - ISP web
Author: JUKO s.r.o
Version: 2.0
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --dark:    #0f1623;
    --dark2:   #161d2e;
    --dark3:   #1e2638;
    --light:   #f5f7fa;
    --light2:  #edf0f5;
    --accent:  #00d4a0;
    --yellow:  #c8e600;
    --white:   #ffffff;
    --text:    #2d3748;
    --muted:   #a0aec0;
    --border-d: rgba(255,255,255,0.08);
    --border-l: rgba(0,0,0,0.1);
}

body {
    background: var(--dark2);
    color: var(--white);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; transition: color .3s; }
a:hover { color: var(--white); }
h1,h2,h3,h4 { font-weight: 800; line-height: 1.15; }
img { max-width: 100%; height: auto; display: block; }

/* ── TOPBAR ── */
.topbar {
    background: var(--dark);
    padding: .55rem 3rem;
    display: flex;
    gap: 2.5rem;
    align-items: center;
    font-size: .88rem;
    border-bottom: 1px solid var(--border-d);
}
.topbar a { color: var(--muted); display: flex; align-items: center; gap: .4rem; }
.topbar a:hover { color: var(--white); }
.topbar .webmail-link { margin-left: auto; color: var(--accent); font-weight: 600; }

/* ── HEADER ── */
.site-header {
    background: var(--dark);
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid var(--border-d);
}

.site-logo {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    line-height: 1;
}
.site-logo span { color: var(--accent); }

.site-nav { display: flex; align-items: center; }
.site-nav a {
    color: var(--muted);
    font-weight: 500;
    padding: .5rem 1.1rem;
    font-size: .92rem;
    transition: color .3s;
    white-space: nowrap;
}
.site-nav a:hover, .site-nav a.current { color: var(--white); }

/* ── HERO SLIDER ── */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--dark);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .9s ease;
    pointer-events: none;
}
.slide.active { opacity: 1; pointer-events: auto; }

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
    transition: transform 9s ease;
}
.slide.active .slide-bg { transform: scale(1); }

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(8,12,22,.92) 30%, rgba(8,12,22,.45) 60%, rgba(8,12,22,.15) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.slide-inner { max-width: 580px; }

.slide-inner h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--white);
}

.slide-features {
    list-style: none;
    margin-bottom: 2.5rem;
}
.slide-features li {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: .9rem;
    font-size: 1.05rem;
    color: rgba(255,255,255,.85);
}

/* Slider dots - left */
.slider-dots {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: .8rem;
}
.dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
    cursor: pointer;
    border: none;
    padding: 0;
    transition: all .3s;
}
.dot.active { background: var(--white); transform: scale(1.4); }

/* ── CHECKMARKS ── */
.chk-y {
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--yellow); color: var(--dark);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: .65rem; font-weight: 900; flex-shrink: 0;
}
.chk-g {
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--accent); color: var(--dark);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: .65rem; font-weight: 900; flex-shrink: 0;
}

/* ── BUTTONS ── */
.btn {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: .85rem 2.2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    transition: all .3s;
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.btn:hover { opacity: .88; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,212,160,.3); color: var(--dark); }
.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    margin-left: 1rem;
}
.btn-outline:hover { background: var(--accent); color: var(--dark); }
.btn-block { display: block; text-align: center; }

/* ── DARK SECTIONS ── */
.sect-dark {
    background: var(--dark2);
    padding: 5rem 3rem;
    color: var(--white);
}
.sect-darker {
    background: var(--dark);
    padding: 5rem 3rem;
    color: var(--white);
}

/* ── LIGHT SECTIONS ── */
.sect-light {
    background: var(--white);
    padding: 5rem 3rem;
    color: var(--text);
}
.sect-light h2, .sect-light h3, .sect-light h4 { color: var(--text); }
.sect-light p { color: #4a5568; }

/* ── INNER WRAPPER ── */
.inner { max-width: 1200px; margin: 0 auto; }

.sect-title { text-align: center; margin-bottom: 3.5rem; }
.sect-title h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.3rem);
    font-weight: 900;
    margin-bottom: .5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.sect-title h2.accent { color: var(--accent); }
.sect-title h2.yellow { color: var(--yellow); }
.sect-title .arr {
    display: inline-block;
    width: 36px; height: 36px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: .8rem auto 0;
    font-size: 1.1rem;
    color: var(--dark);
}

/* ── COVERAGE ── */
.villages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(175px,1fr));
    gap: .5rem 1rem;
    max-width: 1050px;
    margin: 0 auto;
}
.village {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .45rem 0;
    font-size: .95rem;
    color: var(--accent);
    font-weight: 500;
}
.village svg, .village .vi { color: var(--yellow); flex-shrink: 0; }

/* ── 2-COL SECTION (services + why us) ── */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.two-col h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.8rem;
}
.two-col h2.y { color: var(--yellow); }
.two-col h2.g { color: var(--accent); }

.service-list { list-style: none; }
.service-list li {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: .6rem 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    font-size: .95rem;
    color: rgba(255,255,255,.8);
}
.service-list li .sico {
    width: 26px; height: 26px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1rem;
    color: var(--accent);
    flex-shrink: 0;
}

.why-text p { color: rgba(255,255,255,.75); margin-bottom: 1rem; font-size: .97rem; }

/* ── DOCUMENTS ── */
.docs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 3rem;
    max-width: 800px;
    margin: 0 auto;
}
.doc-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-l);
    cursor: pointer;
    transition: all .3s;
    text-decoration: none;
    color: var(--text);
}
.doc-item:hover { color: var(--accent); }
.doc-icon {
    width: 50px; height: 50px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
    flex-shrink: 0;
}
.doc-item span { font-size: 1rem; font-weight: 700; }

/* ── CONTACT FORM SECTION ── */
.contact-hero {
    position: relative;
    padding: 5rem 3rem;
    overflow: hidden;
}
.contact-hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1499951360447-b19be8fe80f5?w=1400&q=80') center/cover no-repeat;
    filter: brightness(.25);
}
.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
}
.contact-hero h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--accent);
    text-align: center;
    margin-bottom: .5rem;
    letter-spacing: 1px;
}
.contact-hero p { text-align: center; color: var(--muted); margin-bottom: 2.5rem; }

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.contact-form-grid .full { grid-column: 1 / -1; }

.cf-input {
    width: 100%;
    padding: .9rem 1.2rem;
    background: rgba(255,255,255,.92);
    border: none;
    border-radius: 6px;
    font-family: inherit;
    font-size: .95rem;
    color: var(--text);
    outline: none;
    transition: box-shadow .3s;
}
.cf-input:focus { box-shadow: 0 0 0 3px rgba(0,212,160,.4); }

.cf-check { display: flex; align-items: flex-start; gap: .7rem; font-size: .85rem; color: var(--muted); }
.cf-check input { margin-top: .15rem; flex-shrink: 0; }
.cf-check a { color: var(--accent); }

.cf-submit {
    display: block;
    margin: 1.5rem auto 0;
    background: var(--accent);
    color: var(--dark);
    padding: .85rem 3rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all .3s;
}
.cf-submit:hover { opacity: .88; transform: translateY(-2px); }

/* ── FOOTER ── */
.site-footer {
    background: var(--dark);
    border-top: 1px solid var(--border-d);
    padding: 3.5rem 3rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
    align-items: start;
}
.f-logo-wrap .f-logo {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: var(--white);
    display: block;
    margin-bottom: 1.2rem;
}
.f-logo-wrap .f-logo span { color: var(--accent); }
.f-logo-wrap p { color: var(--muted); font-size: .9rem; line-height: 1.8; max-width: 380px; }
.f-logo-wrap a.gdpr { color: var(--muted); font-size: .88rem; display: inline-block; margin-top: 1rem; }
.f-logo-wrap a.gdpr:hover { color: var(--accent); }

.f-contact h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}
.f-contact-list { list-style: none; }
.f-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    margin-bottom: 1rem;
}
.f-contact-list .fci {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(0,212,160,.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: .1rem;
}
.f-contact-list .fct { font-size: .92rem; }
.f-contact-list .fct a { color: var(--white); }
.f-contact-list .fct a:hover { color: var(--accent); }
.f-contact-list .fct small { display: block; color: var(--muted); font-size: .8rem; }

.f-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-d);
    color: var(--muted);
    font-size: .84rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* ── PAGE ── */
.page-wrap { max-width: 960px; margin: 0 auto; padding: 5rem 2rem; }
.page-wrap h1 { font-size: 2.5rem; margin-bottom: 2rem; }
.page-wrap p { color: var(--muted); margin-bottom: 1.2rem; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5rem; }
.p-card {
    background: rgba(255,255,255,.04);
    border: 2px solid var(--border-d);
    border-radius: 10px;
    padding: 2.5rem;
    position: relative;
    transition: all .3s;
}
.p-card:hover { border-color: rgba(0,212,160,.4); transform: translateY(-8px); }
.p-card.feat { border-color: var(--accent); background: rgba(0,212,160,.06); }
.badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: var(--dark);
    padding: .3rem 1.2rem; border-radius: 20px;
    font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; white-space: nowrap;
}
.p-card h3 { font-size: 1.4rem; margin: .8rem 0; }
.price { font-size: 3rem; font-weight: 900; color: var(--accent); line-height: 1; }
.price small { font-size: 1rem; color: var(--muted); font-weight: 400; }
.price-sub { font-size: .85rem; color: var(--muted); margin: .4rem 0 1.5rem; }
.feat-list { list-style: none; padding: 1.5rem 0; border-top: 1px solid var(--border-d); border-bottom: 1px solid var(--border-d); margin: 1rem 0; }
.feat-list li { display: flex; align-items: center; gap: .75rem; padding: .4rem 0; color: var(--muted); font-size: .93rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .topbar, .site-header { padding-left: 1.5rem; padding-right: 1.5rem; }
    .sect-dark, .sect-darker, .sect-light { padding: 4rem 1.5rem; }
    .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .docs-grid { grid-template-columns: 1fr; }
    .contact-form-grid { grid-template-columns: 1fr; }
    .contact-form-grid .full { grid-column: 1; }
}
@media (max-width: 600px) {
    .hero-slider { height: 85vh; }
    .slide-content { padding: 0 1.5rem; }
    .topbar { display: none; }
    .site-nav { display: none; }
}
