/* ===== ANIMACJE SCROLL REVEAL (jak na index) ===== */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; will-change: opacity, transform; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.slide-in-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.6s ease, transform 0.6s ease; will-change: opacity, transform; }
.slide-in-left.visible { opacity: 1; transform: translateX(0); }
.scale-in { opacity: 0; transform: scale(0.8); transition: opacity 0.6s ease, transform 0.6s ease; will-change: opacity, transform; }
.scale-in.visible { opacity: 1; transform: scale(1); }
.fade-in.visible, .slide-in-left.visible, .scale-in.visible { will-change: auto; }
/* ===== ZMIENNE KOLORYSTYCZNE ===== */
/* Definicje zmiennych CSS dla całej strony - centralne zarządzanie kolorami, cieniami, przejściami */
/* Ułatwia utrzymanie spójności designu i szybkie zmiany kolorów */
:root {
    --primary: #064F3D; /* Główny kolor (dokładny teal z logo) */
    --primary-dark: #0B1A17; /* Ciemniejsza wersja głównego koloru (dokładny ciemny z logo) */
    --primary-light: #3a9b85; /* Jaśniejsza wersja głównego koloru */
    --secondary: #ffffff; /* Kolor uzupełniający (biały) */
    --secondary-light: #f8f9fa; /* Jaśniejsza wersja drugiego koloru */
    --accent: #f8f9fa; /* Kolor akcentujący (jasny szary) */
    --accent-dark: #e9ecef; /* Ciemniejszy akcent */
    --text-dark: #0B1A17; /* Kolor tekstu ciemny (ciemny z logo) */
    --text-light: #ffffff; /* Kolor tekstu jasny */
    --text-muted: #4a5568; /* Przygaszony tekst - lepszy kontrast */
    --text-accent: #2d3748; /* Akcent tekstu - dodatkowy kontrast */
    --gray-light: #f8f9fa; /* Bardzo jasny szary */
    --gray: #e9ecef; /* Szary */
    --gray-dark: #495057; /* Ciemny szary */
    --success: #267764; /* Kolor sukcesu */
    --warning: #ffc107; /* Kolor ostrzeżenia */
    --danger: #dc3545; /* Kolor błędu */
    --info: #17a2b8; /* Kolor informacji */
    --shadow: rgba(0, 0, 0, 0.1); /* Cień */
    --shadow-hover: rgba(0, 0, 0, 0.15); /* Cień przy hover */
    --border-radius: 8px; /* Promień zaokrąglenia */
    --border-radius-lg: 12px; /* Duży promień zaokrąglenia */
    --transition: all 0.3s ease; /* Przejście */
    --gradient-primary: linear-gradient(135deg, #064F3D 0%, #1a3d35 100%);
    --gradient-secondary: linear-gradient(135deg, #1a3d35 0%, #2d4a42 100%);
    --gradient-black: linear-gradient(180deg, #0B1A17 0%, #1a2f2a 100%);
}

/* ===== PODSTAWOWE STYLE ===== */
/* Główne style dla całej strony - czcionka, tło, podstawowe ustawienia */
body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #ffffff;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    position: relative;
    isolation: isolate;
}

body::after {
    content: '';
    position: fixed;
    top: 50%;
    right: 0px;
    width: 250px;
    height: 100vh;
    background-image: url('../images/pasy w tle.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right center;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.4;
    pointer-events: none;
}

html {
    scroll-behavior: smooth;
}

*:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    body {
        font-size: 14px;
        line-height: 1.5;
        padding-top: 0;
        margin-top: 0;
    }
    
    html {
        margin-top: 0;
        padding-top: 0;
    }
    
    h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 1.3rem;
        line-height: 1.3;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    /* Navbar styles are handled by navbar-unified.css */
    
    .new-banner {
        padding: 40px 0;
    }
    
    .new-banner .banner-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .new-banner .banner-content {
        max-width: 100%;
        order: 1;
    }
    
    .new-banner .banner-logo {
        flex: none;
        max-width: 100%;
        order: 2;
    }
    
    .new-banner .banner-logo img {
        max-width: 200px;
        max-height: 280px;
    }
    
    .new-banner .banner-badges {
        flex-direction: column;
        gap: 15px;
    }
    
    .new-banner .banner-badge {
        justify-content: center;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .method-card {
        padding: 20px 15px;
    }
    
    .form-wrapper iframe {
        height: 600px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 20px 15px;
    }
    
    .faq-item {
        margin-bottom: 15px;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 14px;
        font-weight: 600;
    }
    
    .faq-answer {
        padding: 15px;
        font-size: 14px;
        line-height: 1.5;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .btn-secondary {
        width: 100%;
    }
    
    body::after {
        width: 150px;
        height: 80vh;
        right: -20px;
        opacity: 0.3;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 90%;
        padding: 0 20px;
    }
    
    .methods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    body::after {
        display: none;
    }
}

/* Usunięcie zielonych kresek pod nagłówkami w każdej sekcji */
.new-banner .banner-content h1::after,
.section-header h2::after,
.form-header h2::after,
.info-header h2::after,
.benefits-header h2::after,
.faq-section .section-header h2::after,
h2::after {
    content: none !important;
    display: none !important;
}

@media (min-width: 1025px) {
    .mobile-menu-btn {
        display: none;
    }
    
    .navbar-nav {
        display: flex;
    }
}

/* ===== NAVIGATION ===== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
    border-radius: var(--border-radius);
}

.skip-link:focus {
    top: 6px;
}

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

section {
    padding: 80px 0;
}

/* ===== NEW BANNER ===== */
.new-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 120px 0;
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.new-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.new-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(255, 255, 255, 0.05) 60deg, transparent 120deg),
        conic-gradient(from 180deg at 50% 50%, transparent 0deg, rgba(255, 255, 255, 0.03) 60deg, transparent 120deg);
    animation: rotate 20s linear infinite;
    pointer-events: none;
    opacity: 0.4;
}

.new-banner .banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: 400px;
    position: relative;
    z-index: 2;
}

.new-banner .banner-content {
    flex: 1;
    max-width: 60%;
    position: relative;
    z-index: 3;
}

.new-banner .banner-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.new-banner .banner-content h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
}

