/* =========================
   MOBILE MENU – CTA
   ========================= */

.mobile-menu-cta {
    padding: 14px 16px 4px 16px;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 48px;

    border-radius: 8px;

    font-size: 16px;
    font-weight: 700;
    text-decoration: none;

    color: #ffffff;

    transition: background-color .2s ease,
    transform .15s ease;
}

.mobile-menu-btn-call {
    background: #e9a244;
}

.mobile-menu-btn-call:hover {
    background: #23913d;
    color: #ffffff;
}

.mobile-menu-btn-contact {
    background: #334585;
}

.mobile-menu-btn-contact:hover {
    background: #5b91cb;
    color: #ffffff;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-cta a {
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 7px;
    padding: 8px 16px;
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    transition: background-color .25s ease,
    transform .2s ease;
    will-change: transform;
}

.header-cta-call {
    background: #28a745;
    animation: cta-wiggle-x-1 3.2s ease-in-out infinite;
}

.header-cta-call:hover {
    background: #23913d;
    color: #ffffff;
}

.header-cta-contact {
    background: #334585;
    animation: cta-wiggle-x-2 2.8s ease-in-out infinite;
}

.header-cta-contact:hover {
    background: #5b91cb;
    color: #ffffff;
}

/* ZADZWOŃ */
.header-right .inner .header-cta a.header-cta-call {
    background: #e9a244 !important;
    border-color: #e9a244 !important;
    color: #fff !important;
}

.header-right .inner .header-cta a.header-cta-call:hover {
    background: #cf8d31 !important;
    border-color: #cf8d31 !important;
    color: #fff !important;
}

/* ZOSTAW KONTAKT */
.header-right .inner .header-cta a.header-cta-contact {
    background: #444C91 !important;
    border-color: #444C91 !important;
    color: #fff !important;
}

.header-right .inner .header-cta a.header-cta-contact:hover {
    background: #39407c !important;
    border-color: #39407c !important;
    color: #fff !important;
}

@keyframes cta-wiggle-x-1 {
    0%   { transform: translateX(0); }
    8%   { transform: translateX(4px); }
    16%  { transform: translateX(-4px); }
    24%  { transform: translateX(2px); }
    32%  { transform: translateX(0); }
    100% { transform: translateX(0); }
}

@keyframes cta-wiggle-x-2 {
    0%   { transform: translateX(0); }
    10%  { transform: translateX(-3px); }
    18%  { transform: translateX(5px); }
    28%  { transform: translateX(-2px); }
    36%  { transform: translateX(0); }
    100% { transform: translateX(0); }
}

@media (min-width: 576px) and (max-width: 1475px) {
    .header-cta a {
        font-size: 14px;
        padding: 7px 10px;
        min-height: 40px;
    }

    .header-cta {
        gap: 6px;
    }
}

/* =========================
   FOOTER – LINKI 2 KOLUMNY
   ========================= */

.footer-links-two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 40px;
}

.footer-links-two-cols ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-two-cols li {
    margin-bottom: 8px;
}

.footer-links-two-cols a {
    color: #444;
    text-decoration: none;
    font-size: 17px;
}

.footer-links-two-cols a:hover {
    color: #4183c9;
}

/* =========================
   FOOTER – INFO O PLACÓWKACH
   ========================= */

.footer-locations-simple {
    background: #ffffff;
    padding: 30px 0;
}

/* 🔑 GRID WYŚRODKOWANY JAKO BLOK */
.footer-locations-simple .container {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-areas:
        "title logo"
        "text  text";
    gap: 20px 40px;
    padding-top: 25px;
    justify-content: center;
    align-items: center;
    text-align: left;
    margin-bottom: 50px;
}

/* ELEMENTY */
.footer-locations-title {
    grid-area: title;
    font-size: 28px;
    font-weight: 700;
    color: #334585;
    margin: 0;
    line-height: 1.25;
}

.footer-locations-simple img {
    grid-area: logo;
    max-height: 90px;
    width: auto;
    display: block;
}

