/* ==========================================================
   CZĘŚĆ 1: ZMIENNE, BAZA, HEADER I MENU MOBILNE
========================================================== */

:root {
    /* Ulepszony kontrast i czystsze tła */
    --bg-main: #f8f9fa;       /* Jasny, ciepły szary dla tła strony */
    --bg-alt: #ffffff;        /* Czysta biel dla kart */
    --text-main: #334155;     /* Głęboki grafit (lepszy niż czarny) */
    --text-muted: #475569;    /* Ciemniejszy szary dla tekstów pobocznych */
    --accent: #2c5a8c;        /* Twój główny niebieski */
    --accent-hover: #1f4e85;  /* Ciemniejszy niebieski na hover */
    --border-soft: #e2e8f0;
    --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 14px 32px rgba(0, 40, 90, 0.12);
    --radius: 16px;
    --max-width: 1100px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: "Montserrat", system-ui, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.25s ease;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #e2e8f0;
}
::-webkit-scrollbar-thumb {
    background: rgba(44, 90, 140, 0.6);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* ==========================================================
   HEADER (GLASS EFFECT)
========================================================== */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 20, 40, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1rem;
}

.logo {
    font-weight: 600;
    letter-spacing: 0.05em;
    font-size: 0.95rem;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

nav a {
    padding: 0.4rem 0.7rem;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

nav a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

/* ==========================================================
   LANGUAGE SWITCH (GLASS BUTTONS)
========================================================== */

.lang-switch {
    display: flex;
    gap: 0.3rem;
    align-items: center;
}

.lang-btn {
    padding: 0.3rem 0.6rem;
    border-radius: 10px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    cursor: pointer;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lang-btn.active {
    background: var(--accent);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 14px rgba(44, 90, 140, 0.4);
}

/* ==========================================================
   MOBILE MENU & BURGER
========================================================== */

.burger {
    display: none;
    width: 28px;
    height: 22px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 3000;
}

.burger span {
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 4px;
    transition: 0.3s;
}

.burger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.burger.active span:nth-child(2) {
    opacity: 0;
}
.burger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: -4px 0 24px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    padding: 6rem 2rem;
    gap: 1.5rem;
    transition: right 0.35s ease;
    z-index: 2000;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu a {
    font-size: 1.2rem;
    color: var(--text-main);
    font-weight: 600;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-soft);
}

.mobile-lang {
    margin-top: 1rem;
    display: flex;
    gap: 0.8rem;
}

.mobile-lang .lang-btn {
    flex: 1;
    text-align: center;
    color: var(--text-main);
    border-color: var(--border-soft);
}

.mobile-lang .lang-btn.active {
    color: #ffffff;
}

/* Overlay do blokowania tła przy otwartym menu */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1500;
}

.overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.noscroll {
    overflow: hidden;
}

/* Responsywność dla Headera */
@media (max-width: 900px) {
    nav {
        display: none !important;
    }
    .burger {
        display: flex;
    }
    .lang-switch {
        display: none !important;
    }
}

/* ==========================================================
   LANG DROPDOWN (MOBILE)
========================================================== */

.lang-dropdown-wrapper {
    display: none;
    position: relative;
}

.lang-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0.3rem 0.7rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: inherit;
    border: 1px solid rgba(255,255,255,0.35);
    background: var(--accent);
    color: #ffffff;
    cursor: pointer;
    letter-spacing: 0.03em;
}

.lang-dropdown-trigger svg {
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.lang-dropdown-wrapper.open .lang-dropdown-trigger svg {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: #1e3a5f;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 0.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 90px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 4000;
}

.lang-dropdown-wrapper.open .lang-dropdown-menu {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.lang-dropdown-item {
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    text-align: center;
    transition: background 0.15s;
}

.lang-dropdown-item:hover {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
}

.lang-dropdown-item.active {
    background: var(--accent);
    color: #ffffff;
    font-weight: 600;
}

@media (max-width: 900px) {
    .lang-dropdown-wrapper {
        display: block;
    }
}

/* ==========================================================
   CZĘŚĆ 2: HERO, SEKCJE, PRZYCISKI, ANIMACJE, LIGHTBOX
========================================================== */

/* ==============================
   SEKCJE I TYPOGRAFIA BAZOWA
============================== */

section {
    padding: 6rem 0;
    position: relative;
}

.section-heading {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 1rem;
    text-align: center;
}

.section-lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    section { padding: 4rem 0; }
    .section-heading { font-size: 1.7rem; }
    .section-lead { font-size: 1rem; margin-bottom: 2rem; }
}

/* ==============================
   PRZYCISKI (BUTTONS)
============================== */

.btn-primary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    background: var(--accent);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0 8px 20px rgba(44, 90, 140, 0.25);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(44, 90, 140, 0.35);
    color: #ffffff;
}

