/* ===== 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; }

/* Cieniutka zielona linia nad sekcjami – pełna szerokość (jak w index) */
main > section { position: relative; z-index: 1; }
main > section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    height: 1px;
    width: 100vw;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 1;
}
/* ===== ZMIENNE KOLORYSTYCZNE ===== */
:root {
    --primary: #064F3D;
    --primary-dark: #0B1A17;
    --primary-light: #3a9b85;
    --secondary: #ffffff;
    --secondary-light: #f8f9fa;
    --accent: #f8f9fa;
    --accent-dark: #e9ecef;
    --text-dark: #0B1A17;
    --text-light: #ffffff;
    --text-muted: #4a5568;
    --text-accent: #2d3748;
    --gray-light: #f8f9fa;
    --gray: #e9ecef;
    --gray-dark: #495057;
    --success: #267764;
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #17a2b8;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --transition: all 0.3s ease;
    --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%);
}

/* Utility classes */
.hidden {
    display: none !important;
}

/* ===== PODSTAWOWE STYLE ===== */
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;
    /* Zapobieganie poziomego przewijania */
    overflow-x: hidden;
    max-width: 100vw;
}

html {
    scroll-behavior: smooth;
}

/* Box-sizing dla wszystkich elementów */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Skip link dla dostępności */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
    transition: top 0.3s;
}

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

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

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

/* Zapewnienie, że navbar-container NIE dziedziczy stylów z .container */
/* Wszystkie style navbaru są w navbar-unified.css z !important */
/* Ta reguła zapobiega przypadkowym wpływom globalnych stylów */

section {
    padding: 80px 0;
}

/* ===== ANIMACJE SCROLL REVEAL ===== */
.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;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: var(--gradient-primary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    color: var(--text-light);
}

.hero-content h1 {
    font-size: clamp(2.2rem, 1.4rem + 2vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-wrap: balance;
}

.hero-subtitle {
    font-size: clamp(1rem, 0.95rem + 0.5vw, 1.25rem);
    opacity: 0.95;
    margin-bottom: 30px;
    max-width: 48ch;
}

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

/* Większy i jaśniejszy przycisk w hero na stronie Kontakt */
.hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
    background-size: 200% 200% !important; /* do animacji przesunięcia */
    color: #ffffff !important;
    border: 0 !important;
    padding: 18px 36px !important;
    font-size: 1.1rem !important;
    border-radius: 999px !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: background-position .4s ease, transform .2s ease, box-shadow .2s ease;
}
.hero-buttons .btn-primary:hover {
    background-position: 100% 0 !important; /* subtelny ruch gradientu */
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.3);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: clamp(300px, 45vw, 520px);
    border-radius: 15px;
    box-shadow: none !important;
    transition: var(--transition);
    background: transparent !important;
    padding: 0 !important;
    z-index: 10;
}

.hero-image img:hover {
    transform: scale(1.05);
    box-shadow: none !important;
}

/* ===== PRZYCISKI ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    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;
}

.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(38, 119, 100, 0.3);
}

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

.btn-outline:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(38, 119, 100, 0.3);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

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

.hero-btn-fullwidth {
    width: 100%;
    max-width: 300px;
}

@media (max-width: 1100px) {
    .hero-section .container {
        gap: 36px;
    }
}

@media (max-width: 992px) {
    .hero-section .container {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        order: 1;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        width: 100%;
        justify-content: center;
    }

    .hero-image {
        width: 100%;
        justify-content: center;
        order: 2;
    }

    .hero-image img {
        max-height: clamp(260px, 55vw, 380px);
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: clamp(2rem, 1.6rem + 1.5vw, 2.4rem);
    }

    .hero-buttons {
        gap: 16px;
    }

    .hero-buttons .btn {
        width: min(280px, 100%);
    }

    .map-wrapper {
        aspect-ratio: 4 / 5;
        min-height: 220px;
    }
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 80px 0;
    background: var(--background);
    position: relative;
    z-index: 2;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 50px;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 50px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px var(--shadow);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.faq-item:hover {
    box-shadow: 0 5px 15px var(--shadow-hover);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--background-light);
    transition: var(--transition);
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
}

.faq-icon {
    color: var(--primary);
    font-size: 1.2rem;
    transition: var(--transition);
}

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

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 25px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer styles korzystają wyłącznie z css/footer-unified.css */

