/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #111111;
    color: #ffffff;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   GLOBAL
========================================================= */

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

.section-heading {
    max-width: 750px;
    margin-bottom: 55px;
}

.section-label {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffb400;
}

.section-heading h2 {
    margin-bottom: 20px;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.1;
}

.section-heading p {
    color: #aaaaaa;
    font-size: 17px;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(17, 17, 17, 0.96);
    border-bottom: 1px solid #292929;
    backdrop-filter: blur(10px);
}

.header-container {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    flex-shrink: 0;
}

.logo-main {
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 1px;
}

.logo-sub {
    margin-top: 5px;
    font-size: 13px;
    font-weight: 700;
    color: #ffb400;
    letter-spacing: 2px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav a {
    position: relative;
    color: #cccccc;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.nav a:hover,
.nav a.active {
    color: #ffffff;
}

.nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 2px;
    background: #ffb400;
}

.header-phone {
    padding: 12px 18px;
    background: #ffb400;
    color: #111111;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    transition: 0.3s ease;
}

.header-phone:hover {
    background: #ffc533;
    transform: translateY(-2px);
}

.menu-button {
    display: none;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.75) 45%,
            rgba(0, 0, 0, 0.25) 100%
        ),
        url("../images/laweta-1.jpg") center / cover no-repeat;

    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        #111111 0%,
        transparent 20%
    );
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 720px;
}

.hero-label {
    display: inline-block;
    margin-bottom: 20px;
    color: #ffb400;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.hero h1 {
    margin-bottom: 25px;
    font-size: clamp(48px, 8vw, 86px);
    line-height: 0.95;
    text-transform: uppercase;
    font-weight: 900;
}

.hero h1 strong {
    color: #ffb400;
}

.hero p {
    max-width: 620px;
    margin-bottom: 35px;
    color: #dddddd;
    font-size: 19px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 25px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 800;
    transition: 0.3s ease;
}

.btn-primary {
    background: #ffb400;
    color: #111111;
}

.btn-primary:hover {
    background: #ffc533;
    transform: translateY(-3px);
}

.btn-secondary {
    border: 1px solid #555555;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
    border-color: #ffb400;
    color: #ffb400;
}

.btn-light {
    background: #ffffff;
    color: #111111;
}

.btn-light:hover {
    background: #eeeeee;
    transform: translateY(-3px);
}


/* =========================================================
   SERVICES
========================================================= */

.services {
    background: #111111;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    padding: 35px;
    background: #191919;
    border: 1px solid #292929;
    border-radius: 10px;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: #ffb400;
}

.service-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: #242424;
    border-radius: 8px;
    font-size: 27px;
}

.service-card h3 {
    margin-bottom: 13px;
    font-size: 22px;
}

.service-card p {
    margin-bottom: 22px;
    color: #999999;
    font-size: 15px;
}

.service-card a {
    color: #ffb400;
    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    background: #171717;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.about-image {
    min-height: 520px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #222222;
    border: 1px dashed #555555;
    border-radius: 10px;
    text-align: center;
}

.image-placeholder span {
    margin-bottom: 15px;
    font-size: 55px;
}

.image-placeholder p {
    color: #888888;
}

.about-content h2 {
    margin-bottom: 25px;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.1;
}

.about-content > p {
    margin-bottom: 15px;
    color: #aaaaaa;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 30px 0;
    list-style: none;
}

.check-list li {
    color: #dddddd;
    font-weight: 600;
}

.check-list li::first-letter {
    color: #ffb400;
}


/* =========================================================
   TRANSPORT
========================================================= */

.transport {
    background: #111111;
}

.transport-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.transport-text h3 {
    margin-bottom: 20px;
    font-size: 30px;
}

.transport-text > p {
    margin-bottom: 35px;
    color: #aaaaaa;
}

.transport-image {
    min-height: 450px;
}

.transport-image .image-placeholder {
    min-height: 450px;
}

.features {
    display: grid;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px;
    background: #191919;
    border-radius: 8px;
}

.feature strong {
    color: #ffb400;
    font-size: 18px;
}

.feature span {
    color: #dddddd;
}


/* =========================================================
   GALLERY
========================================================= */

