* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    background: #ffffff;
    overflow-x: hidden;
}


/* =========================
   MENU
========================= */

header {
    height: 80px;
    background: #171717;
    color: white;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 7%;

    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.8;
}

.logo::before {
    content: "";
    display: inline-block;

    width: 8px;
    height: 28px;

    background: #d71920;

    margin-right: 10px;
    vertical-align: middle;
}

nav a {
    color: #d71920;
    text-decoration: none;

    margin-left: 30px;

    font-size: 16px;
    font-weight: bold;

    transition: 0.3s;
}

nav a:hover {
    color: white;
}


/* =========================
   GŁÓWNY BANER
========================= */

.hero {
    min-height: 650px;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.45)
        ),
       url("auto5.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 50px 7%;
}


.hero-content {
    width: 100%;
    max-width: 1100px;
    color: white;
}

.hero-small {
    color: #d71920;

    font-size: 15px;
    font-weight: bold;

    letter-spacing: 3px;

    margin-bottom: 20px;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.05;

    margin-bottom: 25px;

    text-transform: uppercase;
}

.hero-content > p:not(.hero-small) {
    color: #dddddd;

    font-size: 18px;
    line-height: 1.7;

    margin-bottom: 35px;
}

.hero-button {
    display: inline-block;

    background: #d71920;
    color: white;

    padding: 17px 32px;

    text-decoration: none;

    font-size: 14px;
    font-weight: bold;

    border-radius: 3px;

    transition: 0.3s;
}

.hero-button:hover {
    background: #b51218;
    transform: translateY(-2px);
}


/* =========================
   SEKCJE
========================= */

section {
    padding: 65px 7%;
}

section h2 {
    text-align: center;

    font-size: 38px;

    margin-bottom: 50px;

    color: #171717;
}


/* =========================
   USŁUGI
========================= */

#uslugi {
    background: white;
}

.services {
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}

.service {
    background: #f6f6f6;

    padding: 35px 28px;

    border-top: 4px solid #d71920;

    min-height: 220px;

    transition: 0.3s;
}

.service:hover {
    transform: translateY(-6px);

    box-shadow: 0 15px 30px rgba(0,0,0,0.10);
}

.service h3 {
    color: #171717;

    font-size: 20px;

    margin-bottom: 18px;
}

.service p {
    color: #666;

    line-height: 1.7;

    font-size: 15px;
}


/* =========================
   KIERUNKI
========================= */


.about {
    background: #f5f5f5;
    color: #222;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 45px 70px;
    border-top: 4px solid #d71920;
}
.section-intro {
    max-width: 1100px;
    margin: 0 auto 30px;
    color: #222;
    font-size: 17px;
    text-align: left;
}
.countries {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: 30px auto 0;
}

.country {
    background: #f5f5f5;
    border-top: 4px solid #d71920;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;

    min-height: 105px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    font-size: 20px;
    transition: 0.3s;
}

.country span {
    font-size: 28px;
}

.country strong {
    font-size: 20px;
}

.country:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}


/* =========================
   O NAS
========================= */

#onas {
    background: white;
}

.about {
    background: #171717;

    color: white;

    text-align: center;

    max-width: 1400px;

    margin: 0 auto;

    padding: 0 40px 10px;
}

.about h3 {
    color: #171717;
    font-size: 27px;
    margin-bottom: 25px;
}

.about p {
    max-width: 850px;
    margin: 0 auto 20px;
    color: #555;
    font-size: 17px;
    line-height: 1.8;
}

.about strong {
    color: #171717;
}


/* =========================
   FLOTA I SPEDYCJA
========================= */

#flota {
    background: #f5f5f5;
}

.fleet-intro {
    max-width: 850px;

    margin: -20px auto 45px;

    text-align: center;

    color: #666;

    font-size: 17px;

    line-height: 1.7;
}

.fleet-intro h3 {
    color: #171717;

    font-size: 24px;

    margin-bottom: 20px;
}

.fleet-intro p {
    margin-bottom: 15px;
}

.fleet-intro strong {
    color: #171717;
}


/* =========================
   GALERIA
========================= */

.gallery {
    max-width: 1400px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.gallery img {
    width: 100%;

    height: 300px;

    object-fit: cover;

    display: block;

    border-radius: 4px;

    /* BEZ POWIĘKSZANIA */
    cursor: default;

    transition: none;
}

.gallery img:hover {
    transform: none;
}


/* =========================
   KONTAKT
========================= */

#kontakt {
    background: #f5f5f5;
}

.contact-container {
    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 50px;
}

.contact-info {
    background: #171717;

    color: white;

    padding: 40px;

    border-top: 5px solid #d71920;
}

.contact-info h3 {
    font-size: 24px;

    margin-bottom: 30px;
}

.contact-info p {
    color: #cccccc;

    font-size: 16px;

    line-height: 1.7;

    margin-bottom: 25px;
}

.contact-info strong {
    color: white;
}

.contact-form {
    background: white;

    padding: 40px;
}