.new-banner .banner-content .banner-description {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
    max-width: 500px;
}

.new-banner .banner-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.new-banner .banner-badge {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.new-banner .banner-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.new-banner .banner-badge i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.new-banner .banner-logo {
    flex: 0 0 40%;
    max-width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
}

.new-banner .banner-logo img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: none !important;
    filter: none !important;
    transition: all 0.3s ease;
}

.new-banner .banner-logo img:hover {
    transform: scale(1.05);
    box-shadow: none !important;
}

/* ===== MAIN APPOINTMENT SECTION ===== */
.main-appointment-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
    
}

.main-appointment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(6, 79, 61, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(26, 61, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(6, 79, 61, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.main-appointment-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(6, 79, 61, 0.02) 60deg, transparent 120deg),
        conic-gradient(from 180deg at 50% 50%, transparent 0deg, rgba(26, 61, 53, 0.02) 60deg, transparent 120deg);
    animation: rotate 30s linear infinite;
    pointer-events: none;
    opacity: 0.3;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 3;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== BOOKING METHODS SECTION ===== */
.booking-methods-section {
    margin-bottom: 100px;
    padding-top: 60px; /* odstęp jak na index nad kreską */
    position: relative;
    z-index: 3;
}

/* Subtelna kreska nad sekcją (spójna z index) */
.booking-methods-section,
.booking-form-section,
.clinic-info-section,
.benefits-section,
.faq-section { position: relative; }

.booking-methods-section::before,
.booking-form-section::before,
.clinic-info-section::before,
.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
    z-index: 1;
    width: 100vw;
    transform: translateX(-50%);
    pointer-events: none;
}

/* Kreska nad sekcją benefitów bez ingerencji w istniejące ::before tła */
/* Pełna szerokość jak na index */
.benefits-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
    z-index: 1;
    width: 100vw;
    transform: translateX(-50%);
    pointer-events: none;
}



.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.method-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 20px 40px rgba(6, 79, 61, 0.08),
        0 8px 25px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(6, 79, 61, 0.02) 0%, rgba(26, 61, 53, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.method-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 30px 60px rgba(6, 79, 61, 0.15),
        0 15px 35px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(6, 79, 61, 0.1);
}

.method-card:hover::before {
    opacity: 1;
}

.method-card.featured {
    background: linear-gradient(135deg, rgba(6, 79, 61, 0.05) 0%, rgba(26, 61, 53, 0.08) 100%);
    border: 2px solid rgba(6, 79, 61, 0.2);
    position: relative;
}

