/* ============================================
   AUTOŠKOLA FIAMČÍK — Premium Visual Upgrade v3
   Inšpirácia: PureBliss, Wzoš, Svetlana, Šeliga
   SVG cesty, floating kategórie, glass cards,
   gradient text, aurora, counter animácie
   ============================================ */

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

:root {
    --primary: #855612;
    --primary-dark: #6B440E;
    --primary-light: #A06D1A;
    --primary-glow: rgba(133,86,18,.25);
    --gold: #C9A55A;
    --gold-light: #E2C992;
    --text: #808285;
    --heading: #1f2124;
    --link: #0274be;
    --green: #39b54a;
    --white: #FFFFFF;
    --bg-light: #F8F7F4;
    --bg-cream: #FDF8F0;
    --gray-100: #F1F3F5;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #ADB5BD;
    --gray-500: #6C757D;
    --gray-700: #343A40;
    --gray-800: #212529;
    --dark: #1A1710;
    --dark-medium: #2A2318;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
    --shadow-md: 0 8px 24px rgba(0,0,0,.08);
    --shadow-lg: 0 16px 48px rgba(0,0,0,.1);
    --shadow-glow: 0 8px 32px var(--primary-glow);
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: .35s cubic-bezier(.4,0,.2,1);
    --max-width: 1200px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.75;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--link); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--heading);
}
h2 { font-size: clamp(2rem, 4.5vw, 2.8rem); margin-bottom: 20px; }
h3 { font-size: clamp(1.3rem, 2.8vw, 1.6rem); }

.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* Custom Scrollbar (PureBliss/Svetlana inspired) */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold), var(--primary-dark));
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--gold-light), var(--primary)); }

/* ============================================
   KEYFRAME ANIMATIONS (25+)
   ============================================ */

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}
@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-25px, 30px) scale(1.08); }
    66% { transform: translate(35px, -15px) scale(0.92); }
}
@keyframes morph {
    0%, 100% { border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%; }
    33% { border-radius: 50% 50% 40% 60% / 60% 50% 50% 40%; }
    66% { border-radius: 40% 60% 60% 40% / 50% 40% 50% 60%; }
}
@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: .6; }
    50% { transform: scale(1.15); opacity: 1; }
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes ambientDrift {
    0% { transform: translateX(-3%) translateY(0); }
    50% { transform: translateX(2%) translateY(-2%); }
    100% { transform: translateX(3%) translateY(-1%); }
}
@keyframes rotateSlowly {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(133,86,18,.15); }
    50% { box-shadow: 0 0 40px rgba(133,86,18,.3); }
}

/* NEW — Driving school SVG road dashes */
@keyframes roadDash {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -120; }
}

/* NEW — Floating category labels */
@keyframes catFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: .12; }
    25% { transform: translate(8px, -15px) rotate(5deg); opacity: .2; }
    50% { transform: translate(-5px, -25px) rotate(-3deg); opacity: .15; }
    75% { transform: translate(12px, -10px) rotate(4deg); opacity: .22; }
}

/* NEW — Micro particles twinkle (Svetlana) */
@keyframes twinkle {
    0%, 100% { opacity: .15; transform: scale(.8); }
    50% { opacity: .6; transform: scale(1.2); }
}

/* NEW — Hero staggered entry */
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* NEW — Permanent nav shimmer (Wzoš) */
@keyframes navShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

/* NEW — Aurora drift for dark sections (Wzoš/Šeliga) */
@keyframes auroraDrift {
    0% { transform: translate(-10%, -5%) scale(1.2); opacity: .08; }
    33% { transform: translate(5%, 3%) scale(1.3); opacity: .12; }
    66% { transform: translate(-5%, -8%) scale(1.15); opacity: .06; }
    100% { transform: translate(-10%, -5%) scale(1.2); opacity: .08; }
}

/* NEW — Logo glow (PureBliss) */
@keyframes logoGlow {
    0%, 100% { text-shadow: 0 0 0 transparent; }
    50% { text-shadow: 0 0 20px rgba(201,165,90,.4), 0 0 40px rgba(201,165,90,.15); }
}

/* NEW — Gradient border rotation (Wzoš) */
@keyframes borderGradientRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* NEW — Hero steering wheel rotate */
@keyframes steeringRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* NEW — Number count highlight */
@keyframes countPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* NEW — Mystic pulse circles (Svetlana) */
@keyframes mysticPulse {
    0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: .06; border-color: rgba(201,165,90,.15); }
    50% { transform: translate(-50%,-50%) scale(1.08); opacity: .12; border-color: rgba(201,165,90,.3); }
}

/* NEW — Badge dot pulse */
@keyframes badgeDot {
    0%, 100% { background: var(--green); box-shadow: 0 0 0 0 rgba(57,181,74,.4); }
    50% { background: #4cdf60; box-shadow: 0 0 0 6px rgba(57,181,74,0); }
}

/* NEW — Letter spacing reveal for hero h1 */
@keyframes letterReveal {
    from { letter-spacing: 0.15em; opacity: 0; }
    to { letter-spacing: normal; opacity: 1; }
}

/* ============================================
   BUTTONS — Shimmer + Glow
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: var(--radius-lg);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: .8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
    transition: none;
}
.btn:hover::before {
    animation: shimmer .6s ease forwards;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-color: var(--primary);
}
.btn-primary:hover {
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(133,86,18,.35);
}
/* Hero CTA extra glow (PureBliss) */
.btn-hero {
    padding: 18px 44px;
    font-size: 16px;
    border-radius: 60px;
    animation: glowPulse 3s ease-in-out infinite;
}
.btn-hero:hover {
    box-shadow: 0 8px 40px rgba(133,86,18,.5), 0 0 60px rgba(201,165,90,.2);
}
.btn-outline-white {
    background: rgba(255,255,255,.08);
    color: var(--white);
    border-color: rgba(255,255,255,.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 60px;
    padding: 18px 44px;
    font-size: 16px;
}
.btn-outline-white:hover {
    background: rgba(255,255,255,.95);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255,255,255,.2);
}
.btn-green {
    background: linear-gradient(135deg, var(--green), #2e9a3e);
    color: var(--white);
    border-color: var(--green);
}
.btn-green:hover {
    border-color: #2e9a3e;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(57,181,74,.3);
}
.btn-sm { padding: 11px 24px; font-size: 14px; }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================
   NAVIGATION — Floating Pill + Glass + Shimmer
   (Inspired by PureBliss pill + Wzoš shimmer)
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 20px;
    transition: all .5s cubic-bezier(.4,0,.2,1);
    background: transparent;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 8px;
    transition: all .5s cubic-bezier(.4,0,.2,1);
}
/* Scrolled state — floating pill with glass effect */
.nav.scrolled {
    padding: 12px 20px;
}
.nav.scrolled .nav-inner {
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 60px;
    padding: 6px 24px;
    box-shadow:
        0 4px 30px rgba(0,0,0,.08),
        0 1px 0 rgba(255,255,255,.5) inset,
        0 0 0 1px rgba(133,86,18,.06);
}
/* Permanent shimmer line on scrolled nav (Wzoš) */
.nav.scrolled .nav-inner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 30%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    animation: navShimmer 4s ease-in-out infinite;
}

.nav-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 22px;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -.3px;
    transition: all var(--transition);
    position: relative;
}
.nav-logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    border-radius: 10px;
    letter-spacing: 0;
    flex-shrink: 0;
    transition: all var(--transition);
    box-shadow: 0 2px 12px rgba(133,86,18,.3);
}
.nav.scrolled .nav-logo { color: var(--heading); }
.nav-logo:hover { color: var(--gold); }
.nav-logo:hover .nav-logo-icon {
    transform: rotate(-5deg) scale(1.08);
    box-shadow: 0 4px 20px rgba(133,86,18,.4);
}

.nav-links { display: flex; gap: 6px; list-style: none; align-items: center; }
.nav-links a {
    color: rgba(255,255,255,.85);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all var(--transition);
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transition: all .4s cubic-bezier(.22,1,.36,1);
    border-radius: 2px;
    transform: translateX(-50%);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 60%; }
.nav-links a:hover { background: rgba(255,255,255,.08); color: var(--white); }
.nav-links a.active { color: var(--gold-light); }
.nav.scrolled .nav-links a { color: var(--gray-500); }
.nav.scrolled .nav-links a:hover { background: rgba(133,86,18,.05); color: var(--primary); }
.nav.scrolled .nav-links a.active { color: var(--primary); }