.gallery {
    background: #171717;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
    background: #222222;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item::after {
    content: "POWIĘKSZ ↗";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    padding: 14px;

    background: linear-gradient(
        transparent,
        rgba(0, 0, 0, 0.85)
    );

    color: #ffffff;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;

    opacity: 0;
    transition: 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover::after {
    opacity: 1;
}


/* =========================================================
   CTA
========================================================= */

.cta {
    padding: 80px 0;
    background: #ffb400;
    color: #111111;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta .section-label {
    color: #111111;
}

.cta h2 {
    max-width: 750px;
    margin-bottom: 12px;
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.1;
}

.cta p {
    color: #333333;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #0b0b0b;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 70px;
    padding: 70px 0;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer p {
    max-width: 350px;
    color: #888888;
}

.footer h3 {
    margin-bottom: 20px;
    font-size: 17px;
}

.footer a {
    display: block;
    width: fit-content;
    margin-bottom: 12px;
    color: #999999;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer a:hover {
    color: #ffb400;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid #222222;
}

.footer-bottom p {
    max-width: none;
    font-size: 13px;
    color: #666666;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1050px) {

    .nav {
        gap: 15px;
    }

    .nav a {
        font-size: 13px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 800px) {

    .section {
        padding: 75px 0;
    }

    .header-container {
        min-height: 70px;
    }

    .nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        background: #111111;
        border-bottom: 1px solid #292929;
    }

    .nav.show {
        display: flex;
    }

    .nav a {
        padding: 13px 5px;
    }

    .nav a.active::after {
        display: none;
    }

    .header-phone {
        margin-left: auto;
    }

    .menu-button {
        display: block;
    }

    .hero {
        min-height: 650px;
    }

    .hero h1 {
        font-size: clamp(45px, 14vw, 70px);
    }

    .hero p {
        font-size: 17px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .transport-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image,
    .image-placeholder,
    .transport-image,
    .transport-image .image-placeholder {
        min-height: 350px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 55px 0;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 500px) {

    .header-phone {
        padding: 10px 12px;
        font-size: 12px;
    }

    .logo-main {
        font-size: 14px;
    }

    .logo-sub {
        font-size: 11px;
    }

    .hero {
        min-height: 600px;
    }

    .hero-label {
        font-size: 11px;
    }

    .hero h1 {
        font-size: 46px;
    }

    .service-card {
        padding: 27px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

}
/* =========================================================
   HERO INFO
========================================================= */

.hero-info {
    display: flex;
    gap: 35px;
    margin-top: 45px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-info div {
    display: flex;
    flex-direction: column;
}

.hero-info strong {
    margin-bottom: 3px;
    color: #ffb400;
    font-size: 22px;
    font-weight: 900;
}

.hero-info span {
    color: #bbbbbb;
    font-size: 12px;
}


/* =========================================================
   HERO ANIMATION
========================================================= */

.hero-content {
    animation: heroAppear 0.8s ease-out;
}

@keyframes heroAppear {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   MOBILE HERO INFO
========================================================= */

@media (max-width: 600px) {

    .hero-info {
        gap: 18px;
        justify-content: space-between;
    }

    .hero-info strong {
        font-size: 18px;
    }

    .hero-info span {
        font-size: 10px;
    }

}
/* =========================================================
   LIGHTBOX
========================================================= */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px;

    background: rgba(0, 0, 0, 0.94);

    opacity: 0;
    visibility: hidden;

    transition: 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-image {
    max-width: min(1100px, 90vw);
    max-height: 85vh;

    object-fit: contain;

    border-radius: 6px;

    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.7);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;

    background: rgba(255, 255, 255, 0.1);

    color: #ffffff;

    cursor: pointer;

    transition: 0.3s ease;
}

.lightbox-close {
    top: 25px;
    right: 30px;

    width: 50px;
    height: 50px;

    border-radius: 50%;

    font-size: 35px;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);

    width: 55px;
    height: 70px;

    font-size: 45px;
}

.lightbox-prev {
    left: 25px;
}

.lightbox-next {
    right: 25px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: #ffb400;
    color: #111111;
}


/* =========================================================
   GALLERY BUTTON RESET
========================================================= */

.gallery-item {
    border: none;
    padding: 0;
    font-family: inherit;
    cursor: pointer;
}


/* =========================================================
   LIGHTBOX — MOBILE
========================================================= */

@media (max-width: 700px) {

    .lightbox {
        padding: 20px;
    }

    .lightbox-image {
        max-width: 95vw;
        max-height: 75vh;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;

        width: 45px;
        height: 45px;

        font-size: 30px;
    }

    .lightbox-prev,
    .lightbox-next {
        top: auto;
        bottom: 25px;

        transform: none;

        width: 55px;
        height: 50px;

        border-radius: 6px;

        font-size: 35px;
    }

    .lightbox-prev {
        left: 25%;
    }

    .lightbox-next {
        right: 25%;
    }

}
/* =========================================================
   REPAIR SECTION
========================================================= */

.repair {
    background: #191919;
}

.repair-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.repair-text p {
    margin-bottom: 20px;
    color: #aaaaaa;
}

.repair-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.repair-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #222222;
    border: 1px solid #2c2c2c;
    border-radius: 7px;
}

.repair-item span {
    color: #ffb400;
    font-weight: 900;
}

.repair-item strong {
    font-size: 14px;
}


/* =========================================================
   TRANSPORT SERVICES
========================================================= */

.transport-services {
    margin-top: 70px;
}

.transport-services h3 {
    margin-bottom: 25px;
    font-size: 25px;
}

.transport-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.transport-services-grid div {
    padding: 18px 20px;
    background: #191919;
    border-radius: 6px;
    color: #dddddd;
}

.transport-services-grid div::first-letter {
    color: #ffb400;
}


/* =========================================================
   WHY US
========================================================= */

.why-us {
    background: #171717;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.why-card {
    padding: 30px;
    background: #202020;
    border: 1px solid #2c2c2c;
    border-radius: 8px;
    transition: 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: #ffb400;
}

.why-card > span {
    display: block;
    margin-bottom: 25px;
    color: #ffb400;
    font-size: 14px;
    font-weight: 900;
}

.why-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 1.2;
}

.why-card p {
    color: #999999;
    font-size: 14px;
}


/* =========================================================
   EMERGENCY
========================================================= */

.emergency {
    background:
        linear-gradient(
            90deg,
            #151515,
            #1e1e1e
        );
}

.emergency-content {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 80px;
    align-items: center;
}

.emergency-content h2 {
    margin-bottom: 25px;
    font-size: clamp(35px, 5vw, 55px);
    line-height: 1.05;
}

.emergency-content p {
    max-width: 750px;
    margin-bottom: 18px;
    color: #aaaaaa;
}

.emergency-box {
    padding: 40px;
    background: #111111;
    border: 1px solid #333333;
    border-radius: 10px;
    text-align: center;
}

.emergency-icon {
    margin-bottom: 15px;
    font-size: 50px;
}

.emergency-box h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.emergency-box p {
    margin-bottom: 25px;
}


/* =========================================================
   RESPONSIVE — NEW SECTIONS
========================================================= */

@media (max-width: 1000px) {

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .emergency-content {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 800px) {

    .repair-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .repair-list {
        grid-template-columns: 1fr;
    }

    .transport-services-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .emergency-content {
        gap: 40px;
    }

}
/* =========================================================
   MOBILE CONTACT BAR
========================================================= */

.mobile-contact-bar {
    display: none;
}


/* =========================================================
   MOBILE CONTACT BAR — MOBILE
========================================================= */

@media (max-width: 800px) {

    body {
        padding-bottom: 70px;
    }

    .mobile-contact-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;

        z-index: 1500;

        height: 70px;

        display: grid;
        grid-template-columns: 1.5fr 0.7fr;

        background: #0b0b0b;

        border-top: 1px solid #333333;

        box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.4);
    }

    .mobile-contact-call,
    .mobile-contact-location {
        display: flex;
        align-items: center;
        justify-content: center;

        gap: 10px;
    }

    .mobile-contact-call {
        background: #ffb400;
        color: #111111;
    }

    .mobile-contact-location {
        color: #ffffff;
        border-left: 1px solid #333333;
    }

    .mobile-contact-icon {
        font-size: 23px;
    }

    .mobile-contact-call small {
        display: block;

        font-size: 9px;
        font-weight: 800;
        letter-spacing: 1px;
    }

    .mobile-contact-call strong {
        display: block;

        font-size: 14px;
        font-weight: 900;
    }

    .mobile-contact-location {
        font-size: 12px;
    }

}
/* =========================================================
   CTA IMPROVEMENTS
========================================================= */

.cta-text {
    max-width: 750px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.cta-actions > span {
    color: #333333;
    font-size: 12px;
    font-weight: 700;
}

.btn-dark {
    background: #111111;
    color: #ffffff;
}

.btn-dark:hover {
    background: #222222;
    transform: translateY(-3px);
}


@media (max-width: 800px) {

    .cta-actions {
        width: 100%;
        align-items: stretch;
    }

    .cta-actions .btn {
        width: 100%;
    }

}



/* =========================================================
   WULKANIZACJA - DODATKOWE STYLE
========================================================= */


/* =========================================================
   TRANSPORT / TYPY POJAZDÓW
========================================================= */

.transport-services {
    display: grid;
    gap: 35px;
    margin-top: 50px;
}

.transport-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    background: #181818;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    border-radius: 18px;
}

.transport-card:nth-child(even) {
    grid-template-columns: 1.1fr 0.9fr;
}

.transport-card:nth-child(even) .transport-image {
    order: 2;
}

.transport-image {
    min-height: 380px;
    overflow: hidden;
}

.transport-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.transport-card:hover .transport-image img {
    transform: scale(1.05);
}

.transport-content {
    padding: 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.transport-label {
    color: #ffb400;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.transport-content h3 {
    font-size: 32px;
    margin-bottom: 18px;
}

.transport-content p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 25px;
}

.transport-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.transport-content li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #ddd;
}

.transport-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffb400;
    font-weight: 900;
}