.btn-ghost {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* ==============================
   HERO SEKCJA
============================== */

.hero {
    height: calc(100vh - 88px);
    display: flex;
    align-items: center;
    text-align: center;
    background: #1db0df url("/img/szczecin.avif") center/cover no-repeat;
    padding: 0 1rem;
}

/* Parallax tylko dla desktopu */
@media (min-width: 1024px) {
    .hero { background-attachment: fixed; }
}

.hero-glass {
    padding: 3rem 2.5rem;
    max-width: 780px;
    margin: 0 auto;
    border-radius: 24px;
    background: rgba(10, 20, 40, 0.30);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.hero-topline {
    letter-spacing: 0.15em;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-title {
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0,0,0,0.4);
    font-size: 3.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    margin: 0 auto 2.5rem;
    max-width: 600px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.scroll-down {
    display: inline-block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.scroll-down:hover {
    color: #ffffff;
    transform: translateY(4px);
}

@media (max-width: 768px) {
    .hero { height: 100vh; padding: 0 1rem; }
    .hero-glass { padding: 2rem 1.5rem; }
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 2rem; }
    .hero-buttons { flex-direction: column; gap: 0.8rem; }
    .btn-primary, .btn-ghost { width: 100%; }
}

/* ==============================
   ANIMACJE (SCROLL REVEAL)
============================== */

.reveal {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.reveal.revealed {
    opacity: 1;
    transform: none;
}

.fade-up { transform: translateY(40px); }
.fade-down { transform: translateY(-40px); }
.fade-left { transform: translateX(-40px); }
.fade-right { transform: translateX(40px); }
.zoom-in { transform: scale(0.9); }

/* ==============================
   LIGHTBOX (FULLSCREEN GALLERY)
============================== */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 25, 0.95);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 9999;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 0 40px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: 0.2s;
}

.lightbox-close:hover { color: #ffffff; }

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    padding: 20px;
    transition: 0.2s;
}

.lightbox-arrow:hover { color: #ffffff; }
.lightbox-arrow.left { left: 20px; }
.lightbox-arrow.right { right: 20px; }

@media (max-width: 768px) {
    .lightbox-arrow { font-size: 30px; padding: 10px; }
    .lightbox-close { top: 15px; right: 20px; font-size: 35px; }
}

/* ==========================================================
   CZĘŚĆ 3: OFERTA, OPINIE, GALERIA, KONTAKT, FOOTER
========================================================== */


/* ==============================
   OFERTA (USŁUGI)
============================== */

.offer-section {
    background-color: var(--bg-main);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.offer-card {
    background: var(--bg-alt);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover), inset 3px 0 0 var(--accent);
}

.offer-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
}

.offer-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex-grow: 1; /* Wypełnia przestrzeń, wypychając link na dół */
}

.offer-meta {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-soft);
}

.btn-link {
    background: transparent;
    border: none;
    padding: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: transform 0.25s ease;
}

.btn-link:hover {
    transform: translateX(4px);
    color: var(--accent-hover);
}

@media (max-width: 768px) {
    .offer-grid { gap: 1.5rem; margin-top: 2rem; }
    .offer-card { padding: 2rem 1.5rem; }
}

