/* --- ZÁKLADNÍ PROMĚNNÉ A RESET --- */
:root {
    --primary: #2ecc71;       /* Svěží zelená (Zdraví) */
    --primary-dark: #27ae60;
    --secondary: #34495e;     /* Tmavě modrá (Text) */
    --accent: #e74c3c;        /* Červená (Akce/Chyby) */
    --light: #f9f9f9;
    --white: #ffffff;
    --gray: #95a5a6;
    --border-radius: 8px;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: var(--secondary); background: var(--white); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- GRID & LAYOUT --- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

/* --- HEADER & NAV --- */
.main-header { background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.05); padding: 15px 0; position: sticky; top: 0; z-index: 100; }
.main-header .container { display: flex; justify-content: space-between; align-items: center; }
.main-nav ul { display: flex; gap: 20px; align-items: center; }
.main-nav a { font-weight: 600; color: var(--secondary); transition: color 0.3s; }
.main-nav a:hover { color: var(--primary); }
.btn-nav { background: var(--primary); color: white !important; padding: 8px 20px; border-radius: 20px; }

/* --- HERO SEKCE --- */
.hero-section {
    background-size: cover; background-position: center; height: 500px;
    display: flex; align-items: center; justify-content: center;
    color: white; text-align: center; position: relative;
    background-color: #333; /* Fallback */
    background-blend-mode: overlay;
}
.hero-content h1 { font-size: 3rem; margin-bottom: 20px; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.hero-content .lead { font-size: 1.2rem; margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; }

/* --- TLAČÍTKA --- */
.btn { display: inline-block; padding: 12px 30px; border-radius: var(--border-radius); font-weight: bold; cursor: pointer; border: none; transition: transform 0.2s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: white; }
.btn-outline { border: 2px solid white; color: white; margin-left: 10px; }
.btn-block { display: block; width: 100%; text-align: center; }

/* --- REZERVAČNÍ PROCES (KROKY) --- */
.booking-step { padding: 60px 0; max-width: 800px; margin: 0 auto; }
.booking-step h1 { text-align: center; margin-bottom: 40px; color: var(--secondary); }

/* Krok 1: Dlaždice */
.topic-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.topic-card {
    background: var(--light); padding: 30px; border-radius: var(--border-radius);
    text-align: center; transition: all 0.3s; border: 2px solid transparent;
}
.topic-card:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: var(--shadow); }
.topic-card .icon { font-size: 3rem; color: var(--primary); margin-bottom: 15px; }