.nav-cta {
    padding: 10px 26px !important;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    color: var(--white) !important;
    border-radius: 50px !important;
    font-weight: 700;
    font-size: 14px !important;
    text-transform: uppercase;
    letter-spacing: .8px;
    transition: all var(--transition);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    box-shadow: 0 4px 20px rgba(133,86,18,.4);
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important;
}

/* Hamburger */
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 10;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 6px 0;
    transition: all .4s cubic-bezier(.4,0,.2,1);
    border-radius: 2px;
}
.nav.scrolled .nav-hamburger span { background: var(--heading); }

/* Mobile Drawer — Glass + Staggered (PureBliss) */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s;
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }
/* ============================================
   MOBILE FULLPAGE MENU — Dark + Glass Cards
   ============================================ */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: linear-gradient(160deg, #1A1710 0%, #0d0b07 50%, #1A1710 100%);
    z-index: 2000;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }

/* Decorative bg */
.mm-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.mm-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
    transition: opacity .8s ease .2s;
}
.mobile-menu.open .mm-orb { opacity: 1; }
.mm-orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(133,86,18,.2) 0%, transparent 70%);
    top: -60px;
    right: -80px;
}
.mm-orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(201,165,90,.12) 0%, transparent 70%);
    bottom: 10%;
    left: -60px;
}
.mm-roads {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .6s ease .3s;
}
.mobile-menu.open .mm-roads { opacity: 1; }
.mm-roads path {
    fill: none;
    stroke: rgba(201,165,90,.06);
    stroke-width: 2;
    stroke-dasharray: 8 12;
}

/* Header */
.mm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    position: relative;
    z-index: 1;
}
.mm-brand {
    text-decoration: none;
}
.mm-close {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(201,165,90,.15);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s cubic-bezier(.4,0,.2,1);
}
.mm-close span {
    position: absolute;
    width: 18px;
    height: 2px;
    background: rgba(255,255,255,.6);
    border-radius: 2px;
    transition: all .3s ease;
}
.mm-close span:first-child { transform: rotate(45deg); }
.mm-close span:last-child { transform: rotate(-45deg); }
.mm-close:hover {
    background: rgba(201,165,90,.1);
    border-color: rgba(201,165,90,.3);
    transform: rotate(90deg);
}
.mm-close:hover span { background: var(--gold); }

/* Nav card grid */
.mm-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 20px 24px;
    flex: 1;
    align-content: center;
    position: relative;
    z-index: 1;
}
.mm-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 28px 16px;
    background:
        radial-gradient(ellipse at top left, rgba(133,86,18,.08) 0%, transparent 60%),
        rgba(255,255,255,.03);
    border: 1px solid rgba(201,165,90,.08);
    border-radius: var(--radius-xl);
    text-decoration: none;
    transition: all .4s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(.9) translateY(12px);
}
.mm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity .3s ease;
}
.mm-card:hover::before,
.mm-card:active::before { opacity: 1; }
.mm-card:hover,
.mm-card:active {
    background:
        radial-gradient(ellipse at top left, rgba(133,86,18,.15) 0%, transparent 60%),
        rgba(255,255,255,.06);
    border-color: rgba(201,165,90,.2);
    transform: scale(1) translateY(0);
}
.mobile-menu.open .mm-card {
    opacity: 1;
    transform: scale(1) translateY(0);
}
.mobile-menu.open .mm-card:nth-child(1) { transition-delay: .08s; }
.mobile-menu.open .mm-card:nth-child(2) { transition-delay: .12s; }
.mobile-menu.open .mm-card:nth-child(3) { transition-delay: .16s; }
.mobile-menu.open .mm-card:nth-child(4) { transition-delay: .20s; }
.mobile-menu.open .mm-card:nth-child(5) { transition-delay: .24s; }
.mobile-menu.open .mm-card:nth-child(6) { transition-delay: .28s; }

.mm-card-icon {
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(133,86,18,.12), rgba(201,165,90,.18));
    border-radius: 50%;
    transition: all .4s cubic-bezier(.34,1.56,.64,1);
}
.mm-card:hover .mm-card-icon,
.mm-card:active .mm-card-icon {
    background: linear-gradient(135deg, var(--primary), var(--gold));
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 20px var(--primary-glow);
}
.mm-card-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: rgba(255,255,255,.8);
    text-transform: uppercase;
    letter-spacing: .8px;
}
.mm-card:hover .mm-card-label { color: var(--gold-light); }

/* CTA */
.mm-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 24px 16px;
    padding: 16px 28px;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius-xl);
    text-transform: uppercase;
    letter-spacing: .8px;
    transition: all var(--transition);
    box-shadow: 0 4px 24px rgba(133,86,18,.35);
    position: relative;
    z-index: 1;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
}
.mm-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
}
.mobile-menu.open .mm-cta {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .35s;
}
.mm-cta:hover {
    box-shadow: 0 8px 32px rgba(133,86,18,.5);
    color: var(--white);
}
.mm-cta:hover::before { animation: shimmer .6s ease forwards; }
.mm-cta-icon { font-size: 20px; }

/* Contact glass cards */
.mm-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0 24px 28px;
    position: relative;
    z-index: 1;
}
.mm-contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background:
        radial-gradient(ellipse at top left, rgba(133,86,18,.08) 0%, transparent 60%),
        rgba(255,255,255,.03);
    border: 1px solid rgba(201,165,90,.08);
    border-radius: var(--radius-xl);
    text-decoration: none;
    transition: all .4s cubic-bezier(.4,0,.2,1);
    opacity: 0;
    transform: translateY(8px);
}
.mobile-menu.open .mm-contact-card {
    opacity: 1;
    transform: translateY(0);
}
.mobile-menu.open .mm-contact-card:nth-child(1) { transition-delay: .36s; }
.mobile-menu.open .mm-contact-card:nth-child(2) { transition-delay: .40s; }
.mm-contact-card:hover,
.mm-contact-card:active {
    background:
        radial-gradient(ellipse at top left, rgba(133,86,18,.15) 0%, transparent 60%),
        rgba(255,255,255,.06);
    border-color: rgba(201,165,90,.2);
}
.mm-contact-icon {
    font-size: 22px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(133,86,18,.12), rgba(201,165,90,.18));
    border-radius: 50%;
    flex-shrink: 0;
    transition: all .4s cubic-bezier(.34,1.56,.64,1);
}
.mm-contact-card:hover .mm-contact-icon,
.mm-contact-card:active .mm-contact-icon {
    background: linear-gradient(135deg, var(--primary), var(--gold));
    box-shadow: 0 4px 16px var(--primary-glow);
}
.mm-contact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.mm-contact-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: rgba(255,255,255,.4);
    font-weight: 600;
}
.mm-contact-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    color: rgba(255,255,255,.8);
}

/* ============================================
   HERO — Complete Redesign
   SVG Road Lines + Floating Categories +
   Micro Particles + Staggered Entry + Counters
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('/img/bg4.webp') center/cover no-repeat;
    padding: 120px 20px 80px;
    overflow: hidden;
}
/* Dark gradient overlay with richer depth */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg, rgba(20,17,10,.82) 0%, rgba(42,35,24,.7) 40%, rgba(26,23,16,.85) 100%);
    z-index: 1;
}
/* Stars/micro-dots background (Svetlana) */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(1px 1px at 15% 25%, rgba(255,255,255,.3) 50%, transparent 100%),
        radial-gradient(1.5px 1.5px at 40% 65%, rgba(201,165,90,.25) 50%, transparent 100%),
        radial-gradient(1px 1px at 65% 20%, rgba(255,255,255,.2) 50%, transparent 100%),
        radial-gradient(1.5px 1.5px at 80% 50%, rgba(201,165,90,.2) 50%, transparent 100%),
        radial-gradient(1px 1px at 25% 80%, rgba(255,255,255,.15) 50%, transparent 100%),
        radial-gradient(1px 1px at 55% 40%, rgba(255,255,255,.2) 50%, transparent 100%),
        radial-gradient(1.5px 1.5px at 90% 75%, rgba(201,165,90,.15) 50%, transparent 100%),
        radial-gradient(1px 1px at 10% 55%, rgba(255,255,255,.2) 50%, transparent 100%),
        radial-gradient(1px 1px at 75% 85%, rgba(255,255,255,.15) 50%, transparent 100%);
    animation: twinkle 6s ease-in-out infinite alternate;
    pointer-events: none;
}