.footer-locations-text {
    grid-area: text;
    font-size: 18px;
    color: #333;
    margin: 0;
    text-align: center; /* ⬅️ tekst pod spodem wyśrodkowany */
}

/* LINK */
.footer-locations-text a {
    color: #4183c9;
    font-weight: 600;
    text-decoration: underline;
}

.footer-locations-text a:hover {
    text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-locations-simple .container {
        grid-template-columns: 1fr;
        grid-template-areas:
            "title"
            "logo"
            "text";
        justify-content: center;
        text-align: center;
    }

    .footer-locations-simple img {
        margin: 0 auto;
        max-height: 48px;
    }

    .footer-locations-title {
        font-size: 22px;
    }
}

/* =========================
   FOOTER – DANE KONTAKTOWE
   ========================= */

.footer-contact-block {
    font-size: 17px;
    color: #333;
    line-height: 1.6;
}

/* LOGO */
.footer-logo {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
    text-decoration: none;
}

.footer-widget-content .phone,
.footer-widget-content .mail {
    font-size: 20px;
}

.logo-blue {
    color: #4183c9;
}

.logo-dark {
    color: #334585;
}

/* POJEDYNCZA LINIA */
.footer-contact-item {
    margin-bottom: 6px;
}

/* LABEL */
.footer-contact-item .label {
    font-weight: 600;
    color: #555;
    margin-right: 4px;
}

/* TELEFON – lekko wyróżniony */
.footer-contact-phone a {
    font-size: 16px;
    font-weight: 700;
    color: #334585;
    text-decoration: none;
}

.footer-contact-phone a:hover {
    text-decoration: underline;
}

/* sekcja pracownik z cmm */

.nasz-zespol-tytul {
    color: #119fe2;
    font-size: 25px;
    font-weight: bold;
}

.personel-separator {
    border-bottom: 1px solid #e7e7e7;
    margin: 10px 0 15px 0;
}

.pracownik-profilowe {
    display: block;
    margin: 0 auto;
    padding: 3px;
    border: 1px solid #dedede;
}

.cmm-photo-wrap {
    position: relative;
    display: table;
    width: auto;
    margin: 20px auto 30px auto;
}

.cmm-photo-wrap img {
    display: block;
    width: 360px;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 3px;
    border: 1px solid #dedede;
}

.cmm-video-cta {
    position: absolute;
    right: -55px;
    bottom: 14%;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 15px 22px;
    background: #6dbaf2;
    color: #ffffff;

    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    white-space: nowrap;

    border-radius: 5px;
}

.cmm-video-cta:hover {
    background: #334585;
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 767.98px) {
    .cmm-photo-wrap img {
        width: 280px;
    }

    .cmm-video-cta {
        right: auto;
        left: 50%;
        bottom: -22px;
        transform: translateX(-50%);

        padding: 12px 22px;
        font-size: 15px;
    }

    .cmm-photo-wrap {
        margin-bottom: 45px;
    }
}