/* Pasy w tle - jak na stronie głównej */
body::after {
    content: '';
    position: fixed;
    top: 50%;
    right: 0px;
    width: 250px;
    height: 350px;
    pointer-events: none;
    z-index: 1;
    background-image: url('../images/pasy w tle.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0.4;
    transform: translateY(-50%);
    /* Zapobieganie poziomego przewijania */
    max-width: 100vw;
    overflow: hidden;
}

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

/* ===== ULTRA RESPONSYWNOŚĆ ===== */
@media (max-width: 100rem) { /* 1600px */
    .contact-main-grid {
        max-width: 1200px;
        gap: 30px;
        grid-template-columns: 0.5fr 1fr;
    }
    
    .modern-card {
        padding: 40px;
    }
}

@media (max-width: 1400px) {
    .contact-main-grid {
        max-width: 1000px;
        gap: 25px;
        grid-template-columns: 0.45fr 1fr;
    }
    
    .modern-card {
        padding: 35px;
    }
}

@media (max-width: 1200px) {
    .contact-section {
        padding: 100px 0;
    }
    
    .contact-main-grid {
        grid-template-columns: 0.4fr 1fr;
        gap: 25px;
        margin-bottom: 80px;
        max-width: 100%;
    }
    
    .contact-form-column,
    .contact-map-column {
        max-width: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .contact-stats {
        gap: 40px;
    }
    
    .cta-stats {
        gap: 60px;
    }
}

@media (max-width: 992px) {
    .contact-title {
        font-size: 3.2rem;
    }
    
    .contact-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Zmiana z grid na flexbox dla mobile - sekcje jedna pod drugą */
    .contact-main-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px;
        grid-template-columns: none !important;
        grid-template-rows: none !important;
    }
    
    .contact-info-column {
        width: 100% !important;
        max-width: 100% !important;
        position: static !important;
        align-self: stretch;
        grid-row: unset !important;
        grid-column: unset !important;
        order: 1;
    }
    
    .contact-form-column {
        width: 100% !important;
        max-width: 100% !important;
        grid-row: unset !important;
        grid-column: unset !important;
        order: 2;
    }
    
    .contact-map-column {
        width: 100% !important;
        max-width: 100% !important;
        grid-row: unset !important;
        grid-column: unset !important;
        order: 3;
    }
    
    .contact-info-column,
    .contact-form-column,
    .contact-map-column {
        display: block;
    }
    
    .modern-card {
        padding: 35px;
        border-radius: 28px;
    }
    
    .card-header {
        gap: 20px;
        margin-bottom: 35px;
    }
    
    .card-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .contact-details-grid {
        gap: 20px;
    }
    
    .contact-detail-item {
        padding: 20px;
    }
    
    .detail-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .hours-list {
        gap: 16px;
    }
    
    .hours-item {
        padding: 16px 20px;
    }
    
    .cta-stats {
        gap: 40px;
    }
    
    .cta-stat {
        padding: 16px 24px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-header {
        margin-bottom: 50px;
    }
    
    .contact-header-content {
        padding: 0 10px;
    }
    
    .contact-title {
        font-size: clamp(2rem, 5vw, 2.8rem);
        flex-direction: column;
        gap: 8px;
    }
    
    .title-main {
        font-size: 1em;
    }
    
    .title-accent {
        font-size: 0.7em;
    }
    
    .title-underline {
        gap: 12px;
        margin-top: 15px;
    }
    
    .underline-line {
        width: 50px;
        height: 2px;
    }
    
    .underline-dot {
        width: 8px;
        height: 8px;
    }
    
    .contact-subtitle {
        font-size: clamp(1rem, 3vw, 1.2rem);
        margin-bottom: 35px;
        padding: 0 10px;
    }
    
    .contact-stats {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
        padding: 0 10px;
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        gap: 15px;
        background: rgba(6, 79, 61, 0.05);
        padding: 18px 15px;
        border-radius: 14px;
        border: 1px solid rgba(6, 79, 61, 0.1);
        width: 100%;
    }
    
    .stat-number {
        font-size: clamp(1.8rem, 4vw, 2.2rem);
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .stat-label {
        font-size: clamp(0.8rem, 2.5vw, 0.85rem);
        text-align: left;
    }
    
    /* Upewnienie się, że na mobile wszystko jest jedna pod drugą */
    .contact-main-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px;
        margin-bottom: 50px;
        padding: 0 10px;
        grid-template-columns: none !important;
        grid-template-rows: none !important;
    }
    
    .contact-info-column,
    .contact-form-column,
    .contact-map-column {
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
        grid-row: unset !important;
        grid-column: unset !important;
        position: static !important;
    }
    
    .contact-info-column {
        order: 1 !important;
    }
    
    .contact-form-column {
        order: 2 !important;
    }
    
    .contact-map-column {
        order: 3 !important;
    }
    
    .modern-card {
        padding: 24px 20px;
        border-radius: 18px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        margin-bottom: 24px;
        padding-bottom: 20px;
    }
    
    .card-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin: 0 auto;
    }
    
    .card-title-section h3 {
        font-size: clamp(1.2rem, 3.5vw, 1.4rem);
        margin-bottom: 8px;
    }
    
    .card-title-section p {
        font-size: clamp(0.85rem, 2.5vw, 0.95rem);
        margin-bottom: 10px;
    }
    
    .card-badge {
        margin: 0 auto;
        font-size: clamp(0.75rem, 2vw, 0.8rem);
        padding: 6px 12px;
    }
    
    .contact-details-grid {
        gap: 14px;
    }
    
    .contact-detail-item {
        padding: 16px 14px;
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .detail-icon {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
        flex-shrink: 0;
    }
    
    .detail-content {
        flex: 1;
        min-width: 0;
    }
    
    .detail-label {
        font-size: clamp(0.7rem, 2vw, 0.8rem);
        margin-bottom: 4px;
    }
    
    .detail-value {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        word-break: break-word;
        display: block;
    }
    
    .detail-action {
        margin-top: 8px;
        width: 100%;
    }
    
    .detail-link {
        font-size: clamp(0.8rem, 2vw, 0.85rem);
        padding: 6px 12px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
    
    .hours-list {
        gap: 12px;
    }
    
    .hours-item {
        padding: 14px 12px;
        flex-wrap: wrap;
    }
    
    .day-group {
        width: 100%;
        margin-bottom: 8px;
    }
    
    .day-name {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        display: block;
        margin-bottom: 4px;
    }
    
    .day-status {
        font-size: clamp(0.7rem, 2vw, 0.75rem);
        padding: 4px 10px;
    }
    
    .hours-time {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        width: 100%;
        margin-top: 6px;
    }
    
    /* Ulepszony formularz kontaktowy dla mobile */
    .form-card {
        padding: 24px 20px !important;
    }
    
    .modern-contact-form {
        gap: 24px;
    }
    
    .form-row {
        display: flex;
        flex-direction: column;
        gap: 20px;
        grid-template-columns: 1fr !important;
    }
    
    .form-group {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        margin-bottom: 0;
    }
    
    .form-label {
        font-size: clamp(0.95rem, 3vw, 1rem);
        margin-bottom: 8px;
        font-weight: 700;
        color: var(--text-dark);
        display: flex;
        align-items: center;
        gap: 10px;
        line-height: 1.4;
    }
    
    .form-label i {
        font-size: 1rem;
        color: var(--primary);
        flex-shrink: 0;
    }
    
    .input-wrapper,
    .textarea-wrapper,
    .select-wrapper {
        width: 100%;
        position: relative;
    }
    
    .form-input,
    .form-textarea {
        padding: 18px 20px;
        font-size: clamp(1rem, 3.2vw, 1.05rem);
        width: 100%;
        box-sizing: border-box;
        border: 2px solid rgba(6, 79, 61, 0.15);
        border-radius: 14px;
        background: #ffffff;
        transition: all 0.3s ease;
        -webkit-appearance: none;
        appearance: none;
        min-height: 52px;
    }
    
    .form-input::placeholder,
    .form-textarea::placeholder {
        font-size: clamp(0.95rem, 3vw, 1rem);
        color: rgba(0, 0, 0, 0.4);
    }
    
    .form-input:focus,
    .form-textarea:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 4px rgba(6, 79, 61, 0.12);
        outline: none;
        background: #ffffff;
        transform: translateY(-1px);
    }
    
    .form-select {
        padding: 18px 48px 18px 20px;
        font-size: clamp(1rem, 3.2vw, 1.05rem);
        width: 100%;
        box-sizing: border-box;
        border: 2px solid rgba(6, 79, 61, 0.15);
        border-radius: 14px;
        background: #ffffff;
        appearance: none;
        cursor: pointer;
        min-height: 52px;
        -webkit-appearance: none;
    }
    
    .form-select:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 4px rgba(6, 79, 61, 0.12);
        outline: none;
        transform: translateY(-1px);
    }
    
    .select-arrow {
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.9rem;
        color: var(--primary);
        pointer-events: none;
    }
    
    .form-textarea {
        min-height: 150px;
        resize: vertical;
        line-height: 1.7;
        font-family: inherit;
        padding-bottom: 40px;
    }
    
    .char-counter {
        bottom: 12px;
        right: 16px;
        font-size: clamp(0.8rem, 2.2vw, 0.85rem);
        background: rgba(255, 255, 255, 0.95);
        padding: 6px 10px;
        border-radius: 8px;
        font-weight: 600;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    .char-counter .current {
        color: var(--primary);
    }
    
    .form-checkboxes {
        display: flex;
        flex-direction: column;
        gap: 18px;
        margin-top: 12px;
    }
    
    .checkbox-group {
        width: 100%;
    }
    
    .modern-checkbox {
        padding: 16px 14px;
        font-size: clamp(0.9rem, 2.8vw, 0.95rem);
        gap: 14px;
        align-items: flex-start;
        background: rgba(6, 79, 61, 0.03);
        border-radius: 12px;
        border: 2px solid rgba(6, 79, 61, 0.1);
        transition: all 0.3s ease;
        cursor: pointer;
        min-height: 60px;
        display: flex;
    }
    
    .modern-checkbox:active {
        background: rgba(6, 79, 61, 0.06);
        transform: scale(0.98);
    }
    
    .checkbox-mark {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
        margin-top: 2px;
        border: 2.5px solid rgba(6, 79, 61, 0.4);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
    }
    
    .modern-checkbox input[type="checkbox"]:checked + .checkbox-mark {
        background: var(--primary);
        border-color: var(--primary);
    }
    
    .modern-checkbox input[type="checkbox"]:checked + .checkbox-mark i {
        color: white;
        font-size: 0.85rem;
    }
    
    .checkbox-text {
        line-height: 1.6;
        flex: 1;
        padding-top: 2px;
    }
    
    .privacy-link {
        color: var(--primary);
        text-decoration: underline;
        font-weight: 700;
        transition: color 0.2s ease;
    }
    
    .privacy-link:active {
        color: var(--primary-dark);
    }
    
    .form-submit-btn {
        padding: 20px 36px;
        font-size: clamp(1.1rem, 3.5vw, 1.2rem);
        width: 100%;
        justify-content: center;
        margin-top: 12px;
        border-radius: 14px;
        font-weight: 800;
        box-shadow: 0 6px 20px rgba(6, 79, 61, 0.25);
        min-height: 56px;
        letter-spacing: 0.5px;
    }
    
    .form-submit-btn:active {
        transform: translateY(0);
        box-shadow: 0 4px 15px rgba(6, 79, 61, 0.2);
    }
    
    .form-submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(6, 79, 61, 0.35);
    }
    
    .map-description {
        margin-bottom: 20px;
    }
    
    .map-description p {
        padding: 14px 12px;
        font-size: clamp(0.85rem, 2.5vw, 0.95rem);
        line-height: 1.5;
    }
    
    .map-container {
        margin-bottom: 20px;
    }
    
    .map-wrapper {
        min-height: 240px;
    }
    
    .map-marker {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .map-actions {
        gap: 10px;
        flex-direction: column;
    }
    
    .map-action-btn {
        padding: 14px 18px;
        font-size: clamp(0.9rem, 2.5vw, 0.95rem);
        width: 100%;
        justify-content: center;
    }
    
    .contact-cta-section {
        padding: 60px 40px;
        border-radius: 28px;
        margin-top: 50px;
    }
    
    .cta-text h3 {
        font-size: 2.2rem;
    }
    
    .cta-text p {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }
    
    .cta-stat {
        padding: 16px 20px;
        gap: 15px;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-btn {
        padding: 16px 28px;
        font-size: clamp(1rem, 3vw, 1.1rem);
        width: 100%;
    }

    .faq-section {
        padding: 60px 0;
    }
}

/* Dodatkowe poprawki dla bardzo małych ekranów */
@media (max-width: 480px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-header {
        margin-bottom: 40px;
    }
    
    .contact-main-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px;
        padding: 0 8px;
        grid-template-columns: none !important;
        grid-template-rows: none !important;
    }
    
    .contact-info-column,
    .contact-form-column,
    .contact-map-column {
        width: 100% !important;
        max-width: 100% !important;
        grid-row: unset !important;
        grid-column: unset !important;
    }
    
    .modern-card {
        padding: 20px 16px;
        border-radius: 16px;
    }
    
    .modern-contact-form {
        gap: 18px;
    }
    
    .form-row {
        gap: 16px;
    }
    
    .form-input,
    .form-textarea,
    .form-select {
        padding: 14px 16px;
        font-size: clamp(0.9rem, 2.5vw, 0.95rem);
    }
    
    .form-textarea {
        min-height: 120px;
    }
    
    .form-submit-btn {
        padding: 16px 28px;
        font-size: clamp(1rem, 3vw, 1.1rem);
    }
    
    .card-header {
        gap: 14px;
        margin-bottom: 20px;
    }
    
    .card-icon-wrapper {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .contact-detail-item {
        padding: 14px 12px;
    }
    
    .detail-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .form-card {
        padding: 20px 16px !important;
    }
    
    .modern-contact-form {
        gap: 20px;
    }
    
    .form-row {
        gap: 18px;
    }
    
    .form-group {
        gap: 10px;
    }
    
    .form-label {
        font-size: clamp(0.9rem, 2.8vw, 0.95rem);
        margin-bottom: 6px;
    }
    
    .form-label i {
        font-size: 0.95rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 16px 18px;
        font-size: clamp(0.95rem, 3vw, 1rem);
        min-height: 50px;
    }
    
    .form-select {
        padding: 16px 44px 16px 18px;
        font-size: clamp(0.95rem, 3vw, 1rem);
        min-height: 50px;
    }
    
    .form-textarea {
        min-height: 140px;
        padding-bottom: 38px;
    }
    
    .char-counter {
        bottom: 10px;
        right: 14px;
        font-size: clamp(0.75rem, 2vw, 0.8rem);
        padding: 5px 8px;
    }
    
    .modern-checkbox {
        padding: 14px 12px;
        font-size: clamp(0.85rem, 2.5vw, 0.9rem);
        gap: 12px;
        min-height: 56px;
    }
    
    .checkbox-mark {
        width: 22px;
        height: 22px;
    }
    
    .form-submit-btn {
        padding: 18px 32px;
        font-size: clamp(1.05rem, 3.2vw, 1.15rem);
        min-height: 54px;
    }
    
    .map-wrapper {
        min-height: 220px;
    }
    
    .map-action-btn {
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Navbar-container nie powinien dziedziczyć padding */
    .navbar-container {
        padding: 0 15px !important;
    }
    
    .contact-title {
        font-size: clamp(1.8rem, 4.5vw, 2.2rem);
    }
    
    .title-underline {
        gap: 15px;
    }
    
    .underline-line {
        width: 60px;
        height: 2px;
    }
    
    .underline-dot {
        width: 10px;
        height: 10px;
    }
    
    .contact-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .contact-stats {
        gap: 20px;
        margin-top: 25px;
    }
    
    .stat-item {
        padding: 15px;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .modern-card {
        padding: 25px;
        border-radius: 20px;
    }
    
    .card-header {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .card-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .card-title-section h3 {
        font-size: 1.2rem;
    }
    
    .card-title-section p {
        font-size: 0.9rem;
    }
    
    .card-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .contact-details-grid {
        gap: 15px;
    }
    
    .contact-detail-item {
        padding: 15px;
        gap: 12px;
    }
    
    .detail-icon {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
    
    .detail-label {
        font-size: 0.75rem;
    }
    
    .detail-value {
        font-size: 0.9rem;
    }
    
    .detail-link {
        font-size: 0.8rem;
        padding: 3px 8px;
    }
    
    .hours-list {
        gap: 12px;
    }
    
    .hours-item {
        padding: 12px 15px;
    }
    
    .day-name {
        font-size: 0.9rem;
    }
    
    .day-status {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .hours-time {
        font-size: 0.9rem;
    }
    
    .form-row {
        gap: 15px;
    }
    
    .form-group {
        gap: 8px;
    }
    
    .form-label {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .form-input,
    .form-textarea {
        padding: 14px 16px;
        font-size: 0.9rem;
    }
    
    .form-select {
        padding: 14px 40px 14px 16px;
        font-size: 0.9rem;
    }
    
    .select-arrow {
        right: 12px;
    }
    
    .form-textarea {
        min-height: 100px;
    }
    
    .char-counter {
        bottom: 4px;
        right: 8px;
        font-size: 0.7rem;
    }
    
    .form-checkboxes {
        gap: 14px;
    }
    
    .modern-checkbox {
        padding: 10px;
        font-size: 0.85rem;
        gap: 12px;
    }
    
    .checkbox-mark {
        width: 20px;
        height: 20px;
    }
    
    .checkbox-text {
        font-size: 0.85rem;
    }
    
    .form-submit-btn {
        padding: 16px 28px;
        font-size: 1rem;
    }
    
    .map-description p {
        padding: 12px;
        font-size: 0.85rem;
    }
    
    .map-container {
        margin-bottom: 20px;
    }
    
    .map-marker {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .map-actions {
        gap: 10px;
    }
    
    .map-action-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .contact-cta-section {
        padding: 40px 25px;
        border-radius: 20px;
        margin-top: 40px;
    }
    
    .cta-text h3 {
        font-size: 1.8rem;
    }
    
    .cta-text p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .cta-stats {
        gap: 15px;
        margin-top: 25px;
    }
    
    .cta-stat {
        padding: 12px 16px;
        gap: 12px;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .cta-buttons {
        gap: 15px;
    }
    
    .cta-btn {
        padding: 16px 28px;
        font-size: 1rem;
    }

    .faq-section {
        padding: 50px 0;
    }

    .faq-section h2 {
        font-size: 1.8rem;
    }

    .faq-question {
        padding: 16px;
    }

    .faq-answer {
        padding: 0 16px;
    }

    .faq-item.active .faq-answer {
        padding: 16px;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    /* Navbar-container nie powinien dziedziczyć padding dla małych ekranów */
    .navbar-container {
        padding: 0 15px !important;
    }
    
    .contact-title {
        font-size: 1.8rem;
    }
    
    .modern-card {
        padding: 20px;
    }
    
    .card-icon-wrapper {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .card-title-section h3 {
        font-size: 1.1rem;
    }
    
    .contact-detail-item {
        padding: 12px;
    }
    
    .detail-icon {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 12px 14px;
    }
    
    .form-select {
        padding: 12px 35px 12px 14px;
    }
    
    .form-submit-btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .contact-cta-section {
        padding: 30px 20px;
    }
    
    .cta-text h3 {
        font-size: 1.5rem;
    }
    
    .cta-btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

/* ===== NAWIGACJA ===== */
/* Navbar styles are handled by navbar-unified.css */
/* Wszystkie lokalne style navbaru zostały usunięte, aby zapewnić identyczny wygląd na wszystkich stronach */

/* ===== BANNER STRONY ===== */
.page-banner {
    background: var(--gradient-primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.page-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    color: var(--text-light);
}

.hero-content h1 {
    font-size: clamp(2.2rem, 1.4rem + 2vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-wrap: balance;
}

.banner-description {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: clamp(300px, 45vw, 520px);
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    background: var(--gradient-primary);
    padding: 20px;
    z-index: 10;
}

.hero-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* ===== ULTRA NOWOCZESNA SEKCJA KONTAKTOWA ===== */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    z-index: 1;
    overflow: hidden; /* zapobiega przewijaniu pod stopkę przez elementy dekoracyjne */
}

.contact-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.05) 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;
}

.contact-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.03) 60deg, transparent 120deg),
        conic-gradient(from 180deg at 50% 50%, transparent 0deg, rgba(26, 61, 53, 0.03) 60deg, transparent 120deg);
    animation: rotate 20s linear infinite;
    pointer-events: none;
    opacity: 0.5;
    /* Zapobieganie poziomego przewijania */
    max-width: 100vw;
    overflow: hidden;
}

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

/* Nagłówek sekcji kontaktowej - Ultra nowoczesny */
.contact-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 3;
}

.contact-header-content {
    max-width: 900px;
    margin: 0 auto;
}

.title-wrapper {
    margin-bottom: 30px;
}

.contact-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.title-main {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.title-accent {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.8em;
    font-weight: 700;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 20px rgba(6, 79, 61, 0.3)); }
    100% { filter: drop-shadow(0 0 30px rgba(6, 79, 61, 0.5)); }
}

.title-underline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.underline-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    border-radius: 2px;
    animation: lineGlow 2s ease-in-out infinite alternate;
}

.underline-dot {
    width: 12px;
    height: 12px;
    background: var(--gradient-primary);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(6, 79, 61, 0.5);
}

@keyframes lineGlow {
    0% { opacity: 0.7; transform: scaleX(1); }
    100% { opacity: 1; transform: scaleX(1.1); }
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.8; }
}

.contact-subtitle {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    line-height: 1.6;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Statystyki kontaktowe */
.contact-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 8px;
    animation: statCount 2s ease-out;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes statCount {
    0% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

/* Główny grid kontaktowy - Nowy układ z mapą pod formularzem */
.contact-main-grid {
    display: grid;
    grid-template-columns: 0.6fr 1fr;
    grid-template-rows: auto auto;
    gap: 35px;
    margin-bottom: 100px;
    position: relative;
    z-index: 3;
    align-items: start;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    min-height: auto;
}

/* Informacje kontaktowe - lewa kolumna sticky */
.contact-info-column {
    grid-row: 1 / 3;
    position: sticky;
    top: 20px;
    height: fit-content;
    align-self: start;
    transition: all 0.3s ease;
    z-index: 10;
    will-change: transform;
}

/* Formularz - prawa górna kolumna */
.contact-form-column {
    grid-column: 2;
    grid-row: 1;
}

/* Mapa - prawa dolna kolumna */
.contact-map-column {
    grid-column: 2;
    grid-row: 2;
}

/* Poprawki zachowania sticky dla lewej kolumny (desktop) */
@media (min-width: 992px) {
    .contact-section { overflow: visible !important; }
    .contact-main-grid { 
        display: grid !important;
        grid-template-columns: 0.6fr 1fr;
        grid-template-rows: auto auto;
        align-items: start; 
    }
    .contact-info-column { 
        position: sticky; 
        top: 96px; 
        height: max-content; 
        align-self: start;
        grid-row: 1 / 3;
        display: block;
        order: unset;
        width: auto !important;
        max-width: none !important;
    }
    .contact-form-column {
        grid-column: 2;
        grid-row: 1;
        display: block;
        order: unset;
        width: auto !important;
        max-width: none !important;
    }
    .contact-map-column {
        grid-column: 2;
        grid-row: 2;
        display: block;
        order: unset;
        width: auto !important;
        max-width: none !important;
    }
    /* Formularz na desktopie - oryginalne style */
    .form-row {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 20px;
    }
    .form-input,
    .form-textarea {
        padding: 16px 20px;
        font-size: 0.95rem;
        min-height: auto;
    }
    .form-select {
        padding: 16px 45px 16px 20px;
        font-size: 0.95rem;
        min-height: auto;
    }
    .form-textarea {
        min-height: 120px;
        padding-bottom: 0;
    }
    .form-label {
        font-size: 0.9rem;
        font-weight: 600;
    }
    .modern-checkbox {
        padding: 12px;
        font-size: 0.9rem;
        min-height: auto;
    }
    .checkbox-mark {
        width: 22px;
        height: 22px;
    }
    .form-submit-btn {
        padding: 18px 32px;
        font-size: 1rem;
        min-height: auto;
    }
    /* Zablokuj pseudo-element tła w obrębie sekcji, by nie powiększał dokumentu */
    .contact-section::after { top: 0; left: 0; right: 0; bottom: 0; width: auto; height: auto; animation: none; }
}

/* Zapobieganie przewijaniu pod stopkę bez psucia sticky */
.faq-section { overflow: hidden; }
.map-card, .form-card { overflow: hidden; }
.contact-main-grid { overflow: visible !important; }
.contact-section::after { animation: none; }

/* Dodatkowy układ dla bardzo szerokich ekranów */
@media (min-width: 112.5rem) { /* 1800px */
    .contact-main-grid {
        max-width: 1800px;
        gap: 45px;
        grid-template-columns: 0.5fr 1fr;
    }
}

/* Ultra nowoczesne karty kontaktowe */
.modern-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 50px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 8px 25px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Kompaktowe karty dla lewej kolumny */
.contact-info-column .modern-card {
    padding: 35px;
    border-radius: 24px;
}

.contact-info-column .modern-card .card-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
}

.contact-info-column .modern-card .card-icon-wrapper {
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
}

.contact-info-column .modern-card .card-title-section h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.contact-info-column .modern-card .card-title-section p {
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.contact-info-column .modern-card .card-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
}

.modern-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;
}

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

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(6, 79, 61, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    /* Zapobieganie poziomego przewijania */
    max-width: 100vw;
    overflow: hidden;
}

.modern-card:hover .card-glow {
    opacity: 1;
}

.modern-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.12),
        0 12px 35px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Nagłówek karty - Ultra nowoczesny */
.card-header {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(6, 79, 61, 0.1);
    position: relative;
}

.card-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 
        0 8px 25px rgba(6, 79, 61, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.card-title-section h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.card-title-section p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 15px 0;
}

.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(6, 79, 61, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(6, 79, 61, 0.2);
}

.card-badge i {
    font-size: 0.8rem;
}

/* Szczegóły kontaktowe - Ultra nowoczesne */
.contact-details-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(6, 79, 61, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(6, 79, 61, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Kompaktowe szczegóły dla lewej kolumny */
.contact-info-column .contact-details-grid {
    gap: 16px;
}

.contact-info-column .contact-detail-item {
    padding: 16px;
    gap: 14px;
}

.contact-detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.contact-detail-item:hover {
    background: rgba(6, 79, 61, 0.05);
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(6, 79, 61, 0.1);
}

.contact-detail-item:hover::before {
    transform: scaleY(1);
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(6, 79, 61, 0.3);
}

/* Kompaktowe ikony dla lewej kolumny */
.contact-info-column .detail-icon {
    width: 42px;
    height: 42px;
    font-size: 1rem;
    border-radius: 12px;
}

.detail-content {
    flex: 1;
}

.detail-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.detail-value {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 6px;
}

/* Kompaktowe teksty dla lewej kolumny */
.contact-info-column .detail-label {
    font-size: 0.75rem;
    margin-bottom: 4px;
}

.contact-info-column .detail-value {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.detail-action {
    margin-top: 8px;
}

.detail-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(6, 79, 61, 0.05);
    transition: all 0.3s ease;
}

.detail-link:hover {
    background: rgba(6, 79, 61, 0.1);
    transform: translateY(-1px);
}

/* Godziny otwarcia - Ultra nowoczesne */
.hours-card {
    margin-top: 25px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hours-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 20px;
    background: rgba(6, 79, 61, 0.02);
    border-radius: 14px;
    border: 1px solid rgba(6, 79, 61, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Kompaktowe godziny dla lewej kolumny */
.contact-info-column .hours-list {
    gap: 14px;
}

.contact-info-column .hours-item {
    padding: 14px 16px;
    gap: 8px;
}

.hours-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.hours-item:hover {
    background: rgba(6, 79, 61, 0.05);
    transform: translateY(-2px);
}

.hours-item:hover::before {
    transform: scaleX(1);
}

.day-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.day-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.day-status {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.day-status.open {
    background: rgba(38, 119, 100, 0.15);
    color: var(--success);
    border: 1px solid rgba(38, 119, 100, 0.3);
}

.day-status.closed {
    background: rgba(220, 53, 69, 0.15);
    color: var(--danger);
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.hours-time {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    align-self: flex-end;
}

/* Kompaktowe teksty dla lewej kolumny */
.contact-info-column .day-name {
    font-size: 0.9rem;
}

.contact-info-column .day-status {
    font-size: 0.7rem;
    padding: 4px 8px;
}

.contact-info-column .hours-time {
    font-size: 0.9rem;
}

.hours-progress {
    width: 100%;
    height: 4px;
    background: rgba(6, 79, 61, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 1s ease;
    animation: progressGlow 2s ease-in-out infinite alternate;
}

@keyframes progressGlow {
    0% { box-shadow: 0 0 5px rgba(6, 79, 61, 0.3); }
    100% { box-shadow: 0 0 15px rgba(6, 79, 61, 0.6); }
}

/* ===== SUPER NOWOCZESNY FORMULARZ KONTAKTOWY ===== */
.form-card {
    height: fit-content;
    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);
    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);
}

.modern-contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
    box-sizing: border-box;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-label i {
    color: var(--primary);
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.form-group:focus-within .form-label i {
    transform: scale(1.1);
}

.input-wrapper,
.textarea-wrapper {
    position: relative;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(6, 79, 61, 0.08);
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    box-sizing: border-box;
}

.form-input:hover,
.form-textarea:hover {
    border-color: rgba(6, 79, 61, 0.15);
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(6, 79, 61, 0.12),
        0 0 0 3px rgba(6, 79, 61, 0.08);
}

.input-focus-line,
.textarea-focus-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.form-input:focus + .input-focus-line,
.form-textarea:focus + .textarea-focus-line {
    width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
    font-weight: 400;
}

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

.char-counter {
    position: absolute;
    bottom: 6px;
    right: 10px;
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.8);
    padding: 2px 6px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.char-counter .current {
    color: var(--primary);
    font-weight: 600;
}

/* Super nowoczesny Select */
.select-wrapper {
    position: relative;
}

.form-select {
    width: 100%;
    padding: 16px 45px 16px 20px;
    border: 1px solid rgba(6, 79, 61, 0.08);
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    appearance: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    box-sizing: border-box;
}

.form-select:hover {
    border-color: rgba(6, 79, 61, 0.15);
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.form-select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(6, 79, 61, 0.12),
        0 0 0 3px rgba(6, 79, 61, 0.08);
}

.select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 0.8rem;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.form-select:focus + .select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

/* Super nowoczesne checkboxy */
.form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checkbox-group {
    position: relative;
}

.modern-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
    position: relative;
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(6, 79, 61, 0.02);
    border: 1px solid rgba(6, 79, 61, 0.05);
    transition: all 0.3s ease;
}

.modern-checkbox:hover {
    background: rgba(6, 79, 61, 0.04);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(6, 79, 61, 0.08);
}

.modern-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-mark {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(6, 79, 61, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-top: 1px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(4px);
}

.checkbox-mark::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gradient-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.modern-checkbox input[type="checkbox"]:checked + .checkbox-mark {
    background: var(--gradient-primary);
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(6, 79, 61, 0.3);
}

.modern-checkbox input[type="checkbox"]:checked + .checkbox-mark::before {
    width: 100%;
    height: 100%;
}

.modern-checkbox input[type="checkbox"]:checked + .checkbox-mark i {
    color: white;
    font-size: 10px;
    font-weight: bold;
    z-index: 1;
    position: relative;
}

.checkbox-text {
    color: var(--text-dark);
    flex: 1;
    font-weight: 400;
}

.privacy-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.privacy-link:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary);
}

/* Super nowoczesny przycisk submit */
.form-submit-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 14px;
    padding: 18px 32px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    box-shadow: 
        0 6px 20px rgba(6, 79, 61, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.form-submit-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;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(6, 79, 61, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.form-submit-btn:hover::before {
    left: 100%;
}

.form-submit-btn:active {
    transform: translateY(0);
}

.btn-text {
    font-weight: 700;
    z-index: 1;
}

.btn-icon {
    z-index: 1;
    transition: transform 0.3s ease;
}

.form-submit-btn:hover .btn-icon {
    transform: translateX(2px);
}

.btn-loading {
    display: none;
    z-index: 1;
}

.form-submit-btn.loading .btn-text,
.form-submit-btn.loading .btn-icon {
    display: none;
}

.form-submit-btn.loading .btn-loading {
    display: block;
}

/* Mapa i lokalizacja - Super nowoczesne */
.map-card {
    height: fit-content;
    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);
    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);
}

.map-description {
    margin-bottom: 25px;
}

.map-description p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    padding: 16px 20px;
    background: rgba(6, 79, 61, 0.02);
    border-radius: 12px;
    border-left: 3px solid var(--primary);
    backdrop-filter: blur(4px);
}

.map-container {
    margin-bottom: 25px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.04);
    position: relative;
    transition: all 0.3s ease;
}

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

.map-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 280px;
}

.map-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@supports not (aspect-ratio: 1) {
    .map-wrapper {
        aspect-ratio: auto;
        padding-top: 56.25%;
    }

    .map-wrapper iframe {
        height: 100%;
    }
}

.map-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    pointer-events: none;
}

.map-marker {
    width: 35px;
    height: 35px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 3px 12px rgba(6, 79, 61, 0.4);
    animation: markerPulse 2s ease-in-out infinite;
}

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

.map-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.map-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.map-action-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.4s ease;
}

.map-action-btn:hover::before {
    left: 100%;
}

.map-action-btn.primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(6, 79, 61, 0.25);
}

.map-action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 79, 61, 0.35);
}

.map-action-btn.secondary {
    background: rgba(6, 79, 61, 0.04);
    color: var(--primary);
    border-color: rgba(6, 79, 61, 0.15);
}

.map-action-btn.secondary:hover {
    background: rgba(6, 79, 61, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 79, 61, 0.15);
}

.btn-icon {
    z-index: 1;
}

/* Ultra nowoczesna CTA sekcja */
.contact-cta-section {
    background: var(--gradient-primary);
    border-radius: 32px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    box-shadow: 
        0 25px 60px rgba(6, 79, 61, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.cta-gradient {
    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%);
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.cta-content {
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.cta-text h3 {
    font-size: 2.8rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: titleFloat 3s ease-in-out infinite alternate;
}

@keyframes titleFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-5px); }
}

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

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 40px;
}