/* Floating Orbs (enhanced from PureBliss) */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    filter: blur(60px);
}
.hero-orb-1 {
    width: 500px;
    height: 500px;
    top: -15%;
    right: -10%;
    background: radial-gradient(circle, rgba(133,86,18,.25) 0%, transparent 70%);
    animation: orbFloat1 15s ease-in-out infinite, morph 12s ease-in-out infinite;
}
.hero-orb-2 {
    width: 400px;
    height: 400px;
    bottom: -10%;
    left: -8%;
    background: radial-gradient(circle, rgba(201,165,90,.2) 0%, transparent 70%);
    animation: orbFloat2 18s ease-in-out infinite, morph 14s ease-in-out infinite reverse;
}
.hero-orb-3 {
    width: 250px;
    height: 250px;
    top: 35%;
    left: 15%;
    background: radial-gradient(circle, rgba(226,201,146,.15) 0%, transparent 70%);
    animation: orbFloat1 12s ease-in-out infinite reverse;
    filter: blur(40px);
}

/* Dot pattern overlay */
.hero-pattern {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(circle, rgba(201,165,90,.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

/* SVG Road Lines — Animated dashed paths (driving school theme) */
.hero-road-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: .6;
}
.hero-road-line {
    fill: none;
    stroke-linecap: round;
}
.hero-road-1 {
    stroke: rgba(201,165,90,.12);
    stroke-width: 2;
    stroke-dasharray: 20 30;
    animation: roadDash 4s linear infinite;
}
.hero-road-2 {
    stroke: rgba(255,255,255,.06);
    stroke-width: 1.5;
    stroke-dasharray: 15 25;
    animation: roadDash 5s linear infinite reverse;
}
.hero-road-3 {
    stroke: rgba(201,165,90,.08);
    stroke-width: 1;
    stroke-dasharray: 10 20;
    animation: roadDash 6s linear infinite;
}

/* Floating Category Labels (unique driving school element) */
.hero-float-cats {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.hero-cat {
    position: absolute;
    left: var(--x);
    top: var(--y);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: rgba(201,165,90,.1);
    text-shadow: 0 0 30px rgba(201,165,90,.15);
    animation: catFloat 12s ease-in-out infinite;
    animation-delay: var(--delay);
    user-select: none;
}

/* Micro particles (Svetlana twinkle stars) */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.hero-particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold-light);
    border-radius: 50%;
    animation: twinkle var(--dur, 4s) ease-in-out infinite;
    animation-delay: var(--d, 0s);
    opacity: .2;
}

/* Steering wheel ring decoration */
.hero-wheel {
    position: absolute;
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    border: 1px solid rgba(201,165,90,.06);
    border-radius: 50%;
    animation: steeringRotate 120s linear infinite;
}
.hero-wheel::before {
    content: '';
    position: absolute;
    inset: 30px;
    border: 1px dashed rgba(201,165,90,.04);
    border-radius: 50%;
}
.hero-wheel::after {
    content: '';
    position: absolute;
    inset: 60px;
    border: 1px solid rgba(201,165,90,.03);
    border-radius: 50%;
}

/* Pulsing ring (Svetlana mysticPulse) */
.hero-pulse-ring {
    position: absolute;
    width: 650px;
    height: 650px;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(201,165,90,.08);
    border-radius: 50%;
    animation: mysticPulse 6s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
}
/* Staggered hero entry animations */
.hero-anim {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn .8s cubic-bezier(.4,0,.2,1) forwards;
    animation-delay: var(--anim-delay, 0s);
}

/* Badge with live dot */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: rgba(133,86,18,.15);
    border: 1px solid rgba(201,165,90,.25);
    border-radius: 50px;
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 28px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: badgeDot 2s ease-in-out infinite;
    flex-shrink: 0;
}

/* Gold separator line */
.hero-separator {
    width: 80px;
    height: 2px;
    margin: 0 auto 24px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
    position: relative;
}
.hero-separator::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(201,165,90,.5);
}

.hero h1 {
    color: var(--white);
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    margin-bottom: 24px;
    line-height: 1.15;
    font-weight: 800;
}
.hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--primary-light));
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    color: rgba(255,255,255,.8);
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-style: italic;
    font-weight: 300;
}
.hero-claim {
    color: rgba(255,255,255,.55);
    font-size: 1.15rem;
    margin-bottom: 40px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-weight: 500;
}

/* Stats bar in hero — with counter animation support */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 52px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,.08);
    position: relative;
}
/* Decorative dots on border */
.hero-stats::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: -40px 0 0 rgba(201,165,90,.3), 40px 0 0 rgba(201,165,90,.3);
}
.hero-stat { text-align: center; }
.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: inline;
    transition: transform .3s ease;
}
.hero-stat-num.counted {
    animation: countPulse .4s ease;
}
.hero-stat-suffix {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
    margin-left: 2px;
}
.hero-stat-label {
    font-size: 14px;
    color: rgba(255,255,255,.5);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* Hero bottom — decorative angled cut with gold accent */
.hero-bottom {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 3;
    pointer-events: none;
    line-height: 0;
}
.hero-bottom svg {
    display: block;
    width: 100%;
    height: auto;
}
/* Decorative gold line above the wave */
.hero-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 1;
}

/* ============================================
   SVG WAVE DIVIDERS (PureBliss/Wzoš)
   ============================================ */
.wave-divider {
    display: block;
    width: 100%;
    height: auto;
    margin: -2px 0;
    position: relative;
    z-index: 3;
}
.wave-divider path { transition: fill .3s ease; }

/* ============================================
   SECTION BASE — Enhanced with Aurora + Glass
   ============================================ */
.section {
    padding: 110px 0;
    position: relative;
}
.section-white {
    background: var(--white);
}
/* Light sections with gradient mesh (Wzoš) */
.section-light {
    background-color: var(--bg-light);
    background-image:
        radial-gradient(ellipse 80% 50% at 5% 95%, rgba(133,86,18,.04) 0%, transparent 60%),
        radial-gradient(ellipse 50% 70% at 95% 10%, rgba(201,165,90,.04) 0%, transparent 60%),
        radial-gradient(circle, rgba(133,86,18,.02) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 28px 28px;
}
/* Section white with subtle top/bottom borders */
.section-white + .section-light,
.section-light + .section-white {
    border-top: 1px solid rgba(133,86,18,.04);
}

/* Section headers with gradient text (Wzoš) */
.section-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
}
.section-header h2 {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--heading) 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* Animated underline — scaleX on scroll reveal (Wzoš) */
.section-header h2::after {
    content: '';
    display: block;
    width: 100%;
    max-width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    margin: 16px auto 0;
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .8s cubic-bezier(.22,1,.36,1);
}
.section-header h2.visible::after { transform: scaleX(1); }
.section-header p {
    max-width: 700px;
    margin: 20px auto 0;
    color: var(--text);
    font-size: 1.2rem;
    line-height: 1.75;
}

/* Section dividers (Šeliga ornamental) */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 20px;
}
.divider-line {
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-300));
}
.divider-line:last-child {
    background: linear-gradient(90deg, var(--gray-300), transparent);
}
.divider-symbol {
    color: var(--gold);
    font-size: 14px;
    opacity: .6;
    animation: rotateSlowly 30s linear infinite;
}

/* ============================================
   CONTACT BAND — Dark Premium Section
   Animated orbs, SVG roads, glass cards
   ============================================ */
.contact-band {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(160deg, #0f0d08 0%, var(--dark) 40%, var(--dark-medium) 70%, #0f0d08 100%);
    overflow: hidden;
}

/* Gold lines top & bottom */
.contact-band-topline,
.contact-band-bottomline {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 5%, var(--gold) 50%, transparent 95%);
    z-index: 4;
    opacity: .6;
}
.contact-band-topline { top: 0; }
.contact-band-bottomline { bottom: 0; }

/* Background layer — orbs, roads, grid */
.contact-band-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* Floating glowing orbs */
.contact-band-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}
.contact-band-orb-1 {
    width: 400px;
    height: 400px;
    top: -30%;
    left: -5%;
    background: radial-gradient(circle, rgba(133,86,18,.2) 0%, transparent 70%);
    animation: orbFloat1 18s ease-in-out infinite;
}
.contact-band-orb-2 {
    width: 350px;
    height: 350px;
    bottom: -25%;
    right: -5%;
    background: radial-gradient(circle, rgba(201,165,90,.15) 0%, transparent 70%);
    animation: orbFloat2 22s ease-in-out infinite;
}
.contact-band-orb-3 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(226,201,146,.1) 0%, transparent 70%);
    animation: orbFloat1 14s ease-in-out infinite reverse;
    filter: blur(40px);
}

/* Animated SVG road dashes */
.contact-band-roads {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: .5;
}
.contact-road-1 {
    fill: none;
    stroke: rgba(201,165,90,.1);
    stroke-width: 1.5;
    stroke-dasharray: 16 24;
    stroke-linecap: round;
    animation: roadDash 5s linear infinite;
}
.contact-road-2 {
    fill: none;
    stroke: rgba(255,255,255,.04);
    stroke-width: 1;
    stroke-dasharray: 10 20;
    stroke-linecap: round;
    animation: roadDash 7s linear infinite reverse;
}

/* Grid pattern overlay */
.contact-band-grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(201,165,90,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,165,90,.03) 1px, transparent 1px);
    background-size: 48px 48px;
}

/* Inner layout */
.contact-band-inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    flex-wrap: wrap;
}

/* Each contact item — glass button style */
.contact-band-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 36px 48px;
    text-decoration: none;
    color: var(--white);
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(201,165,90,.1);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all .5s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 250px;
    max-width: 380px;
}
/* Shimmer sweep on hover */
.contact-band-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201,165,90,.08), transparent);
    transition: none;
}
.contact-band-item:hover::before {
    animation: shimmer .8s ease forwards;
}
/* Bottom gold line on hover */
.contact-band-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary));
    transform: scaleX(0);
    transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.contact-band-item:hover::after { transform: scaleX(1); }
.contact-band-item:hover {
    background: rgba(133,86,18,.08);
    border-color: rgba(201,165,90,.3);
    transform: translateY(-6px);
    box-shadow:
        0 20px 60px rgba(0,0,0,.3),
        0 0 40px rgba(133,86,18,.1);
}

/* Icon — large circle */
.contact-band-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(133,86,18,.15), rgba(201,165,90,.1));
    border: 1px solid rgba(201,165,90,.15);
    border-radius: 50%;
    font-size: 26px;
    margin-bottom: 4px;
    transition: all .5s cubic-bezier(.34,1.56,.64,1);
}
.contact-band-item:hover .contact-band-icon {
    background: linear-gradient(135deg, var(--primary), var(--gold));
    border-color: var(--gold);
    transform: scale(1.12) rotate(-5deg);
    box-shadow: 0 8px 28px rgba(133,86,18,.4);
}

/* Label — small uppercase */
.contact-band-label {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold);
    opacity: .7;
    transition: opacity .4s ease;
}
.contact-band-item:hover .contact-band-label { opacity: 1; }

/* Value — large bold */
.contact-band-value {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .3px;
    transition: all .4s ease;
}
.contact-band-item:hover .contact-band-value {
    color: var(--gold-light);
    text-shadow: 0 0 20px rgba(201,165,90,.3);
}

/* Diamond divider between items */
.contact-band-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
}
.contact-band-diamond {
    color: var(--gold);
    font-size: 10px;
    opacity: .3;
    animation: pulse 3s ease-in-out infinite;
}

/* ============================================
   DUO GRID — Kurzy & Testy combined
   ============================================ */
.duo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

/* Shared card base */
.duo-card {
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    transition: all .5s cubic-bezier(.4,0,.2,1);
}
.duo-card:hover {
    transform: translateY(-6px);
}

/* Dark card — Kurzy */
.duo-card-dark {
    background: linear-gradient(160deg, #0f0d08 0%, var(--dark) 40%, var(--dark-medium) 100%);
    border: 1px solid rgba(201,165,90,.1);
    box-shadow: 0 16px 50px rgba(0,0,0,.15);
}
.duo-card-dark:hover {
    border-color: rgba(201,165,90,.25);
    box-shadow: 0 24px 70px rgba(0,0,0,.25), 0 0 40px rgba(133,86,18,.08);
}

/* Dark card background effects */
.duo-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.duo-card-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
}
.duo-card-orb-1 {
    width: 250px;
    height: 250px;
    top: -20%;
    right: -10%;
    background: radial-gradient(circle, rgba(133,86,18,.2) 0%, transparent 70%);
    animation: orbFloat1 16s ease-in-out infinite;
}
.duo-card-orb-2 {
    width: 200px;
    height: 200px;
    bottom: -15%;
    left: -8%;
    background: radial-gradient(circle, rgba(201,165,90,.12) 0%, transparent 70%);
    animation: orbFloat2 20s ease-in-out infinite;
}
.duo-card-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle, rgba(201,165,90,.04) 1px, transparent 1px);
    background-size: 28px 28px;
}

/* Light card — Testy */
.duo-card-light {
    background:
        radial-gradient(ellipse at top left, rgba(133,86,18,.05) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(201,165,90,.04) 0%, transparent 50%),
        linear-gradient(145deg, rgba(255,255,255,.98), rgba(255,255,255,.93));
    border: 1px solid rgba(133,86,18,.08);
    box-shadow: 0 16px 50px rgba(0,0,0,.06);
}
.duo-card-light:hover {
    border-color: rgba(133,86,18,.18);
    box-shadow: 0 24px 70px rgba(0,0,0,.1);
}
/* Gold top line on both cards */
.duo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
    z-index: 2;
}

/* Card content */
.duo-card-content {
    position: relative;
    z-index: 1;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

/* Large icon circle */
.duo-card-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    border-radius: 50%;
    margin-bottom: 16px;
    transition: all .5s cubic-bezier(.34,1.56,.64,1);
}
.duo-card-dark .duo-card-icon {
    background: linear-gradient(135deg, rgba(133,86,18,.15), rgba(201,165,90,.1));
    border: 1px solid rgba(201,165,90,.15);
    box-shadow: 0 4px 20px rgba(133,86,18,.15);
}
.duo-card-light .duo-card-icon {
    background: linear-gradient(135deg, rgba(133,86,18,.06), rgba(201,165,90,.08));
    box-shadow: 0 4px 16px rgba(133,86,18,.06);
}
.duo-card:hover .duo-card-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, var(--primary), var(--gold));
    box-shadow: 0 8px 28px rgba(133,86,18,.35);
}

.duo-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.duo-card-dark h3 {
    color: var(--white);
}
.duo-card p {
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 20px;
}
.duo-card-dark p {
    color: rgba(255,255,255,.65);
}

/* Phone number link — prominent */
.duo-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(201,165,90,.1);
    border: 1px solid rgba(201,165,90,.2);
    border-radius: 60px;
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .5px;
    margin-bottom: 20px;
    transition: all .4s cubic-bezier(.4,0,.2,1);
}
.duo-phone-icon {
    font-size: 20px;
}
.duo-phone:hover {
    background: rgba(201,165,90,.2);
    border-color: rgba(201,165,90,.4);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(133,86,18,.25);
}

/* Gold button for dark card */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--primary));
    color: var(--white);
    border-color: var(--gold);
}
.btn-gold:hover {
    border-color: var(--gold-light);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201,165,90,.35);
}

/* Feature tags in testy card */
.duo-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}
.duo-feature {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 16px;
    background: rgba(57,181,74,.06);
    color: var(--green);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    border-radius: 50px;
    border: 1px solid rgba(57,181,74,.12);
}

/* ============================================
   VÝHODY CARDS — Glass + Gradient Border
   ============================================ */
.vyhody-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.vyhoda-card {
    background:
        radial-gradient(ellipse at top left, rgba(133,86,18,.04) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(201,165,90,.03) 0%, transparent 50%),
        linear-gradient(145deg, rgba(255,255,255,.98), rgba(255,255,255,.94));
    border-radius: var(--radius-xl);
    padding: 44px 28px 40px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(133,86,18,.06);
    transition: all .5s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
}
/* Card number badge */
.vyhoda-card::after {
    content: attr(data-num);
    position: absolute;
    top: 12px;
    right: 16px;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: rgba(133,86,18,.04);
    line-height: 1;
    pointer-events: none;
    transition: color .5s ease;
}
.vyhoda-card:hover::after { color: rgba(133,86,18,.08); }
/* Animated gradient top-line on hover (Wzoš) */
.vyhoda-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary));
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.vyhoda-card:hover::before {
    transform: scaleX(1);
    animation: borderGradientRotate 2s ease infinite;
}
.vyhoda-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(133,86,18,.12);
    border-color: rgba(133,86,18,.15);
}
.vyhoda-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(133,86,18,.06), rgba(201,165,90,.08));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: all .5s cubic-bezier(.34,1.56,.64,1);
    position: relative;
}
/* Subtle ring around icon */
.vyhoda-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px dashed rgba(133,86,18,.1);
    border-radius: calc(var(--radius-lg) + 4px);
    transition: all .5s ease;
    opacity: 0;
}
.vyhoda-card:hover .vyhoda-icon::after { opacity: 1; border-color: rgba(201,165,90,.3); }
.vyhoda-card:hover .vyhoda-icon {
    background: linear-gradient(135deg, var(--primary), var(--gold));
    transform: scale(1.12) rotate(-5deg);
    box-shadow: 0 8px 24px var(--primary-glow);
    border-radius: 50%;
}
.vyhoda-card h3 { margin-bottom: 10px; font-size: 1.25rem; }
.vyhoda-card p { font-size: 16px; color: var(--text); line-height: 1.75; }

