/* ============================================
   B&P Kvalitné Tepovanie – Premium Dark Luxury
   ============================================ */

:root {
    --bg: #080808;
    --bg-elevated: #0f0f0f;
    --bg-card: #141414;
    /* Skutočná zlatu – metallic gold, nie žltá */
    --gold: #d4af37;
    --gold-light: #e5c76b;
    --gold-dark: #b8860b;
    --gold-glow: rgba(212, 175, 55, 0.5);
    --red: #dc2626;
    --text: #f5f5f5;
    --text-muted: #a0a0a0;
    --border: rgba(255,255,255,0.08);
    --font-display: 'Syne', sans-serif;
    --font-serif: 'Cormorant Garamond', serif;
    --font-luxury: 'Cinzel', serif;
    --font-signature: 'Great Vibes', cursive;
    --font-ornamental: 'Luxurious Script', cursive;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-display);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: color 0.3s, opacity 0.3s; }

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 2rem;
    background: rgba(8,8,8,0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background 0.4s var(--ease);
}

.header.scrolled { background: rgba(8,8,8,0.95); }

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    overflow: visible;
}
.logo-img {
    height: 72px;
    width: auto;
    transform-origin: left center;
    animation: logoGrow 1.2s var(--ease) both;
    transition: transform 0.3s var(--ease);
}
.logo:hover .logo-img {
    transform: scale(1.08);
}

@keyframes logoGrow {
    from {
        transform: scale(0.2);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.nav ul {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav a {
    font-family: var(--font-luxury);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    position: relative;
    transition: color 0.3s var(--ease), letter-spacing 0.3s var(--ease), opacity 0.3s var(--ease);
    opacity: 0.9;
    animation: navFadeIn 0.6s var(--ease) both;
}

.nav li:nth-child(1) a { animation-delay: 0.1s; }
.nav li:nth-child(2) a { animation-delay: 0.15s; }
.nav li:nth-child(3) a { animation-delay: 0.2s; }
.nav li:nth-child(4) a { animation-delay: 0.25s; }
.nav li:nth-child(5) a { animation-delay: 0.3s; }

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold));
    transition: width 0.4s var(--ease);
}

.nav a:hover {
    color: var(--gold-light);
    opacity: 1;
    letter-spacing: 0.14em;
}

.nav a:hover::after { width: 100%; }

.nav a.active { color: var(--gold-light); opacity: 1; }

.nav a.btn-reservation::after { display: none; }
.nav a.btn-reservation:hover { letter-spacing: 0.12em; }

@keyframes navFadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 0.9; transform: translateY(0); }
}

/* Rezervácia – zlaté luxusné tlačidlo */
.btn-reservation, .btn-gold {
    font-family: var(--font-luxury) !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.12em !important;
    padding: 0.7rem 1.6rem !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    border: 1px solid var(--gold) !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.4s var(--ease) !important;
}

.btn-reservation {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%) !important;
    color: #080808 !important;
    box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-reservation::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), rgba(255,255,255,0.6), rgba(255,255,255,0.4), transparent);
    animation: btnShine 2.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes btnShine {
    0% { left: -60%; }
    50% { left: 100%; }
    100% { left: -60%; }
}

.btn-reservation:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px var(--gold-glow), 0 0 40px rgba(212,175,55,0.2);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%) !important;
    color: #080808 !important;
    box-shadow: 0 4px 20px var(--gold-glow);
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), rgba(255,255,255,0.6), rgba(255,255,255,0.4), transparent);
    animation: btnShine 2.5s ease-in-out infinite;
    pointer-events: none;
}

