/* 1. RESET I PODSTAWY */

*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Muli', sans-serif;
    background-color: #ffffff;
    color: #00171F;
    overflow-x: hidden;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* 2. PASEK Z DATĄ */

#upcomming-date {
    background: linear-gradient(90deg, #2D5E82, #3a86ff);
    color: #ffffff;
    text-align: center;
    padding: 14px 0;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

#upcomming-date b {
    font-weight: 800;
    font-size: 1.2rem;
}

/* 3. NAWIGACJA (LOGO + SOCIALE + LOKALIZACJA LEWA, MENU PRAWA) */

.navbar {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar .container, 
.navbar .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* KONTENER LOGO + SOCIAL MEDIA + LOKALIZACJA */
.navbar-brand-group {
    display: flex;
    align-items: center;
    gap: 25px; 
}

.nav-logo {
    height: auto; 
    width: 260px; 
    max-height: 110px; 
    transition: transform 0.3s ease;
    object-fit: contain;
}

/* Style dla ikon społecznościowych */
.nav-socials-top {
    display: flex;
    align-items: center;
    gap: 15px; 
}

.nav-social-icon {
    font-size: 1.4rem; 
    color: #000;
    transition: all 0.3s ease;
    line-height: 1;
    text-decoration: none;
}

.nav-social-icon:hover {
    transform: translateY(-2px);
}

/* Kolory hover */
.nav-social-icon.fb:hover { color: #1877F2; }
.nav-social-icon.yt:hover { color: #FF0000; }
.nav-social-icon.ig:hover { color: #E4405F; }
.nav-social-icon.tt:hover { color: #ff0050; }

/* SPECJALNA IKONA LOKALIZACJI */
.nav-social-icon.loc {
    margin-left: 10px; 
    padding-left: 15px;
    border-left: 1px solid #ddd; 
    color: #135d27; 
}

.nav-social-icon.loc:hover {
    color: #EA4335; /* Czerwony Map Google */
    transform: translateY(-2px) scale(1.1);
}

/* MENU NAWIGACYJNE */
.navbar-nav {
    display: flex;
    align-items: center;
    flex-direction: row;
}

.nav-link {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    color: #1a1a1a !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 22px !important; 
    gap: 5px;
    letter-spacing: 1px;
    position: relative;
}

.nav-link i {
    font-size: 1.6rem;
    color: #000;
    transition: all 0.3s ease;
}

.nav-link:hover i,
.nav-link.active i {
    transform: translateY(-3px) scale(1.1);
    color: #3a86ff;
}

.nav-divider {
    width: 1px;
    height: 40px;
    background-color: #d1d1d1;
    margin: 0 5px;
    opacity: 0.6;
}

/* RWD DLA MENU I LOGO */
@media (max-width: 1250px) {
    .nav-link {
        padding: 10px 12px !important;
    }
    .nav-logo {
        width: 200px;
    }
    .navbar-brand-group {
        gap: 15px;
    }
}

@media (max-width: 991px) {
    .navbar-brand-group {
        gap: 12px;
    }
    .nav-logo {
        width: 160px;
        max-height: 70px;
    }
    .nav-socials-top {
        gap: 8px;
    }
    .nav-social-icon {
        font-size: 1.1rem;
    }
    .nav-social-icon.loc {
        margin-left: 5px;
        padding-left: 10px;
    }
    .nav-divider {
        display: none;
    }
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding-top: 20px;
    }
    .nav-link {
        flex-direction: row !important;
        gap: 15px;
        padding: 15px 0 !important;
        width: 100%;
        border-bottom: 1px solid #eee;
    }
}

/* 4. HERO (STRONA GŁÓWNA) */

.hero-container {
    position: relative;
    min-height: 65vh; 
    display: flex;
    align-items: center;
    background: #f3f4f6;
    padding: 30px 0;
    overflow: hidden;
}

.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22vw; 
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    z-index: 0;
    pointer-events: none;
    text-transform: uppercase;
}

.hero-glow {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(58, 134, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.hero-badge {
    background-color: #e9ecef;
    color: #555;
    border-radius: 25px;
    padding: 8px 18px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3.5rem, 9vw, 6.5rem); 
    font-weight: 900;
    color: #000;
    line-height: 0.9;
    letter-spacing: -3px; 
    margin: 0;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.5rem; 
    color: #333;
    font-weight: 400;
    line-height: 1.3;
    margin-top: 15px;
    border-left: 4px solid #3a86ff;
    padding-left: 15px;
    position: relative;
    z-index: 2;
}

.hero-features {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 25px;
    position: relative;
    z-index: 2;
}

.f-bold {
    font-size: 1.25rem; 
    font-weight: 900;
    color: #3a86ff;
    line-height: 1;
}

.f-desc {
    font-size: 0.75rem; 
    text-transform: uppercase;
    font-weight: 700;
    color: #666;
    letter-spacing: 1px;
}

.hero-btns-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap; 
    position: relative;
    z-index: 2;
}

.hero-btn, .hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px; 
    padding: 0 28px !important; 
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.85rem; 
}

.hero-btn {
    background: #000 !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 8px 15px rgba(0,0,0,0.12);
}

.hero-btn-secondary {
    background: transparent !important;
    color: #000 !important;
    border: 2px solid #000 !important;
}

.hero-btn-secondary:hover {
    background: #000 !important;
    color: #fff !important;
    transform: translateY(-3px);
}

/* SEKCJA SAMOCHODU */
.car-wrapper {
    position: relative;
    display: inline-block;
    z-index: 2;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.hero-car {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
    transform: perspective(1000px) rotateY(-5deg) translateY(-10px); 
    transition: transform 0.5s ease;
}

.car-wrapper:hover .hero-car {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.car-shadow {
    position: absolute;
    bottom: 10%;
    left: 10%;
    right: 10%;
    height: 35px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
    filter: blur(5px);
}

/* 5. TREŚĆ I STOPKA */

.content-wrap {
    padding: 40px 0 !important;
}

.news-card {
    border: 1px solid #EDEDED !important;
    border-radius: 20px !important;
    transition: 0.3s;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08) !important;
}

#footer {
    background-color: #2D5E82;
    color: white;
    text-align: center;
    padding: 15px 0; 
    font-size: 0.85rem; 
    font-weight: 300;
    letter-spacing: 0.5px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* 6. DODATKOWE RWD I POPRAWKI MOBILNE */

/* --- TYLKO DLA TELEFONÓW I TABLETÓW (poniżej 992px) --- */
@media (max-width: 991px) {
    .hero-container { 
        text-align: center; 
        padding: 60px 20px !important; 
    }
    .hero-subtitle { 
        border: none; 
        padding: 0; 
        font-size: 1.3rem !important; 
    }
    .hero-features { 
        justify-content: center; 
        gap: 15px;
        flex-wrap: wrap;
        margin-top: 25px;
    }
    .hero-car { 
        margin-top: 40px; 
        max-width: 90%; 
        transform: none !important; 
    }
    .hero-title { 
        font-size: 3.5rem !important; 
        letter-spacing: -2px;
    }

    .hero-btns-group {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-top: 30px;
    }

    .hero-btn, .hero-btn-secondary {
        width: 100%; 
        height: 55px;
    }

    .feature-divider {
        display: none;
    }

    .car-wrapper {
        animation: fadeInUp 1s ease forwards !important;
        mask-image: none !important;
        -webkit-mask-image: none !important;
    }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-title, .hero-subtitle, .hero-features, .hero-btns-group {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0; 
}

.hero-subtitle { animation-delay: 0.2s; }
.hero-features { animation-delay: 0.4s; }
.hero-btns-group { animation-delay: 0.6s; }

@keyframes carSlideIn {
    from {
        opacity: 0;
        transform: translateX(100px) perspective(1000px) rotateY(-10deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) perspective(1000px) rotateY(-5deg);
    }
}

/* Animacja auta tylko dla dużych ekranów, żeby nie psuła mobilki */
@media (min-width: 992px) {
    .car-wrapper {
        opacity: 0;
        animation: carSlideIn 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
        animation-delay: 0.1s;
    }
}

.car-wrapper::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle, transparent 50%, #f3f4f6 100%);
    pointer-events: none;
}

/*  NOWY STYL DLA DATY (PŁYWAJĄCY BADGE) */

#upcomming-date {
    position: fixed;
    bottom: 30px; 
    right: 30px;
    z-index: 9999;
    
    background: #3a86ff;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(58, 134, 255, 0.4);
    
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

#upcomming-date::before {
    content: "\F22D"; 
    font-family: "bootstrap-icons";
    font-size: 1.2rem;
}

#upcomming-date:hover {
    transform: scale(1.05) translateY(-5px);
    background: #000;
}

#upcomming-date b {
    font-weight: 900;
    color: #fff;
    font-size: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* RWD - na telefonach dajemy go na środek, żeby nie zasłaniał treści */
@media (max-width: 768px) {
    #upcomming-date {
        bottom: 15px;
        right: 15px;
        left: 15px;
        justify-content: center;
        font-size: 0.85rem;
        padding: 10px 15px;
    }
}

