/* ======================================================
   1. RESET I USTAWIENIA BAZOWE
   ====================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

/* ======================================================
   2. NAWIGACJA (HEADER)
   ====================================================== */
header {
    background: transparent;
    padding: 1.5rem 150px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease-in-out;
    /* Usunięto: display: flex i justify-content: center */
}

/* Efekt po skrolowaniu */
header.scrolled {
    background: rgba(26, 26, 26, 0.85);
    padding: 0.8rem 150px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: none; /* ZMIANA: Logo i menu uciekają maksymalnie na boki (do 150px marginesu) */
}

nav .menu a {
color: #333; 
    text-decoration: none;
    font-weight: 700; /* <--- TUTAJ ZMIANA: Wracamy do mocnego pogrubienia */
    transition: color 0.3s;
    text-transform: uppercase; /* Opcjonalnie: jeśli wcześniej miałeś wielkie litery, upewnij się, że to tu jest */
    letter-spacing: 1px; /* Opcjonalnie: lekki odstęp między literami dobrze wygląda przy grubym foncie */
}


nav .menu a:hover {
    color: #3498db; /* Kolor po najechaniu (niebieski) */
}

header.scrolled nav .menu a {
    color: #fff; /* Wracają na biały, żeby były widoczne na ciemnym pasku */
}

header.scrolled nav .menu a:hover {
    color: #3498db;
}

/* Stylizacja logo */
.logo-img {
    height: 75px; /* Dopasuj wysokość do swoich potrzeb */
    width: auto;
    /* Ta właściwość podmienia obrazek w CSS! */
    content: url('zdjęcia/startLogo.png'); 
    transition: all 0.3s ease;
}

header.scrolled .logo-img {
    height: 75px;
    content: url('zdjęcia/logo.png');
}

.menu {
    display: flex;
    gap: 30px;
}

.menu a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: 0.3s;
}

.menu a:hover {
    color: #3498db;
}

/* Naprawa hamburgera */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 2001; /* Wyżej niż menu mobilne */
    position: relative;
    padding: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: 0.4s;
}

header.scrolled .hamburger span {
    background: #fff; 
}

/* Kiedy klikniemy hamburgera i otworzy się ciemne menu mobilne, 
   "X" musi być biały, niezależnie od tego, czy zjechaliśmy w dół, czy nie */
.hamburger.toggle span {
    background: #fff !important;
}

/* ======================================================
   3. SEKCJE I TREŚĆ
   ====================================================== */
section {
    height: auto; 
    min-height: auto;
    padding: 60px 15px; /* Delikatne marginesy na telefony */
    width: 100%; /* Gwarantuje, że tło wylewa się na 100% ekranu */
}

#home {
    padding: 0;
}

/* Mechanizm przełączania stron */
section:target { display: block; }
section:target ~ #home { display: none; }