/* modal */
.cmm-video-modal{
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.cmm-video-backdrop{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
}

.cmm-video-box{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 90vw;
    max-width: 960px;

    background: #000;
    border-radius: 6px;
    overflow: hidden;
}

.cmm-video-box video{
    display: block;
    width: 100%;
    height: auto;
    max-height: 80vh;
}

.cmm-video-close{
    position: absolute;
    top: 6px;
    right: 10px;

    background: none;
    border: 0;
    color: #fff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

.personel-certyfikat {
    margin: 3px;
    padding: 3px;
    border: 1px solid #eaeaea;
}

.personel-certyfikat:hover {
    cursor: pointer;
    border: 1px solid #1b4293;
}

.pracownik-box-nowy {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    min-height: 145px;
    margin-bottom: 20px;
}

.pracownik-box-nowy.pracownik-video .stanowisko .foto img{
    border: 3px solid #5c9edc;
}

.pracownik-box-nowy .stanowisko {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.pracownik-box-nowy .stanowisko .dane {

}


.pracownik-box-nowy .stanowisko .foto {

}

.pracownik-box-nowy .stanowisko .foto img {
    padding: 3px;
    border: 1px solid #dedede;
    margin-bottom: 10px;
    max-width: 165px;
}

.foto-video{
    position: relative;
    display: inline-block;
    max-width: 165px;
}

.foto-video .foto-overlay-link{
    position: relative;
    display: block;
    border-radius: 50%;
    overflow: hidden;
}

/* zdjęcie */
.foto-video img{
    display: block;
    width: 100%;
    height: auto;
    padding: 3px;
    border: 1px solid #dedede;
    border-radius: 50%;
    transition: transform .3s ease;
}


.pracownik-box-nowy .stanowisko .imienazwisko {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    display: block;
}

.pracownik-box-nowy .stanowisko .praca {
    font-style: italic;
    font-size: 13px;
}

.pracownik-box-nowy .stanowisko .praca2 {
    margin-top: 10px;
    display: inline-block;
    font-weight: bold;
    font-size: 12px;
    color: #0082bf;
}

.pracownik-box-nowy .profil {
    margin: 15px 0 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.pracownik-box-nowy .profil a {
    background: #ffffff;
    padding: 5px 12px;
    color: #6e6e6e;
    border-radius: 8px;
    border: 1px solid #dedede;
    font-size: 13px;
}

.pracownik-box-nowy .profil a:hover {
    cursor: pointer;
    background: #184092;
    color: #ffffff;
}

.pracownik-box-nowy .profil .btn-profil-video {
    background: #5c9edc;        /* kolor bazowy */
    padding: 5px 12px;
    color: #ffffff;
    border-radius: 8px;
    border: 1px solid #5c9edc;
    font-size: 13px;
    text-decoration: none;
    transition: all .2s ease;
}

.pracownik-box-nowy .profil .btn-profil-video:hover {
    cursor: pointer;
    background: #184092;
    border-color: #184092;
    color: #ffffff;
}

.pracownik-box {
    border-radius: 4px;
    border: 2px solid #dedede;
    padding: 10px;
    background: #f9fdff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    min-height: 145px;
    margin-bottom: 20px;
}

.pracownik-box .stanowisko {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
}

.pracownik-box .stanowisko .dane {

}


.pracownik-box .stanowisko .foto {
    margin-right: 15px;
}

.pracownik-box .stanowisko .imienazwisko {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    display: block;
}

.pracownik-box .stanowisko .praca {
    font-style: italic;
    font-size: 15px;
}

.pracownik-box .stanowisko img {
    max-width: 55px;
}

.pracownik-box .godziny {
    margin: 15px 0;
}

.pracownik-box .godziny p {
    font-size: 15px;
}

.pracownik-box .profil {
    margin: 15px 0 10px 0;
}

.pracownik-box .profil a {
    background: #194092;
    padding: 5px 12px;
    color: #ffffff;
    border-radius: 4px;
    font-size: 15px;
}

.pracownik-box .profil a:hover {
    cursor: pointer;
    background: #129fe2;
}

/* LINKI */
.footer-contact-block a {
    color: #4183c9;
    text-decoration: none;
}

.footer-contact-block a:hover {
    text-decoration: underline;
}

.overlay-dark {
    background-color: rgba(255, 255, 255, 0.6);
    width: 100%;
    height: 100%;
}


.reh-wybor-akcji .reh-domowa-zamowienie-tytul {
    font-weight: 800;
    font-size: 32pt;
    color: #334585;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7);
}

.reh-wybor-akcji .reh-domowa-zamowienie-opis {
    font-weight: bold;
    color: #000000;
    font-size: 16pt;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7);
}

.reh-wybor-akcji a {
    font-weight: bold;
    display: inline-block;
    border-radius: 7px;
    padding: 10px 15px;
    font-size: 17pt;
    color: #ffffff;
    margin: 5px 3px;
    background-color: #3c4680;
}

.reh-wybor-akcji a:hover {
    background-color: #5c82c3;
    cursor: pointer;
    color: #ffffff;
}

.reh-wybor-akcji .zamow-lewa, .reh-wybor-akcji .zamow-prawa {
    padding: 0;
}

.home-intro {
    background-color: #ffffff;
    padding: 0;
}

.home-intro-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 5fr 5fr;
    gap: 60px;
}

/* LEWA KOLUMNA */

.home-intro-main {
    max-width: 620px;
}

.home-intro-main h2 {
    font-size: 36px;
    font-weight: 600;
    color: #2f3b6d;
    margin-bottom: 24px;
}

.home-intro-main p {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
    color: #333;
    margin-bottom: 16px;
}

/* PRAWA STRONA */

.home-intro-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background-color: #f7f9fc;
    border-radius: 10px;
    padding: 20px 20px;
}


.home-intro-box h3 {
    font-size: 28px;
    font-weight: 600;
    color: #2f3b6d;
    margin-bottom: 14px;
}

.home-intro-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.home-intro-box li {
    font-size: 18px;
    color: #444;
    font-weight: 500;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}

.home-intro-box li::before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: #4183c9;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 9px;
}