/* Animacja wjazdu dla auta */
@keyframes carSlideIn {
    from {
        opacity: 0;
        transform: translateX(100px) perspective(1000px) rotateY(-10deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) perspective(1000px) rotateY(-5deg);
    }
}

.car-wrapper {
    opacity: 0;
    animation: carSlideIn 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    animation-delay: 0.1s; /* Auto rusza chwilę po tekście */
}

/* 7. PODSTRONA OFERTA */

:root {
    --accent-color: #3a86ff;
    --card-bg: #ffffff;
    --text-main: #2d3436;
    --text-muted: #636e72;
    --smooth-bezier: cubic-bezier(0.2, 0.8, 0.2, 1);
    --transition-speed: 0.6s;
}

.oferta-section .hero-title {
font-size: 2.8rem !important;
    font-weight: 900;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, #000 30%, var(--accent-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

/* --- KARTY OFERTY --- */
.offer-card {
    background: var(--card-bg);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 32px;
    padding: 45px;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: 
        transform var(--transition-speed) var(--smooth-bezier),
        box-shadow var(--transition-speed) var(--smooth-bezier),
        border-color var(--transition-speed) ease,
        background var(--transition-speed) ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    
    opacity: 0;
    will-change: transform, opacity;
}

.offer-card:hover {
    /* Mocniejsze uniesienie i większa skala */
    transform: translateY(-20px) scale(1.03); 
    /* Głębszy, bardziej rozproszony cień z kolorem akcentu */
    box-shadow: 0 40px 80px rgba(58, 134, 255, 0.18);
    /* Wyraźniejsza krawędź */
    border-color: rgba(58, 134, 255, 0.4);
    background: #fff;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(58, 134, 255, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    transition: transform 1s var(--smooth-bezier);
}

.offer-card:hover::before {
    transform: scale(3) translate(-30px, 30px);
    background: radial-gradient(circle, rgba(58, 134, 255, 0.12) 0%, transparent 70%);
}

.offer-icon {
    width: 64px;
    height: 64px;
    background: #f8faff;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: all 0.5s var(--smooth-bezier);
    perspective: 1000px;
}

.offer-card:hover .offer-icon {
    background: var(--accent-color);
    color: #fff;
    transform: rotateY(180deg) translateZ(20px);
    box-shadow: 0 15px 30px rgba(58, 134, 255, 0.3);
}

.offer-card h3 {
    font-weight: 850;
    font-size: 1.75rem;
    color: #1a1a1a;
    margin-bottom: 18px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.offer-duration {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--accent-color);
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(58, 134, 255, 0.06);
    padding: 6px 14px;
    border-radius: 12px;
}

.offer-card p {
    color: var(--text-muted);
    line-height: 1.8; 
    font-size: 0.98rem;
    text-align: left; 
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.offer-card:hover p {
    color: var(--text-main);
}

.oferta-section .hero-btn {
    background: #000;
    color: #fff;
    padding: 16px 36px;
    border-radius: 20px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.4s var(--smooth-bezier);
    border: none;
}

.oferta-section .hero-btn:hover {
    background: var(--accent-color);
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 20px 40px rgba(58, 134, 255, 0.4);
}

.extra-info-bar {
    background: #fff;
    border-radius: 30px;
    padding: 30px 40px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.5s var(--smooth-bezier);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    opacity: 0;
}

.extra-info-bar:hover {
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    transform: translateY(-8px) scale(1.01);
}

@keyframes ultraSmoothIn {
    0% { 
        opacity: 0; 
        transform: translateY(50px) scale(0.95); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

.reveal-left { 
    animation: ultraSmoothIn 1.2s var(--smooth-bezier) forwards; 
    animation-delay: 0.1s; /* Karta 1 - startuje pierwsza */
}

.reveal-bottom { 
    animation: ultraSmoothIn 1.2s var(--smooth-bezier) forwards; 
    animation-delay: 0.3s; /* Karta 2 - startuje druga */
}

.reveal-right { 
    animation: ultraSmoothIn 1.2s var(--smooth-bezier) forwards; 
    animation-delay: 0.5s; /* Karta 3 - startuje trzecia */
}

/* 8. PODSTRONA KONTAKT */

.kontakt-section {
    padding: 80px 0;
    background: #fbfcfe;
}

.kontakt-section .hero-title {
    font-size: 2.2rem !important;
    font-weight: 850;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #000 30%, var(--accent-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.4;
    padding-bottom: 10px;
    margin-bottom: 30px;
    text-align: center;
    display: block;
}

.contact-card {
    background: #fff;
    border-radius: 32px;
    padding: 40px;
    height: 100%;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(58, 134, 255, 0.15);
    border-color: rgba(58, 134, 255, 0.3);
}

.contact-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #f0f7ff;
    color: var(--accent-color);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 30px;
    transition: all 0.5s var(--smooth-bezier);
    box-shadow: inset 0 0 15px rgba(58, 134, 255, 0.05);
}

.contact-card:hover .contact-icon-wrapper {
    background: var(--accent-color);
    color: #fff;
    transform: rotateY(180deg) scale(1.1);
    box-shadow: 0 15px 30px rgba(58, 134, 255, 0.25);
}

.contact-card h3 {
    font-weight: 850;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    line-height: 1.2;
}

.company-owner {
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.contact-details p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
}

.phone-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.phone-link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 800;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.phone-link span {
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 2px;
}

.phone-link:hover {
    color: var(--accent-color);
}

.opening-hours {
    width: 100%;
    margin-top: 10px;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    font-size: 0.95rem;
}

.hour-row:last-child {
    border-bottom: none;
}

.hour-row span {
    color: var(--text-muted);
}

.hour-row strong {
    color: #1a1a1a;
    font-weight: 700;
}

.accent-card {
    border: 1px solid rgba(58, 134, 255, 0.15);
}

/* OPINIE GOOGLE */

.google-review-card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin: 40px 0;
}

.google-review-box {
    display: inline-block;
    background: #fff;
    padding: 40px;
    border-radius: 32px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
    text-decoration: none !important;
    max-width: 450px;
    width: 100%;
}

.google-review-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(58, 134, 255, 0.15);
    border-color: var(--accent-color);
}

.google-branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.google-branding img { 
    width: 85px;
    height: auto;
}

.google-branding span { 
    font-weight: 600; 
    color: #5f6368; 
    font-size: 0.9rem; 
    letter-spacing: 1px;
    text-transform: uppercase;
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.rating-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1;
}

.google-rating .stars {
    color: #ffc107;
    font-size: 1.4rem;
    display: flex;
    gap: 4px;
}

.review-count {
    color: #70757a;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.google-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.write-review-link {
    text-decoration: none !important;
    color: #444;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.write-review-link i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.write-review-link strong {
    color: var(--accent-color);
    font-weight: 800;
}

.write-review-link:hover {
    background: #f0f7ff;
    border-color: var(--accent-color);
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(58, 134, 255, 0.1);
}

.map-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    border: 4px solid #fff;
    margin-bottom: 30px;
}