/* Hero Section */
.hero {

    height: 100vh;
    /* ZMIENIONO Z 0.7 NA 0.5 */
    background:url('zdjęcia/setra516.webp') center/cover;
    display: flex;
    align-items: center;
    justify-content: left;
    text-align: left;
    color: #fff;
    padding: 0 150px;
}
.hero h2 {
    font-size: clamp(2.5rem, 6vw, 3rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content{
max-width:700px;
margin-top: 60px;
}

.hero-sub{
font-size:1.2rem;
margin:20px 0 25px 0;
color:#ddd;
}

.hero-buttons{
display:flex;
gap:20px;
}

.btn-outline{
background:transparent;
border:2px solid #fff;
}

.btn-outline:hover{
background:#fff;
color:#000;
}

/* Lista atutów w "O nas" */
.offer-highlights {
    margin-top: 40px;
    background: #f9f9f9;
    padding: 40px;
    border-left: 6px solid #3498db;
    border-radius: 4px;
}

.offer-highlights ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.offer-highlights li::before {
    content: "✓";
    color: #3498db;
    font-weight: bold;
    margin-right: 10px;
}

/* Karty w Ofercie */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: #fff;
    padding: 3rem;
    border: 1px solid #eee;
    border-top: 5px solid #3498db;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ======================================================
   4. KONTAKT I FORMULARZ
   ====================================================== */
.contact-container {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    background: #1a1a1a;
    color: #fff;
    padding: 60px;
    border-radius: 8px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: #2b2b2b;
    border: 1px solid #444;
    color: #fff;
    border-radius: 4px;
    font-size: 1rem;
    outline: none; /* To usuwa tę brzydką ramkę z przeglądarki */
    border: 1px solid #3498db; /* Zamiast tego ramka delikatnie zmienia kolor na Twój firmowy niebieski */
    box-shadow: 0 0 8px rgba(52, 152, 219, 0.2); /* Opcjonalnie: dodajemy subtelną, elegancką poświatę */
    transition: all 0.3s ease; /* Płynne przejście */
}

.contact-form textarea {
    resize: vertical; /* Blokada rozszerzania na boki */
    min-height: 120px;
    max-height: 400px;
}

.btn {
    text-decoration: none;
    display: inline-block;
    background: #3498db;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: #2980b9;
    transform: scale(1.05);
}

/* ======================================================
   5. STOPKA Z LOGO
   ====================================================== */

   /* ===== MINIMALISTYCZNA STOPKA ===== */

footer {
    background: #111;
    color: #aaa;
    padding: 70px 150px 25px 150px;
}

.footer-container {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #3498db;
}


.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: #999; text-decoration: none; transition: 0.3s; }
.footer-col a:hover { color: #3498db; }

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid #222;
    font-size: 0.85rem;
}

/* ======================================================
   6. RESPONSYWNOŚĆ
   ====================================================== */
@media (max-width: 1200px) {
    header, section, footer, .hero, header.scrolled { padding-left: 50px; padding-right: 50px; }
}

@media (min-width: 1024px) {
    section {
        padding: 80px 150px; /* 150px po bokach zrówna zawartość z logo i menu */
    }
    #home {
        padding: 0; /* Sekcja główna z autokarem ma swoje własne ustawienia */
    }
}

@media (max-width: 768px) {
    header, header.scrolled { padding: 1rem 20px; }
    
    .hamburger { display: flex; }

    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #1a1a1a;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.77,0,0.175,1);
        z-index: 1500;
    }

    .menu.active { right: 0; }
    .menu a { font-size: 1.5rem; margin: 15px 0; }

    section, footer, .hero { padding: 100px 20px 60px 20px; }
    .contact-container, .footer-container { grid-template-columns: 1fr; text-align: center; }
    .footer-container { flex-direction: column; }
    .footer-logo { margin: 0 auto 25px auto; }

    /* Animacja hamburgera */
    .hamburger.toggle span:nth-child(1) { transform: rotate(-45deg) translate(-6px, 7px); }
    .hamburger.toggle span:nth-child(2) { opacity: 0; }
    .hamburger.toggle span:nth-child(3) { transform: rotate(45deg) translate(-6px, -7px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Stylizacja danych kontaktowych na wzór wizytówki */
.contact-name {
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #fff;
    text-transform: uppercase;
}

.contact-details p {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.contact-details a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

/* Okrągłe tła dla ikon */
.contact-details i {
    width: 45px;
    height: 45px;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.2rem;
    transition: 0.3s;
}

/* Specjalny kolor dla ikony Facebooka przy najechaniu */
.contact-details a:hover i.fa-facebook-f {
    background: #1877f2;
    border-color: #1877f2;
    color: #fff;
}

/* Usuwamy zmianę koloru całego linku */
.contact-details a:hover {
    color: #3498db;
}

/* Stopka - spójny wygląd */
.footer-col h4 {
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* ===== OFERTA – NOWY UKŁAD ===== */


.offer-row{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
margin-top:50px;
}

.offer-card{
background:#fff;
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.3s;
}

.offer-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.offer-box{
padding:35px;
}

.offer-photo{
width:100%;
height:460px;
object-fit:cover;
display:block;
}

@media (max-width:768px){

.offer-row{
grid-template-columns:1fr;
}

}

/* ===== FLOTA ===== */

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    margin-top: 50px;
}

/* ===== FLOTA – POPRAWKA OVERLAY ===== */

/* ===== FLOTA - WYGLĄD KAFELKA I ZDJĘCIA ===== */
.fleet-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    background-color: transparent; /* Usuwamy białe tło */
    
    /* Ustawiamy proporcję 4:3 (poziomy prostokąt) - najlepsza dla pojazdów */
    aspect-ratio: 4 / 3; 
}

.fleet-item img {
    width: 100%;
    height: 100%; /* Rozciągamy na całą wielkość kafelka */
    
    /* COVER: Wypełnia cały box bez białych ramek */
    object-fit: cover; 
    
    /* CENTER: Pilnuje, by ucinać tylko boki/górę, a środek (autobus) zostawić widoczny */
    object-position: center; 
    
    display: block;
    transition: transform 0.4s ease;
    padding: 0; /* Usuwamy wewnętrzne marginesy z poprzedniego kroku */
}

.fleet-item:hover img {
    transform: scale(1.1);
}

/* Overlay zawsze w obrębie obrazka */
.fleet-name {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 12px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.4), transparent);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    box-sizing: border-box;
}

.fleet-name {
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.fleet-item:hover .fleet-name {
    transform: translateY(0);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    margin-top: 50px;
}

/* Laptopy (ekrany do 1400px) */
@media (max-width: 1400px) {
    .fleet-grid {
        gap: 20px; 
    }
    .fleet-name {
        font-size: 0.95rem;
        padding: 10px 14px;
    }
}

/* Małe laptopy i duże tablety poziomo (ekrany do 1024px) */
@media (max-width: 1024px) {
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 kolumny kwadratów */
        gap: 25px; 
    }
}

/* Mniejsze tablety i duże telefony (ekrany do 768px) */
@media (max-width: 768px) {
    .fleet-grid {
        gap: 15px;
    }
    .fleet-name {
        font-size: 0.85rem; 
        padding: 8px 10px;
    }
}

/* Telefony w pionie (ekrany do 576px) */
@media (max-width: 576px) {
    .fleet-grid {
        grid-template-columns: 1fr; /* 1 kolumna kwadratów */
        gap: 25px;
    }
    .fleet-name {
        font-size: 1rem; 
        padding: 12px 16px;
    }
}
.offer-list {
    list-style: none;
    margin-top: 20px;
    padding: 0;
}

.offer-list li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    position: relative;
    padding-left: 25px;
}

