* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #c5a47e; /* Złoty */
    --secondary-color: #121c2d; /* Ciemny granat */
    --text-dark: #333;
    --text-light: #f1f1f1;
    --bg-light: #f9f9f9;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.section-subtitle {
    display: block;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}

.text-center { text-align: center; }

.title-underline {
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    margin: 10px auto 40px;
}

/* --- ZINTEGROWANA NAWIGACJA --- */
.main-navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
    background: transparent;
}

.top-bar {
    background: rgba(255, 255, 255, 0);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease;
    overflow: hidden;
    max-height: 50px; /* Wysokość bazowa */
}

.top-bar-content {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 20px;
    display: flex; /* Dodane */
    justify-content: space-between; /* Dodane - rozsuwa lewo od prawo */
    align-items: center; /* Dodane - centruje w pionie */
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #ccc;
    font-size: 0.8rem;
}

.top-bar-right {
    display: flex;
    align-items: center;
    color: #ccc;
    font-size: 0.8rem;
    font-weight: 600;
}

.top-bar-left i, .top-bar-right i {
    color: var(--primary-color);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #ccc;
    font-size: 0.8rem;
    transition: color 0.4s ease;
}

.contact-info i {
    color: var(--primary-color);
}

.divider-v {
    width: 1px;
    height: 15px;
    background: rgba(255, 255, 255, 0.2);
}

.nav-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.4s ease;
}

.logo a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.4s ease;
}

.logo span { color: var(--primary-color); }

/* Podstawowe ustawienia obrazków w logo */
.logo-img {
    display: none; /* Domyślnie ukryte, jeśli nie ma obrazka */
    height: 40px;  /* Dostosuj wysokość do swoich potrzeb */
    width: auto;
    vertical-align: middle;
}

/* Stan początkowy (góra strony) */
.main-navigation:not(.scrolled) .logo-light {
    display: inline-block;
}

.main-navigation:not(.scrolled) .logo-dark {
    display: none;
}

/* Stan po scrollowaniu */
.main-navigation.scrolled .logo-light {
    display: none;
}

.main-navigation.scrolled .logo-dark {
    display: inline-block;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    white-space: nowrap;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.4s ease;
}

.nav-links a:hover { color: var(--primary-color); }

/* Ukrycie hamburgera domyślnie */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--primary-color); /* Możesz zamienić na #2c3e50 */
}

/* Style mobilne */
@media (max-width: 992px) {
    .nav-container {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 15px 20px !important;
        flex-wrap: nowrap !important;
    }

    .menu-toggle {
        display: block !important;
        order: 1 !important;
        margin: 0 !important;
    }

    .logo {
        order: 2 !important;
        margin: 0 !important;
    }

    .logo-img {
        height: 30px !important; 
        width: auto;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; 
        width: 75%;
        height: 100vh;
        background: #fff;
        flex-direction: column !important; /* Wewnątrz menu linki mają być pionowo */
        align-items: center;
        justify-content: center;
        transition: 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 1000;
        gap: 0; /* Reset luki między linkami w menu mobilnym */
    }

    .nav-links.active {
        right: 0; /* Wysunięcie menu */
    }

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links li a {
        color: #2c3e50 !important;
        font-size: 18px;
        font-weight: 600;
    }
}

/* --- EFEKT PO PRZEWINIĘCIU (SCROLLED) --- */
.main-navigation.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: fixed;
}

.main-navigation.scrolled .top-bar {
    max-height: 0;
    padding: 0;
    opacity: 0;
    border: none;
}

.main-navigation.scrolled .nav-container {
    padding: 15px 20px;
}

.main-navigation.scrolled .logo a,
.main-navigation.scrolled .nav-links a,
.main-navigation.scrolled .contact-info {
    color: var(--secondary-color);
}

/* --- SEKCJA HERO --- */
.modern-hero {
    position: relative;
    width: 100%;
    /* Ustawienie wysokości na sztywno na 100% wysokości okna */
    height: 100vh; 
    min-height: 100vh; /* Gwarantuje pełną wysokość nawet przy małych ekranach */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* To zastępuje .video-background z Twojego poprzedniego pliku */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: left center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 28, 45, 0.7); /* Przyciemnienie dla czytelności tekstu */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    margin-top: 0; 
}