.method-card.featured::after {
    content: 'REKOMENDOWANE';
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1;
    border-radius: 999px;
    letter-spacing: 0.5px;
    transform: none;
    box-shadow: 0 6px 16px rgba(6, 79, 61, 0.25);
    z-index: 3;
}

.method-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.method-icon i {
    font-size: 2rem;
    color: white;
    z-index: 2;
}

/* Wymuszenie białych ikon w zielonym polu (nadpisuje zewnętrzne style ikon) */
.methods-grid .method-card .method-icon i {
    color: #ffffff !important;
}
/* Dodatkowe wzmocnienie dla ikon Font Awesome (różne warianty, pseudo i SVG) */
.methods-grid .method-card .method-icon i::before,
.methods-grid .method-card .method-icon .fa,
.methods-grid .method-card .method-icon .fas,
.methods-grid .method-card .method-icon .far,
.methods-grid .method-card .method-icon .fal,
.methods-grid .method-card .method-icon .fab,
.methods-grid .method-card .method-icon svg,
.methods-grid .method-card .method-icon svg path {
    color: #ffffff !important;
    fill: #ffffff !important;
    --fa-primary-color: #ffffff !important;
    --fa-secondary-color: #ffffff !important;
}

.method-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.method-card:hover .method-icon::before {
    opacity: 1;
}

.method-card:hover .method-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(6, 79, 61, 0.3);
}

.method-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.method-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.method-card p a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.method-card p a:hover {
    color: var(--primary-light);
}

.method-time {
    background: rgba(6, 79, 61, 0.08);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    position: relative;
    z-index: 2;
}

/* ===== BOOKING FORM SECTION ===== */
.booking-form-section {
    margin-bottom: 100px;
    padding-top: 60px; /* odstęp jak na index nad kreską */
    position: relative;
    z-index: 3;
}

.form-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(6, 79, 61, 0.08),
        0 10px 30px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(6, 79, 61, 0.02) 0%, rgba(26, 61, 53, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.form-container:hover::before {
    opacity: 1;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.form-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.form-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.form-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.form-wrapper {
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(6, 79, 61, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.form-wrapper iframe {
    width: 100%;
    height: 800px;
    border: none;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.form-wrapper:hover iframe {
    transform: scale(1.01);
}

.form-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.specialists-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
}

.specialists-info h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.specialists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.specialist-card {
    background: rgba(6, 79, 61, 0.05);
    border: 1px solid rgba(6, 79, 61, 0.1);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.specialist-card:hover {
    background: rgba(6, 79, 61, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 79, 61, 0.1);
}

.specialist-card i {
    color: var(--primary);
    font-size: 1.2rem;
}

.specialist-card span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.security-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.security-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.security-info i {
    color: var(--primary);
    font-size: 1rem;
}

.security-info a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.security-info a:hover {
    color: var(--primary-light);
}

/* ===== CLINIC INFO SECTION ===== */
.clinic-info-section {
    margin-bottom: 80px;
    padding-top: 60px; /* odstęp jak na index nad kreską */
}

.info-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(6, 79, 61, 0.08),
        0 10px 30px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.info-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(6, 79, 61, 0.02) 0%, rgba(26, 61, 53, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.info-container:hover::before {
    opacity: 1;
}

.info-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.info-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.info-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.info-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 2;
}

.info-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 30px 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 15px 35px rgba(6, 79, 61, 0.08),
        0 5px 15px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(6, 79, 61, 0.02) 0%, rgba(26, 61, 53, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 50px rgba(6, 79, 61, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(6, 79, 61, 0.1);
}

.info-card:hover::before {
    opacity: 1;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(6, 79, 61, 0.2);
}

.info-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover .info-icon::before {
    opacity: 1;
}

.info-card:hover .info-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(6, 79, 61, 0.3);
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
    z-index: 2;
}

/* Wymuszenie białych ikon w sekcji Informacje o gabinecie */
.clinic-info-section .info-card .info-icon i {
    color: #ffffff !important;
}
.clinic-info-section .info-card .info-icon i::before,
.clinic-info-section .info-card .info-icon .fa,
.clinic-info-section .info-card .info-icon .fas,
.clinic-info-section .info-card .info-icon .far,
.clinic-info-section .info-card .info-icon .fal,
.clinic-info-section .info-card .info-icon .fab,
.clinic-info-section .info-card .info-icon svg,
.clinic-info-section .info-card .info-icon svg path {
    color: #ffffff !important;
    fill: #ffffff !important;
    --fa-primary-color: #ffffff !important;
    --fa-secondary-color: #ffffff !important;
}

.info-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.info-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    position: relative;
}

.info-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.info-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--primary-light);
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 120px 0;
    color: white;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.benefits-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(255, 255, 255, 0.05) 60deg, transparent 120deg),
        conic-gradient(from 180deg at 50% 50%, transparent 0deg, rgba(255, 255, 255, 0.03) 60deg, transparent 120deg);
    animation: rotate 25s linear infinite;
    pointer-events: none;
    opacity: 0.5;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.benefits-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 3;
}

.benefits-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

.benefits-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
}