.offer-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

/* ===== WSPÓŁPRACA ===== */
#wspolpraca {
    padding: 90px 10%;
    background: #f7f7f7;
    text-align: center;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.step-box {
    background: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;             /* NOWE: Włączenie Flexboxa */
    flex-direction: column;    /* NOWE: Układ pionowy */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* NOWE: Płynna animacja hover */
    margin-bottom: 35px;
}

/* NOWE: Efekt najechania myszką */
.step-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.step-number {
    width: 40px;
    height: 40px;
    background: #3498db; /* Zmieniłem na Twój główny niebieski dla spójności */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 15px;
}

/* NOWE: To sprawia, że paragraf wypycha zdjęcie na sam dół */
.step-box p {
    flex-grow: 1; 
    margin-bottom: 25px;
}

/* NOWE: Stylizacja zdjęć pod opisem */
.step-img {
    width: 100%;
    height: 200px;       /* Stała wysokość, by wszystkie były równe */
    object-fit: cover;   /* Zapobiega spłaszczeniu/rozciągnięciu zdjęcia */
    border-radius: 8px;  /* Zaokrąglone rogi dopasowane do kształtu karty */
    margin-top: auto;    /* Gwarancja trzymania się dołu karty */
    box-shadow: 0 4px 10px rgba(2,0,0,0.15);
}

/* NOWE: Responsywność dla tej sekcji (żeby karty ze zdjęciami nie były za wąskie na mniejszych ekranach) */
@media (max-width: 1100px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .steps-container {
        grid-template-columns: 1fr;
    }
}

/* ===== HERO DLA PODSTRON ===== */
.hero-small {
    height: 100vh; /* Baner zajmie 40% wysokości ekranu */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url('zdjęcia/setra516.webp') center/cover; /* Możesz podmienić zdjęcie na inne! */
    color: #fff;
    padding: 0 20px;
    margin-top: 0;
}

.hero-small h1 {
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    margin-top: 60px; /* Zostawiamy miejsce na menu */
    letter-spacing: 1px;
    text-transform: uppercase;
}

.action-btn-container {
    text-align: center;
    margin-top: 60px;
}

/* Responsywność ciasteczek na telefony */
@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        padding: 20px;
        text-align: center;
        gap: 15px;
    }
    .cookie-banner p {
        max-width: 100%;
        font-size: 0.85rem;
    }
}

/* ===== KLAUZULA RODO ===== */
.rodo-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 25px;
    font-size: 0.85rem;
    color: #aaa;
    text-align: left;
}

/* Naprawiamy wygląd samego kwadracika */
.rodo-checkbox input[type="checkbox"] {
    width: 18px;            /* Stała szerokość */
    height: 18px;           /* Stała wysokość */
    margin-bottom: 0;       /* Usuwamy dolny margines z głównych inputów */
    margin-top: 3px;        /* Lekko obniżamy, by zrównać z tekstem */
    cursor: pointer;
    flex-shrink: 0;         /* Zapobiega zgniataniu checkboxa przez długi tekst */
}