/* =========================================================
   PROCES - JAK DZIAŁAMY
========================================================= */

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.process-item {
    position: relative;
    padding: 35px 28px;
    background: #181818;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.process-item:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 180, 0, 0.5);
}

.process-item > span {
    display: inline-block;
    color: #ffb400;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 22px;
}

.process-item h3 {
    font-size: 21px;
    margin-bottom: 14px;
}

.process-item p {
    color: #999;
    line-height: 1.7;
    margin: 0;
}


/* =========================================================
   KONTAKT BOX
========================================================= */

.contact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 55px;
    background: #181818;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
}

.contact-box h2 {
    margin-top: 12px;
    margin-bottom: 20px;
}

.contact-box p {
    max-width: 650px;
    color: #999;
    line-height: 1.8;
    margin: 0;
}


/* =========================================================
   DROBNE ULEPSZENIA DLA TEJ STRONY
========================================================= */

.wulkanizacja-page .hero {
    min-height: 720px;
}

.wulkanizacja-page .hero-content {
    max-width: 1200px;
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 1000px) {

    .transport-card,
    .transport-card:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .transport-card:nth-child(even) .transport-image {
        order: 0;
    }

    .transport-image {
        min-height: 300px;
    }

    .transport-content {
        padding: 40px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-box {
        flex-direction: column;
        align-items: flex-start;
    }

}


/* =========================================================
   RESPONSIVE - TELEFON
========================================================= */

@media (max-width: 700px) {

    .transport-services {
        gap: 22px;
        margin-top: 35px;
    }

    .transport-card {
        border-radius: 14px;
    }

    .transport-image {
        min-height: 230px;
    }

    .transport-content {
        padding: 28px 24px;
    }

    .transport-content h3 {
        font-size: 25px;
    }

    .transport-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 35px;
    }

    .process-item {
        padding: 28px 24px;
    }

    .process-item h3 {
        font-size: 19px;
    }

    .contact-box {
        padding: 32px 24px;
        border-radius: 15px;
        gap: 25px;
    }

    .contact-box h2 {
        font-size: 30px;
    }

    .contact-box .btn {
        width: 100%;
        text-align: center;
    }

}


/* =========================================================
   MAŁE TELEFONY
========================================================= */

@media (max-width: 420px) {

    .transport-content {
        padding: 24px 20px;
    }

    .transport-content h3 {
        font-size: 23px;
    }

    .process-item {
        padding: 24px 20px;
    }

    .contact-box {
        padding: 28px 20px;
    }

}

/* =========================================================
   FINAL POLISH - CAŁA STRONA
========================================================= */


/* =========================================================
   LEPSZA TYPOGRAFIA I ODSTĘPY
========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

.section {
    position: relative;
}


/* =========================================================
   HEADER - DELIKATNIE BARDZIEJ PREMIUM
========================================================= */

.header {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.logo {
    text-decoration: none;
}

.logo-main {
    font-weight: 900;
    letter-spacing: 1px;
}

.logo-sub {
    opacity: 0.8;
}


/* =========================================================
   NAV
========================================================= */

.nav a {
    position: relative;
    transition:
        color 0.25s ease,
        background 0.25s ease;
}

.nav a:not(.nav-phone)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #ffb400;
    transition: width 0.25s ease;
}

.nav a:not(.nav-phone):hover::after,
.nav a.active:not(.nav-phone)::after {
    width: 100%;
}


/* =========================================================
   HERO - MOCNIEJSZY EFEKT
========================================================= */

.hero {
    position: relative;
    isolation: isolate;
}

.hero-overlay {
    z-index: -1;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
}

.hero h1 {
    text-wrap: balance;
}

.hero h1 span {
    color: #ffb400;
}

.hero p {
    max-width: 700px;
}


/* =========================================================
   PRZYCISKI
========================================================= */

.btn {
    position: relative;
    overflow: hidden;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary:hover {
    box-shadow: 0 12px 30px rgba(255, 180, 0, 0.22);
}


/* =========================================================
   HERO INFO
========================================================= */

.hero-info {
    margin-top: 42px;
}

.hero-info > div {
    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.hero-info > div:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 180, 0, 0.35);
}

.hero-info strong {
    color: #ffb400;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-heading {
    position: relative;
}

.section-label {
    color: #ffb400;
    font-weight: 800;
    letter-spacing: 2px;
}


/* =========================================================
   KARTY USŁUG
========================================================= */

.service-card {
    position: relative;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #ffb400;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 180, 0, 0.35);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}


/* =========================================================
   REPAIR / TYPY POJAZDÓW
========================================================= */

.repair-item {
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.repair-item:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 180, 0, 0.35);
}

.repair-icon {
    transition: transform 0.3s ease;
}

.repair-item:hover .repair-icon {
    transform: scale(1.1);
}


/* =========================================================
   TRANSPORT CARDS
========================================================= */

.transport-card {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

.transport-content h3 {
    text-wrap: balance;
}


/* =========================================================
   WHY US
========================================================= */

.why-card {
    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 180, 0, 0.35);
}

.why-icon {
    transition: transform 0.3s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1);
}


/* =========================================================
   PROCES
========================================================= */

.process-item {
    overflow: hidden;
}

.process-item > span {
    font-size: 13px;
}

.process-item h3 {
    text-wrap: balance;
}


/* =========================================================
   GALERIA
========================================================= */

.gallery-item {
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
    filter: brightness(0.85);
}


/* =========================================================
   CTA
========================================================= */

.emergency {
    position: relative;
    overflow: hidden;
}

.emergency::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    right: -180px;
    top: -180px;
    border: 1px solid rgba(255, 180, 0, 0.15);
    border-radius: 50%;
}

.emergency::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    right: -100px;
    top: -100px;
    border: 1px solid rgba(255, 180, 0, 0.1);
    border-radius: 50%;
}

.emergency-content {
    position: relative;
    z-index: 2;
}

.emergency-box {
    position: relative;
    z-index: 3;
}


/* =========================================================
   KONTAKT
========================================================= */

.contact-box {
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.18);
}

.contact-box .btn {
    flex-shrink: 0;
}


/* =========================================================
   FOOTER
========================================================= */

.footer a {
    transition:
        color 0.2s ease,
        padding-left 0.2s ease;
}

.footer a:hover {
    color: #ffb400;
    padding-left: 4px;
}


/* =========================================================
   LIGHTBOX
========================================================= */

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
}


/* =========================================================
   SELEKCJA TEKSTU
========================================================= */

::selection {
    background: #ffb400;
    color: #111111;
}


/* =========================================================
   FOCUS - DOSTĘPNOŚĆ
========================================================= */

a:focus-visible,
button:focus-visible {
    outline: 2px solid #ffb400;
    outline-offset: 4px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .hero {
        min-height: 650px;
    }

    .hero-info {
        gap: 12px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .hero {
        min-height: 680px;
    }

    .hero-label {
        font-size: 12px;
        letter-spacing: 1.3px;
    }

    .hero h1 {
        font-size: clamp(42px, 12vw, 62px);
        line-height: 0.98;
    }

    .hero p {
        font-size: 16px;
        line-height: 1.65;
    }

    .hero-buttons {
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .hero-info {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-top: 30px;
    }

    .hero-info > div {
        padding: 13px 8px;
    }

    .hero-info strong {
        font-size: 19px;
    }

    .hero-info span {
        font-size: 10px;
        line-height: 1.3;
    }

    .section-heading p {
        font-size: 15px;
        line-height: 1.7;
    }

    .service-card:hover,
    .repair-item:hover,
    .why-card:hover,
    .process-item:hover {
        transform: none;
    }

}


/* =========================================================
   BARDZO MAŁE TELEFONY
========================================================= */

@media (max-width: 420px) {

    .hero {
        min-height: 700px;
    }

    .hero-info {
        grid-template-columns: 1fr;
    }

    .hero-info > div {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

}

/* =========================================================
   MOBILE - FINAL CONTACT BAR
========================================================= */

@media (max-width: 700px) {

    .mobile-contact-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9999;

        display: grid;
        grid-template-columns: 1fr 1fr;

        background: rgba(17, 17, 17, 0.96);
        border-top: 1px solid rgba(255, 180, 0, 0.25);

        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);

        padding: 10px;
        gap: 8px;

        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.35);
    }

    .mobile-contact-bar a {
        min-height: 52px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 10px;

        font-size: 14px;
        font-weight: 800;

        text-decoration: none;

        transition:
            transform 0.2s ease,
            background 0.2s ease;
    }

    .mobile-contact-bar a:active {
        transform: scale(0.97);
    }

    .mobile-contact-bar a:first-child {
        background: #ffb400;
        color: #111111;
    }

    .mobile-contact-bar a:last-child {
        background: #222222;
        color: #ffffff;
        border: 1px solid rgba(255, 255, 255, 0.12);
    }


    /* Żeby pasek nie zasłaniał treści */

    body {
        padding-bottom: 75px;
    }

}