/* Styl dla ikony w karcie oferty */
.offer-icon {
    width: 54px;
    height: 54px;
    background: rgba(44, 90, 140, 0.08); /* Bardzo delikatny niebieski tło */
    color: var(--accent); /* Kolor ikony */
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

/* Subtelny efekt przy najechaniu na kartę */
.offer-card:hover .offer-icon {
    background: var(--accent);
    color: #ffffff;
    transform: scale(1.05);
}

/* Siatka 2×2 dla oferty */
.offer-grid-2col {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
    .offer-grid-2col {
        grid-template-columns: 1fr;
    }
}

.offer-route {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.offer-extra {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
    font-style: italic;
}

.offer-list {
    margin: 0;
    padding-left: 1.2rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.offer-footnote {
    margin-top: 2rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    text-align: center;
}

/* ==============================
   CIEKAWOSTKI
============================== */

.ciekawostki-section {
    padding: 6rem 0;
    background: var(--bg-alt);
}

.ciekawostki-slider {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.ciekawostki-track {
    position: relative;
    margin-bottom: 1rem;
}

.ciekawostka-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2.5rem 2rem;
    background: var(--bg-main);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.ciekawostka-card.active {
    opacity: 1;
    pointer-events: auto;
}

.ciekawostka-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.ciekawostka-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0;
}

.ciekawostka-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    max-width: 600px;
}

.ciekawostki-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.ciekawostki-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.ciekawostki-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-soft);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.ciekawostki-dot.active {
    background: var(--accent);
    transform: scale(1.3);
}


.ciekawostki-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-soft);
    background: var(--bg-main);
    color: var(--text-main);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.ciekawostki-btn:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* Quiz styles */
.quiz-counter {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.quiz-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0 0 1.75rem;
    line-height: 1.5;
    max-width: 580px;
}

.quiz-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.quiz-btn {
    padding: 0.7rem 2rem;
    border-radius: 50px;
    border: 2px solid;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    font-family: inherit;
}

.prawda-btn {
    border-color: var(--accent);
    color: var(--accent);
    background: transparent;
}

.prawda-btn:hover:not(:disabled) {
    background: var(--accent);
    color: #fff;
}

.falsz-btn {
    border-color: #94a3b8;
    color: #64748b;
    background: transparent;
}

.falsz-btn:hover:not(:disabled) {
    background: #64748b;
    color: #fff;
}

.quiz-btn.correct {
    background: #22c55e;
    border-color: #22c55e;
    color: #fff;
}

.quiz-btn.wrong {
    background: #ef4444;
    border-color: #ef4444;
    color: #fff;
}

.quiz-btn:disabled {
    cursor: default;
}

.quiz-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.quiz-answer.visible {
    max-height: 400px;
}

.quiz-verdict {
    display: inline-block;
    padding: 0.2rem 0.9rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.quiz-verdict.fakt {
    background: #dcfce7;
    color: #16a34a;
}

.quiz-verdict.mit {
    background: #fee2e2;
    color: #dc2626;
}

.quiz-verdict.ciekawostka {
    background: #fef9c3;
    color: #854d0e;
}

.quiz-answer p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    max-width: 560px;
}

/* ==============================
   OPINIE (TESTIMONIALS) - NOWY DESIGN
============================== */

.testimonials-section {
    background-color: var(--bg-main);
    padding: 6rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
}

/* === GOOGLE REVIEWS carousel === */
.google-reviews {
    margin-top: 3rem;
}

