/* --- SERVIS STRÁNKA --- */

.section-servis {
    padding: 60px 0;
}

/* 1. Úvodní Box (Šedý) */
.servis-intro-box {
    background-color: #f5f5f5;
    padding: 40px;
    margin-bottom: 50px;
    border-radius: 4px;
}

.servis-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.servis-img img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.servis-text h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.servis-text p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

.highlight-blue {
    color: var(--tkc-blue);
    font-weight: 500;
}

/* 2. Taby (Přepínač - Styl Internet) */
.page-tabs-wrapper {
    margin: 40px auto;
    text-align: center;
}

.page-tabs {
    display: inline-flex;
    background: #f0f0f0;
    padding: 5px;
    border-radius: 50px;
    /* Kulaté rohy celého obalu */
}

.tab-btn {
    padding: 12px 30px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    color: #555;
    border-radius: 40px;
    /* Kulaté rohy tlačítek */
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: #333;
}

.tab-btn.active {
    background-color: var(--tkc-blue);
    color: #fff;
    box-shadow: 0 4px 10px rgba(36, 125, 218, 0.3);
}

.servis-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.servis-content.active-content {
    display: block;
    opacity: 1;
}

/* 3. Tabulka Ceníku */
.servis-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 60px;
    background: #fff;
}

.servis-table thead tr {
    background-color: var(--tkc-blue);
    color: #fff;
}

.servis-table th {
    padding: 12px 15px;
    text-align: left;
    font-size: 1rem;
}

.servis-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    color: #333;
    vertical-align: top;
}

.servis-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.servis-table small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
}

.text-right {
    text-align: right;
}

.price-note {
    color: #888;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

/* 4. Dotazník (Modrý Box) */
.survey-box {
    background-color: #f5f8fa;
    /* Velmi světle modrá/šedá */
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    border-radius: 4px;
    border-left: 5px solid var(--tkc-blue);
    /* Modrý proužek vlevo */
}

.survey-icon {
    flex: 0 0 60px;
    height: 60px;
    background-color: var(--tkc-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
}

.survey-content h4 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    color: #333;
    text-transform: uppercase;
}

.survey-content p {
    margin: 0 0 10px 0;
    color: #666;
    font-size: 0.9rem;
}

.survey-link {
    color: var(--tkc-blue);
    text-decoration: none;
    font-weight: 600;
}

.survey-link:hover {
    text-decoration: underline;
}

/* Responsivita */
@media (max-width: 768px) {
    .servis-grid {
        grid-template-columns: 1fr;
    }

    .servis-img {
        text-align: center;
    }

    .servis-table th,
    .servis-table td {
        display: block;
        width: 100%;
        text-align: left;
        /* Na mobilu zarovnat cenu vlevo */
    }

    .text-right {
        text-align: left;
    }

    .survey-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {

    /* Pro Firmy */
    .b2b-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .b2b-img {
        order: -1;
        /* Obrázek první */
        margin-bottom: 20px;
        justify-content: center;
        display: flex;
    }

    .cta-box-gray {
        flex-direction: column;
        text-align: center;
    }

    /* Servis */
    .servis-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .servis-tabs-wrapper {
        flex-direction: column;
    }

    .survey-box {
        flex-direction: column;
        text-align: center;
    }

    /* Novinky */
    .news-grid {
        grid-template-columns: 1fr;
        /* Jedna novinka na řádek */
    }

    /* Kontakt */
    .contact-grid-wrapper {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}