/* RESPONSYWNOŚĆ */

@media (max-width: 992px) {
    .home-intro-inner {
        grid-template-columns: 1fr;
    }

    .home-intro-side {
        grid-template-columns: 1fr;
        gap: 24px;
        background-color: transparent;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .home-intro {
        padding: 50px 16px;
    }

    .home-intro-main h2 {
        font-size: 28px;
    }

    .home-intro-main p {
        font-size: 16px;
    }
}

/* =================================================
   FAQ BANNER – FULL WIDTH
   ================================================= */

.faq-banner {
    position: relative;
    width: 100%;
    background-image: url('../../../assets/images/rehabilitacja-domowa-faq.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* OVERLAY */
.faq-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(25, 35, 70, 0.55); /* spokojny, medyczny */
}

/* =================================================
   INNER WRAPPER
   ================================================= */

.faq-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 0;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
}

.faq-cta a {
    font-weight: bold;
    display: inline-block;
    border-radius: 7px;
    padding: 8px 18px;
    font-size: 22px;
    color: #ffffff;
    margin: 5px 3px;
    background-color: #334585;;
    text-decoration: none;
    transition: 0.35s all ease;
}

.faq-cta a:hover {
    background-color: #5b91cb;
    cursor: pointer;
    color: #ffffff;
}

/* =================================================
   TEKST
   ================================================= */

.faq-banner-text h2 {
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.faq-banner-text p {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    color: #ffffff;
    max-width: 650px;
    margin: 0;
}

/* =================================================
   CTA (dziedziczy .header-cta a)
   ================================================= */

.faq-banner-action {
    white-space: nowrap; /* przycisk nie łamie się */
}

/* =================================================
   RESPONSYWNOŚĆ
   ================================================= */

@media (max-width: 992px) {
    .faq-banner-inner {
        gap: 30px;
    }

    .faq-banner-text h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .faq-banner-inner {
        grid-template-columns: 1fr;
        padding: 50px 16px;
    }

    .faq-banner-action {
        margin-top: 20px;
    }

    .faq-banner-text h2 {
        font-size: 26px;
    }

    .faq-banner-text p {
        font-size: 15px;
    }
}

/* =================================================
   OBSZAR DZIAŁANIA – SEKCJA
   ================================================= */

.service-area {
    background-color: #ffffff;
    width: 100%;
}

.service-area-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* =================================================
   LEWA: OBRAZ / MAPA
   ================================================= */

.service-area-image img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 600px;
}

/* =================================================
   PRAWA: TREŚĆ
   ================================================= */

.service-area-content h2 {
    font-size: 36px;
    font-weight: 600;
    color: #2f3b6d;
    margin-bottom: 20px;
}

.service-area-content p {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
    color: #333333;
    margin-bottom: 16px;
    max-width: 600px;
}

/* CTA – dziedziczy styl .header-cta a */
.service-area-action {
    margin-top: 24px;
}

.area-cta a {
    font-weight: bold;
    display: inline-block;
    border-radius: 7px;
    padding: 8px 18px;
    font-size: 22px;
    color: #ffffff;
    margin: 5px 3px;
    background-color: #365b6a;;
    text-decoration: none;
    transition: 0.35s all ease;
}

.area-cta a:hover {
    background-color: #6499a4;
    cursor: pointer;
    color: #ffffff;
}

/* =================================================
   RESPONSYWNOŚĆ
   ================================================= */

@media (max-width: 992px) {
    .service-area-inner {
        gap: 50px;
    }

    .service-area-content h2 {
        font-size: 32px;
    }

    .nasz-zespol-tytul {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .service-area-inner {
        grid-template-columns: 1fr;
        padding: 60px 16px;
    }

    .service-area-image {
        text-align: center;
    }

    .service-area-image img {
        max-width: 360px;
        margin: 0 auto;
    }

    .service-area-content h2 {
        font-size: 26px;
    }

    .service-area-content p {
        font-size: 15px;
    }
}

@media (min-width: 1200px) and (max-width: 1475px) {
    .site-main-menu > ul > li > a {
        padding: 15px 8px;
        font-size: 18px;
    }
}

.section-google-reviews {
    background: #ffffff;
    padding: 70px 0;
}

.google-reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.google-reviews-header h2 {
    font-size: 36px;
    font-weight: 600;
    color: #41477c;
    margin-bottom: 20px;
}

.google-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.rating-value {
    font-size: 40px;
    font-weight: 700;
}

.rating-stars,
.review-stars {
    color: #fbbc04;
    letter-spacing: 1px;
    font-size: 25px;
}

.rating-count {
    font-size: 17px;
    opacity: 0.7;
}

.google-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.google-reviews-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 30px;
}

.google-review-card {
    width: 100%;
    max-width: none;
    margin: 0;
    background: #ffffff;
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1a73e8;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-user span {
    font-size: 14px;
    opacity: 0.6;
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    margin: 12px 0 18px;
}

.review-time {
    font-size: 13px;
    opacity: 0.6;
}

.google-reviews-cta {
    margin-top: 45px;
    text-align: center;
}

.btn-google-reviews {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 28px;
    border-radius: 999px;

    background: #1a73e8;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;

    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-google-reviews:hover {
    background: #1558b0;
    transform: translateY(-1px);
    color: #ffffff;
}

.btn-google-reviews .google-reviews-icon {
    font-size: 20px;
    color: #fbbc04;
    line-height: 1;
}

.mobile-cta {
    position: fixed;
    bottom: calc(15px + env(safe-area-inset-bottom));
    left: 50%;
    transform: translateX(-50%);

    width: 100%;
    max-width: 500px;

    padding: 0 12px;

    display: flex;
    gap: 10px;

    z-index: 9999;
}

.mobile-cta-inner {
    flex: 1;
    will-change: transform;
}

.cta-1 {
    animation: cta-wiggle-x-1 2.8s ease-in-out infinite;
}

.cta-2 {
    animation: cta-wiggle-x-2 3.1s ease-in-out infinite;
}

.mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 54px;

    border-radius: 10px;

    font-size: 16px;
    font-weight: 700;
    text-decoration: none;

    color: #ffffff;

    box-shadow: 0 8px 25px rgba(0,0,0,0.20);

    transition: background-color .2s ease,
    transform .2s ease;
}

.mobile-cta-call {
    background: #e9a244;
}

.mobile-cta-call:hover {
    background: #23913d;
    color: #ffffff;
}

.mobile-cta-contact {
    background: #334585;
}

.mobile-cta-contact:hover {
    background: #5b91cb;
    color: #ffffff;
}

.cennik {
    border-collapse: collapse;
}

.cennik a {
    color: #007bff;
}

.cennik table, th, td {
    border: 1px solid #e5e5e5;
    padding: 4px;
}

.cennik table td {
    vertical-align: middle;
}

.cennik-pad-left {
    padding-left: 15px;
}

.cennik tr:hover {
    background-color: #e8f8ff;
}

.cennik-nieaktywny {
    border-collapse: collapse;
}

.cennik-nieaktywny td {
    border: 1px solid #e5e5e5;
    padding: 4px;
    color: #9b9b9b;
}

.cennik-nieaktywny-pad-left {
    padding-left: 15px;
}

.cennik-nieaktywny tr:hover {
    background-color: #e8f5f1;
}
/* ========================================
   PODSTRONA: OBSZAR DZIAŁANIA
======================================== */

.area-page-main {
    background: #ffffff;
}

.area-page-box {
    padding: 25px 0 40px;
}

.area-page-label {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 16px;

    background: #eef5fc;
    color: #4183c9;

    border-radius: 999px;

    font-size: 15px;
    font-weight: 700;
}

.area-page-top h2 {
    max-width: 1050px;
    margin: 0 0 25px 0;
    font-size: 32px;
    line-height: 1.1;
    color: #334585;
}

.area-page-content p {
    font-size: 18px;
    line-height: 1.75;
    color: #333333;
    margin-bottom: 18px;
    font-weight: 400;
}

.area-page-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.area-page-point {
    position: relative;
    padding: 14px 18px 14px 42px;
    background: #f7f9fc;
    border-radius: 10px;
    color: #334585;
    font-size: 18px;
    font-weight: 600;
}

.area-page-point::before {
    content: "";
    position: absolute;
    left: 18px;
    width: 10px;
    height: 10px;
    top: 50%;
    background: #4183c9;
    border-radius: 50%;
    transform: translateY(-50%);
}

.area-page-image {
    text-align: center;
}

.area-page-image img {
    width: 100%;
    max-width: 560px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.area-page-image img {
    max-width: 520px;
}

.area-page-local-seo {
    margin: 30px auto 40px;
    text-align: center;
}

.area-page-local-seo p {
    font-size: 18px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 12px;
}

@media (max-width: 575.98px) {

    .area-page-local-seo {
        margin-top: 35px;
    }

    .area-page-local-seo p {
        font-size: 15px;
        line-height: 1.7;
    }

}

.area-page-main-cta {
    margin-top: 45px;
    text-align: center;
}

.area-page-main-cta a {
    display: inline-block;
    min-width: 280px;
    padding: 16px 28px;

    background: #334585;
    color: #ffffff;

    border-radius: 10px;

    font-size: 20px;
    font-weight: 700;
    text-decoration: none;

    transition: .2s ease;
}

.area-page-main-cta a:hover {
    background: #4183c9;
    color: #ffffff;
}

/* MIASTA */

.area-page-cities {
    padding: 60px 0;
    background: #f8fafc;
}

.area-page-heading {
    max-width: 760px;
    margin: 0 auto 35px;
    text-align: center;
}

.area-page-heading h2 {
    font-size: 32px;
    color: #334585;
    margin-bottom: 12px;
}

.area-page-heading p {
    font-size: 18px;
    color: #555555;
    line-height: 1.7;
}

.area-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.area-page-grid div {
    position: relative;
    padding: 16px 18px 16px 42px;
    background: #ffffff;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    box-shadow: 0 8px 22px rgba(0,0,0,0.04);
}

.area-page-grid div::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 50%;
    width: 9px;
    height: 9px;
    background: #4183c9;
    border-radius: 50%;
    transform: translateY(-50%);
}

/* CTA */

.area-page-cta-section {
    padding: 60px 0 30px;
}

.area-page-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 42px 45px;
    background: #334585;
    border-radius: 22px;
    color: #ffffff;
}

.area-page-cta-box h2 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 12px;
}