.reviews-carousel-outer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.reviews-viewport {
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* reviews-grid kept for skeleton fallback */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.review-card {
    flex: 0 0 calc(33.333% - 1rem);
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow:
        0 1px 3px rgba(44, 90, 140, 0.04),
        0 4px 12px rgba(0, 0, 0, 0.04),
        0 12px 28px rgba(0, 0, 0, 0.03);
    transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 2px 6px rgba(44, 90, 140, 0.06),
        0 8px 24px rgba(44, 90, 140, 0.08),
        0 20px 48px rgba(0, 0, 0, 0.07);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.review-avatar-fallback {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.02em;
}

.review-meta {
    flex: 1;
    min-width: 0;
}

.review-name {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-date {
    font-size: 0.77rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

.review-google-logo {
    flex-shrink: 0;
    opacity: 0.9;
}

.review-stars {
    color: #f59e0b;
    font-size: 0.92rem;
    letter-spacing: 1px;
    line-height: 1;
}

.review-text {
    font-size: 0.91rem;
    color: var(--text-main);
    line-height: 1.68;
    flex: 1;
}

.review-readmore {
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 600;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    align-self: flex-start;
    font-family: inherit;
}

.review-readmore:hover {
    color: var(--accent-hover);
}

.carousel-nav {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--border-soft);
    background: #ffffff;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease-out, border-color 0.2s ease-out, transform 0.2s ease-out, opacity 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.carousel-nav:hover:not(:disabled) {
    background: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
    transform: scale(1.08);
}

.carousel-nav:disabled {
    opacity: 0.3;
    cursor: default;
}

.carousel-nav:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    margin-top: 0.25rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-soft);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s ease-out, transform 0.2s ease-out;
}

.carousel-dot.active {
    background: var(--accent);
    transform: scale(1.3);
}

.carousel-dot:hover:not(.active) {
    background: var(--text-muted);
}

.reviews-cta {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
}

.btn-write-review {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.6rem;
    border-radius: 999px;
    border: 1.5px solid rgba(44, 90, 140, 0.28);
    background: rgba(44, 90, 140, 0.04);
    color: var(--accent);
    font-family: inherit;
    font-size: 0.87rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease-out, border-color 0.2s ease-out, transform 0.2s ease-out;
}

.btn-write-review:hover {
    background: rgba(44, 90, 140, 0.1);
    border-color: var(--accent);
    transform: translateY(-1px);
}

.btn-write-review:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* Skeleton shimmer */
.skeleton-line {
    border-radius: 6px;
    background: linear-gradient(90deg, #eff1f3 25%, #e4e7ea 50%, #eff1f3 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.4s ease-in-out infinite;
}

@keyframes skeleton-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@media (prefers-reduced-motion: reduce) {
    .skeleton-line       { animation: none; background: #eff1f3; }
    .review-card         { transition: none; }
    .carousel-track      { transition: none; }
    .btn-write-review    { transition: none; }
    .carousel-nav        { transition: none; }
    .carousel-dot        { transition: none; }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .google-reviews { margin-top: 2rem; }
    .review-card {
        flex: 0 0 100%;
    }
    .carousel-nav {
        width: 34px;
        height: 34px;
    }
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

/* Złote gwiazdki dla zaufania */
.testimonial-stars {
    color: #f59e0b; /* Złoty/Bursztynowy kolor */
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

/* Ozdobny cytat w tle */
.testimonial-quote-icon {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 5rem;
    color: var(--bg-main); /* Bardzo jasny, zlewa się z tłem */
    line-height: 1;
    opacity: 0.6;
    user-select: none;
    pointer-events: none;
    font-family: serif;
}

.testimonial-text {
    font-size: 0.98rem;
    color: var(--text-main);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1; /* Wypycha autora na sam dół, jeśli teksty mają różną długość */
    position: relative;
    z-index: 2; /* Żeby tekst był nad ozdobnym cytatem */
}

.testimonial-author {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--accent);
    padding-top: 1rem;
    border-top: 1px solid var(--border-soft);
    z-index: 2;
}

@media (max-width: 768px) {
    .testimonials-grid {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
}

/* ==============================
   GALERIA (GALLERY) - MOZAIKA
============================== */

#gallery {
    background-color: var(--bg-main);
    padding: 6rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px; /* Bazowa wysokość zdjęcia */
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    position: relative;
    background: #e8edf2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

/* --- MAGIA MOZAIKI (Bento Box) --- */
/* Pierwsze zdjęcie jest duże (2x2) */
.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}
/* Czwarte zdjęcie jest szerokie (2x1) */
.gallery-item:nth-child(4) {
    grid-column: span 2;
}

/* Efekty po najechaniu */
.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.85);
}

.gallery-item::after {
    content: "🔍";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    font-size: 2.5rem;
    color: white;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    text-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.gallery-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* --- Responsywność --- */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }
    .gallery-item:nth-child(1) {
        grid-row: span 1; /* Na tablecie zmieniamy proporcje, żeby nie było za wielkie */
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(4) {
        grid-column: span 1; /* Na telefonie wszystko jedno pod drugim */
    }
}

/* ==============================
   KONTAKT (CONTACT) - NOWY DESIGN Z FORMULARZEM
============================== */

.contact-section {
    background-color: #edf0f2;
    padding: 6rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* --- LEWA STRONA: Dane --- */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.whatsapp-icon {
    color: #25D366; /* Kolor marki WhatsApp */
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-details span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.contact-details a {
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 600;
}

.contact-details a:hover {
    color: var(--accent);
}

/* --- PRAWA STRONA: Formularz --- */
.contact-form-box {
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    background: var(--bg-main);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(44, 90, 140, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* --- Responsywność --- */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-info .section-heading,
    .contact-info .about-text {
        text-align: center !important;
    }
    .contact-method {
        justify-content: flex-start;
        max-width: 300px;
        margin: 0 auto;
    }
    .contact-form-box {
        padding: 2rem 1.5rem;
    }
}

/* ==============================
   FOOTER - NOWY DESIGN
============================== */

footer {
    background-color: #1e293b; /* Elegancki, głęboki granat/grafit */
    color: #f8f9fa;
    padding: 5rem 0 2rem; /* Dużo oddechu na górze */
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr; /* Proporcje kolumn */
    gap: 4rem;
    margin-bottom: 4rem;
}

/* Brand / Logo */
.footer-logo {
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
    font-weight: 600;
    color: #ffffff;
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.8;
    max-width: 400px;
}

/* Nagłówki kolumn */
.footer-links h4,
.footer-contact h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Szybkie linki */
.footer-links nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* To wyrównuje do lewej */
    gap: 0.8rem;
}

.footer-links a,
.footer-contact a {
    color: #94a3b8;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    text-align: left;
    width: 100%;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #60a5fa; /* Jasny niebieski hover, idealny na ciemnym tle */
    transform: translateX(4px);
}

/* Kontakt w stopce */
.footer-contact p {
    margin-bottom: 1rem;
}

/* Pasek dolny (Copyright) */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #64748b;
    font-size: 0.85rem;
}

/* --- POPRAWKA WYRÓWNANIA W STOPCE --- */
.footer-links,
.footer-contact {
    text-align: left;
}



.footer-contact p {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
    text-align: left;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* --- Responsywność --- */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    .footer-brand {
        grid-column: span 2; /* Główny opis na pełną szerokość */
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-brand {
        grid-column: span 1;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================
   POPRAWKA: SEKCJA O MNIE I SEPARACJA TŁA
========================================================== */

/* 1. SEPARACJA SEKCJI (Szachownica: Szary -> Biały -> Szary) */
.about-section { background-color: var(--bg-main); }      /* Szary */
.offer-section { background-color: #ffffff; }             /* Biały */
.testimonials-section { background-color: var(--bg-main); } /* Szary */
#gallery { background-color: var(--bg-main); }             /* Szary */
.contact-section { background-color: #edf0f2; }

/* 2. UKŁAD "O MNIE" (Tekst po lewej, zdjęcie po prawej) */
.two-col {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* Proporcje kolumn */
    gap: 4rem;
    align-items: start;
    margin-bottom: 5rem;
}

.text-dark {
    color: #334155;
    font-size: 1.1rem;
    line-height: 1.8;
}


.about-photo {
    align-self: end;
}

.about-photo img {
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    width: 100%;
    height: auto;
    max-width: 380px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: top center;
    display: block;
    margin: 0 auto;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 1rem;
}

/* 3. KAFELKI "DLACZEGO WARTO" */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
}

.solid-card {
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solid-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.usp-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.usp-title {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.license-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(44, 90, 140, 0.25);
    background: rgba(44, 90, 140, 0.06);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    cursor: pointer;
}
.license-link:hover {
    background: rgba(44, 90, 140, 0.14);
    border-color: rgba(44, 90, 140, 0.5);
    transform: translateY(-1px);
}

.mt-5 {
    margin-top: 3rem;
}

/* Responsywność dla tej sekcji */
@media (max-width: 900px) {
    .two-col {
        grid-template-columns: 1fr; /* Na telefonie jedno pod drugim */
        gap: 2.5rem;
        text-align: center;
    }
    .two-col .section-heading,
    .two-col .section-lead {
        text-align: center !important;
    }
    .about-photo {
        padding-top: 0;
    }
}

/* ==============================
   COOKIE BANNER (RODO)
============================== */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 400px;
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;

    /* Animacja wyjazdu z dołu */
    transform: translateY(150%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.cookie-icon {
    font-size: 2rem;
    line-height: 1;
}

.cookie-text h4 {
    font-size: 1.05rem;
    color: var(--text-main);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.cookie-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.cookie-text a {
    color: var(--accent);
    font-weight: 600;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    justify-content: flex-end;
}

/* Na telefonach baner na całą szerokość ekranu na dole */
@media (max-width: 600px) {
    .cookie-banner {
        bottom: 10px;
        left: 10px;
        right: 10px;
        max-width: none;
        padding: 1.2rem;
    }
}

/* --- OTSTUPY DLYA HEADERA NA MOBILNYH --- */
@media (max-width: 768px) {
    .header-inner {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

/* ==============================
   LOGO – GRADIENT ACCENT LINE
============================== */

.logo {
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), #60a5fa, transparent);
    border-radius: 2px;
    opacity: 0.85;
}

/* ==============================
   STATS BAR
============================== */

.stats-bar-wrapper {
    background: var(--accent);
}

.stats-bar {
    background: var(--accent);
    padding: 1.4rem 0;
}

.stats-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.4rem 3rem;
    min-width: 220px;
    color: #ffffff;
    text-align: center;
    position: relative;
}

.stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.25);
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.78rem;
    opacity: 0.82;
    font-weight: 400;
    margin-top: 0.25rem;
    letter-spacing: 0.01em;
}

.stats-divider {
    height: 60px;
    background: linear-gradient(to bottom, var(--accent), #ffffff);
}

@media (max-width: 600px) {
    .stats-inner {
        flex-direction: column; /* Выстраиваем элементы ровно в колонку */
    }
    
    .stat-item { 
        padding: 1rem 0; /* Делаем отступы сверху и снизу, убираем по бокам */
        width: 100%;
    }
    
    .stat-value { 
        font-size: 1.1rem; 
    }
    
    /* Превращаем полоску в горизонтальный разделитель */
    .stat-item + .stat-item::before {
        width: 60px; /* Длина горизонтальной линии */
        height: 1px; /* Толщина */
        top: 0; /* Ставим линию на самый верх блока */
        left: 50%; /* Центрируем */
        transform: translateX(-50%);
    }
}

/* ==============================
   WHATSAPP FLOATING BUTTON
============================== */

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    z-index: 9000;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    color: #ffffff;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
    color: #ffffff;
}

@media (max-width: 600px) {
    .whatsapp-float {
        bottom: 20px;
        right: 16px;
        width: 50px;
        height: 50px;
    }
}

/* ==============================
   FOOTER – MADE BY BADGE
============================== */

.footer-made-by {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: #475569;
}

.stronlab-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(96, 165, 250, 0.25);
    background: rgba(96, 165, 250, 0.07);
    color: #60a5fa;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    transition: all 0.25s ease;
}

.stronlab-badge:hover {
    background: rgba(96, 165, 250, 0.18);
    border-color: rgba(96, 165, 250, 0.55);
    color: #93c5fd;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(96, 165, 250, 0.15);
}

/* ==========================================================
   ИСПРАВЛЕНИЕ КОНТАКТОВ И ВЫЛЕЗАЮЩЕГО ТЕКСТА НА МОБИЛЬНЫХ
========================================================== */
@media (max-width: 768px) {
    /* 1. Центрируем весь блок с контактами */
    .contact-methods {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
    }

    /* 2. Выстраиваем иконку и текст в ровную линию */
    .contact-method {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        max-width: 320px; /* Фиксируем ширину, чтобы стояли ровно друг под другом */
        margin: 0 auto;
    }

    /* 3. Фиксируем иконки, чтобы они не сплющивались */
    .contact-icon {
        flex-shrink: 0;
        margin-right: 20px;
    }

    /* 4. Защита от вылезания длинного текста (почты) за экран */
    .contact-details {
        text-align: left;
        display: flex;
        flex-direction: column;
        width: 100%;
        overflow-wrap: break-word;
        word-break: break-word; /* Если почта не влезает, браузер аккуратно перенесет ее на новую строку */
    }
}