/* --- TKC KLUB STYLY --- */

.klub-wrapper {
    padding: 20px 0 60px 0;
}

/* 1. Úvodní Box (Šedý) */
.klub-intro-box {
    background-color: #f5f5f5;
    padding: 50px;
    margin-bottom: 50px;
    border-radius: 4px;
}

.klub-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.klub-img img {
    max-width: 100%;
    height: auto;
}

.klub-text h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.klub-text p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* 2. Benefit Box (Prasátko / Ikona) */
.benefit-box {
    background-color: #f5f5f5;
    padding: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.benefit-img {
    flex: 0 0 250px;
    text-align: center;
}
.benefit-img img {
    max-width: 100%;
    height: auto;
}

.benefit-text h3 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 500;
}

.benefit-text p {
    color: #666;
    margin-bottom: 20px;
}

.benefit-text a {
    color: var(--tkc-blue);
}

.benefit-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.benefit-buttons span {
    color: var(--tkc-blue);
    font-weight: 500;
}

/* Tlačítka pro tarify */
.btn-outline {
    border: 1px solid var(--tkc-blue);
    color: var(--tkc-blue);
    padding: 8px 15px;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: 0.3s;
    background: #fff;
    border-radius: 2px;
}
.btn-outline:hover {
    background-color: var(--tkc-blue);
    color: #fff;
}

/* 3. Formulář Doporučení */
.recommend-form-wrapper {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.form-h3 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 500;
}

.recommend-form h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
    margin-top: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #444;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    outline: none;
}
.form-group input:focus, .form-group textarea:focus {
    background-color: #fff;
    border-color: var(--tkc-blue);
}

.error-text {
    color: red;
    font-size: 0.8rem;
    display: block;
    margin-top: 5px;
}

.radio-group label.radio-inline {
    font-weight: normal;
    display: inline-block;
    margin-right: 20px;
    cursor: pointer;
    font-size: 0.95rem;
}
.radio-group input { margin-right: 5px; }

.btn-submit {
    background-color: #ddd;
    color: #333;
    border: none;
    padding: 10px 30px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    transition: 0.3s;
    border-radius: 2px;
}
.btn-submit:hover {
    background-color: var(--tkc-blue);
    color: #fff;
}

.divider-line {
    border: 0;
    border-top: 1px solid #eee;
    margin: 60px 0;
}

/* Responsivita */
@media (max-width: 991px) {
    .klub-grid, .benefit-box {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: center;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .klub-img, .benefit-img {
        margin-bottom: 20px;
    }
    .benefit-buttons {
        justify-content: center;
    }
}