.benefits-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 3;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.benefit-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover .benefit-icon::before {
    opacity: 1;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
    z-index: 2;
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    position: relative;
    z-index: 2;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    color: var(--primary-dark);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(6, 79, 61, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(26, 61, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(6, 79, 61, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 3;
}

.faq-section .section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.faq-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 15px 35px rgba(6, 79, 61, 0.08),
        0 5px 15px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(6, 79, 61, 0.02) 0%, rgba(26, 61, 53, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(6, 79, 61, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(6, 79, 61, 0.1);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item.active {
    border-color: rgba(6, 79, 61, 0.2);
    box-shadow: 
        0 20px 40px rgba(6, 79, 61, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(6, 79, 61, 0.02);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(6, 79, 61, 0.2);
}

.faq-icon i {
    color: white;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(6, 79, 61, 0.3);
}

.faq-item.active .faq-icon i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.faq-item.active .faq-answer {
    padding: 0 30px 30px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* Footer styles removed — unified in css/footer-unified.css */

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: var(--text-light);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

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

.btn-primary:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 79, 61, 0.3);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 20px 0;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.2;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 15px 0;
    border-radius: 2px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 1200px) {
    .container {
        max-width: 95%;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .form-footer {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .new-banner {
        padding: 60px 0;
    }
    
    .new-banner .banner-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .new-banner .banner-content {
        max-width: 100%;
        order: 1;
    }
    
    .new-banner .banner-logo {
        flex: none;
        max-width: 100%;
        order: 2;
    }
    
    .new-banner .banner-logo img {
        max-width: 200px;
        max-height: 280px;
    }
    
    .new-banner h1 {
        font-size: 2.5rem;
    }
}

/* ===== DODATKOWE ANIMACJE I EFEKTY ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Animacje dla elementów */
.new-banner {
    animation: fadeInUp 1s ease-out;
}

.method-card {
    animation: fadeInUp 0.8s ease-out;
}

.method-card:nth-child(1) {
    animation-delay: 0.1s;
}

.method-card:nth-child(2) {
    animation-delay: 0.2s;
}

.method-card:nth-child(3) {
    animation-delay: 0.3s;
}

.form-container {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.info-card {
    animation: fadeInUp 0.8s ease-out;
}

.info-card:nth-child(1) {
    animation-delay: 0.1s;
}

.info-card:nth-child(2) {
    animation-delay: 0.2s;
}

.info-card:nth-child(3) {
    animation-delay: 0.3s;
}

.info-card:nth-child(4) {
    animation-delay: 0.4s;
}

.benefit-card {
    animation: fadeInUp 0.8s ease-out;
}

.benefit-card:nth-child(1) {
    animation-delay: 0.1s;
}

.benefit-card:nth-child(2) {
    animation-delay: 0.2s;
}

.benefit-card:nth-child(3) {
    animation-delay: 0.3s;
}

.benefit-card:nth-child(4) {
    animation-delay: 0.4s;
}

.faq-item {
    animation: fadeInUp 0.6s ease-out;
}

.faq-item:nth-child(1) {
    animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.2s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.3s;
}

.faq-item:nth-child(4) {
    animation-delay: 0.4s;
}

/* Efekty hover dla ikon */
.method-icon:hover,
.info-icon:hover,
.benefit-icon:hover {
    animation: pulse 0.6s ease-in-out;
}

/* Efekt floating dla logo */
.banner-logo img {
    animation: float 3s ease-in-out infinite;
}

/* Smooth scroll dla całej strony */
html {
    scroll-behavior: smooth;
}

/* Efekty focus dla dostępności */
*:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Efekty loading dla iframe */
.form-wrapper iframe {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

/* Efekty dla przycisków */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Efekty dla linków */
a {
    position: relative;
    transition: all 0.3s ease;
}

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

a:hover::after {
    width: 100%;
}

/* Footer: wyłącz zieloną kreskę globalną, zostaw tylko białą z footer-links a::before */
.footer a::after {
    content: none !important;
    display: none !important;
}

/* Efekty dla kart */
.method-card,
.info-card,
.benefit-card,
.faq-item {
    will-change: transform;
}

/* Efekty dla tekstu */
h1, h2, h3 {
    will-change: transform;
}

/* Efekty dla obrazów */
img {
    will-change: transform;
}

/* ===== DODATKOWE MEDIA QUERIES DLA RESPONSYWNOŚCI ===== */
@media (max-width: 1400px) {
    .container {
        max-width: 95%;
        padding: 0 30px;
    }
    
    .banner-container {
        gap: 40px;
    }
    
    .banner-content h1 {
        font-size: 3rem;
    }
    
    .methods-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 1200px) {
    .main-appointment-section {
        padding: 100px 0;
    }
    
    .section-header h2 {
        font-size: 2.4rem;
    }
    
    .form-container {
        padding: 40px 30px;
    }
    
    .info-container {
        padding: 40px 30px;
    }
    
    .faq-section {
        padding: 100px 0;
    }
    
    .footer {
        padding: 60px 0 25px;
    }
    
    .footer-content {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .new-banner {
        padding: 80px 0;
    }
    
    .banner-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .banner-content {
        max-width: 100%;
        order: 1;
    }
    
    .banner-content h1 {
        font-size: 2.8rem;
    }
    
    .banner-logo {
        flex: none;
        max-width: 100%;
        order: 2;
    }
    
    .banner-logo img {
        max-width: 250px;
        max-height: 350px;
    }
    
    .methods-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .form-footer {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .info-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-links,
    .footer-contact,
    .footer-social {
        text-align: center;
    }
    
    .footer-links h4::after,
    .footer-social h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .new-banner {
        padding: 60px 0;
    }
    
    .banner-content h1 {
        font-size: 2.5rem;
    }
    
    .banner-description {
        font-size: 1.1rem;
    }
    
    .banner-badges {
        flex-direction: column;
        gap: 15px;
    }
    
    .banner-badge {
        justify-content: center;
    }
    
    .main-appointment-section {
        padding: 80px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .method-card {
        padding: 30px 25px;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .form-header h2 {
        font-size: 2rem;
    }
    
    .form-wrapper iframe {
        height: 600px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-card {
        padding: 25px 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 30px 25px;
    }
    
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 25px 25px;
    }
    
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-logo img {
        max-width: 150px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .new-banner {
        padding: 40px 0;
    }
    
    .banner-content h1 {
        font-size: 2rem;
    }
    
    .banner-description {
        font-size: 1rem;
    }
    
    .banner-logo img {
        max-width: 150px;
        max-height: 200px;
    }
    
    .main-appointment-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .method-card {
        padding: 25px 20px;
    }
    
    .method-icon {
        width: 60px;
        height: 60px;
    }
    
    .method-icon i {
        font-size: 1.5rem;
    }
    
    .form-container {
        padding: 25px 15px;
    }
    
    .form-header h2 {
        font-size: 1.8rem;
    }
    
    .form-wrapper iframe {
        height: 500px;
    }
    
    .info-card {
        padding: 20px 15px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
    }
    
    .info-icon i {
        font-size: 1.2rem;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .benefit-icon i {
        font-size: 1.5rem;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-icon {
        width: 35px;
        height: 35px;
    }
    
    .faq-icon i {
        font-size: 0.9rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
    
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-logo img {
        max-width: 120px;
    }
    
    .footer-links h4,
    .footer-social h4,
    .footer-contact h4 {
        font-size: 1.1rem;
    }
    
    .social-icons a {
        width: 45px;
        height: 45px;
    }
    
    .social-icons a i {
        font-size: 1.1rem;
    }
    
    /* Wyłącz animacje na małych ekranach dla lepszej wydajności */
    .new-banner,
    .method-card,
    .form-container,
    .info-card,
    .benefit-card,
    .faq-item {
        animation: none;
    }
    
    .banner-logo img {
        animation: none;
    }
    
    .method-icon:hover,
    .info-icon:hover,
    .benefit-icon:hover {
        animation: none;
    }
}