/* Stredový banner — karta v strede 3x3 gridu */
.vyhody-banner {
    padding: 44px 28px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-medium) 50%, var(--dark) 100%);
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Dot pattern */
.vyhody-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(201,165,90,.06) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}
/* Gold top line */
.vyhody-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.vyhody-banner-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.vyhody-banner-name {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: .3px;
    line-height: 1.3;
}
.vyhody-banner-text {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255,255,255,.55);
    font-weight: 400;
    letter-spacing: .8px;
    text-transform: uppercase;
    line-height: 1.5;
}

/* ============================================
   PRIESTORY — Parallax + Aurora Overlay
   ============================================ */
.priestory-section {
    position: relative;
    padding: 130px 0;
    overflow: hidden;
}
.priestory-bg {
    position: absolute;
    inset: -5%;
    background: url('/img/3.webp') center/cover no-repeat;
    animation: ambientDrift 25s ease-in-out infinite alternate;
    z-index: 0;
}
.priestory-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(26,23,16,.8) 0%, rgba(133,86,18,.25) 50%, rgba(26,23,16,.85) 100%);
    z-index: 1;
}
/* Aurora overlay (Wzoš/Šeliga) */
.priestory-section::after {
    content: '';
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(ellipse 50% 60% at 20% 30%, rgba(133,86,18,.15), transparent 60%),
        radial-gradient(ellipse 40% 50% at 80% 70%, rgba(201,165,90,.1), transparent 60%);
    animation: auroraDrift 20s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}
.priestory-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.priestory-content h2 {
    color: var(--white) !important;
    -webkit-text-fill-color: var(--white) !important;
    background: none !important;
}
.priestory-content .section-header {
    margin-bottom: 20px;
}
.priestory-content .section-header h2::after {
    background: linear-gradient(90deg, var(--gold-light), var(--gold));
}
.priestory-content p { color: rgba(255,255,255,.8); }

/* Priestory badge (pill) */
.priestory-badge {
    display: inline-block;
    padding: 10px 28px;
    background: linear-gradient(135deg, rgba(133,86,18,.2), rgba(201,165,90,.15));
    border: 1px solid rgba(201,165,90,.25);
    border-radius: 50px;
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin-top: 0;
    margin-bottom: 0;
}

/* --- Vozidlá grid --- */
.vozidla-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 48px;
}
.vozidlo-card {
    background:
        radial-gradient(ellipse at top left, rgba(201,165,90,.04) 0%, transparent 60%),
        rgba(0,0,0,.4);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--radius-xl);
    padding: 22px 16px;
    text-align: center;
    transition: all .4s cubic-bezier(.4,0,.2,1);
    position: relative;
}
.vozidlo-card:hover {
    background:
        radial-gradient(ellipse at top left, rgba(201,165,90,.08) 0%, transparent 60%),
        rgba(0,0,0,.5);
    border-color: rgba(201,165,90,.18);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.vozidlo-icon {
    font-size: 28px;
    margin-bottom: 10px;
}
.vozidlo-card h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}
.vozidlo-card p {
    font-size: 14px;
    color: rgba(255,255,255,.5);
    line-height: 1.5;
    margin-bottom: 12px;
}
.vozidlo-skupina {
    display: inline-block;
    padding: 4px 14px;
    background: linear-gradient(135deg, rgba(133,86,18,.15), rgba(201,165,90,.2));
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    border-radius: 50px;
    letter-spacing: .5px;
}
.priestory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.priestory-grid img {
    border-radius: var(--radius-xl);
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: all .6s cubic-bezier(.4,0,.2,1);
    border: 2px solid rgba(255,255,255,.1);
    box-shadow: 0 8px 32px rgba(0,0,0,.2);
    cursor: pointer;
}
.priestory-grid img:hover {
    transform: scale(1.05) translateY(-6px);
    border-color: rgba(201,165,90,.5);
    box-shadow: 0 24px 70px rgba(0,0,0,.45), 0 0 40px rgba(201,165,90,.15);
}

/* ============================================
   LIGHTBOX — Fullscreen Gallery Overlay
   ============================================ */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.lightbox-overlay.active {
    display: flex;
}
.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 80px rgba(0,0,0,.5);
    user-select: none;
    -webkit-user-select: none;
    transition: transform .2s ease;
}
.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: none;
    color: rgba(255,255,255,.7);
    font-size: 40px;
    cursor: pointer;
    transition: all .3s ease;
    z-index: 10;
    line-height: 1;
}
.lightbox-close:hover {
    color: var(--white);
    transform: rotate(90deg);
}
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.8);
    font-size: 28px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    z-index: 10;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(133,86,18,.6);
    border-color: var(--gold);
    color: var(--white);
}
.lightbox-counter {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.6);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
}

/* ============================================
   SLUŽBY — Image Hover Zoom + Glass Cards
   ============================================ */
/* ============================================
   SLUŽBY — Alternujúce Split Riadky (Premium)
   ============================================ */
.sluzba-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}
.sluzba-row:last-child { margin-bottom: 0; }
.sluzba-row-reverse { direction: rtl; }
.sluzba-row-reverse > * { direction: ltr; }

/* Image container */
.sluzba-row-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}
.sluzba-row-img::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(201,165,90,.15);
    border-radius: calc(var(--radius-xl) - 4px);
    z-index: 1;
    pointer-events: none;
    transition: all .5s ease;
}
.sluzba-row-img:hover::before { border-color: rgba(201,165,90,.4); inset: 4px; }
.sluzba-row-img::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(201,165,90,.1);
    border-radius: var(--radius-xl);
    pointer-events: none;
    transition: border-color var(--transition);
}
.sluzba-row-img:hover::after { border-color: rgba(201,165,90,.4); }
.sluzba-row-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.4,0,.2,1);
}
.sluzba-row-img:hover img { transform: scale(1.06); }

/* Floating badge */
.sluzba-row-badge {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    color: var(--white);
    padding: 10px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 6px 24px rgba(133,86,18,.35);
    white-space: nowrap;
    transition: all .4s ease;
}
.sluzba-row-img:hover .sluzba-row-badge {
    transform: translateX(-50%) translateY(-4px);
    box-shadow: 0 10px 32px rgba(133,86,18,.45);
}

/* Body text side */
.sluzba-row-body {
    position: relative;
}
.sluzba-row-num {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(133,86,18,.08), rgba(201,165,90,.06));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}
.sluzba-row-body h3 {
    font-size: 1.7rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--heading) 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.sluzba-row-body p {
    font-size: 17px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Feature list */
.sluzba-row-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.sluzba-row-features li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: rgba(57,181,74,.06);
    color: var(--green);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    border-radius: 50px;
    border: 1px solid rgba(57,181,74,.12);
    transition: all .3s ease;
}
.sluzba-row-features li::before {
    content: '\2713';
    font-weight: 800;
}
.sluzba-row-features li:hover {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
    transform: translateY(-2px);
}

/* ============================================
   VIDEO GRID — Glow Play Button + Hover Scale
   ============================================ */
/* ============================================
   VIDEO SECTION — Dark Background + Accordion
   ============================================ */
.video-section {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(160deg, #0f0d08 0%, var(--dark) 40%, var(--dark-medium) 70%, #0f0d08 100%);
    overflow: hidden;
}
.video-section-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.video-section-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}
.video-section-orb-1 {
    width: 400px;
    height: 400px;
    top: -20%;
    right: -5%;
    background: radial-gradient(circle, rgba(133,86,18,.15) 0%, transparent 70%);
    animation: orbFloat1 18s ease-in-out infinite;
}
.video-section-orb-2 {
    width: 300px;
    height: 300px;
    bottom: -15%;
    left: -5%;
    background: radial-gradient(circle, rgba(201,165,90,.12) 0%, transparent 70%);
    animation: orbFloat2 22s ease-in-out infinite;
}
.video-section-pattern {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(201,165,90,.03) 1px, transparent 1px);
    background-size: 32px 32px;
}
.video-section-topline,
.video-section-bottomline {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 5%, var(--gold) 50%, transparent 95%);
    z-index: 4;
    opacity: .6;
}
.video-section-topline { top: 0; }
.video-section-bottomline { bottom: 0; }