.cta-stat {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cta-stat:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(136, 134, 134, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 22px 40px;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.cta-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.6s ease;
}

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

.cta-btn.primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-btn.primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1;
}

.btn-icon {
    z-index: 1;
    transition: transform 0.3s ease;
}

.cta-btn:hover .btn-icon {
    transform: scale(1.1);
}

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

.cta-btn:active .btn-ripple {
    width: 300px;
    height: 300px;
}

/* ===== MAPA I DOJAZD ===== */
.map-section {
    padding: 80px 0;
    background: var(--background-light);
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.map-container {
    margin-bottom: 50px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.directions {
    margin-top: 50px;
}

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

.direction-card {
    background: var(--background);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 5px 15px var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.direction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-hover);
}

.direction-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--text-light);
    font-size: 1.5rem;
}

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

.direction-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== CTA SEKCJA ===== */
.cta-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===== FAQ ===== */
.faq-section {
    padding: 80px 0;
    background: var(--background);
    position: relative;
    z-index: 2;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 50px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px var(--shadow);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.faq-item:hover {
    box-shadow: 0 5px 15px var(--shadow-hover);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--background-light);
    transition: var(--transition);
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
}

.faq-icon {
    color: var(--primary);
    font-size: 1.2rem;
    transition: var(--transition);
}

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

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 25px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Footer styles usunięte — używamy css/footer-unified.css */

/* ===== PRZYCISKI ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    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;
}

.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(38, 119, 100, 0.3);
}

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

.btn-outline:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(38, 119, 100, 0.3);
}

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

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

/* ===== RESPONSYWNOŚĆ - NOWOCZESNA SEKCJA KONTAKTOWA ===== */
/* Usunięto duplikat - definicja już istnieje wyżej */
