/* Reset i podstawowe style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Nowy pomarańczowy przycisk CTA (jak tło autoryzowanej stacji) */
.btn-cta-orange {
    background-color: var(--secondary-color); /* To samo pomarańczowe co authorize-badge */
    color: var(--white);
    border: none;
    box-shadow: 0 4px 10px rgba(247, 97, 0, 0.3);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta-orange:hover {
    background-color: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(247, 97, 0, 0.4);
    color: var(--white);
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6, .btn {
    font-family: 'Montserrat', sans-serif;
}

:root {
    --primary-color: #0066cc;
    --secondary-color: #f76100;
    --accent-color: #00a8ff;
    --light-gray: #f9f9f9;
    --dark-gray: #555555;
    --text-color: #444444;
    --white: #ffffff;
    --border-color: #eeeeee;
    --shadow-color: rgba(0, 0, 0, 0.08);
    --mobile-header-color: #00214D; /* Ciemniejszy odcień niebieskiego dla lepszego kontrastu */
    --mobile-badge-color: #f76100;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Desktop Nagłówek */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px var(--shadow-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 5px 0;
    box-shadow: 0 3px 15px var(--shadow-color);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.desktop-header {
    display: block;
}

.mobile-header {
    display: none;
}

/* Logo */
.logo-container {
    flex: 0 0 auto;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-wrapper img {
    height: 45px;
    display: block;
}

.logo-divider {
    width: 2px;
    height: 35px;
    background-color: #e0e0e0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.logo-text p {
    font-size: 0.8rem;
    color: #999;
    margin: 0;
    margin-top: 2px;
    letter-spacing: 0.2px;
}

.highlight {
    color: var(--primary-color);
    font-weight: 800;
}

/* Mobilny nagłówek */
.mobile-top-bar {
    background-color: var(--mobile-header-color);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
}

.mobile-logo {
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Dodany cień dla lepszej czytelności */
}

.mobile-logo .highlight {
    color: #4d9fff; /* Jaśniejszy odcień niebieskiego dla lepszego kontrastu */
    font-weight: 800;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.authorize-badge {
    background-color: var(--mobile-badge-color);
    color: white;
    text-align: center;
    padding: 8px 15px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}

.btn-mobile-cta {
    font-size: 0.75rem;
    padding: 6px 12px;
    background-color: white;
    color: var(--primary-color);
    border-radius: 4px;
}

/* Desktopowe menu */
.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li {
    margin-left: 25px;
}

.main-nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    display: block;
    padding: 5px 0;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.main-nav ul li a:hover {
    color: var(--primary-color);
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after {
    width: 100%;
}

/* Przycisk menu mobilnego */
.mobile-menu-toggle {
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Nowe menu mobilne */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(3px);
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Blokada scrollowania gdy menu jest otwarte */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 300px;
    max-width: 80vw;
    background-color: var(--white);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 1200;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-nav.active {
    visibility: visible;
}

.mobile-nav.show {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    background-color: #f8f8f8;
}

.mobile-nav-logo {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-gray);
}

.mobile-menu-close {
    font-size: 1.4rem;
    color: var(--dark-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.mobile-menu-close:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
}

.mobile-nav ul {
    list-style: none;
    padding: 10px 0;
    margin: 0;
    flex-grow: 1;
    overflow-y: auto;
}

.mobile-nav ul li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav ul li:last-child {
    border-bottom: none;
}

.mobile-nav ul li a {
    display: block;
    padding: 15px 20px;
    font-size: 1rem;
    color: var(--dark-gray);
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
}

.mobile-nav ul li a:hover {
    background-color: #f8f8f8;
    color: var(--primary-color);
    padding-left: 25px;
}

.mobile-nav-footer {
    padding: 20px;
    background-color: #f8f8f8;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 0;
}

.mobile-nav-phone i {
    color: var(--primary-color);
}

.mobile-nav .btn-appointment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    text-align: center;
    background-color: var(--secondary-color);
}

/* Stare zasady menu dla kompatybilności */
.main-nav.active {
    display: none; /* Używamy nowego menu */
}

/* Przycisk Umów wizytę w nagłówku */
.header-cta {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.btn-appointment {
    padding: 10px 22px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 10px rgba(247, 97, 0, 0.3);
}

.btn-appointment:hover {
    background-color: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(247, 97, 0, 0.4);
}

/* Przyciski */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    box-shadow: 0 3px 8px var(--shadow-color);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #0055aa;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 102, 204, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 102, 204, 0.2);
}

.btn-cta {
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 0.95rem;
    padding: 12px 28px;
    font-weight: 700;
}

.btn-cta:hover {
    background-color: #e55a00;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(247, 97, 0, 0.3);
}

/* Sekcja Hero */
.hero {
    background: linear-gradient(to right, #00214D, #0066cc); /* Gradient od ciemniejszego do jaśniejszego niebieskiego */
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 160px 0 100px;
    margin-top: 0;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    margin-bottom: 10px;
}

.hero-feature i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.hero-feature span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Sekcje */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
    position: relative;
    font-weight: 700;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* O nas */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-color);
}

.about-features {
    list-style: none;
    margin-top: 30px;
}

.about-features li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
}

.about-features li i {
    color: var(--secondary-color);
    margin-right: 12px;
    font-size: 1rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

/* Usługi */
.services {
    background-color: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    height: 100%;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Godziny otwarcia */
.hours {
    background-color: var(--white);
}

.hours-container {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.hours-current {
    flex: 1;
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow-color);
    border: 1px solid var(--border-color);
}

.hours-current h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.4rem;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
}

.hours-list li:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: var(--text-color);
}

.time {
    color: var(--primary-color);
    font-weight: 600;
}

/* Opinie */
.reviews {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
    padding: 80px 0 40px;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><text x="10" y="50" font-family="Georgia" font-size="80" fill="%23f9f9f9">%E2%80%9C</text></svg>');
    background-repeat: repeat;
    opacity: 0.3;
    z-index: 0;
}

.reviews .container {
    position: relative;
    z-index: 1;
}

/* Nowy carousel dla recenzji */
.reviews-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-slider {
    position: relative;
    overflow: hidden;
    margin: 0 -10px;
    padding: 10px 10px 30px;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease;
}

.review-slide {
    min-width: calc(33.333% - 20px);
    padding: 0 10px;
    box-sizing: border-box;
    transition: opacity 0.3s ease;
}

/* Kontrolki slidera */
.reviews-nav {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 25px;
}

.reviews-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.reviews-arrow:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.reviews-arrow i {
    font-size: 1.2rem;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.reviews-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reviews-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

.review-button-container {
    text-align: center;
    margin-top: 30px;
}

.btn-review {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.btn-review i {
    font-size: 1.1rem;
}

.btn-review:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.2);
}

.review-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 15px var(--shadow-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 4rem;
    font-family: 'Georgia', serif;
    color: var(--primary-color);
    opacity: 0.1;
    line-height: 1;
}

.review-author {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.review-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--primary-color);
    padding: 2px;
    background-color: var(--white);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.author-info h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--dark-gray);
    font-weight: 600;
}

.review-date {
    color: #777;
    font-size: 0.8rem;
    display: block;
    margin-top: 3px;
}

.review-stars {
    color: #f39c12;
    margin-bottom: 12px;
    font-size: 0.9rem;
    display: flex;
    gap: 2px;
}

.review-text {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.6;
    font-style: italic;
    flex-grow: 1;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    margin-bottom: 0;
}

.review-expand {
    color: var(--primary-color);
    font-size: 0.8rem;
    cursor: pointer;
    display: inline-block;
    margin-top: 8px;
    font-weight: 600;
}

.review-loading {
    text-align: center;
    padding: 50px 0;
}

.spinner {
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-left-color: var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto 0;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.review-error {
    text-align: center;
    padding: 40px 0;
    color: var(--secondary-color);
}

.review-error i {
    font-size: 2rem;
    margin-bottom: 15px;
}

/* Responsywność dla opinii */
@media screen and (max-width: 992px) {
    .review-slide {
        min-width: calc(50% - 20px);
    }
}

@media screen and (max-width: 768px) {
    .review-slide {
        min-width: calc(100% - 20px);
    }
    
    .reviews-dots {
        display: flex;
    }
    
    .review-card {
        padding: 20px;
    }
}

/* Kontakt */
.contact {
    background-color: var(--white);
}

.contact-container {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 20px;
    width: 40px;
    text-align: center;
}

.contact-item h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-item p {
    color: var(--text-color);
}

.contact-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-map {
    flex: 1;
}

.contact-map iframe {
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
    width: 100%;
    height: 450px;
    border: 1px solid var(--border-color);
}

/* CTA */
.cta {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: translate(200px, -200px);
}

.cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: translate(-150px, 150px);
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-left {
    flex: 1;
    max-width: 600px;
}

.cta-left h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-left p {
    margin-bottom: 25px;
    font-size: 1.05rem;
    opacity: 0.9;
}

.cta-benefits {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.cta-benefits li {
    flex-basis: calc(33% - 20px);
    display: flex;
    align-items: center;
}

.cta-benefits li i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.cta-right {
    text-align: center;
}

.cta-phone {
    margin-top: 15px;
    font-size: 1rem;
}

.cta-phone a {
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
}

.cta-phone a:hover {
    border-color: var(--white);
}

/* Stopka */
.footer {
    background-color: #f5f5f5;
    color: #555;
    padding: 60px 0 20px;
    border-top: 1px solid #eee;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.footer-logo p {
    color: #777;
    margin-bottom: 5px;
}

.footer-links, .footer-contact {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    color: var(--dark-gray);
}

.footer-links h4:after, .footer-contact h4:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: -10px;
    left: 0;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #777;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    margin-bottom: 10px;
    color: #777;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-contact a {
    color: #777;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.footer-bottom p {
    color: #888;
    font-size: 0.9rem;
}

/* Scroll to top */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s;
    z-index: 99;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.visible {
    opacity: 1;
}

.scroll-to-top:hover {
    background-color: #0055aa;
    transform: translateY(-3px);
}

.scroll-to-top i {
    font-size: 1.2rem;
}

/* Animacje */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.animate-slide-in {
    animation: slideInLeft 0.5s ease forwards;
}

/* Dostępność */
:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
}

.btn:focus {
    outline-color: var(--white);
}

/* Media Queries */
@media screen and (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
    
    .hero-content h2 {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-text {
        margin-bottom: 40px;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info {
        margin-bottom: 40px;
    }
    
    .hours-container {
        flex-direction: column;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-left {
        margin-bottom: 30px;
    }
    
    .cta-benefits {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    body {
        padding-top: 82px; /* Wysokość nagłówka mobilnego */
    }
    
    .desktop-header {
        display: none;
    }
    
    .mobile-header {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }
    
    .hero {
        margin-top: 0;
        padding: 40px 0 60px;
        background-position: center 20%;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 0;
        text-align: center;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-feature {
        margin-bottom: 10px;
        width: 100%;
        justify-content: center;
    }
    
    section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-item i {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .cta-left h2 {
        font-size: 1.8rem;
    }
    
    .cta-benefits li {
        flex-basis: 100%;
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo, .footer-links, .footer-contact {
        margin-bottom: 30px;
        width: 100%;
    }
    
    .footer-links h4:after, .footer-contact h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Opinie w wierszach na mobilnych urządzeniach */
    .reviews {
        padding: 60px 0 40px;
    }
    
    .reviews-arrow {
        width: 40px;
        height: 40px;
    }
    
    .review-author img {
        width: 50px;
        height: 50px;
    }
}

@media screen and (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .hero {
        padding: 30px 0 50px;
    }
    
    .hero-content h2 {
        font-size: 1.7rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .hours-current {
        padding: 20px;
    }
    
    .hours-list li {
        flex-direction: column;
        text-align: center;
        padding: 10px 0;
    }
    
    .hours-list .day {
        margin-bottom: 5px;
    }
    
    .cta {
        padding: 40px 0;
    }
    
    .cta-left h2 {
        font-size: 1.5rem;
    }
    
    .cta-left p {
        font-size: 0.95rem;
    }
    
    .review-card {
        padding: 15px;
    }
    
    .review-author img {
        width: 45px;
        height: 45px;
    }
    
    .author-info h4 {
        font-size: 0.9rem;
    }
    
    .review-date {
        font-size: 0.75rem;
    }
    
    .review-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .contact-map iframe {
        height: 350px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
}