/* Dark section header modifier */
.section-header-dark h2 {
    background: linear-gradient(135deg, var(--white) 30%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-header-dark p {
    color: rgba(255,255,255,.55);
}

/* Video Accordion Grid — 3 columns */
.video-acc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    position: relative;
    z-index: 1;
}
.video-acc-item {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(201,165,90,.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .4s cubic-bezier(.4,0,.2,1);
}
.video-acc-item:hover {
    border-color: rgba(201,165,90,.2);
    background: rgba(255,255,255,.05);
}
.video-acc-item.open {
    border-color: rgba(201,165,90,.3);
    background: rgba(255,255,255,.06);
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.video-acc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    cursor: pointer;
    transition: background .3s ease;
    user-select: none;
}
.video-acc-header:hover {
    background: rgba(255,255,255,.04);
}
.video-acc-num {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    opacity: .5;
    min-width: 22px;
    flex-shrink: 0;
}
.video-acc-name {
    flex: 1;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,.8);
    line-height: 1.4;
}
.video-acc-item.open .video-acc-name {
    color: var(--gold-light);
}
.video-acc-toggle {
    font-size: 10px;
    color: var(--gold);
    transition: transform .3s ease, opacity .3s ease;
    opacity: .4;
    flex-shrink: 0;
}
.video-acc-item.open .video-acc-toggle {
    transform: rotate(90deg);
    opacity: 1;
}
.video-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.video-acc-item.open .video-acc-body {
    max-height: 300px;
}
.video-acc-player {
    position: relative;
    padding-top: 56.25%;
    background: #000;
    margin: 0 12px 12px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}
.video-acc-player img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease, filter .5s ease;
}
.video-acc-player:hover img {
    transform: scale(1.05);
    filter: brightness(.7);
}
.video-acc-player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}
/* Play button — reused for accordion */
.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    background: rgba(133,86,18,.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s cubic-bezier(.4,0,.2,1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 2px solid rgba(201,165,90,.3);
}
.video-play::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 14px;
    border-color: transparent transparent transparent var(--white);
    margin-left: 3px;
}
.video-acc-player:hover .video-play {
    background: var(--primary);
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 30px rgba(133,86,18,.5);
    border-color: var(--gold);
}

/* ============================================
   PRIHLÁŠKA — Glass Card + Floating Glow
   ============================================ */
/* Prihláška + Skupiny vedľa seba */
.prihlaska-skupiny-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.prihlaska-col { }
.skupiny-col { }
.skupiny-col-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 24px;
    text-align: center;
    position: relative;
}
.skupiny-col-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    margin: 12px auto 0;
    border-radius: 3px;
}
.prihlaska-form {
    background:
        radial-gradient(ellipse at top left, rgba(133,86,18,.05) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(201,165,90,.04) 0%, transparent 50%),
        linear-gradient(145deg, rgba(255,255,255,.98), rgba(255,255,255,.93));
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: 0 20px 70px rgba(0,0,0,.07);
    border: 1px solid rgba(133,86,18,.06);
    position: relative;
    transition: box-shadow .5s ease;
}
.prihlaska-form:hover {
    box-shadow: 0 28px 80px rgba(0,0,0,.1);
}
.prihlaska-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.form-group { margin-bottom: 22px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 16px;
    color: var(--heading);
    font-family: var(--font-heading);
}
.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-size: 17px;
    transition: all var(--transition);
    background: var(--white);
    color: var(--gray-800);
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(133,86,18,.08);
    background: rgba(255,255,255,1);
}
textarea.form-control { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Checkbox group with pill design (enhanced) */
.checkbox-group { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 10px; }
.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    padding: 10px 20px;
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    transition: all .4s cubic-bezier(.4,0,.2,1);
    background: var(--white);
    font-family: var(--font-heading);
}
.checkbox-group label:hover {
    border-color: var(--primary);
    background: rgba(133,86,18,.03);
    transform: translateY(-2px);
}
.checkbox-group input { display: none; }
.checkbox-group input:checked + span { color: var(--white); }
.checkbox-group label:has(input:checked) {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 16px var(--primary-glow);
    transform: translateY(-2px);
}

.form-message {
    display: none;
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    margin-top: 20px;
    font-weight: 600;
    font-size: 16px;
}
.form-message.success { background: #E8F5E9; color: #2E7D32; display: block; }
.form-message.error { background: #FFEBEE; color: #C62828; display: block; }
.hp-field { position: absolute; left: -9999px; }

/* ============================================
   FEATURES — 4 Dark Cards (Autocvičisko, Trenažér...)
   ============================================ */
.features-section {
    padding: 80px 0;
    background: linear-gradient(160deg, #0f0d08 0%, var(--dark) 40%, var(--dark-medium) 70%, #0f0d08 100%);
    position: relative;
    overflow: hidden;
}
.features-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle, rgba(201,165,90,.04) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}
.feature-card {
    background: linear-gradient(160deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%);
    border: 1px solid rgba(201,165,90,.12);
    border-radius: var(--radius-xl);
    padding: 44px 28px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all .5s cubic-bezier(.4,0,.2,1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
/* Dot pattern inside card */
.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(201,165,90,.03) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    opacity: 0;
    transition: opacity .5s ease;
}
.feature-card:hover::after { opacity: 1; }
/* Animated gold top-line */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
    z-index: 1;
}
.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201,165,90,.3);
    background: rgba(133,86,18,.08);
    box-shadow: 0 24px 70px rgba(0,0,0,.35), 0 0 50px rgba(133,86,18,.1);
}
.feature-card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(133,86,18,.15), rgba(201,165,90,.1));
    border: 1px solid rgba(201,165,90,.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: all .5s cubic-bezier(.34,1.56,.64,1);
    box-shadow: 0 4px 20px rgba(133,86,18,.15);
    position: relative;
    z-index: 1;
}
/* Ring around icon */
.feature-card-icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1px dashed rgba(201,165,90,.15);
    border-radius: 50%;
    transition: all .5s ease;
    opacity: 0;
}
.feature-card:hover .feature-card-icon::after { opacity: 1; border-color: rgba(201,165,90,.4); }
.feature-card:hover .feature-card-icon {
    background: linear-gradient(135deg, var(--primary), var(--gold));
    border-color: var(--gold);
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 8px 32px rgba(133,86,18,.5);
}
.feature-card h4 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
.feature-card p {
    color: rgba(255,255,255,.55);
    font-size: 15px;
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

/* ============================================
   SKUPINY GRID — Card Layout
   ============================================ */
.skupiny-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.skupina-card {
    background:
        radial-gradient(ellipse at top left, rgba(133,86,18,.04) 0%, transparent 50%),
        linear-gradient(145deg, rgba(255,255,255,.98), rgba(255,255,255,.94));
    border: 1px solid rgba(133,86,18,.06);
    border-radius: var(--radius-lg);
    padding: 16px 10px 14px;
    text-align: center;
    transition: all .5s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
}
.skupina-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.skupina-card:hover::before { transform: scaleX(1); }
.skupina-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(133,86,18,.12);
    border-color: rgba(133,86,18,.15);
}
.skupina-card-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 30%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 4px;
}
.skupina-card-title {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}
.skupina-card-age {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(133,86,18,.06);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
}

/* Dokument link pod skupinami — PROMINENT dark card */
.skupiny-doc-link {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
    padding: 28px 28px;
    background: linear-gradient(160deg, #0f0d08 0%, var(--dark) 50%, var(--dark-medium) 100%);
    border: 1px solid rgba(201,165,90,.15);
    border-radius: var(--radius-xl);
    text-decoration: none;
    transition: all .5s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
}
.skupiny-doc-link::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}
.skupiny-doc-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0,0,0,.25), 0 0 30px rgba(133,86,18,.1);
    border-color: rgba(201,165,90,.3);
}
.skupiny-doc-icon-wrap {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(133,86,18,.15), rgba(201,165,90,.1));
    border: 1px solid rgba(201,165,90,.15);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all .5s cubic-bezier(.34,1.56,.64,1);
}
.skupiny-doc-link:hover .skupiny-doc-icon-wrap {
    background: linear-gradient(135deg, var(--primary), var(--gold));
    border-color: var(--gold);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 28px rgba(133,86,18,.4);
}
.skupiny-doc-icon {
    font-size: 28px;
}
.skupiny-doc-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.skupiny-doc-text strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}
.skupiny-doc-text span {
    font-size: 14px;
    color: rgba(255,255,255,.5);
    line-height: 1.4;
}
.skupiny-doc-dl {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 10px 22px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: all .3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}
.skupiny-doc-link:hover .skupiny-doc-dl {
    background: linear-gradient(135deg, var(--gold), var(--primary));
    box-shadow: 0 4px 20px rgba(133,86,18,.35);
}

