/* === Tiger Security — główny arkusz === */

/* === Reset + base === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #fbbc26; text-decoration: none; transition: color .15s; }
a:hover { color: #000; }
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 700;
    color: #222;
    margin: 0 0 16px;
    line-height: 1.25;
    letter-spacing: 0;
}
h1 { font-size: 42px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
p { margin: 0 0 16px; }

.tgr-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.tgr-main { min-height: 50vh; }

/* === HEADER === */
.tgr-header {
    position: sticky;
    top: 0;
    background: #fff;
    border-bottom: 1px solid #eee;
    z-index: 1000;
    padding: 12px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.tgr-header__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.tgr-logo img { max-height: 60px; width: auto; }
.tgr-nav { flex: 1; display: flex; justify-content: flex-end; }
.tgr-menu {
    list-style: none;
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
}
.tgr-menu li { position: relative; }
.tgr-menu a {
    display: block;
    padding: 12px 16px;
    color: #222;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
}
.tgr-menu a:hover, .tgr-menu .current-menu-item > a { color: #fbbc26; }
.tgr-menu .menu-item-has-children > a::after {
    content: ' ▾';
    font-size: 10px;
    opacity: .7;
}
.tgr-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #1a1a1a;
    border-top: 3px solid #fbbc26;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s, transform .2s, visibility .2s;
    z-index: 999;
}
.tgr-menu .menu-item-has-children:hover > .sub-menu,
.tgr-menu .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.tgr-menu .sub-menu a {
    color: #e0e0e0;
    padding: 10px 18px;
    font-size: 14px;
}
.tgr-menu .sub-menu a:hover { background: #fbbc26; color: #1a1a1a; }

.tgr-menu-toggle {
    display: none;
    width: 40px; height: 40px;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    justify-content: space-between;
}
.tgr-menu-toggle span {
    display: block;
    height: 3px;
    background: #222;
    border-radius: 2px;
    transition: transform .2s, opacity .2s;
}
.tgr-menu-toggle.is-active span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.tgr-menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.tgr-menu-toggle.is-active span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

@media (max-width: 900px) {
    .tgr-menu-toggle { display: flex; }
    .tgr-nav {
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #fff;
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s;
        border-top: 1px solid #eee;
    }
    .tgr-nav.is-open { max-height: calc(100vh - 80px); overflow-y: auto; }
    .tgr-menu { flex-direction: column; padding: 10px 0; }
    .tgr-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: 0;
        background: #f5f5f5;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height .3s;
    }
    .tgr-menu .menu-item-has-children.is-open > .sub-menu { max-height: 600px; padding: 8px 0; }
    .tgr-menu .sub-menu a { color: #333; }
}

/* === Hero (statyczny, zastępuje revslider) === */
.tiger-hero {
    position: relative;
    width: 100%;
    min-height: 750px;
    overflow: hidden;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tiger-hero__bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.2) translate(0, 100px);
    animation: tgrPanZoom 40s ease-in-out infinite alternate;
}
.tiger-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 100%);
    z-index: 1;
}
.tiger-hero__bar {
    position: absolute;
    top: 100px;
    left: 0; right: 0;
    z-index: 3;
    background: rgba(255,255,255,.22);
    backdrop-filter: blur(2px);
    padding: 22px 0;
    clip-path: inset(0 100% 0 0);
    animation: tgrMaskReveal 1s cubic-bezier(.77,0,.175,1) .4s forwards;
}
.tiger-hero__icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 28px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}
.th-icon {
    width: 60px; height: 56px;
    opacity: 0;
    transform: scale(.8);
    animation: tgrPopIn .7s cubic-bezier(.23,1,.32,1) forwards;
    animation-delay: calc(var(--d, 0s) + .8s);
    filter: brightness(0) invert(1);
}
.tiger-hero__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 240px 20px 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 750px;
    box-sizing: border-box;
}
.tiger-hero__title {
    font-size: 72px;
    line-height: 1.1;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 180px;
    color: #fff;
    min-height: 80px;
    opacity: 0;
    transform: scale(1.6);
    animation: tgrScaleIn .9s cubic-bezier(.77,0,.175,1) 1.4s forwards;
}
.tiger-hero__subtitle {
    font-family: 'Anton', sans-serif;
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: 1px;
    max-width: 900px;
    margin: 0 auto 50px;
    opacity: 0;
    transform: scale(1.4);
    animation: tgrScaleIn .9s cubic-bezier(.77,0,.175,1) 1.7s forwards;
}
.tiger-hero__cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: auto;
}
.tiger-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 340px;
    padding: 18px 42px;
    font-size: 22px;
    font-weight: 500;
    border-radius: 16px;
    text-decoration: none;
    transition: background .2s, color .2s, transform .2s;
    opacity: 0;
    transform: scale(.9);
    animation: tgrPopIn .8s cubic-bezier(.77,0,.175,1) 2.1s forwards;
}
.tiger-hero__btn--white { background: #fff; color: #000; }
.tiger-hero__btn--yellow { background: #fbbc26; color: #000; }
.tiger-hero__btn:hover { background: #000; color: #fff; transform: translateY(-2px); }

@keyframes tgrPanZoom {
    0% { transform: scale(1.2) translate(0, 100px); }
    100% { transform: scale(1.05) translate(80px, 0); }
}
@keyframes tgrMaskReveal { to { clip-path: inset(0 0 0 0); } }
@keyframes tgrPopIn { to { opacity: 1; transform: scale(1); } }
@keyframes tgrScaleIn { to { opacity: 1; transform: scale(1); } }

@media (max-width: 900px) {
    .tiger-hero, .tiger-hero__container { min-height: 560px; }
    .tiger-hero__container { padding: 200px 20px 40px; }
    .tiger-hero__title { font-size: 40px; letter-spacing: 2px; margin-bottom: 100px; }
    .tiger-hero__subtitle { font-size: 18px; }
    .tiger-hero__bar { padding: 14px 0; }
    .th-icon { width: 42px; height: 40px; }
    .tiger-hero__icons { gap: 14px; padding: 0 20px; }
}
@media (max-width: 600px) {
    .tiger-hero, .tiger-hero__container { min-height: 500px; }
    .tiger-hero__container { padding: 120px 20px 40px; }
    .tiger-hero__title { font-size: 30px; margin-bottom: 40px; }
    .tiger-hero__subtitle { font-size: 16px; margin-bottom: 30px; }
    .tiger-hero__bar { display: none; }
    .tiger-hero__cta { flex-direction: column; gap: 10px; }
    .tiger-hero__btn { min-width: unset; width: 100%; font-size: 18px; padding: 14px 20px; }
}

/* === Sekcje (nasze firmy, liczby, usługi itp.) === */
.tgr-section { padding: 80px 0; }
.tgr-section-header { text-align: center; margin-bottom: 50px; }
.tgr-section-header__eyebrow {
    font-family: 'Anton', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.tgr-section-header h2 {
    font-size: 40px;
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.tgr-section-header hr {
    width: 85px;
    height: 4px;
    background: #fbbc26;
    border: 0;
    margin: 15px auto 20px;
}
.tgr-section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}
.tgr-section--dark { background: #1a1a1a; color: #fff; }
.tgr-section--dark h2, .tgr-section--dark h3, .tgr-section--dark h4 { color: #fff; }
.tgr-section--dark .tgr-section-header__eyebrow { color: #bbb; }

/* === Sekcja: Nasze firmy (3 kolumny Tiger Service/Security/JCMW) === */
.tgr-companies {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    color: #fff;
    min-height: 520px;
    align-items: stretch;
    position: relative;
}
.tgr-company {
    position: relative;
    padding: 92px 4% 90px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: cover;
    background-position: center;
}
.tgr-company::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.3) 60%, rgba(0,0,0,.55) 100%);
    z-index: 0;
}
.tgr-company > * {
    text-shadow: 0 2px 8px rgba(0,0,0,.7);
}
.tgr-company--yellow { z-index: 2; }
.tgr-company--yellow::before {
    background: linear-gradient(180deg, rgba(251, 188, 38, .25) 0%, rgba(251, 188, 38, .45) 60%, rgba(251, 188, 38, .55) 100%);
}
.tgr-company--yellow > * {
    text-shadow: 0 1px 3px rgba(0,0,0,.25);
}
.tgr-company > * { position: relative; z-index: 1; }
.tgr-company__eyebrow {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 4px;
    color: #fff;
}
.tgr-company__name {
    font-family: 'Anton', sans-serif;
    font-size: 40px;
    margin: 0 0 16px;
    color: #fff;
}
.tgr-company__name .accent { color: #fbbc26; }
.tgr-company--yellow .tgr-company__name .accent { color: #333; }
.tgr-company--yellow .tgr-company__eyebrow { color: #fff; }
.tgr-company p { margin: 0; color: #eaeaea; }
.tgr-company--yellow p { color: #fff; }
@media (max-width: 900px) {
    .tgr-companies { grid-template-columns: 1fr; }
    .tgr-company { padding: 60px 4%; }
}

/* === Sekcja: Nasze usługi (karty ikon) === */
.tgr-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.tgr-service-card {
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform .2s;
}
.tgr-service-card:hover { transform: translateY(-6px); }
.tgr-service-card__icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #fbbc26;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 42px;
    transition: background .2s;
}
.tgr-service-card:hover .tgr-service-card__icon { background: #222; color: #fbbc26; }
.tgr-service-card h3 {
    font-size: 17px;
    font-weight: 500;
    margin: 0 0 12px;
    color: #222;
    letter-spacing: .3px;
}
.tgr-service-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* === Sekcja: Mobilna aplikacja === */
.tgr-section--app {
    background: #fff;
    color: #333;
    padding: 100px 0;
}
.tgr-app {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}
.tgr-app__image { text-align: center; }
.tgr-app__image img {
    max-width: 420px;
    margin: 0 auto;
    mix-blend-mode: multiply;
}
.tgr-app__content h2 {
    color: #222;
    font-size: 40px;
    margin: 0 0 10px;
    letter-spacing: 1px;
}
.tgr-app-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 30px;
}
.tgr-app-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.tgr-app-feature__icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #fbbc26;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}
.tgr-app-feature h4 {
    color: #222;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.tgr-app-feature p {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}
@media (max-width: 800px) {
    .tgr-app { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .tgr-app-feature { text-align: left; }
}

/* === Sekcja: Liczby === */
.tgr-stats {
    position: relative;
    color: #fff;
    padding: 100px 0;
    background: #222;
    overflow: hidden;
}
.tgr-stats__parallax {
    position: absolute; inset: -10% 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}
.tgr-stats::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(20,20,20,.82);
    z-index: 1;
}
.tgr-stats-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.tgr-stat__icon { font-size: 65px; color: #fbbc26; margin-bottom: 10px; }
.tgr-stat__number {
    font-family: 'Anton', sans-serif;
    font-size: 65px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}
.tgr-stat__label {
    font-family: 'Anton', sans-serif;
    font-size: 18px;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}
@media (max-width: 700px) {
    .tgr-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
    .tgr-stat__number { font-size: 50px; }
}

/* === Sekcja: Galeria === */
.tgr-gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0 0 40px;
}
.tgr-filter {
    background: #fbbc26;
    color: #fff;
    border: 0;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    cursor: pointer;
    border-radius: 3px;
    transition: background .2s, color .2s;
}
.tgr-filter:hover,
.tgr-filter.is-active {
    background: #222;
    color: #fbbc26;
}
.tgr-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}
.tgr-gallery-item {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 6px;
    text-decoration: none;
    transition: transform .3s, opacity .3s;
}
.tgr-gallery-item.is-hidden { display: none; }
.tgr-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.tgr-gallery-item:hover img { transform: scale(1.08); }
.tgr-gallery-item__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: #fff;
    opacity: 0;
    transition: opacity .3s;
}
.tgr-gallery-item:hover .tgr-gallery-item__overlay { opacity: 1; }
.tgr-gallery-item__overlay h4 {
    color: #fff;
    font-size: 18px;
    margin: 0 0 4px;
}
.tgr-gallery-item__cta {
    font-size: 13px;
    color: #fbbc26;
    font-weight: 700;
}

/* === Sekcja: Opinie klientów === */
.tgr-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.tgr-testimonial {
    background: rgba(255,255,255,.05);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #fbbc26;
    color: #eaeaea;
    text-align: center;
}
.tgr-testimonial__photo {
    width: 80px; height: 80px;
    border-radius: 50%;
    margin: 0 auto 16px;
    object-fit: cover;
}
.tgr-testimonial__message {
    font-style: italic;
    margin-bottom: 16px;
    color: #fff;
}
.tgr-testimonial__name {
    font-weight: 700;
    color: #fbbc26;
    font-size: 14px;
}
.tgr-testimonial__role {
    font-size: 12px;
    color: #bbb;
}

/* === Kalendarz imprez — karty postów === */
.tgr-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.tgr-post-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    transition: transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
}
.tgr-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.tgr-post-card.is-hidden { display: none; }
.tgr-post-card__thumb {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.tgr-post-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}
.tgr-post-card:hover .tgr-post-card__thumb img { transform: scale(1.04); }
.tgr-post-card__body { padding: 20px; flex: 1; }
.tgr-post-card__body h3 {
    font-size: 17px;
    font-weight: 500;
    margin: 0 0 8px;
    line-height: 1.4;
}
.tgr-post-card__body h3 a { color: #222; }
.tgr-post-card__body h3 a:hover { color: #fbbc26; }
.tgr-post-card__body time {
    font-size: 13px;
    color: #888;
}
.tgr-load-more-wrap {
    text-align: center;
    margin-top: 40px;
}
.tgr-load-more {
    background: #fbbc26;
    color: #1a1a1a;
    border: 0;
    padding: 14px 36px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: background .2s, color .2s, transform .2s;
}
.tgr-load-more:hover {
    background: #1a1a1a;
    color: #fbbc26;
    transform: translateY(-2px);
}

/* === Sekcja Opinie — parallax bg === */
.tgr-section--opinie {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #111;
}
.tgr-opinie-parallax {
    position: absolute;
    inset: -10% 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
}
.tgr-opinie-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 15, .75);
    z-index: 1;
}
.tgr-section--opinie .tgr-section-header h2 {
    letter-spacing: 1px;
}

/* === Karuzela opinii === */
.tgr-testimonial-carousel {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    padding: 0 70px;
}
.tgr-carousel-viewport {
    overflow: hidden;
    width: 100%;
}
.tgr-carousel-track {
    display: flex;
    width: 100%;
    will-change: transform;
}
.tgr-testimonial-carousel .tgr-testimonial {
    flex: 0 0 100%;
    max-width: 100%;
    box-sizing: border-box;
    background: transparent;
    border-left: 0;
    padding: 20px;
    text-align: center;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.tgr-testimonial-carousel .tgr-testimonial__message {
    font-size: 22px;
    line-height: 1.5;
    color: #fff;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 28px;
    max-width: 700px;
}
.tgr-testimonial-carousel .tgr-testimonial__photo {
    width: 100px; height: 100px;
    margin-bottom: 18px;
    border: 3px solid #fbbc26;
    border-radius: 50%;
    object-fit: cover;
}
.tgr-testimonial-carousel .tgr-testimonial__name {
    font-size: 15px;
    color: #fff;
    font-weight: 500;
}
.tgr-testimonial-carousel .tgr-testimonial__name .accent {
    color: #fbbc26;
    font-weight: 700;
    margin-left: 4px;
}
.tgr-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px; height: 44px;
    background: #fbbc26;
    border: 0;
    color: #1a1a1a;
    font-size: 22px;
    line-height: 1;
    border-radius: 4px;
    cursor: pointer;
    transition: background .2s, color .2s;
    z-index: 2;
    font-weight: 700;
}
.tgr-carousel-btn:hover { background: #fff; color: #1a1a1a; }
.tgr-carousel-btn--prev { left: 0; }
.tgr-carousel-btn--next { right: 0; }
.tgr-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}
.tgr-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
    border: 0;
    cursor: pointer;
    transition: background .2s, transform .2s;
    padding: 0;
}
.tgr-dot.is-active { background: #fbbc26; transform: scale(1.4); }
.tgr-dot:hover { background: #fbbc26; }
@media (max-width: 700px) {
    .tgr-testimonial-carousel { padding: 0 50px; }
    .tgr-carousel-btn { width: 36px; height: 36px; font-size: 18px; }
    .tgr-testimonial-carousel .tgr-testimonial__message { font-size: 18px; }
}

/* === Sekcja: Kontakt (4 boxy) === */
.tgr-contact-boxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.tgr-contact-box {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.tgr-contact-box__icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: #fff;
    color: #fbbc26;
    border: 2px solid #fbbc26;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.tgr-contact-box h4 {
    font-size: 16px;
    margin: 0 0 8px;
    color: #222;
}
.tgr-contact-box p, .tgr-contact-box a {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}
.tgr-contact-box a:hover { color: #fbbc26; }
@media (max-width: 900px) {
    .tgr-contact-boxes { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .tgr-contact-boxes { grid-template-columns: 1fr; }
}

/* === Footer === */
.tgr-footer { background: #1a1a1a; color: #bbb; padding: 60px 0 0; }
.tgr-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.tgr-footer__col h4 {
    color: #fff;
    font-size: 16px;
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #fbbc26;
}
.tgr-footer__col a { color: #bbb; }
.tgr-footer__col a:hover { color: #fbbc26; }
.tgr-footer__col ul { list-style: none; margin: 0; padding: 0; }
.tgr-footer__col li { padding: 4px 0; font-size: 14px; }
.tgr-footer__bottom {
    background: #0f0f0f;
    padding: 16px 0;
    margin-top: 50px;
    font-size: 13px;
}
.tgr-footer__bottom .tgr-footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 0 20px;
    grid-template-columns: unset;
}
@media (max-width: 900px) {
    .tgr-footer__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .tgr-footer__inner { grid-template-columns: 1fr; }
    .tgr-footer__bottom .tgr-footer__inner { flex-direction: column; text-align: center; }
}

/* === Service page (kopia z ninezeroseven-child) === */
.tiger-service-page { max-width: 1200px; margin: 0 auto; padding: 60px 20px; }
.tiger-service-header { text-align: center; margin-bottom: 50px; }
.tiger-service-icon { font-size: 72px; color: #fbbc26; margin-bottom: 20px; }
.tiger-service-content { font-size: 16px; line-height: 1.8; color: #444; }
.tiger-service-page h2 {
    color: #222;
    font-size: 26px;
    margin: 36px 0 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid #fbbc26;
}
.tiger-service-page ul, .tiger-service-page ol { padding-left: 22px; margin: 10px 0 18px; }
.tiger-service-page li { margin-bottom: 6px; }
.tiger-service-cta {
    background: #fbbc26;
    padding: 50px 30px;
    border-radius: 8px;
    margin: 60px 0;
    text-align: center;
    color: #fff;
}
.tiger-service-cta h2 { color: #fff; font-size: 32px; margin: 0 0 16px; border: 0; padding: 0; }
.tiger-service-cta p { color: #fff; font-size: 18px; margin: 0 0 24px; }
.tiger-service-cta a {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    margin: 0 8px 10px;
}
.tiger-related { margin-top: 80px; }
.tiger-related h2 { text-align: center; font-size: 28px; margin-bottom: 30px; }
.tiger-related a:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }

/* === Formularz CF7 === */
.tiger-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 24px;
    width: 100%;
}
.tiger-form-grid .tg-full { grid-column: 1 / -1; }
.tiger-form-grid label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}
.tiger-form-grid .tg-req { color: #e74c3c; }
.tiger-form-grid input[type="text"],
.tiger-form-grid input[type="email"],
.tiger-form-grid input[type="tel"],
.tiger-form-grid select,
.tiger-form-grid textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    background: #fff;
    font-size: 15px;
    font-family: inherit;
    box-sizing: border-box;
}
.tiger-form-grid textarea { min-height: 140px; resize: vertical; }
.tiger-form-grid input:focus, .tiger-form-grid select:focus, .tiger-form-grid textarea:focus {
    outline: none;
    border-color: #fbbc26;
    box-shadow: 0 0 0 3px rgba(251,188,38,.18);
}
.tiger-form-grid .tg-consent {
    font-size: 13px;
    color: #666;
    background: #fafafa;
    padding: 12px 16px;
    border-radius: 4px;
}
.tiger-form-grid .tg-submit { text-align: center; margin-top: 8px; }
.tiger-form-grid input[type="submit"],
.wpcf7 input[type="submit"] {
    background: #fbbc26 !important;
    color: #1a1a1a !important;
    border: 0 !important;
    padding: 14px 42px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    border-radius: 4px !important;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: background .15s, transform .15s;
}
.wpcf7 input[type="submit"]:hover {
    background: #1a1a1a !important;
    color: #fbbc26 !important;
    transform: translateY(-1px);
}
.wpcf7-not-valid-tip {
    color: #e74c3c !important;
    font-size: 13px !important;
    margin-top: 4px !important;
}
.wpcf7 .wpcf7-not-valid { border-color: #e74c3c !important; }
.wpcf7-response-output {
    margin: 18px 0 0 !important;
    padding: 14px 18px !important;
    border-radius: 4px !important;
}
.wpcf7 form.sent .wpcf7-response-output {
    background: #e8f5e9 !important;
    border: 1px solid #4caf50 !important;
    color: #2e7d32 !important;
}
.wpcf7 form.invalid .wpcf7-response-output {
    background: #ffebee !important;
    border: 1px solid #e74c3c !important;
    color: #c62828 !important;
}
@media (max-width: 600px) {
    .tiger-form-grid { grid-template-columns: 1fr; }
}

/* === Accessibility / utils === */
.screen-reader-text {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.tgr-fade-in { opacity: 0; transform: translateY(20px); transition: opacity .6s, transform .6s; }
.tgr-fade-in.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
