/* ===================================================
   LIKVIDACE VOZIDEL LITOMĚŘICE – Design System v2
   Světlý profesionální styl, industriální charakter
   =================================================== */

:root {
    --primary: #2B4C7E;
    --primary-light: #3D6DB5;
    --primary-dark: #1A3356;
    --accent: #D4652A;
    --accent-light: #E88B56;
    --accent-dark: #B84F18;
    --accent-glow: rgba(212, 101, 42, 0.12);
    --bg-main: #FAFAF8;
    --bg-warm: #F5F0EB;
    --bg-card: #FFFFFF;
    --surface-dark: #1A1A2E;
    --surface-darker: #12121F;
    --text-dark: #1C1C28;
    --text-body: #3A3A4A;
    --text-muted: #6B7280;
    --text-light: #9CA3AF;
    --border: #E5E7EB;
    --border-hover: #D1D5DB;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-accent: 0 8px 30px rgba(212, 101, 42, 0.20);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 10px;
    --radius-lg: 16px;
    --radius-sm: 6px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.4); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes count-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: var(--transition-slow);
}

.animate-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-right {
    opacity: 0;
    transform: translateX(30px);
    transition: var(--transition-slow);
}

.animate-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'DM Sans', 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h2 { font-size: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }

.text-center { text-align: center; }

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 620px;
    margin: 0 auto 3rem;
    text-align: center;
    line-height: 1.8;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--accent);
    font-weight: 600;
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
    position: relative;
}

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(250, 250, 248, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0.9rem 0;
    transition: var(--transition);
}

nav.scrolled {
    padding: 0.6rem 0;
    background: rgba(250, 250, 248, 0.97);
    box-shadow: var(--shadow-md);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
    border-radius: 1px;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--primary);
    letter-spacing: -0.03em;
}

.logo span {
    transition: var(--transition);
}

.logo:hover span {
    filter: brightness(1.2);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 5rem;
    overflow: hidden;
    background: var(--surface-dark);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 46, 0.82) 0%,
        rgba(26, 26, 46, 0.55) 50%,
        rgba(26, 26, 46, 0.35) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
    color: var(--accent-light);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out;
    backdrop-filter: blur(8px);
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.hero h1 {
    font-size: 3.6rem;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
    color: #fff;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out;
    line-height: 1.8;
}

.hero p strong {
    color: #fff;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-out;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    animation: fadeInUp 1.4s ease-out;
}

.hero-stat {
    text-align: left;
}

.hero-stat .number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-light);
    line-height: 1;
}

.hero-stat .label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.25rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 101, 42, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* Button on light background */
section .btn-outline,
.cta-banner .btn-outline {
    color: var(--primary);
    border-color: var(--border);
}

section .btn-outline:hover,
.cta-banner .btn-outline:hover {
    border-color: var(--primary);
    background: rgba(43, 76, 126, 0.04);
    color: var(--primary);
}

/* ===== CARDS ===== */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: var(--transition);
}

.glass-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-card .card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    transition: var(--transition);
}

.glass-card:hover .card-icon {
    background: var(--accent);
    transform: scale(1.08);
}

.glass-card:hover .card-icon span {
    filter: brightness(10);
}

.glass-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== INFO GRID ===== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--primary);
    color: #fff;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    transition: var(--transition);
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
}

/* ===== PROCESS STEPS ===== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 3rem;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-4px);
}

.process-step::after {
    content: '→';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 1.5rem;
    opacity: 0.4;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-warm);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent);
    transition: var(--transition);
}

.process-step:hover .step-number {
    background: var(--accent);
    color: #fff;
    box-shadow: var(--shadow-accent);
}

.process-step h3 {
    font-size: 1.1rem;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* ===== REVIEWS ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.08;
    line-height: 1;
    transition: var(--transition);
}

.review-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-card:hover::before {
    opacity: 0.2;
}

.review-stars {
    color: #F59E0B;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text-body);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
    transition: var(--transition);
}

.review-card:hover .review-avatar {
    background: var(--accent);
}

.review-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.review-location {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ===== CITY CARDS ===== */
.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.city-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.8rem;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.city-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent);
    opacity: 0;
    transition: var(--transition);
}

.city-card::after {
    content: '→';
    position: absolute;
    bottom: 1.8rem;
    right: 1.8rem;
    font-size: 1.3rem;
    color: var(--accent);
    opacity: 0;
    transform: translateX(-8px);
    transition: var(--transition);
}