/* ============================================
   KONTAKT + MAPA — Dark Premium
   ============================================ */
.section-kontakt {
    background: linear-gradient(180deg, var(--dark) 0%, #0a0906 100%);
    position: relative;
    overflow: hidden;
}
.section-kontakt::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 20% 50%, rgba(133,86,18,.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 80% 30%, rgba(201,165,90,.06) 0%, transparent 55%);
    pointer-events: none;
}
.section-header-light h2 {
    background: none;
    -webkit-text-fill-color: var(--white);
    color: var(--white);
}
.section-header-light h2::after {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.section-header-light p { color: rgba(255,255,255,.55); }

.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.kontakt-info { display: flex; flex-direction: column; gap: 18px; }

.kontakt-item-dark {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background:
        radial-gradient(ellipse at top left, rgba(133,86,18,.08) 0%, transparent 50%),
        linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
    border-radius: var(--radius-xl);
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
    border: 1px solid rgba(201,165,90,.1);
    transition: all .4s cubic-bezier(.4,0,.2,1);
    text-decoration: none;
    cursor: pointer;
}
a.kontakt-item-dark { cursor: pointer; }
a.kontakt-item-dark:hover {
    text-decoration: none;
}
.kontakt-item-dark:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 32px rgba(133,86,18,.15);
    border-color: rgba(201,165,90,.25);
    background:
        radial-gradient(ellipse at top left, rgba(133,86,18,.12) 0%, transparent 50%),
        linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.05));
}
.kontakt-item-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, rgba(133,86,18,.15), rgba(201,165,90,.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: all .4s cubic-bezier(.34,1.56,.64,1);
}
.kontakt-item-dark:hover .kontakt-item-icon {
    background: linear-gradient(135deg, var(--primary), var(--gold));
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 20px var(--primary-glow);
}
.kontakt-item-dark h4 { margin-bottom: 6px; font-size: 17px; color: rgba(255,255,255,.9); }
.kontakt-item-dark p { font-size: 16px; color: rgba(255,255,255,.55); margin: 0; line-height: 1.6; }

.kontakt-map-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.whatsapp-btn-light {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 18px 32px;
    background: var(--white);
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.15);
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.whatsapp-btn-light .whatsapp-logo {
    width: 26px;
    height: 26px;
    color: #25D366;
    flex-shrink: 0;
}
.whatsapp-btn-light span {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.whatsapp-btn-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37,211,102,.08), transparent);
}
.whatsapp-btn-light:hover::before { animation: shimmer .6s ease forwards; }
.whatsapp-btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37,211,102,.25);
    background: var(--white);
}
.whatsapp-btn-light:hover .whatsapp-logo {
    color: #1ebe57;
}

.map-wrap-dark {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(0,0,0,.25);
    border: 2px solid rgba(201,165,90,.12);
    transition: all .5s ease;
    position: relative;
}
.map-wrap-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    z-index: 1;
}
.map-wrap-dark:hover { border-color: rgba(201,165,90,.25); box-shadow: 0 24px 70px rgba(0,0,0,.3); }
.map-wrap-dark iframe { width: 100%; height: 440px; border: none; }

/* ============================================
   FOOTER — Dark + Grid Pattern + Aurora
   ============================================ */
.footer {
    background: linear-gradient(180deg, var(--dark) 0%, #0a0906 100%);
    color: rgba(255,255,255,.5);
    padding: 48px 0 28px;
    position: relative;
    overflow: hidden;
}
/* Gold gradient top line */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
/* Grid pattern overlay (Wzoš) */
.footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(201,165,90,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,165,90,.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 15px;
    position: relative;
    z-index: 1;
}
.footer a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer a:hover { color: var(--gold-light); }

/* ============================================
   BACK TO TOP — Enhanced
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition);
    z-index: 999;
    box-shadow: 0 4px 20px var(--primary-glow);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px var(--primary-glow);
}

/* ============================================
   COOKIE CONSENT — Glass
   ============================================ */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 480px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,.15);
    z-index: 9999;
    border: 1px solid rgba(133,86,18,.06);
}
.cookie-banner.visible { display: block; }
.cookie-banner p { font-size: 14px; color: var(--text); margin-bottom: 16px; }
.cookie-btns { display: flex; gap: 12px; }

/* ============================================
   ANIMATIONS — Scroll Triggered
   ============================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Staggered children animation */
.fade-in-up.visible .vyhoda-card,
.fade-in-up.visible .video-acc-item,
.fade-in-up.visible .feature-card,
.fade-in-up.visible .skupina-card {
    animation: fadeInUp .6s cubic-bezier(.4,0,.2,1) backwards;
}
.fade-in-up.visible .vyhoda-card:nth-child(1),
.fade-in-up.visible .video-acc-item:nth-child(1),
.fade-in-up.visible .feature-card:nth-child(1),
.fade-in-up.visible .skupina-card:nth-child(1) { animation-delay: 0s; }
.fade-in-up.visible .vyhoda-card:nth-child(2),
.fade-in-up.visible .video-acc-item:nth-child(2),
.fade-in-up.visible .feature-card:nth-child(2),
.fade-in-up.visible .skupina-card:nth-child(2) { animation-delay: .08s; }
.fade-in-up.visible .vyhoda-card:nth-child(3),
.fade-in-up.visible .video-acc-item:nth-child(3),
.fade-in-up.visible .feature-card:nth-child(3),
.fade-in-up.visible .skupina-card:nth-child(3) { animation-delay: .16s; }
.fade-in-up.visible .vyhoda-card:nth-child(4),
.fade-in-up.visible .video-acc-item:nth-child(4),
.fade-in-up.visible .feature-card:nth-child(4),
.fade-in-up.visible .skupina-card:nth-child(4) { animation-delay: .24s; }
.fade-in-up.visible .vyhoda-card:nth-child(5),
.fade-in-up.visible .video-acc-item:nth-child(5),
.fade-in-up.visible .skupina-card:nth-child(5) { animation-delay: .32s; }
.fade-in-up.visible .vyhoda-card:nth-child(6),
.fade-in-up.visible .video-acc-item:nth-child(6),
.fade-in-up.visible .skupina-card:nth-child(6) { animation-delay: .40s; }
.fade-in-up.visible .vyhoda-card:nth-child(7),
.fade-in-up.visible .video-acc-item:nth-child(7),
.fade-in-up.visible .skupina-card:nth-child(7) { animation-delay: .48s; }
.fade-in-up.visible .skupina-card:nth-child(8) { animation-delay: .56s; }
.fade-in-up.visible .skupina-card:nth-child(9) { animation-delay: .04s; }
.fade-in-up.visible .skupina-card:nth-child(10) { animation-delay: .12s; }
.fade-in-up.visible .skupina-card:nth-child(11) { animation-delay: .20s; }
.fade-in-up.visible .skupina-card:nth-child(12) { animation-delay: .28s; }
.fade-in-up.visible .skupina-card:nth-child(13) { animation-delay: .36s; }
.fade-in-up.visible .skupina-card:nth-child(14) { animation-delay: .44s; }
.fade-in-up.visible .skupina-card:nth-child(15) { animation-delay: .52s; }
.fade-in-up.visible .skupina-card:nth-child(16) { animation-delay: .60s; }

/* Slide animations */
.slide-in-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity .7s ease, transform .7s ease;
}
.slide-in-left.visible { opacity: 1; transform: translateX(0); }

.slide-in-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity .7s ease, transform .7s ease;
}
.slide-in-right.visible { opacity: 1; transform: translateX(0); }

/* ============================================
   404 PAGE
   ============================================ */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bg-light);
}
.error-page h1 {
    font-size: 8rem;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}