.rodo-checkbox label {
    cursor: pointer;
    line-height: 1.5;
}

.rodo-checkbox label:hover {
    color: #fff; /* Rozjaśnia tekst po najechaniu myszką */
}

/* ======================================================
   SEKCJA CTA (NAD STOPKĄ)
   ====================================================== */
.cta-section {
    padding: 80px 20px;
    background-color: #ffffff; /* Jasne tło, by odróżnić od białej góry */
    text-align: center;
    border-top: 1px solid #eee;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 800;
}

.cta-section h3 {
    font-size: clamp(1.8rem, 4vw, 2rem);
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 800;
}

.cta-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Żeby na telefonie przyciski były jeden pod drugim */
}

/* Styl dla przycisku konturowego (ciemnego) */
.btn-outline-dark {
    padding: 14px 30px;
    border: 2px solid #333;
    color: #333;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background-color: #333;
    color: #fff;
}

@media (max-width: 768px) {
    /* Wymuszamy biały kolor napisów wewnątrz aktywnego menu mobilnego */
    .menu.active a {
        color: #fff !important; 
        font-size: 1.5rem;
        margin: 15px 0;
        display: block;
        text-align: center;
    }
}

/* ======================================================
   ANIMACJE SEKCJI HERO
   ====================================================== */

/* Nowa, płynniejsza animacja wjazdu z dołu */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stan początkowy dla tekstów: ukryte (opacity: 0) */
.hero-content h1,
.hero-content h2,
.hero-content .hero-sub,
.hero-content .hero-buttons,
.hero-small h1 {
    opacity: 0; 
    animation: fadeInUp 0.8s ease-out forwards; /* Forwards sprawia, że po animacji tekst zostaje widoczny */
}

/* Kaskadowe opóźnienia (każdy element wjeżdża chwilę po poprzednim) */
.hero-content h1 {
    animation-delay: 0.1s;
}

.hero-content h2 {
    animation-delay: 0.3s;
}

.hero-content .hero-sub {
    animation-delay: 0.3s;
}

.hero-content .hero-buttons {
    animation-delay: 0.5s;
}

/* Animacja dla nagłówków na podstronach (Oferta, Flota) */
.hero-small h1 {
    animation-delay: 0.2s;
}

/* ======================================================
   SEKCJA FAQ - AKTUALIZACJA (Bez niebieskiej kreski, statyczne linie)
   ====================================================== */
.faq-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    color: #1a1a1a;
    position: relative;
    /* Usunięto ::after z niebieską kreską */
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    /* Przywrócono klasyczną linię o jaśniejszym kolorze #eee */
    border-bottom: 1px solid #eee; 
    /* Usunięto transition, aby linie były statyczne */
}

/* Usunięto cały blok .faq-item:hover { transform: translateX(5px); } */

.faq-item h3 {
    font-size: 1.25rem;
    color: #3498db;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

/* Ikonka pytania pozostaje - nadaje profesjonalizm */
.faq-item h3::before {
    content: '\f059'; /* Kod ikonki FontAwesome */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 12px;
    font-size: 1.1rem;
    opacity: 0.7;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
    margin-left: 32px;
}

/* Responsywność dla urządzeń mobilnych */
@media (max-width: 768px) {
    .faq-title {
        font-size: 1.6rem;
    }
    .faq-item h3 {
        font-size: 1.1rem;
    }
}

/* Stan początkowy dla pytań FAQ */
.faq-item {
    opacity: 0;
    transform: translateX(-50px); /* Przesunięcie o 50px w lewo */
    transition: all 0.8s ease-out; /* Czas trwania animacji */
}

/* Klasa aktywowana przez JavaScript */
.faq-item.appear {
    opacity: 1;
    transform: translateX(0); /* Powrót na oryginalną pozycję */
}

/* ======================================================
   ANIMACJE DLA SEKCJI (POZA FAQ)
   ====================================================== */
.anim-element {
    opacity: 0;
    transition: all 0.8s ease-out;
}

/* Kierunki wjazdu */
.anim-bottom { transform: translateY(40px); }
.anim-left { transform: translateX(-50px); }
.anim-right { transform: translateX(50px); }

/* Klasa aktywująca (dodawana przez JavaScript) */
.anim-element.anim-active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Opóźnienia (przydatne np. do kafelków w sekcji Flota lub Współpraca) */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }