:root {
    --orange: #f88101;
    --navy: #11264f;
}

body {
    font-family: "Montserrat", sans-serif;
}

/* ======================= */
/* HEADER / LOGO / NAV */
/* ======================= */
.logo-left img {
    transition: transform 0.2s ease;
}

.logo-left:hover img {
    transform: scale(1.03);
}

#mainHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;

    /* HEADER LOAD ANIMATION */
    transform: translateY(-20px);
    opacity: 0;
    animation: headerReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes headerReveal {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* GŁÓWNY UKŁAD */
.header-inner {
    display: flex;
    align-items: center;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.logo-group {
    display: flex;
    align-items: stretch;
    height: clamp(80px, 8vw, 120px);
    width: 100%;
}

.logo-height {
    height: clamp(80px, 8vw, 120px);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* LEWE LOGO */
.logo-left img {
    width: auto;
    display: block;
    object-fit: cover;
}

/* PRAWE LOGO (tło) */
.logo-middle {
    flex: 1;
    position: relative;
    display: grid;
    overflow: visible;
    width: 100%;
    height: 100%;
}

/* TŁO logo_s — niezależne od menu */
.logo-middle::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/logo_s.webp") repeat-x center;
    background-size: auto 100%;
    z-index: 0;
}

/* wybielenie */
.logo-middle::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 65%,
        rgba(255, 255, 255, 0.95) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* MENU nie zmienia wysokości logotypu */
.logo-middle nav {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.logo-middle ul {
    display: flex;
    align-items: center;
}

/* NIEBIESKI DOLNY PASEK */
.bottom-bar {
    height: 14px;
    background: var(--navy);
    margin-top: -20px; /* opcjonalnie */
}

/* NAV NA TLE logo_s */
nav {
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 2;
    position: relative;
}

nav ul {
    display: flex;
    gap: clamp(20px, 3vw, 50px);
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

nav a {
    position: relative;
    text-decoration: none;
    font-weight: 600;
    color: var(--orange);
    font-size: clamp(13px, 1.1vw, 16px);
    transition: color 0.25s ease;
}

/* brak linii pod spodem */
nav a::after {
    display: none !important;
}

/* AKTYWNY LINK = NIEBIESKI */
nav a.active {
    color: var(--navy);
}

/* HOVER = NIEBIESKI */
nav a:hover {
    color: var(--navy);
}

/* ======================= */
/* DROPDOWN */
/* ======================= */

.dropdown {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 140%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    padding: 18px;
    border-radius: 16px;
    background: rgba(17, 38, 79, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    display: grid;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.25s ease,
        transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* aktywne po kliknięciu */
.dropdown.active .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s ease;
}

.mega-menu a:hover {
    transform: translateX(4px);
}

/* ======================= */
/* SHRINK */
/* ======================= */

#mainHeader.shrink {
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

/* zmniejszenie kontenera logotypów */
#mainHeader.shrink .logo-group {
    height: clamp(60px, 5vw, 85px);
}

/* zmniejszenie wysokości logotypów */
#mainHeader.shrink .logo-height {
    height: clamp(60px, 5vw, 85px);
}

#mainHeader.shrink .logo-middle {
    height: clamp(60px, 5vw, 85px);
}

/* podniesienie menu */
#mainHeader.shrink nav ul {
    transform: translateY(-2px);
    transition: 0.3s ease;
}
.about-list {
    margin-bottom:25px; 
    line-height:1.7; 
    color:#333;
}
/* ======================= */
/* SEKCJA O NAS */
/* ======================= */
.about-section {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr; /* ok. 65% / 35% */
    gap: 60px;
    align-items: center;
    padding: clamp(60px, 8vw, 120px) 20px;
    max-width: 1300px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(17, 38, 79, 0.03), rgba(248, 129, 1, 0.03));
    border-radius: 30px;
}
.area-section section reveal {
    margin-top:40px;
}
.why-cta reveal {
    max-width:700px;
    margin:40px auto 0;
}
.back-to-services reveal {
    text-align:center; 
    margin-bottom:60px;
} 
/* LEWA STRONA */

.about-left h1 {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--navy);
    margin-bottom: 10px;
}

.about-left h1::before {
    margin-right: 10px;
}

.about-left h2 {
    font-size: clamp(24px, 3vw, 36px);
    color: var(--orange);
    margin-bottom: 20px;
}

.about-left h1,
.about-left h2 {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.about-desc {
    font-size: clamp(16px, 1.2vw, 20px);
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

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

.btn-primary {
    background: var(--orange);
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: #ff9a2a;
}

.btn-secondary {
    background: white;
    border: 2px solid var(--navy);
    color: var(--navy);
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-secondary:hover {
    background: var(--navy);
    color: white;
}

/* PRAWA STRONA — FORMULARZ */

.about-right {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    max-width: 420px;
    width: 100%;
    justify-self: end;
    transform: translateY(0);
    transition: 0.3s ease;
}

.about-right:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

.quote-form h3 {
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 20px;
}

.quote-form label {
    font-weight: 600;
    margin-top: 15px;
    display: block;
    color: #333;
}

.quote-form input,
.quote-form textarea,
.quote-form select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #dcdcdc;
    margin-top: 6px;
    font-size: 16px;
    font-family: inherit;
    background: #fafafa;
    transition: 0.25s ease;
}

.quote-form textarea {
    min-height: 120px;
    resize: vertical;
}

.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
    border-color: var(--orange);
    background: white;
    box-shadow: 0 0 0 3px rgba(248, 129, 1, 0.15);
}

/* CHECKBOXY */

.checkbox-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.checkbox-line input {
    width: 18px;
    height: 18px;
    accent-color: var(--orange);
}

.checkbox-line a {
    color: var(--navy);
    text-decoration: underline;
    font-weight: 600;
}

/* PRZYCISK WYŚLIJ */

.btn-submit {
    width: 100%;
    margin-top: 25px;
    background: linear-gradient(135deg, var(--orange), #ff9a2a);
    color: white;
    padding: 16px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(248, 129, 1, 0.25);
}

.btn-submit:hover {
    background: #ff9a2a;
    box-shadow: 0 14px 30px rgba(248, 129, 1, 0.35);
}

/* ======================= */
/* RESPONSYWNOŚĆ */
/* ======================= */

@media (max-width: 900px) {
    .about-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .about-right {
        max-width: 100%;
        padding: 24px;
        border-radius: 16px;
    }
    .quote-form h3 {
        font-size: 20px;
        margin-bottom: 16px;
    }
    .quote-form label {
        font-size: 14px;
        margin-top: 12px;
    }
    .quote-form input,
    .quote-form textarea,
    .quote-form select {
        font-size: 14px;
        padding: 10px 12px;
        border-radius: 8px;
    }
    .quote-form textarea {
        min-height: 90px;
    }
    .btn-submit {
        font-size: 16px;
        padding: 14px;
        border-radius: 10px;
    }
    .mega-menu {
        display: none !important;
    }
}

/* ======================= */
/* SEKCJA OPINIE */
/* ======================= */

.reviews-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: clamp(60px, 8vw, 120px) 20px;
    text-align: center;
}

.reviews-section .section-title {
    font-size: clamp(28px, 3vw, 40px);
    color: var(--navy);
    margin-bottom: 10px;
}

.reviews-section .section-subtitle {
    font-size: clamp(16px, 1.2vw, 20px);
    color: #444;
    margin-bottom: 50px;
}

/* BLOK REALIZACJI */

.realizacje-block {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.realizacja-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.realizacja-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.realizacja-icon {
    width: 130px;
    height: 130px;
    margin-bottom: 20px;
    border-radius: 50%;
    object-fit: cover;
}

.realizacja-item h3 {
    color: var(--navy);
    font-size: 20px;
    margin-bottom: 10px;
}

.realizacja-item p {
    color: #555;
    font-size: 15px;
    margin-bottom: 20px;
}

.btn-realizacja {
    display: inline-block;
    padding: 12px 24px;
    background: var(--orange);
    color: white;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-realizacja:hover {
    background: #ff9a2a;
}
/* ======================= */
/* PREMIUM KAFELKI 3D */
/* ======================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

/* GŁÓWNY KAFEL */
.service-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: 22px;
    overflow: hidden;
/* RAMKA 3D */
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    box-shadow:
        0 8px 15px rgba(0, 0, 0, 0.12),
        0 4px 6px rgba(0, 0, 0, 0.08),
        inset 0 1px 2px rgba(255, 255, 255, 0.6);
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.22),
        0 6px 12px rgba(0, 0, 0, 0.12),
        inset 0 1px 2px rgba(255, 255, 255, 0.7);
}

/* ZDJĘCIE */
.service-card-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: 22px 22px 0 0;
}

/* TŁA DLA KONKRETNYCH USŁUG */
.service-card.montaz .service-card-image {
    background-image: url("../img/montaz.webp");
}

.service-card.elektryk .service-card-image {
    background-image: url("../img/elektryka.webp");
}

.service-card.hydraulik .service-card-image {
    background-image: url("../img/hydraulika.webp");
}

.service-card.remont .service-card-image {
    background-image: url("../img/remont.webp");
}

.service-card.ogrod .service-card-image {
    background-image: url("../img/ogrod.webp");
}

/* BELKA Z OPISAMI – PREMIUM */
.service-card-content {
    padding: 6px 18px 18px 18px; /* góra | prawo | dół | lewo */
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.75));
    backdrop-filter: blur(4px);
    margin-top: -20px; /* belka wchodzi na zdjęcie */
    border-radius: 18px;
    color: #11264f;
}

/* IKONA */
.service-card-content .icon {
    font-size: 34px;
    margin-bottom: 10px;
    transition: 0.3s ease;
}

.service-card:hover .icon {
    transform: translateY(-4px) scale(1.08);
}

/* TYTUŁ */
.service-card-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
}

/* OPIS */
.service-card-content p {
    font-size: 15px;
    color: #444;
    margin-bottom: 10px;
}

/* CTA */
.service-card-content span {
    font-weight: 700;
    color: var(--orange);
    transition: 0.3s ease;
}

.service-card:hover span {
    transform: translateX(4px);
    color: #ff9a2a;
}

/* MOBILE */
@media (max-width: 600px) {
    .service-card-image {
        height: 140px;
    }

    .service-card-content {
        padding: 16px;
    }
}

/* ======================= */
/* SEKCJA OPINIE / REALIZACJE */
/* ======================= */
/*     KAFEL CTA */
.contact-box {
    background: linear-gradient(135deg, var(--orange), #ff9a2a);
    color: white;
}

.contact-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(248, 129, 1, 0.35);
}

.contact-box h3,
.contact-box p {
    color: white;
}

/*   SEO OPIS POD KAFELKAMI */
.services-seo {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #444;
    font-size: 16px;
    line-height: 1.6;
}
.opinie-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: clamp(60px, 8vw, 120px) 20px;
    text-align: center;
}

.opinie-section .section-title {
    font-size: clamp(28px, 3vw, 40px);
    color: var(--navy);
    margin-bottom: 10px;
}

.opinie-section .section-subtitle {
    font-size: clamp(16px, 1.2vw, 20px);
    color: #444;
    margin-bottom: 40px;
}

/* GRID 2×2 */
.opinie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* KAFEL */
.opinie-box {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.opinie-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* IKONY 130×130 */
.opinie-icon {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.opinie-box h3 {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 10px;
}

.opinie-box p {
    font-size: 15px;
    color: #555;
}

/* SEO OPIS POD KAFELKAMI */
.opinie-seo {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #444;
    font-size: 16px;
    line-height: 1.6;
}
/* Efekt — lekkie podskakiwanie + fade‑in wyjeżdża z dołu */
.icon-box {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.9s ease-out;
}

.icon-box.visible {
    opacity: 1;
    transform: scale(1);
}

.icon-box:hover {
    transform: scale(1.05);
}
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Ramki do opisu uslug */
.service-box {
    background: #ffffff;
    padding: 60px 20px;
    border-radius: 20px;
    margin-bottom: 80px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}
.service-box-inner {
    display: flex;
    gap: 40px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.service-box-left,
.service-box-right {
    flex: 1;
}
.service-box-right p {
    line-height: 1.7;
    margin-bottom: 15px;
}
.section-title,
.service-box-right h2 {
    color: var(--navy);
}
.service-box-right h3 {
    color: var(--orange);
    margin-top: 25px;
}
.section h2 {
    color: var(--orange);
}
.why-box {
    background: #fff7f0;
    padding: 50px 30px;
    border-radius: 20px;
    margin-bottom: 60px;
}

@media(max-width: 600px) {
    .service-box-inner {
        flex-direction: column-reverse;
    }
}

/* Nagłówki */
.why-title {
    color: var(--navy);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-subtitle {
    color: #555;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

/* Karty */
.why-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
    transition: transform .3s ease, box-shadow .3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 45px rgba(0,0,0,0.10);
}

.why-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.why-card h3 {
    color: var(--orange);
    margin-bottom: 10px;
    font-size: 20px;
}

.why-card p {
    color: #444;
    line-height: 1.6;
}

/* CTA */
.why-cta {
    text-align: center;
    margin-top: 20px;
}


/* ======================= */
/* SEKCJA KONTAKT */
/* ======================= */

.contact-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: clamp(60px, 8vw, 120px) 20px;
}

/* DWIE KOLUMNY – POPRAWIONE */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: linear-gradient(135deg, rgba(17, 38, 79, 0.03), rgba(248, 129, 1, 0.03));
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    align-items: start; /* KLUCZOWE – zapobiega rozjeżdżaniu */
}

/* LEWA STRONA */

.contact-left h2 {
    font-size: clamp(28px, 3vw, 40px);
    color: var(--navy);
    margin-bottom: 15px;
}

.contact-desc {
    font-size: 16px;
    color: #444;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-info a {
    color: var(--orange);
    font-weight: 700;
    text-decoration: none;
}

.contact-buttons {
    margin-top: 25px;
    display: flex;
    gap: 20px;
}

/* PRAWA STRONA — MAPA */

.contact-right {
    width: 100%;
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 350px; /* trochę większa, wygląda lepiej */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#map {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: 20px;
}

/* RESPONSYWNOŚĆ */

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .map-container,
    #map {
        min-height: 280px;
    }
}



/* ======================= */
/* STOPKA PREMIUM */
/* ======================= */

.footer {
    background: var(--navy);
    color: white;
    padding: 60px 20px 20px;
    margin-top: 80px;
}

.footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-col p,
.footer-col a {
    font-size: 15px;
    color: #e6e6e6;
    text-decoration: none;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a:hover {
    color: var(--orange);
}

.footer-social img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    border-radius: 50%;
    transition: 0.3s ease;
}

.footer-social img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    opacity: 0.7;
}

/* DLACZEGO MY – SPÓJNOŚĆ ZE STYLEM STRONY */

.why-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: clamp(60px, 8vw, 120px) 20px;
}

.why-box {
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.why-title {
    color: var(--navy);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.why-subtitle {
    color: #444;
    font-size: clamp(16px, 1.2vw, 20px);
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.why-card {
    background: white;
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 45px rgba(0,0,0,0.10);
}

.why-card h3 {
    color: var(--orange);
    font-size: 20px;
    margin-bottom: 10px;
}

.why-card p {
    color: #444;
    line-height: 1.6;
}

.why-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.why-cta {
    text-align: center;
    margin-top: 40px;
}
/* wyslanie wiadomosc */
.alert-toast {
    position: fixed;
    top: 100px; /* idealnie pod headerem */
    left: 50%;
    transform: translateX(-50%);
    background: #16a34a;
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    font-size: 16px;
    animation: fadeInOut 4s ease forwards;
    display: flex;
    align-items: center;
    gap: 8px;
}

.alert-toast::before {
    content: "✔";
    font-weight: bold;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translate(-50%, -10px); }
    10% { opacity: 1; transform: translate(-50%, 0); }
    90% { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, -10px); }
}


/* ciastka */
.cookie-banner {
    position: fixed; /* KLUCZOWE — przypięte do ekranu, nie do strony */
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 650px;

    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 22px 26px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.25);

    display: flex;
    flex-direction: column;
    gap: 18px;

    z-index: 99999; /* ponad wszystko */
    animation: fadeIn 0.35s ease;
}

.cookie-banner p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: #222;
    text-align: center;
}

.cookie-link {
    color: #0055cc;
    font-weight: 600;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.cookie-buttons button {
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.cookie-decline {
    background: rgba(255, 255, 255, 0.6);
    color: #333;
    border: 1px solid #ccc;
}

.cookie-accept {
    background: #0055cc;
    color: white;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, 10px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}




/* elektryk lista i foto */
.about-list { margin-bottom:25px; line-height:1.7; }
.rounded-img { width:100%; border-radius:20px; }
.section reveal why-box {
    text-align:center; 
    max-width:900px; 
    margin:0 auto 80px;
}