.error-page p { font-size: 1.2rem; color: var(--text); margin-bottom: 32px; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .vyhody-grid { grid-template-columns: repeat(2, 1fr); }
    .kontakt-grid { grid-template-columns: 1fr; }
    .vozidla-grid { grid-template-columns: repeat(3, 1fr); }
    .priestory-grid { grid-template-columns: 1fr 1fr; }
    .sluzba-row { grid-template-columns: 1fr; gap: 40px; }
    .sluzba-row-reverse { direction: ltr; }
    .sluzba-row-img img { height: 320px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .skupiny-grid { grid-template-columns: repeat(3, 1fr); }
    .prihlaska-skupiny-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-stats { gap: 32px; }
    .hero-cat { font-size: 2rem; }
    .hero-wheel { width: 400px; height: 400px; }
    .hero-pulse-ring { width: 500px; height: 500px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-hamburger { display: block; }
    .mobile-overlay { display: block; }
    .mobile-menu { display: flex; }
    .hero { min-height: 90vh; padding: 100px 20px 60px; }
    .hero-orb-1 { width: 300px; height: 300px; }
    .hero-orb-2 { width: 250px; height: 250px; }
    .hero-orb-3 { display: none; }
    .hero-cat { display: none; }
    .hero-wheel { display: none; }
    .hero-pulse-ring { display: none; }
    .hero-road-svg { opacity: .3; }
    .hero-stats { flex-wrap: wrap; gap: 24px; }
    .hero-stat-num { font-size: 2.2rem; }
    .hero-stat-suffix { font-size: 1.5rem; }
    .hero-stat-label { font-size: 13px; }
    .hero-fade-bottom { height: 80px; }
    .section { padding: 80px 0; }
    .section-header { margin-bottom: 48px; }
    .contact-band { padding: 60px 0; }
    .contact-band-item { padding: 28px 32px; min-width: 200px; }
    .contact-band-value { font-size: 17px; }
    .contact-band-icon { width: 56px; height: 56px; font-size: 22px; }
    .contact-band-divider { display: none; }
    .contact-band-inner { gap: 16px; }
    .form-row { grid-template-columns: 1fr; }
    .btn-group { flex-direction: column; align-items: center; }
    .btn-hero, .btn-outline-white { width: 100%; max-width: 300px; justify-content: center; }
    .prihlaska-form { padding: 32px; }
    .vozidla-grid { grid-template-columns: repeat(2, 1fr); }
    .priestory-grid { grid-template-columns: 1fr 1fr; }
    .priestory-grid img { height: 260px; }
    .priestory-bg { animation: none; }
    .video-acc-grid { grid-template-columns: repeat(2, 1fr); }
    .video-section { padding: 80px 0; }
    .sluzba-row { margin-bottom: 60px; }
    .skupiny-doc-link { flex-direction: column; text-align: center; gap: 12px; padding: 24px 20px; }
    .skupiny-doc-dl { width: 100%; text-align: center; }
    .sluzba-row-body h3 { font-size: 1.4rem; }
    .sluzba-row-num { font-size: 3rem; }
    .duo-grid { grid-template-columns: 1fr; }
    .duo-card-content { padding: 36px 28px; }
    .duo-phone { font-size: 19px; }
    .sluzba-row-img img { height: 280px; }
    .nav.scrolled .nav-inner { border-radius: var(--radius-lg); }
    .wave-divider { height: 30px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-card { padding: 32px 24px; }
    .skupiny-grid { grid-template-columns: repeat(3, 1fr); }
    .lightbox-prev { left: 12px; }
    .lightbox-next { right: 12px; }
    .kontakt-grid { gap: 32px; }
    .vyhody-banner { display: none; }
    .vyhody-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
    body { font-size: 16px; }
    .hero h1 { font-size: 1.8rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .hero-badge { font-size: 11px; letter-spacing: 1.5px; }
    .hero-stats { gap: 16px; }
    .hero-stat-num { font-size: 2rem; }
    .hero-stat-suffix { font-size: 1.3rem; }
    .section { padding: 64px 0; }
    .section-header { margin-bottom: 40px; }
    h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
    .vyhody-grid { grid-template-columns: repeat(2, 1fr); }
    .vyhody-banner { display: none; padding: 32px 20px; }
    .vyhoda-card { padding: 36px 24px 32px; }
    .video-acc-grid { grid-template-columns: 1fr; }
    .video-section { padding: 64px 0; }
    .checkbox-group label { padding: 8px 14px; font-size: 14px; }
    .priestory-grid img { height: 220px; }
    .hero-particles span { display: none; }
    .wave-divider { height: 20px; }
    .duo-card-content { padding: 28px 20px; }
    .duo-phone { font-size: 17px; padding: 12px 22px; }
    .duo-card h3 { font-size: 1.3rem; }
    .contact-band { padding: 48px 0; }
    .contact-band-inner { flex-direction: column; align-items: center; gap: 12px; }
    .contact-band-item { width: 100%; max-width: 340px; padding: 24px 20px; }
    .contact-band-value { font-size: 16px; }
    .contact-band-icon { width: 50px; height: 50px; font-size: 20px; }
    .contact-band-orb-1 { width: 250px; height: 250px; }
    .contact-band-orb-2 { width: 200px; height: 200px; }
    .contact-band-orb-3 { display: none; }
    .prihlaska-form { padding: 24px; }
    .skupiny-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .skupina-card { padding: 12px 8px 10px; }
    .skupina-card-name { font-size: 1.3rem; }
    .skupina-card-title { font-size: 11px; }
    .priestory-badge { font-size: 11px; letter-spacing: 1.2px; padding: 8px 20px; }
    .sluzba-row-img img { height: 260px; }
    .sluzba-row { margin-bottom: 48px; gap: 32px; }
    .sluzba-row-num { font-size: 2.5rem; }
    .sluzba-row-body h3 { font-size: 1.3rem; }
    .kontakt-item-dark { padding: 20px; }
}

/* ============================================
   ADMIN STYLES (unchanged)
   ============================================ */
.admin-wrap { display: flex; min-height: 100vh; }
.admin-sidebar {
    width: 240px;
    background: var(--dark);
    color: var(--white);
    padding: 24px 0;
    flex-shrink: 0;
}
.admin-sidebar h2 {
    color: var(--white);
    font-size: 1rem;
    padding: 0 20px 20px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    margin-bottom: 16px;
}
.admin-nav { list-style: none; }
.admin-nav li a {
    display: block;
    padding: 12px 20px;
    color: rgba(255,255,255,.7);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition);
    border-left: 3px solid transparent;
}
.admin-nav li a:hover,
.admin-nav li a.active {
    color: var(--white);
    background: rgba(255,255,255,.05);
    border-left-color: var(--primary);
}
.admin-main { flex: 1; padding: 32px; background: var(--bg-light); overflow-y: auto; }
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}
.admin-header h1 { font-size: 1.5rem; }
.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
}
.admin-login-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    width: 100%;
    max-width: 400px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}
.admin-login-box h1 { font-size: 1.5rem; margin-bottom: 8px; }
.admin-login-box p { color: var(--text); margin-bottom: 32px; }
.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.admin-table th {
    text-align: left;
    padding: 14px 16px;
    background: var(--gray-100);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--gray-500);
    font-weight: 600;
}
.admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 15px;
}
.admin-table tr:hover td { background: var(--bg-light); }
.admin-btn-sm {
    padding: 6px 14px;
    font-size: 12px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all var(--transition);
}
.admin-btn-edit { background: rgba(133,86,18,.1); color: var(--primary); }
.admin-btn-edit:hover { background: var(--primary); color: var(--white); }
.admin-btn-del { background: rgba(220,53,69,.1); color: #DC3545; }
.admin-btn-del:hover { background: #DC3545; color: var(--white); }
.admin-btn-save { background: var(--primary); color: var(--white); }
.admin-btn-save:hover { background: var(--primary-dark); }
.admin-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 5000;
    align-items: center;
    justify-content: center;
}
.admin-modal-overlay.open { display: flex; }
.admin-modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}
.admin-modal h2 { margin-bottom: 24px; font-size: 1.3rem; }
.admin-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}
.admin-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
}
.admin-badge-new { background: rgba(57,181,74,.1); color: var(--green); }
.admin-badge-read { background: rgba(133,86,18,.1); color: var(--primary); }

.btn-outline-dark {
    background: transparent;
    color: var(--heading);
    border: 2px solid var(--gray-300);
}
.btn-outline-dark:hover {
    background: var(--heading);
    color: var(--white);
    border-color: var(--heading);
}

@media (max-width: 768px) {
    .admin-wrap { flex-direction: column; }
    .admin-sidebar { width: 100%; }
    .admin-main { padding: 20px; }
}