.hero-text-wrapper h2 {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.hero-text-wrapper h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-text-wrapper p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #ddd;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-hero {
    display: inline-block;
    padding: 16px 35px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: var(--transition);
    border-radius: 0px;
    border: 2px solid transparent;
}

.btn-hero.primary {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.btn-hero.primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-hero.secondary {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-hero.secondary:hover {
    background-color: #fff;
    color: var(--secondary-color);
}

/* --- ANIMACJE --- */
.animate-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards ease-out;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* --- FEATURES --- */
.features {
    padding: 50px 0;
    background: #fff;
    margin-top: -50px;
    position: relative;
    z-index: 5;
}

.features .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    padding: 40px;
    text-align: center;
    background: #fff;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.feature-item:hover { transform: translateY(-10px); }

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h3 { margin-bottom: 15px; font-size: 1.3rem; }
.feature-item p { color: #666; font-size: 0.95rem; }

/* --- ABOUT --- */
.about-section { padding: 50px 0; background: var(--bg-light); }
.about-image img {
    width: 100%;
    height: auto;
    box-shadow: 20px 20px 0 var(--primary-color);
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat .label { font-size: 0.8rem; text-transform: uppercase; color: #777; font-weight: 600; }

/* --- SERVICES --- */
.services-section { padding: 50px 0; background: var(--bg-light); }

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.services-grid .service-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 300px;
}

.service-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card {
    padding: 40px;
    border: 1px solid #eee;
    background: #fff; /* Zapewnia białe tło na starcie */
    transition: var(--transition);
    height: 100%; /* Sprawia, że wszystkie karty są równe */
}

.service-card:hover {
    background: #fdfaf5; /* Bardzo jasny beż */
    border-color: var(--primary-color);
    transform: translateY(-5px); /* Delikatne uniesienie */
    box-shadow: 0 10px 30px rgba(197, 164, 126, 0.15); /* Subtelny cień w kolorze złota */
}

.service-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.service-card h3 { 
    margin-bottom: 15px; 
    color: var(--secondary-color); 
}

.service-card p { 
    font-size: 0.9rem; 
    color: #666; 
    transition: color 0.3s; 
}

/* Opcjonalnie: zmiana koloru tekstu na nieco ciemniejszy przy hoverze dla lepszej czytelności */
.service-card:hover p { 
    color: #444; 
}

/* --- TABS SYSTEM --- */
.tabs-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 15px 40px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--secondary-color);
    font-family: inherit;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    background: rgba(197, 164, 126, 0.1);
}

.tab-btn.active {
    background: var(--primary-color);
    color: #fff;
}

.tab-content {
    display: none; /* Ukryte domyślnie */
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block; /* Pokazane tylko aktywne */
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsywność zakładek */
@media (max-width: 768px) {
    .tabs-container {
        flex-direction: column;
        gap: 10px;
    }
    .tab-btn {
        width: 100%;
    }
}
/* --- ULEPSZONY PRICING --- */
.pricing-section { padding: 80px 0; background: #fff; }

.rates-heading { 
    text-align: center; 
    margin-bottom: 30px; 
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.rates-wrapper { 
    background: var(--bg-light); 
    padding: 40px; 
    border-radius: 8px; 
    margin-bottom: 60px; 
}

.rates-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
    gap: 15px; 
}

.rate-item { 
    display: flex; 
    justify-content: space-between; 
    padding: 18px 25px; 
    background: #fff; 
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    transition: var(--transition);
}

.rate-item:hover { border-color: var(--primary-color); transform: translateX(5px); }

.rate-item.highlight { 
    border: 2px solid var(--primary-color); 
    background: #fff;
    font-weight: 600;
}

.individual-note { margin-top: 25px; font-style: italic; color: #888; font-size: 0.9rem; }

/* Karty systemów */
.pricing-grid { margin-bottom: 60px; }

.pricing-card { 
    padding: 50px 30px; 
    background: #fff;
    border: 1px solid #eee;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.card-icon { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 20px; }

.pricing-card h3 { margin-bottom: 15px; color: var(--secondary-color); }

.pricing-card .card-footer { 
    margin-top: auto; 
    padding-top: 20px; 
    font-size: 0.75rem; 
    text-transform: uppercase; 
    color: var(--primary-color); 
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-card.featured { 
    background: var(--secondary-color); 
    color: #fff; 
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.pricing-card.featured h3 { color: #fff; }
.pricing-card.featured p { color: #ccc; }

.pricing-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    color: #fff;
    padding: 8px 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Footer cennika */
.styled-list { list-style: none; padding-top: 10px; }
.styled-list li { position: relative; padding-left: 25px; margin-bottom: 12px; }
.styled-list li::before { 
    content: '\f00c'; 
    font-family: 'Font Awesome 6 Free'; 
    font-weight: 900; 
    position: absolute; 
    left: 0; 
    color: var(--primary-color); 
}

.ethics-notice { 
    background: #fdfaf5; 
    padding: 30px; 
    border-right: 4px solid var(--primary-color);
    border-left: none;
}

/* --- TEAM --- */
.team-section { padding: 50px 0; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-member {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.member-info h3 { font-size: 1.2rem; margin-bottom: 5px; }
.member-info .position {
    display: block;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.member-info p { font-size: 0.9rem; color: #777; }

.member-image {
    width: 100%;
    aspect-ratio: 3 / 4; /* Wymusza proporcje portretowe dla wszystkich zdjęć */
    overflow: hidden;
    background-color: #eee; /* Tło zastępcze podczas ładowania */
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Kadruje zdjęcie tak, by wypełniło cały obszar */
    object-position: center top; /* Ustawia fokus na górną część zdjęcia (twarze) */
    transition: var(--transition); /* Używamy Twojej zmiennej transition */
}

/* Efekt przy najechaniu na kartę członka zespołu */
.team-member:hover .member-image img {
    transform: scale(1.05); /* Delikatne powiększenie zdjęcia */
}

/* Spójność z resztą strony - dodanie cienia do kart */
.team-member {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Nieco mocniejszy cień dla głębi */
    transition: var(--transition);
}

.btn-member {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-member:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Opcjonalne: wyrównanie tekstu w member-info, jeśli dodasz przycisk */
.member-info {
    padding: 30px; 
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Przycisk do lewej */
}

/* --- CONTACT --- */
.contact-section { padding: 50px 0; background: var(--bg-light); }
.contact-list { margin-top: 30px; }
.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 5px;
}

.contact-item h4 { font-size: 1rem; margin-bottom: 5px; }
.contact-item p { font-size: 0.9rem; color: #666; }

.contact-form {
    background: var(--bg-light);
    padding: 40px;
}

.form-group { margin-bottom: 20px; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 0.9rem;
}

.w-full { width: 100%; cursor: pointer; }

.form-group .form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 0.9rem;
    background-color: #fff;
    color: var(--text-dark);
    appearance: none; /* Usuwa domyślny wygląd systemowy */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c5a47e'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    cursor: pointer;
    transition: var(--transition);
}

/* Styl dla placeholderów i pól podczas edycji */
.form-group input:focus, 
.form-group textarea:focus, 
.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(197, 164, 126, 0.1);
}

/* Styl dla informacji o e-poradzie */
#eporada-info {
    border-radius: 4px;
    line-height: 1.5;
    color: #555;
    animation: fadeIn 0.4s ease-out;
}

#eporada-info strong {
    color: var(--secondary-color);
}

/* --- FOOTER --- */
.main-footer {
    background: var(--secondary-color);
    color: #bbb;
    padding: 80px 0 30px;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-column h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

/* Dekoracyjna linia pod nagłówkiem kolumny */
.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-description {
    line-height: 1.8;
    margin-top: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact-info i {
    color: var(--primary-color);
    font-size: 1rem;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

/* Responsywność dla footera */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 60px 0 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-contact-info p {
        justify-content: center;
    }
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .grid-2, .services-grid, .team-grid { grid-template-columns: 1fr; gap: 40px; }
    .features .container { grid-template-columns: 1fr; }
    .hero-text-wrapper h1 { font-size: 2.5rem; }
    .about-image { order: -1; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .nav-links { gap: 15px; }
    .hero-buttons { flex-direction: column; }
    .btn-hero { width: 100%; text-align: center; }
    .main-navigation.scrolled .top-bar { max-height: 0; }
}

/* --- MAPA --- */
.map-section {
    line-height: 0; /* Usuwa małą przerwę pod mapą */
    background: var(--bg-light);
}

.map-container {
    width: 100%;
    filter: grayscale(0.2) contrast(1.1); /* Subtelny efekt dla elegancji */
    transition: var(--transition);
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.map-container:hover {
    filter: grayscale(0); /* Mapa odzyskuje pełne kolory po najechaniu */
}

.map-container iframe {
    display: block;
}

/* --- TRUST SECTION (LOGOS SLIDER) */
.trust-section {
    padding: 60px 0;
    width: 100%;
    overflow: hidden;
}

.logos-slider {
    width: 100vw; /* Wymusza szerokość równą szerokości okna przeglądarki */
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.logos-track {
    display: flex;
    width: max-content; /* Automatycznie dopasuje szerokość do zawartości */
    animation: scrollLogos 40s linear infinite; /* Zwiększyłem czas na 40s dla płynności */
}

.logos-track:hover {
    animation-play-state: paused;
}

.slide {
    width: 250px; /* Stała szerokość slajdu */
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.slide img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.5;
    transition: var(--transition);
}

.slide img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

.container-fluid {
    width: 100%;
    padding: 0; /* Usuwa boczne marginesy */
}

/* KLUCZ DO NAPRAWY: Animacja przesuwa dokładnie o połowę szerokości tracka */
@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsywność dla urządzeń mobilnych */
@media (max-width: 768px) {
    .slide {
        width: 180px; /* Mniejsze slajdy na telefonach */
        padding: 0 20px;
    }
    .logos-slider::before, .logos-slider::after { width: 50px; }
}

/* --- NOWA SEKCJA MAPA + ZDJĘCIE --- */
.map-and-photo {
    background: var(--bg-light);
    padding: 0; /* Usunięcie paddingu, by elementy dochodziły do krawędzi jeśli trzeba */
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.map-and-photo .grid-2 {
    gap: 0; /* Brak odstępu między zdjęciem a mapą */
    max-width: 100%; /* Rozciągnięcie na całą szerokość jeśli preferujesz */
    padding: 0;
}

.place-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.place-photo {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Zdjęcie wypełni całą kolumnę */
    display: block;
}

.map-container-new {
    width: 100%;
    height: 100%;
    line-height: 0;
}

/* Responsywność dla tej sekcji */
@media (max-width: 992px) {
    .map-and-photo .grid-2 {
        grid-template-columns: 1fr; /* Na tabletach/telefonach jeden pod drugim */
    }
    
    .place-photo {
        height: 350px; /* Stała wysokość zdjęcia na mobile */
    }
}

/* --- COOKIES BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: -100%; /* Domyślnie schowany pod ekranem */
    left: 0;
    width: 100%;
    background: var(--secondary-color); /* Ciemny granat */
    color: #fff;
    padding: 20px 0;
    z-index: 9999; /* Zawsze na wierzchu */
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    bottom: 0; /* Wyjazd na ekran */
}

.cookie-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-banner p {
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
    color: #ddd;
}

/* Responsywność dla telefonów */
@media (max-width: 768px) {
    .cookie-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-banner #accept-cookies {
        width: 100%; /* Przycisk na całą szerokość na telefonie */
    }
}

/* --- CHECKBOX RODO --- */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 15px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    cursor: pointer;
    accent-color: var(--primary-color); /* Złoty kolor zaznaczenia */
}

.checkbox-group label {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    cursor: pointer;
}

.checkbox-group label a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Styl dla pływającego przycisku call */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #2c3e50; /* Dopasuj do --primary-color swojej strony */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-phone 2s infinite;
}

.floating-call-btn:hover {
    transform: scale(1.1);
    background-color: #c0392b; /* Kolor po najechaniu */
    color: white;
}

@keyframes pulse-phone {
    0% {
        box-shadow: 0 0 0 0 rgba(44, 62, 80, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(44, 62, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(44, 62, 80, 0);
    }
}

/* Ukryj na bardzo małych ekranach, jeśli nakłada się na inne elementy (opcjonalnie) */
@media (max-width: 480px) {
    .floating-call-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

.floating-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.floating-call-btn {
    width: 60px;
    height: 60px;
    background-color: #2c3e50;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Popup Stylizacja */
.call-popup {
    display: none;
    position: absolute;
    bottom: 80px;
    right: 0;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    min-width: 220px;
    border: 1px solid #eee;
}

.call-popup.show {
    display: block;
    animation: fadeInUp 0.3s ease;
}

.call-popup h4 {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.call-popup p {
    margin: 10px 0;
    font-size: 15px;
}

.call-popup a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
}

.popup-arrow {
    position: absolute;
    bottom: -10px;
    right: 20px;
    width: 0; height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid white;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