.city-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.city-card:hover::before {
    opacity: 1;
}

.city-card:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.city-name {
    font-size: 1.2rem;
    font-weight: 700;
}

.city-distance {
    font-size: 0.82rem;
    color: var(--text-light);
}

.city-tag {
    display: inline-block;
    background: var(--accent-glow);
    color: var(--accent);
    padding: 0.2rem 0.65rem;
    border-radius: var(--radius-sm);
    font-size: 0.72rem;
    font-weight: 600;
    margin-top: 0.4rem;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== FAQ ACCORDION ===== */
.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.3rem 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    color: var(--text-muted);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner h2 {
    color: #fff;
}

.cta-banner .gradient-text {
    background: linear-gradient(135deg, var(--accent-light), #FFD699);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-banner .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.cta-banner .btn-primary {
    background: var(--accent);
    color: #fff;
}

.cta-banner .btn-primary:hover {
    background: var(--accent-light);
}

/* ===== FEATURE ROW ===== */
.feature-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-text p {
    color: var(--text-body);
    line-height: 1.8;
    font-size: 1rem;
}

.feature-text-full {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('odtahovka.webp') center/cover no-repeat;
}

.feature-text-full::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 46, 0.88) 0%,
        rgba(26, 26, 46, 0.72) 50%,
        rgba(26, 26, 46, 0.60) 100%
    );
    z-index: 1;
}

.feature-text-full-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 3rem 2.5rem;
    text-align: center;
}

.feature-text-full h2,
.feature-text-full h3 {
    color: #fff;
}

.feature-text-full p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.feature-text-full p:last-child {
    margin-bottom: 0;
}

.feature-media {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 320px;
    background: var(--bg-warm);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
}

.feature-media:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: scale(1.01);
}

.feature-media .media-label {
    font-size: 2.2rem;
    font-weight: 800;
    opacity: 0.15;
    text-align: center;
    padding: 2rem;
    color: var(--primary);
}

/* ===== INFO BOXES ✅ ❌ ===== */
.info-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 1.3rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

.info-box:hover {
    transform: translateX(4px);
}

.info-box.positive {
    background: rgba(34, 197, 94, 0.06);
    border: 1px solid rgba(34, 197, 94, 0.18);
}

.info-box.negative {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.info-box .icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-box strong {
    color: var(--text-dark);
}

/* ===== OFFICE INFO SECTION (SEO) ===== */
.office-info {
    background: var(--bg-warm);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-top: 2rem;
}

.office-info h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.office-info .office-detail {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.office-info .office-detail span {
    font-size: 0.95rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.office-info .office-detail strong {
    color: var(--text-dark);
}

.office-info .office-tip {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: 1rem 1.2rem;
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.7;
}

.office-info .office-documents {
    margin-top: 1rem;
}

.office-info .office-documents h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.office-info .office-documents ul {
    list-style: none;
    padding: 0;
}

.office-info .office-documents ul li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.92rem;
    color: var(--text-body);
}

.office-info .office-documents ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* ===== MODAL / LIGHTBOX ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
    animation: fadeInUp 0.25s ease-out;
}

.modal-content {
    background: var(--bg-card);
    width: 100%;
    max-width: 540px;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    border: 1px solid var(--border);
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    color: var(--accent);
    background: var(--accent-glow);
}

/* ===== FORM STYLES ===== */
.form-group {
    margin-bottom: 1.1rem;
}

label {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--text-body);
    font-size: 0.88rem;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.8rem 1rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-family: 'DM Sans', 'Inter', sans-serif;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 101, 42, 0.1);
}

input::placeholder, textarea::placeholder {
    color: var(--text-light);
}

select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B7280' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.error-msg {
    color: #DC2626;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: none;
}

/* ===== INFO BOXES GRID ===== */
.info-boxes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.info-box-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* ===== NAV PHONE ===== */
.nav-phone {
    color: var(--accent) !important;
    font-weight: 600 !important;
}

.nav-phone:hover {
    color: var(--accent-dark) !important;
}

/* ===== SUBMIT BUTTON ===== */
.btn-submit {
    width: 100%;
    max-width: 400px;
    margin: 1rem auto 0;
    display: flex;
    justify-content: center;
    font-size: 1rem;
}

/* ===== COOKIE BUTTON ===== */
.btn-cookie {
    padding: 0.6rem 1.5rem;
    white-space: nowrap;
}

/* ===== COOKIE BAR ===== */
.cookie-bar {
    position: fixed;
    bottom: 1.5rem;
    left: 2rem;
    right: 2rem;
    background: var(--surface-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.1rem 1.5rem;
    border-radius: var(--radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    z-index: 1500;
    transform: translateY(200%);
    transition: transform 0.5s ease-out;
    box-shadow: var(--shadow-lg);
}

.cookie-bar.active {
    transform: translateY(0);
}

.cookie-bar p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== FOOTER ===== */
footer {
    background: var(--surface-dark);
    color: #fff;
    padding: 4rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-col h3 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

.footer-col p, .footer-col a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    line-height: 1.8;
    text-decoration: none;
    display: block;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--accent-light);
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.82rem;
}

.footer-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0.05;
    pointer-events: none;
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    border-radius: 2px;
    margin: 0 auto 2rem;
}

/* ===== STICKY MOBILE CTA (skrytá na desktop) ===== */
.sticky-cta {
    display: none;
}

/* ===== FOCUS STATES (a11y) ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.faq-question:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

.btn:focus-visible {
    outline-offset: 4px;
}

/* Vylepšený hover state na review-card */
.review-card:hover .review-name {
    color: var(--accent);
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== REVIEWS CAROUSEL ===== */
.reviews-carousel {
    overflow: hidden;
    margin-top: 2.5rem;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.reviews-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll-reviews 60s linear infinite;
    width: max-content;
}

.reviews-track:hover {
    animation-play-state: paused;
}

.reviews-carousel .review-card {
    min-width: 340px;
    max-width: 340px;
    flex-shrink: 0;
}

@keyframes scroll-reviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== INLINE FORM ===== */
.form-inline {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-success {
    text-align: center;
    padding: 3rem 2rem;
}

.form-success .success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.form-success h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* ===== MAP SECTION ===== */
.map-section {
    margin-top: 2rem;
}

.map-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.map-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
}

.map-card-header {
    padding: 1.8rem 2rem 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.map-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.map-card:hover .map-card-icon {
    background: var(--accent);
}

.map-card:hover .map-card-icon span {
    filter: brightness(10);
}

.map-card-info h3 {
    font-size: 1.15rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.map-card-info p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.map-card-info .map-address {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    color: var(--text-light);
    margin-top: 0.4rem;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 40%;
    border-top: 1px solid var(--border);
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.map-card-footer {
    padding: 1rem 2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.map-card-footer .map-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--accent-glow);
    color: var(--accent);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.map-card-footer .map-link {
    font-size: 0.88rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.map-card-footer .map-link:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    .map-wrapper {
        padding-bottom: 65%;
    }

    .map-card-header {
        padding: 1.2rem 1.2rem 0.8rem;
        flex-direction: column;
        gap: 0.6rem;
    }

    .map-card-footer {
        padding: 0.8rem 1.2rem 1.2rem;
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .feature-row, .feature-row.reverse { flex-direction: column; gap: 2rem; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-step::after { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    h2 { font-size: 1.9rem; }
    .hero h1 { font-size: 2.4rem; }
    .hero { min-height: 85vh; }
    .hero-content { max-width: 100%; }
    .hero-btns { justify-content: flex-start; }
    .hero-stats { gap: 2rem; flex-wrap: wrap; }
    .modal-content { padding: 1.8rem; border-radius: var(--radius); }
    .info-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .city-grid { grid-template-columns: 1fr; }
    .cta-banner { padding: 2.5rem 1.5rem; border-radius: var(--radius); }
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(250, 250, 248, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links .nav-link {
        font-size: 1.2rem;
    }
    section { padding: 3.5rem 0; }
    .cookie-bar { flex-direction: column; text-align: center; }
    .office-info { padding: 1.5rem; }

    /* Sticky CTA na mobilu */
    .sticky-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1400;
        background: var(--surface-dark);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding: 0.75rem 1rem;
        display: flex;
        gap: 0.5rem;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    }

    .sticky-cta .btn {
        flex: 1;
        justify-content: center;
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
    .container { padding: 0 1.2rem; }
    h2 { font-size: 1.6rem; }
}