.btn-gold:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px var(--gold-glow), 0 0 40px rgba(212,175,55,0.2);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg-img {
    position: absolute;
    inset: -5%;
    background-size: cover;
    background-position: center;
    transition: transform 0.1s linear;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, 
            rgba(8,8,8,0.25) 0%, 
            rgba(8,8,8,0.45) 40%,
            rgba(8,8,8,0.9) 70%, 
            rgba(8,8,8,0.98) 100%),
        linear-gradient(135deg, 
            rgba(8,8,8,0.15) 0%, 
            transparent 50%, 
            rgba(8,8,8,0.2) 100%),
        linear-gradient(180deg, 
            transparent 0%, 
            transparent 30%, 
            rgba(184,134,11,0.06) 55%, 
            transparent 80%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.hero-tag {
    font-family: var(--font-signature);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 400;
    color: var(--gold-light);
    margin-top: 5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6), 0 0 20px rgba(212,175,55,0.2);
    animation: fadeUp 1s var(--ease) both;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
    animation: fadeUp 1s var(--ease) 0.2s both;
}

.hero-lead {
    font-size: clamp(1.5rem, 3.5vw, 2.1rem);
    font-family: var(--font-serif);
    color: var(--gold-light);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 0 40px rgba(212,175,55,0.4), 0 2px 6px rgba(0,0,0,0.4);
    animation: heroLeadIn 1.2s var(--ease) 0.4s both, heroLeadGlow 2.5s ease-in-out 1.6s infinite;
}

@keyframes heroLeadIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroLeadGlow {
    0%, 100% { 
        text-shadow: 0 0 35px rgba(212,175,55,0.4), 0 2px 6px rgba(0,0,0,0.4);
        filter: brightness(1);
    }
    50% { 
        text-shadow: 0 0 60px rgba(212,175,55,0.7), 0 0 90px rgba(212,175,55,0.35), 0 2px 6px rgba(0,0,0,0.4);
        filter: brightness(1.15);
    }
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 1s var(--ease) 0.6s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.btn-large { padding: 1.25rem 2.5rem; font-size: 1.1rem; }

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(transparent, var(--gold));
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* STATS */
.stats-section {
    padding: 4rem 2rem;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
}

.stat-num {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--gold);
}

.stat-plus { font-size: 2rem; color: var(--gold); }

.stat-label {
    margin-left: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(transparent, var(--gold), transparent);
}

.stat-tagline {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-muted);
}

/* SPLIT SECTIONS */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
}

.split-img {
    background-size: cover;
    background-position: center;
}

.split-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-card);
}

.split-label {
    font-family: var(--font-luxury);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.split-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.split-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.split-list {
    list-style: none;
    margin-bottom: 2rem;
}

.split-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
}

.split-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.link-gold {
    color: var(--gold);
    font-weight: 600;
}

.link-gold:hover { color: var(--gold-light); }

.split-reverse .split-img { order: 2; }
.split-reverse .split-content { order: 1; }

/* GALÉRIA PRED / PO */
.gallery-section {
    padding: 6rem 2rem;
    background: var(--bg-elevated);
}
.gallery-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.gallery-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.5rem;
}
.gallery-lead {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.gallery-item {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}
.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 240px;
}
.ba-img {
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 200px;
}
.ba-label {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: rgba(0,0,0,0.7);
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
}
.gallery-caption {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}
@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .before-after { min-height: 180px; }
    .ba-img { min-height: 160px; }
}

/* CENNÍK */
.pricing-section {
    padding: 6rem 2rem;
}
.pricing-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.pricing-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.5rem;
}
.pricing-lead {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.pricing-card {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.3s;
}
.pricing-card:hover {
    border-color: rgba(212,175,55,0.3);
}
.pricing-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.pricing-card .price {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.pricing-card .price-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}
.pricing-card .btn {
    width: 100%;
}
.pricing-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}
.pricing-category {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.pricing-cat-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--gold-light);
}
.pricing-list {
    list-style: none;
}
.pricing-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-name { flex: 1; }
.pricing-value {
    font-weight: 600;
    color: var(--gold);
    white-space: nowrap;
}
.pricing-cat-note {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.pricing-cta {
    text-align: center;
}
@media (max-width: 768px) {
    .pricing-categories { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .pricing-list li { flex-wrap: wrap; }
    .pricing-value { width: 100%; text-align: right; margin-top: 0.25rem; }
}

/* FAQ */
.faq-section {
    padding: 6rem 2rem;
    background: var(--bg-elevated);
}
.faq-inner {
    max-width: 700px;
    margin: 0 auto;
}
.faq-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.faq-item summary {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    float: right;
    color: var(--gold);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
}
.faq-item a { color: var(--gold); }

/* TESTIMONIALS */
.testimonials-section {
    padding: 6rem 2rem;
}
.testimonials-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.testimonials-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.testimonial-card {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text);
}
.testimonial-card footer {
    font-size: 0.9rem;
    color: var(--text-muted);
}
@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; }
}