/* Krok 2: Sloty */
.slots-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 15px; }
.slot-btn {
    background: white; border: 1px solid #ddd; padding: 15px; border-radius: var(--border-radius);
    text-align: center; display: block; transition: 0.2s;
}
.slot-btn:hover { background: var(--primary); color: white; border-color: var(--primary); }
.slot-btn .date { display: block; font-size: 0.8rem; color: #888; }
.slot-btn:hover .date { color: #eee; }
.slot-btn .time { display: block; font-size: 1.2rem; font-weight: bold; }

/* Krok 3: Formuláře */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; }
.form-control {
    width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: var(--border-radius);
    font-size: 1rem; transition: border-color 0.3s;
}
.form-control:focus { border-color: var(--primary); outline: none; }
.form-row { display: flex; gap: 20px; }
.form-row .half { flex: 1; }

.mining-fields {
    background: #e8f8f5; border: 1px solid #d1f2eb; padding: 20px;
    border-radius: var(--border-radius); margin-bottom: 20px;
}
.mining-fields legend { background: var(--primary); color: white; padding: 5px 15px; border-radius: 20px; font-size: 0.9rem; }

/* --- MODÁLNÍ OKNO (POPUP TRAP) --- */
.modal {
    position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6); display: flex; align-items: center; justify-content: center;
}
.modal-content {
    background-color: white; padding: 40px; border-radius: var(--border-radius);
    width: 90%; max-width: 500px; position: relative; box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    animation: slideDown 0.4s ease;
}
@keyframes slideDown { from { transform: translateY(-50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.close-modal { position: absolute; top: 15px; right: 20px; font-size: 28px; font-weight: bold; cursor: pointer; color: #aaa; }
.close-modal:hover { color: #000; }

/* --- FLASH MESSAGES --- */
.flashes { position: fixed; top: 80px; right: 20px; z-index: 200; }
.flash { padding: 15px 25px; margin-bottom: 10px; border-radius: 4px; color: white; box-shadow: var(--shadow); }
.flash.success { background: var(--primary); }
.flash.danger { background: var(--accent); }
.flash.info { background: #3498db; }

/* --- FOOTER --- */
.main-footer { background: var(--secondary); color: #ecf0f1; padding: 50px 0 20px; margin-top: 50px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 30px; }
.footer-cols h3 { color: var(--primary); margin-bottom: 20px; }
.copyright { text-align: center; border-top: 1px solid #486077; padding-top: 20px; font-size: 0.9rem; color: #bdc3c7; }

/* --- COOKIE BAR --- */
.cookie-bar {
    position: fixed; bottom: 0; left: 0; width: 100%; background: #2c3e50; color: white;
    padding: 15px 0; z-index: 999; text-align: center; box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}
.cookie-bar .container { display: flex; justify-content: center; align-items: center; gap: 20px; }
.cookie-bar .btn-small { background: var(--primary); padding: 5px 15px; font-size: 0.9rem; }


/* --- KROK 1: VÝBĚR SLUŽBY (Booking:default) --- */

.booking-header {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 20px;
}

.booking-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.booking-header .lead {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

/* --- KONTEJNER (Aby se tam vešly 3 karty) --- */
/* Pokud používáš Bootstrap nebo jiný framework, toto můžeš vynechat,
   ale pro jistotu rozšíříme kontejner na této stránce */
.booking-step {
    max-width: 1400px !important; /* Povolíme větší šířku pro tuto sekci */
}

/* --- GRID (Responzivní rozložení) --- */
.topic-grid {
    display: grid;
    gap: 30px;
    justify-content: center;
    padding-bottom: 50px;

    /* DEFAULT (Mobil): 1 sloupec */
    grid-template-columns: 1fr;
}

/* TABLET (od 750px): 2 sloupce */
@media (min-width: 750px) {
    .topic-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* DESKTOP (od 1150px): 3 sloupce */
/* Tady se stane to kouzlo - jakmile je místo, skočí tam 3 vedle sebe */
@media (min-width: 1150px) {
    .topic-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Karta služby - musí mít automatickou výšku! */
.topic-card {
    /* Původně tam bylo height: 400px -> TO SMAŽ nebo změň na auto */
    height: auto !important;      /* Musí se natahovat */
    min-height: 400px;            /* Minimální výška */
    max-height: none !important;  /* Žádný limit výšky */

    /* Zbytek nech stejný */
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* Popis služby - VELKÝ, TUČNÝ a CELÝ */
.topic-card p {
    /* Reset omezení délky */
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;

    /* Typografie */
    font-size: 1.25rem;  /* Velké písmo (cca 20px) */
    font-weight: 800;    /* Extra tučné */
    color: #2c3e50;      /* Tmavá barva */
    line-height: 1.5;
    margin-bottom: 20px;

    /* Volitelné: Zarovnání na střed */
    text-align: center;
}

.topic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(46, 204, 113, 0.15);
    border-color: #2ecc71;
}

/* --- OBRÁZEK (250px) --- */
.card-image {
    height: 250px;
    width: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.topic-card:hover .card-image img {
    transform: scale(1.05);
}

/* --- OBSAH KARTY --- */
.card-content {
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: flex-start; /* Zarovnání nahoru */
}

.topic-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin: 0 0 5px 0;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.topic-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    /* Omezíme text na 2 řádky */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Cenovka - zarovnáme ji dolů pomocí margin-top: auto */
.price-tag {
    background: #e8f8f5;
    color: #27ae60;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    text-align: center;
    font-size: 0.95rem;
    align-self: flex-start;
    margin-top: auto; /* Tímto se "přilepí" na spodek karty */
}


/* --- KROK 2: VÝBĚR TERMÍNU (Booking:calendar) --- */

.slots-container {
    margin-top: 30px;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
}

/* Tlačítko slotu */
.slot-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 2px solid #eef2f7;
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
    color: #2c3e50;
}

.slot-btn:hover {
    border-color: #2ecc71;
    background: #f0fdf4;
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.15);
}

.slot-btn .date {
    font-size: 0.85rem;
    color: #95a5a6;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.slot-btn .time {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
}

.slot-btn:hover .time {
    color: #27ae60;
}

/* Varování (žádné termíny) */
.alert-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 1.1rem;
}

.step-footer {
    margin-top: 40px;
    text-align: center;
}

/* --- FORMÁTOVANÝ TEXT V KARTĚ --- */

.formatted-text {
    text-align: left; /* Delší texty se lépe čtou zarovnané vlevo */
    color: #2c3e50;
    margin-bottom: 20px;
}

/* Styl pro odstavce <p> uvnitř */
.formatted-text p {
    font-size: 1.1rem;    /* Větší písmo */
    font-weight: 600;     /* Tučnější, ale ne extrém (lépe se čte) */
    line-height: 1.6;     /* Vzdušnější řádkování */
    margin-bottom: 15px;  /* Mezera pod odstavcem */
    color: #34495e;
}

/* Styl pro nadpisy <h5> uvnitř (např. "Průběh uzdravení:") */
.formatted-text h5 {
    font-size: 1.2rem;    /* Ještě o kousek větší */
    font-weight: 800;     /* Extra tučné */
    color: #27ae60;       /* Zelená barva (zvýraznění) */
    text-transform: uppercase; /* Velká písmena */
    margin-top: 20px;     /* Odstup od předchozího textu */
    margin-bottom: 10px;
    border-bottom: 2px solid #e8f8f5; /* Podtržení */
    padding-bottom: 5px;
}

/* Pokud tam máš <br>, zajistíme, aby nedělaly obří díry */
.formatted-text br {
    display: block;
    content: "";
    margin-bottom: 5px;
}

/* --- NOVÝ FORMULÁŘ (HIGH TICKET) --- */

/* Box "Upřímnost na rovinu" */
.transparency-box {
    background: #e8f4fd;
    border-left: 5px solid #3498db;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 4px;
    color: #2c3e50;
}
.transparency-box h3 {
    color: #3498db;
    margin-top: 0;
    font-size: 1.2rem;
}

/* Stylování karty formuláře */
.card-style {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Nadpisy sekcí ve formuláři */
.form-section-title {
    margin-top: 30px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    color: #2c3e50;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Radio buttony (Seznam možností) */
.radio-group label {
    display: block; /* Každá možnost na nový řádek */
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: normal; /* Ne tučně */
}
.radio-group input[type="radio"] {
    margin-right: 10px;
    transform: scale(1.2);
}

/* Zvýraznění sekce s penězi */
.highlight-radio {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #eee;
}

/* Rozložení inputů vedle sebe */
.form-row { display: flex; gap: 20px; }
.form-row .half { flex: 1; }
.form-row.three-cols { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 15px; }

/* Mobilní zobrazení */
@media (max-width: 700px) {
    .form-row { flex-direction: column; }
    .form-row.three-cols { grid-template-columns: 1fr; }
    .card-style { padding: 20px; }
}


/* --- HERO SEKCE --- */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 600px; /* Vyšší pro lepší dojem */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

/* Tmavá vrstva přes obrázek */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 50% černá */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; /* Aby byl text nad vrstvou */
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content .highlight {
    color: #2ecc71; /* Zelené zvýraznění */
}

.hero-content .lead {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Tlačítka v Hero */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-lg {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px; /* Kulatá tlačítka */
}

/* Pulzující efekt pro hlavní tlačítko */
.pulse-effect {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(46, 204, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}


/* --- SEKCÍ OBECNĚ --- */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #2ecc71;
    border-radius: 2px;
}


/* --- FEATURES (VÝHODY) --- */
.features-section {
    background: #f9f9f9;
}

.feature-box {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: #e8f8f5;
    color: #2ecc71;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.feature-box h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.feature-box p {
    color: #666;
    line-height: 1.6;
}


/* --- TESTIMONIALS (REFERENCE) --- */
.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: #2ecc71;
    opacity: 0.3;
    margin-bottom: 20px;
}

.quote-text {
    font-size: 1.4rem;
    font-style: italic;
    color: #34495e;
    margin-bottom: 30px;
    line-height: 1.5;
}

.author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.avatar-placeholder {
    width: 50px;
    height: 50px;
    background: #2c3e50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.author-info {
    text-align: left;
}

.author-info span {
    display: block;
    font-size: 0.9rem;
    color: #7f8c8d;
}


/* --- CTA SECTION --- */
.cta-section {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-light {
    background: white;
    color: #27ae60;
}

.btn-light:hover {
    background: #f0f0f0;
    color: #2ecc71;
}

.btn-xl {
    padding: 18px 50px;
    font-size: 1.3rem;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Responsivita */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; }
    .grid-3 { grid-template-columns: 1fr; }
}


/* --- OBCHODNÍ PODMÍNKY --- */

.terms-section {
    background-color: #f8f9fa; /* Jemně šedé pozadí celé stránky */
    padding: 60px 0;
    min-height: 80vh;
}

.terms-header {
    text-align: center;
    margin-bottom: 40px;
}

.terms-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.last-updated {
    color: #95a5a6;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Karta s textem */
.terms-content {
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    line-height: 1.8;
    color: #444;
}

/* Zvýrazněný box (Alert) */
.alert-box {
    background-color: #e8f4fd;
    border-left: 4px solid #3498db;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 30px;
    color: #2c3e50;
}

.alert-box i {
    font-size: 1.5rem;
    color: #3498db;
    margin-top: 3px;
}

/* Typografie uvnitř podmínek */
.terms-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 1.3rem;
}

.terms-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #555;
}

.terms-content li {
    margin-bottom: 8px;
}

.divider {
    border: 0;
    border-top: 1px solid #eee;
    margin: 30px 0;
}

/* Patička podmínek */
.terms-footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 0.95rem;
    color: #7f8c8d;
}

.terms-footer a {
    color: #2ecc71;
    font-weight: bold;
    text-decoration: none;
}

/* Mobilní zobrazení */
@media (max-width: 600px) {
    .terms-content {
        padding: 25px;
    }
    .terms-header h1 {
        font-size: 2rem;
    }
}


/* Uprav ve style.css */
.cookie-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-text {
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: left;
}

/* Na mobilu pod sebe */
@media (max-width: 768px) {
    .cookie-bar .container {
        flex-direction: column;
        text-align: center;
    }
    .cookie-text {
        text-align: center;
        margin-bottom: 15px;
    }
}

/* --- ABOUT HERO (Tmavá, vážná sekce) --- */
.about-hero {
    background-color: #2c3e50; /* Tmavě modrá */
    color: white;
    padding: 80px 0;
    text-align: center;
}

.main-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
}

.sub-title {
    font-size: 1.5rem;
    color: #2ecc71; /* Zelená naděje */
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lead-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    opacity: 0.9;
}

.info-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    display: inline-block;
    text-align: left;
    max-width: 700px;
}

.info-box p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.info-box i {
    color: #2ecc71;
    margin-right: 10px;
}

/* --- MISSION SEKCE (Světlá) --- */
.about-mission {
    background: #f8f9fa;
    padding: 60px 0;
}

.mission-card {
    background: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
}

.logo-circle {
    width: 80px;
    height: 80px;
    background: #e8f4fd;
    color: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
}

.divider-small {
    width: 50px;
    height: 3px;
    background: #eee;
    border: none;
    margin: 20px auto;
}

.highlight-box {
    background: #fff8e1; /* Jemně žlutá */
    border: 1px solid #ffe0b2;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    color: #5d4037;
    font-size: 1.1rem;
}

.free-tag {
    background: #27ae60;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9em;
}

.mt-30 { margin-top: 30px; }


/* --- KONTAKTNÍ STRÁNKA --- */
.contact-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.page-title {
    margin-bottom: 50px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Levý sloupec užší, pravý širší */
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
}

/* Info Box */
.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: #e8f4fd;
    color: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.info-item a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.1rem;
}

.info-item a:hover {
    color: #3498db;
}

/* Socials */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: transform 0.2s;
}

.social-icons a:hover { transform: translateY(-3px); }
.social-icons .fb { background: #3b5998; }
.social-icons .ig { background: #e1306c; }

/* Skrytí honeypot pole (nutné pro funkčnost!) */
input[name="website"] {
    display: none !important;
}


/* --- THERAPY SECTION (Frekvenční léčba & Chromatoterapie) --- */
.therapy-section {
    background: #fff;
    padding: 80px 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #666;
    max-width: 700px;
    margin: -30px auto 50px;
    line-height: 1.6;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.therapy-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.therapy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.12);
    border-color: #2ecc71;
}

.therapy-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.3);
}

.therapy-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.therapy-card p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
}

.therapy-cta {
    text-align: center;
    margin-top: 30px;
}

.therapy-cta p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}


/* --- E-BOOK SECTION --- */
.ebook-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 80px 0;
    color: white;
}

.ebook-card {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.ebook-badge {
    display: inline-block;
    background: #2ecc71;
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.ebook-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    line-height: 1.2;
}

.ebook-subtitle {
    font-size: 1.2rem;
    opacity: 0.85;
    margin-bottom: 30px;
}

.ebook-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.ebook-list li {
    font-size: 1.05rem;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ebook-list li i {
    color: #2ecc71;
    margin-top: 4px;
    flex-shrink: 0;
}

.ebook-visual {
    display: flex;
    justify-content: center;
}

.ebook-cover {
    width: 220px;
    height: 310px;
    background: linear-gradient(145deg, #27ae60 0%, #2ecc71 50%, #1abc9c 100%);
    border-radius: 8px;
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.4), -5px -5px 15px rgba(255, 255, 255, 0.05);
    transform: perspective(800px) rotateY(-8deg);
    transition: transform 0.4s;
    position: relative;
    overflow: hidden;
}

.ebook-cover:hover {
    transform: perspective(800px) rotateY(0deg);
}

.ebook-cover::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 15px;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
}

.ebook-cover-inner {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.cover-tag {
    font-size: 0.75rem;
    letter-spacing: 3px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.ebook-cover-inner h3 {
    font-size: 1.3rem;
    line-height: 1.3;
    margin-bottom: 10px;
    color: white;
}

.ebook-cover-inner p {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 20px;
    color: white;
}

.cover-author {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: auto;
}

@media (max-width: 768px) {
    .ebook-card {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .ebook-list li {
        justify-content: center;
    }
    .ebook-content h2 {
        font-size: 2rem;
    }
}


/* --- SAVINGS SECTION (Měsíční plán) --- */
.savings-section {
    background: #f9f9f9;
    padding: 80px 0;
}

.savings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.savings-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s;
}

.savings-item:hover {
    transform: translateY(-5px);
}

.savings-item.savings-total {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    grid-column: 1 / -1;
}

.savings-item.savings-total h4,
.savings-item.savings-total p {
    color: white;
}

.savings-icon {
    width: 55px;
    height: 55px;
    background: #e8f8f5;
    color: #2ecc71;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.savings-total .savings-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.savings-item h4 {
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.savings-item p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.savings-amount {
    background: #e8f8f5;
    color: #27ae60;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: auto;
}

.savings-amount.total {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    font-size: 1.1rem;
    padding: 8px 20px;
}


/* --- INVITE SECTION (Pozvánka do ordinace) --- */
.invite-section {
    background: white;
    padding: 80px 0;
}

.invite-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: #f8f9fa;
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.invite-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.invite-card h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.invite-card > p {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.invite-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.invite-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.invite-benefit i {
    color: #2ecc71;
    font-size: 1.2rem;
}

.invite-benefit span {
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .invite-card {
        padding: 40px 20px;
    }
    .invite-benefits {
        flex-direction: column;
        align-items: center;
    }
}