.contact-form h3 {
    color: #171717;

    font-size: 24px;

    margin-bottom: 25px;
}

.contact-form form {
    display: flex;

    flex-direction: column;

    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;

    padding: 15px;

    border: 1px solid #ddd;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;

    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #d71920;
}

.contact-form textarea {
    min-height: 130px;

    resize: vertical;
}

.contact-form button {
    padding: 16px;

    background: #d71920;

    color: white;

    border: none;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;

    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;
}

.contact-form button:hover {
    background: #b51218;
}


/* =========================
   STOPKA
========================= */

footer {
    background: #111111;

    color: #999;

    text-align: center;

    padding: 30px;
}


/* =========================
   TELEFON / TABLET
========================= */

@media (max-width: 1000px) {

    .services {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 52px;
    }

    .countries {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================
   TELEFON
========================= */

/* =========================
   TELEFON
========================= */

@media (max-width: 768px) {

    header {
        height: auto;
        padding: 20px;
        flex-direction: column;
        gap: 15px;
    }

    nav a {
        margin: 0 8px;
        font-size: 12px;
    }

    .hero {
        min-height: 520px;
        padding: 60px 25px;
    }

    .hero h1 {
        font-size: 52px;
    }

    .hero h2 {
        font-size: 21px;
    }

    .hero-content {
        width: 100%;
    }

    .service {
        width: 100%;
    }

    .countries {
        grid-template-columns: 1fr;
    }

    .fleet-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .gallery img {
        height: 280px;
    }
}


/* =========================
   DODATKOWE POPRAWKI
========================= */

/* START */

.hero-content {
    width: 100%;
    max-width: 1100px;
    color: white;
}

.hero-small {
    color: #d71920;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.hero-content h1 {
    color: white;
    font-size: 64px;
    line-height: 1.05;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content > p:not(.hero-small) {
    color: #dddddd;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.hero-button {
    display: inline-block;
    background: #d71920;
    color: white;
    padding: 17px 32px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    border-radius: 3px;
    transition: 0.3s;
}

.hero-button:hover {
    background: #b51218;
    transform: translateY(-2px);
}


/* =========================
   KIERUNKI
========================= */

#kierunki {
    background: white;
}

.countries {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.country {
    background: #f6f6f6;
    color: #171717;
    border: 1px solid #ddd;
    border-top: 4px solid #d71920;

    padding: 22px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    transition: 0.3s;
}

.country:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.country span {
    font-size: 28px;
}

.country strong {
    color: #171717;
    font-size: 17px;
}


/* =========================
   O NAS
========================= */

#onas {
    background: white;
}

#onas h2 {
    color: #171717;
}

.about {
    background: #f5f5f5;
    color: #222;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 45px 70px;
    border-top: 4px solid #d71920;
}

.about h3 {
    color: #171717;
    font-size: 24px;
    margin-bottom: 25px;
}

.about p {
    max-width: 900px;
    margin: 0 auto 20px;
    color: #444;
    font-size: 18px;
    line-height: 1.8;
}

.about strong {
    color: #171717;
}


/* =========================
   FLOTA
========================= */

#flota {
    background: white;
}

.fleet-intro {
    max-width: 900px;
    margin: 0 auto 45px;
    text-align: center;
    color: #555;
    font-size: 17px;
    line-height: 1.7;
}

.fleet-intro h3 {
    color: #171717;
    font-size: 24px;
    margin-bottom: 20px;
}

.fleet-intro p {
    margin-bottom: 15px;
}

.fleet-intro strong {
    color: #171717;
}


/* =========================
   GALERIA
========================= */

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.gallery img:hover {
    transform: scale(1.02);
}


/* =========================
   KONTAKT
========================= */

#kontakt {
    background: #f5f5f5;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    background: #171717;
    color: white;
    padding: 40px;
    border-top: 5px solid #d71920;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

.contact-info p {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.contact-info strong {
    color: white;
}

.contact-form {
    background: white;
    padding: 40px;
}

.contact-form h3 {
    color: #171717;
    font-size: 24px;
    margin-bottom: 25px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    outline: none;
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-form button {
    padding: 16px;
    background: #d71920;
    color: white;
    border: none;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}

.contact-form button:hover {
    background: #b51218;
    /* POPRAWKA - KIERUNKI */

#kierunki {
    background: white;
    color: #171717;
}

#kierunki h2 {
    color: #171717;
}

#kierunki .section-intro {
    color: #222;
    font-size: 18px;
    margin-bottom: 25px;
    text-align: left;
}

.countries {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto;
}

.country {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 105px;
    padding: 22px;

    background: #f6f6f6;
    color: #171717;

    border: 1px solid #ddd;
    border-top: 4px solid #d71920;

    box-sizing: border-box;
}

.country span {
    font-size: 28px;
}

.country strong {
    color: #171717;
    font-size: 20px;
}

@media (max-width: 768px) {
    .countries {
        grid-template-columns: 1fr;
    }
}
.section-intro {
    text-align: center;
    max-width: 700px;
    margin: -25px auto 35px;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}