.area-page-cta-box p {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
}

.area-page-cta-box a {
    flex-shrink: 0;
    display: inline-block;
    padding: 15px 25px;
    background: #ffffff;
    color: #334585;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: .5s ease;
}

.area-page-cta-box a:hover {
    background: #4183c9;
    color: #ffffff;
}

/* RESPONSIVE */

@media (max-width: 991.98px) {
    .area-page-content {
        margin-bottom: 35px;
    }

    .area-page-content h2 {
        font-size: 31px;
    }

    .area-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .area-page-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575.98px) {
    .area-page-box {
        padding: 10px 0 30px;
    }

    .area-page-top h2 {
        font-size: 36px;
        line-height: 1.2;
    }

    .area-page-content p {
        font-size: 17px;
        line-height: 1.7;
    }

    .area-page-points {
        display: block;
    }

    .area-page-point {
        margin-bottom: 8px;
    }

    .area-page-grid {
        grid-template-columns: 1fr;
    }

    .area-page-cities {
        padding: 45px 0;
    }

    .area-page-heading h2 {
        font-size: 27px;
    }

    .area-page-cta-box {
        padding: 30px 22px;
    }

    .area-page-cta-box h2 {
        font-size: 24px;
    }

    .area-page-cta-box a {
        width: 100%;
        text-align: center;
    }
}

.first-visit-page {
    background: #f7f9fc;
}

.first-visit-hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 50px;
    align-items: center;
}

.first-visit-hero-content .title {
    margin-bottom: 22px;
}

.first-visit-lead {
    font-size: 20px;
    line-height: 1.65;
    color: #425466;
    max-width: 720px;
    margin-bottom: 30px;
}

.first-visit-note {
    margin-top: 30px;
    padding: 18px 20px;

    background: #ffffff;

    border-left: 4px solid #4183c9;
    border-radius: 10px;

    font-size: 15px;
    line-height: 1.7;
    color: #536271;

    box-shadow: 0 6px 18px rgba(32, 50, 80, .05);
}

.first-visit-note strong {
    display: block;
    margin-bottom: 6px;

    font-size: 16px;
    font-weight: 700;
    color: #1f2d3d;
}

.first-visit-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 28px;
    background: #4183c9;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 7px;
    transition: background-color .2s ease, transform .1s ease;
}

.first-visit-cta:hover {
    background: #336fb0;
    color: #fff;
    text-decoration: none;
}

.first-visit-cta:active {
    transform: scale(0.98);
}

.first-visit-hero-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 18px 45px rgba(32, 50, 80, .14);
}

.df-first-visit-details {
    display: block;
    position: relative;
    z-index: 2;
    clear: both;
    width: 100%;
    padding: 45px 0 55px;
    background: #ffffff;
}

.first-visit-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 30px;
    align-items: stretch;
}

.first-visit-card {
    background: #fff;
    border-radius: 16px;
    padding: 34px;
    box-shadow: 0 12px 34px rgba(32, 50, 80, .08);
}

.first-visit-card h2 {
    font-size: 28px;
    margin-bottom: 28px;
    color: #1f2d3d;
}

.first-visit-steps {
    display: grid;
    gap: 22px;
}

.first-visit-step {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 18px;
    align-items: flex-start;
}

.first-visit-step span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #eaf3fc;
    color: #4183c9;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
}

.first-visit-step h3 {
    font-size: 21px;
    margin-bottom: 6px;
    color: #1f2d3d;
}

.first-visit-step p,
.first-visit-side-card p {
    font-size: 18px;
    line-height: 1.65;
    color: #536271;
    margin-bottom: 0;
}

.first-visit-side-card {
    background: linear-gradient(180deg, #ffffff 0%, #f3f8fd 100%);
}

.first-visit-side-card p + p {
    margin-top: 18px;
}

.first-visit-summary {
    padding: 15px 0 65px;
}

.first-visit-summary-box {
    background: #f68824;
    color: #fff;
    text-align: center;
    border-radius: 18px;
    padding: 42px 28px;
}

.first-visit-summary-box h2 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 14px;
}

.first-visit-summary-box p {
    font-size: 21px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.first-visit-summary-box .first-visit-cta {
    background: #fff;
    color: #f68824;
}

.first-visit-summary-box .first-visit-cta:hover {
    background: #f4f4f4;
    color: #f68824;
}

.first-visit-faq {
    padding: 10px 0 55px;
}

.first-visit-faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.first-visit-faq-header h2 {
    font-size: 34px;
    margin-bottom: 14px;
    color: #1f2d3d;
}

.first-visit-faq-header p {
    font-size: 18px;
    color: #617080;
    margin-bottom: 0;
}

.first-visit-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.first-visit-faq-item {
    background: #ffffff;

    border-radius: 16px;

    padding: 32px 28px;

    box-shadow: 0 12px 34px rgba(32, 50, 80, .08);

    height: 100%;
}

.first-visit-faq-icon {
    margin-bottom: 20px;
    color: #4183c9;
}

.first-visit-faq-icon svg {
    width: 38px;
    height: 38px;
    display: block;
}

.first-visit-faq-item h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1f2d3d;
    line-height: 1.35;
}

.first-visit-faq-item p {
    font-size: 18px;
    line-height: 1.7;
    color: #536271;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .first-visit-faq-grid {
        grid-template-columns: 1fr;
    }

    .first-visit-faq-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .first-visit-faq {
        padding: 0 0 40px;
    }

    .first-visit-faq-item {
        padding: 26px 22px;
    }

    .first-visit-faq-item h3 {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .first-visit-hero,
    .first-visit-grid {
        grid-template-columns: 1fr;
    }

    .first-visit-hero {
        gap: 30px;
    }

    .first-visit-lead {
        font-size: 18px;
    }

    .first-visit-card {
        padding: 28px 24px;
    }
}

@media (max-width: 575px) {
    .df-first-visit-details {
        padding: 30px 0 40px;
    }

    .first-visit-card h2,
    .first-visit-summary-box h2 {
        font-size: 24px;
    }

    .first-visit-step {
        grid-template-columns: 38px 1fr;
        gap: 14px;
    }

    .first-visit-step span {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .first-visit-step h3 {
        font-size: 18px;
    }

    .first-visit-step p,
    .first-visit-side-card p {
        font-size: 18px;
    }
}

@media (max-width: 576px) {

    .section-google-reviews {
        padding: 50px 0;
    }

    .google-reviews-header {
        margin-bottom: 35px;
    }

    .google-reviews-header h2 {
        font-size: 28px;
        line-height: 1.25;
    }

    .google-rating {
        gap: 8px;
    }

    .rating-value {
        font-size: 32px;
    }

    .rating-stars {
        font-size: 20px;
    }

    .rating-count {
        font-size: 14px;
    }

    .google-reviews-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .google-review-card {
        max-width: 100%;
        padding: 22px;
    }

    .review-text {
        font-size: 14px;
    }

    .review-avatar {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .review-time {
        font-size: 12px;
    }

    .google-reviews-cta {
        margin-top: 35px;
    }

    .btn-google-reviews {
        font-size: 15px;
        padding: 12px 22px;
    }

    .btn-google-reviews .google-reviews-icon {
        font-size: 18px;
    }
}

/* TABLET / MNIEJSZY LAPTOP – 2 OPINIE */
@media (max-width: 991.98px) {
    .google-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .google-review-card {
        max-width: 100%;
    }
}

/* TELEFONY – 1 OPINIA */
@media (max-width: 575.98px) {
    .google-reviews-grid {
        grid-template-columns: 1fr;
    }

    .home-intro {
        padding: 0;
    }

    .home-intro-inner {
        gap: 20px;
    }

    .service-area-inner {
        padding: 7px 15px;
    }

    .footer-widget-content {
        text-align: center;
    }

    .footer-links-two-cols {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .footer-widget {
        text-align: center;
    }
}

.show-only-xxl {
    display: none;
}

@media only screen and (min-width: 1800px) {

    .site-main-menu > ul > li > a {
        font-size: 19px;
        padding: 20px 12px;
    }

    .google-reviews-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .show-only-xxl {
        display: block;
    }

}

@media only screen and (min-width: 2000px) {

    .site-main-menu > ul > li > a {
        font-size: 22px;
        padding: 20px 17px;
    }
}