/* =========================================================
   MOBILE MENU
========================================================= */

@media (max-width: 900px) {

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;

        display: none;
        flex-direction: column;

        padding: 15px;

        background: rgba(17, 17, 17, 0.98);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);

        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
    }

    .nav.show {
        display: flex;
    }

    .nav a {
        width: 100%;
        padding: 14px 12px;
        border-radius: 8px;
    }

    .nav a:hover {
        background: rgba(255, 180, 0, 0.08);
    }

    .nav a:not(.nav-phone)::after {
        display: none;
    }

}


/* =========================================================
   MOBILE - LEPSZE PRZYCISKI
========================================================= */

@media (max-width: 700px) {

    .btn {
        min-height: 52px;
        display: inline-flex;
        align-items: center;
        justify-content: center;

        padding: 14px 20px;
        border-radius: 10px;

        font-size: 15px;
        font-weight: 800;
    }

    .cta-actions {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .cta-actions .btn {
        width: 100%;
    }

}
/* =========================================================
   OBSZAR DZIAŁANIA
========================================================= */

.service-area {
    position: relative;
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 45px;
}

.area-card {
    padding: 30px 25px;
    background: #181818;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.area-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 180, 0, 0.4);
}

.area-main {
    grid-column: span 2;
}

.area-icon {
    display: block;
    font-size: 30px;
    margin-bottom: 20px;
}

.area-card h3 {
    font-size: 21px;
    margin-bottom: 12px;
}

.area-card p {
    color: #999;
    line-height: 1.7;
    margin: 0;
}

.area-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;

    margin-top: 30px;
    padding: 40px;

    background: #ffb400;
    color: #111;

    border-radius: 18px;
}

.area-cta .section-label {
    color: #111;
}

.area-cta h3 {
    font-size: 30px;
    margin: 10px 0 12px;
}

.area-cta p {
    max-width: 650px;
    margin: 0;
    line-height: 1.7;
    opacity: 0.8;
}

.area-cta .btn {
    flex-shrink: 0;
    background: #111;
    color: #fff;
}

.area-cta .btn:hover {
    background: #222;
}


/* =========================================================
   OBSZAR DZIAŁANIA - MOBILE
========================================================= */

@media (max-width: 1000px) {

    .area-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .area-main {
        grid-column: span 2;
    }

    .area-cta {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 700px) {

    .area-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 30px;
    }

    .area-main {
        grid-column: span 1;
    }

    .area-card {
        padding: 25px 22px;
        border-radius: 14px;
    }

    .area-card h3 {
        font-size: 19px;
    }

    .area-cta {
        padding: 30px 24px;
        margin-top: 20px;
        border-radius: 15px;
        gap: 25px;
    }

    .area-cta h3 {
        font-size: 26px;
    }

    .area-cta .btn {
        width: 100%;
        text-align: center;
    }

}
/* =========================================================
   FOOTER CONTACT
========================================================= */

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-contact h3 {
    margin-bottom: 18px;
}

.footer-contact a,
.footer-contact span {
    display: block;
    margin-bottom: 10px;
    color: #aaa;
    line-height: 1.5;
}

.footer-contact a {
    color: #fff;
    font-weight: 700;
}

.footer-contact a:hover {
    color: #ffb400;
}
/* =========================================================
   HERO - HOLOWANIE POWYZEJ 3,5T
========================================================= */

.hero.heavy-hero {
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.75) 45%,
            rgba(0, 0, 0, 0.25) 100%
        ),
        url("../images/holowanie-ciezarowki-1.jpg") center / cover no-repeat;
}