/* WHY */
.why-section {
    padding: 6rem 2rem;
}

.why-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.why-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 4rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-card {
    padding: 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: transform 0.4s var(--ease), border-color 0.4s;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212,175,55,0.3);
}

.why-icon {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.6;
    margin-bottom: 1rem;
}

.why-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* RECENZIE GOOGLE */
.reviews-section {
    padding: 5rem 2rem;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
}
.reviews-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.reviews-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.reviews-lead {
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.reviews-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.reviews-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    opacity: 0.9;
}

/* CTA */
.cta-section {
    position: relative;
    padding: 6rem 2rem;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
}

.cta-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c9a227' fill-opacity='0.03'%3E%3Cpath d='M20 20v-4h4v4h-4zm0-20V0h4v4h-4z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.cta-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* FOOTER */
.footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 4rem 2rem 2rem;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-main {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo img { height: 48px; }

.footer-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.footer-info a { color: var(--gold); }
.footer-info a:hover { color: var(--gold-light); }

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover { color: var(--gold); }

.footer-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
}
.share-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}
.share-btn {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    font-family: var(--font-display);
}
.share-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.share-btn.share-fb:hover { border-color: #1877f2; color: #1877f2; }
.share-btn.share-wa:hover { border-color: #25d366; color: #25d366; }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
    opacity: 0.7;
}

/* Plávajúce tlačidlo WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 5.5rem;
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #25d366;
    color: #fff;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: transform 0.2s, box-shadow 0.2s;
    font-weight: 600;
    font-size: 0.95rem;
}
.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}
@media (max-width: 480px) {
    .whatsapp-float {
        right: 4.5rem;
        bottom: 1rem;
    }
    .whatsapp-float span { display: none; }
}

/* SCROLL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(40px);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* PAGE HEADERS (O nás, Služby, Kontakt) */
.page-header {
    padding: 12rem 2rem 6rem;
    text-align: center;
    background: var(--bg-elevated);
}

.page-header h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.page-header p { color: var(--text-muted); }

/* 404 stránka */
.error-404-content {
    text-align: center;
    padding: 2rem;
}
.error-404-code {
    font-family: var(--font-serif);
    font-size: 6rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 1rem;
}
.error-404-content h1 {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.error-404-lead {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.content-section {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.content-section h3 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.content-section h2 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.content-section p { color: var(--text-muted); margin-bottom: 1rem; }

.contact-form { margin-top: 2rem; }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    font-family: var(--font-display);
    font-size: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.service-detail {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

.service-detail:last-child { border-bottom: none; }

.benefits-list {
    list-style: none;
    margin: 1.5rem 0;
}
.benefits-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-muted);
}
.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}
.cta-box {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.cta-box h3 {
    margin-bottom: 0.75rem;
}
.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}
.cta-note {
    font-size: 0.95rem;
    color: var(--text-muted);
}
.cta-note a { color: var(--gold); }

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info a { color: var(--gold); }

.map-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}
.map-section h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}
.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* MOBILE */
@media (max-width: 900px) {
    .split-section { grid-template-columns: 1fr; }
    .split-reverse .split-img { order: 1; }
    .split-reverse .split-content { order: 2; }
    .split-content { padding: 3rem 2rem; }
    .why-grid { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr; text-align: center; }
    .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .header { padding: 0.75rem 1rem; }
    .logo-img { height: 52px; }
    .nav-toggle { display: flex; }
    .nav {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--bg-elevated);
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav ul { flex-direction: column; gap: 1.5rem; }
    .stats-inner { flex-direction: column; gap: 2rem; }
    .stat-divider { width: 60px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
}