.map-wrapper iframe {
    filter: none !important;
    -webkit-filter: grayscale(0) !important;
    display: block;
}

.map-overlay { 
    position: absolute; 
    bottom: 30px; 
    left: 50%; 
    transform: translateX(-50%); 
    z-index: 5;
}

.btn-map {
    background: var(--accent-color);
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 10px 25px rgba(58, 134, 255, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
}

.btn-map:hover { 
    background: #1a1a1a; 
    color: #fff; 
    transform: translateY(-3px) scale(1.05); 
}

.faq-container { background: #fff; border-radius: 24px; padding: 10px 20px; border: 1px solid rgba(0,0,0,0.05); }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.05); padding: 18px 10px; cursor: pointer; }
.faq-item:last-child { border-bottom: none; }
.faq-item summary { list-style: none; font-weight: 700; display: flex; justify-content: space-between; align-items: center; color: #1a1a1a; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-content { padding-top: 12px; color: var(--text-muted); line-height: 1.6; font-size: 0.95rem; }
.faq-item[open] summary { color: var(--accent-color); }
.faq-item[open] summary i { transform: rotate(180deg); }

.mobile-actions {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    z-index: 1000;
}

.action-btn {
    padding: 16px;
    border-radius: 18px;
    text-align: center;
    text-decoration: none;
    font-weight: 800;
    color: #fff;
    font-size: 0.9rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.action-btn.call { background: var(--accent-color); }
.action-btn.nav { background: #1a1a1a; }
/* 9. PODSTRONA O FIRMIE */

.about-section {
    padding: 80px 0;
    background: #fbfcfe;
    overflow: hidden;
}

.about-section .hero-title {
    font-size: 1.8rem !important;
    font-weight: 850;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #000 30%, var(--accent-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.3;
    margin-bottom: 10px;
    text-align: center;
    display: block;
}

.title-divider {
    width: 45px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
    margin: 0 auto 15px auto;
}

/* Sekcja Statystyk */
.stats-row {
    margin-bottom: 60px;
}

.stat-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-card {
    background: #fff;
    padding: 40px;
    border-radius: 32px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    height: 100%;
    position: relative;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(58, 134, 255, 0.1);
    border-color: rgba(58, 134, 255, 0.2);
}

.highlight-card {
    border-top: 5px solid var(--accent-color);
}

.card-icon {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: inline-block;
}

.card-header-modern {
    font-weight: 850;
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.about-text {
    color: #555;
    line-height: 1.7;
    text-align: justify;
    font-size: 1.02rem;
    margin-bottom: 0;
}

.benefits-container {
    background: #fff;
    padding: 50px;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.03);
    margin-bottom: 50px;
}

.benefits-title {
    font-weight: 850;
    color: #1a1a1a;
    font-size: 1.6rem;
    margin-bottom: 35px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: #f8fbff;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.benefit-item:hover {
    background: #fff;
    border-color: var(--accent-color);
    box-shadow: 0 10px 20px rgba(58, 134, 255, 0.08);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-color);
    color: #ffffff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(58, 134, 255, 0.25);
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(-5deg);
    background: #1a1a1a;
}

.benefit-content {
    font-weight: 700;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.3;
}

.trust-section {
    background: #fff;
    border-radius: 30px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px dashed #ddd;
    margin-top: 40px;
}

.google-rating-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a1a1a;
}

.stars-col i {
    color: #ffc107;
    font-size: 1.1rem;
}

.reviews-count {
    display: block;
    color: #777;
    font-size: 0.85rem;
    font-weight: 600;
}

.google-review-box {
    display: block;
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    text-decoration: none !important;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.google-review-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(58, 134, 255, 0.1);
    border-color: var(--accent-color);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    color: #000;
    font-weight: 800;
    font-size: 1rem;
}

.review-date {
    font-size: 0.8rem;
    color: #70757a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-new {
    background: #f1f3f4;
    color: #1a1a1a;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    border: 1px solid #dadce0;
}

.review-stars-static {
    color: #fbbc05;
    font-size: 1rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review-body-text {
    color: #3c4043;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.review-body-text span {
    color: #1a73e8;
    font-weight: 600;
}

.btn-google-all {
    display: inline-block;
    background: #fff;
    color: #1a1a1a;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none;
    border: 2px solid #eee;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.btn-google-all:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

/* Responsywność */
@media (max-width: 991px) {
    .about-section { padding: 60px 0; }
    .info-card { padding: 30px; }
    .benefits-container { padding: 35px 25px; }
    .trust-section { flex-direction: column; text-align: center; gap: 20px; }
}

@media (max-width: 576px) {
    .about-text { text-align: left; }
    .benefits-grid { grid-template-columns: 1fr; }
    .stat-card { margin-bottom: 10px; }
}

/* 10. PODSTRONA TERMINY */

.dates-section {
    padding: 80px 0 !important;
    background-color: #fbfcfe !important;
}

.premium-date-row {
    background: #ffffff !important;
    border-radius: 20px !important;
    padding: 25px 40px !important;
    margin-bottom: 15px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(0,0,0,0.05) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02) !important;
    transition: all 0.3s ease !important;
}

.p-label { font-weight: 600; color: #64748b; font-size: 1rem; }
.p-value { font-weight: 700; color: #1a202c; font-size: 1.1rem; }

.next-active {
    border: 2px solid var(--accent-color, #3a86ff) !important;
    padding: 40px 50px !important;
    background: #ffffff !important;
    box-shadow: 0 20px 50px rgba(58, 134, 255, 0.1) !important;
    margin: 25px 0 !important;
}

.p-label-highlight {
    color: var(--accent-color, #3a86ff) !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1.1rem;
}

.p-value-giant {
    color: #111 !important;
    font-size: 3rem !important;
    font-weight: 900 !important;
    letter-spacing: -1.5px;
}

.live-pulse {
    width: 14px; height: 14px;
    background: var(--accent-color, #3a86ff);
    border-radius: 50%;
    margin-right: 20px;
    position: relative;
}
.live-pulse::after {
    content: '';
    position: absolute; width: 100%; height: 100%;
    top: 0; left: 0;
    background: var(--accent-color, #3a86ff);
    border-radius: 50%;
    animation: p-pulse 2s infinite;
}
@keyframes p-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3.5); opacity: 0; }
}

.contact-footer-banner {
    background: #111827 !important;
    border-radius: 30px !important;
    margin-top: 50px;
}
.p-email-button {
    background: var(--accent-color, #3a86ff);
    color: white !important;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none !important;
    display: inline-block;
}

/* MOBILE */
@media (max-width: 768px) {
    .premium-date-row { flex-direction: column; text-align: center; gap: 15px; }
    .p-value-giant { font-size: 2.2rem !important; }
}

    /* 1. KOLOR PASKA - SZKLANY BŁĘKIT */
    .navbar {
        background: linear-gradient(135deg, rgba(58, 134, 255, 0.15) 0%, rgba(248, 250, 252, 0.8) 100%) !important;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
        padding: 10px 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    }

    /* 2. PRZYCISKI MENU - AKTYWNY JAK SZKLANY PASEK */
    .nav-link {
        color: #334155 !important;
        font-weight: 700;
        padding: 10px 18px !important;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .nav-link.active {
        /* Ten sam szklany błękit co navbar */
        background: rgba(58, 134, 255, 0.2) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        color: #3a86ff !important; /* Wyraźniejszy błękitny tekst */
        border: 1px solid rgba(58, 134, 255, 0.3);
        box-shadow: 0 4px 15px rgba(58, 134, 255, 0.1);
    }

    .nav-link.active i {
        color: #3a86ff !important;
    }

    /* Hover dla nieaktywnych przycisków */
    .nav-link:hover:not(.active) {
        background: rgba(0, 0, 0, 0.03);
        color: #3a86ff !important;
    }

    /* 3. IKONY SOCIAL MEDIA - NATURALNE KOLORY W "OGRODZENIU" */
    .nav-social-icon {
        width: 35px;
        height: 35px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: 8px;
        text-decoration: none;
        transition: all 0.3s ease;
        /* Twoje oryginalne "ogrodzenie" (obramowanie/kształt) zostaje w CSS z main.css, 
           tutaj nadajemy tylko kolory ikonom wewnątrz */
    }

    /* Kolory ikon zgodne z markami (bez zmiany kształtu przycisku) */
    .nav-social-icon.fb i { color: #1877f2; }
    .nav-social-icon.yt i { color: #ff0000; }
    .nav-social-icon.ig i { color: #e4405f; }
    .nav-social-icon.tt i { color: #000000; }
    .nav-social-icon.loc i { color: #34a853; }

    /* Delikatny efekt przy najechaniu na social media */
    .nav-social-icon:hover {
        transform: translateY(-2px);
        opacity: 0.8;
    }

    .nav-divider {
        width: 1px;
        height: 20px;
        background: rgba(0, 0, 0, 0.1);
        margin: auto 8px;
    }