/* ===== RESET I PODSTAWY ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    line-height: 1.6;
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #1a1a1a;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga' 1, 'kern' 1;
}

/* ===== SKIP LINK ===== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    z-index: 10000;
    font-weight: 600;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem 0;
    font-weight: 600;
    line-height: 1.2;
    color: #1a1a1a;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
}

p {
    margin: 0 0 1rem 0;
    max-width: 65ch;
}

a {
    color: #2563eb;
    text-decoration: underline;
    text-underline-offset: 0.25rem;
    transition: all 0.2s ease;
}

a:hover {
    color: #1d4ed8;
    text-decoration-thickness: 2px;
}

a:focus {
    outline: 3px solid #2563eb;
    outline-offset: 2px;
    border-radius: 2px;
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 44px;
    min-width: 44px;
}

.btn:focus {
    outline: 3px solid #2563eb;
    outline-offset: 2px;
}

.btn-primary {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.btn-primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background: #6b7280;
    color: white;
    border-color: #6b7280;
}

.btn-secondary:hover {
    background: #4b5563;
    border-color: #4b5563;
    color: white;
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    color: #2563eb;
    border-color: #2563eb;
}

.btn-outline:hover {
    background: #2563eb;
    color: white;
    text-decoration: none;
}

/* ===== HEADER ===== */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1rem;
    min-height: 80px;
    position: relative;
    width: 100%;
}

/* ===== LOGO STYLES ===== */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 1102;
}

.logo a:hover {
    transform: scale(1.02);
    text-decoration: none;
}

.logo a:focus {
    outline: 3px solid #2563eb;
    outline-offset: 2px;
    border-radius: 4px;
}

.logo-image {
    width: auto;
    height: 65px;
    max-width: none;
    object-fit: contain;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .logo-image {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 40px;
    }
}

/* ===== HEADER CONTACT ===== */
.header-contact {
    display: none;
    gap: 2rem;
    flex-shrink: 0;
}

@media (min-width: 1200px) {
    .header-contact {
        display: flex;
    }
}

.header-contact .contact-item {
    text-align: right;
}

.header-contact .contact-label {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.header-contact .contact-value {
    display: block;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.header-contact .contact-value:hover {
    color: #2563eb;
}

.header-contact .contact-value:focus {
    outline: 3px solid #2563eb;
    outline-offset: 2px;
}

/* ===== MOBILE MENU TOGGLE ===== */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: #2563eb;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1101;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
    flex-shrink: 0;
    margin-left: auto;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle:hover {
    background: #1d4ed8;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.mobile-menu-toggle:focus {
    outline: 3px solid #fbbf24;
    outline-offset: 2px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 2;
}

.hamburger span {
    width: 22px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ===== NAVIGATION ===== */
.navigation {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 2px solid #e2e8f0;
    position: relative;
    z-index: 999;
}

/* DESKTOP NAVIGATION */
@media (min-width: 1024px) {
    .navigation {
        position: sticky;
        top: 80px;
        background: rgba(248, 250, 252, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateY(0);
    }

    .nav-menu {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .nav-item {
        position: relative;
    }

    .nav-link {
        display: block;
        padding: 1rem 1.5rem;
        color: #374151;
        text-decoration: none;
        font-size: 1rem;
        font-weight: 500;
        transition: all 0.2s ease;
        cursor: pointer;
        border: none;
        background: transparent;
    }

    .nav-link:hover,
    .nav-link:focus {
        background: rgba(37, 99, 235, 0.1);
        color: #2563eb;
    }

    .nav-link:focus {
        outline: 3px solid #2563eb;
        outline-offset: 2px;
    }

    .nav-item.active .nav-link {
        color: #2563eb;
        font-weight: 600;
        background: rgba(37, 99, 235, 0.1);
    }

    .dropdown-arrow {
        display: none;
    }

    /* Desktop Dropdown */
    .nav-dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 250px;
        background: white;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        padding: 0.5rem 0;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.2s ease;
    }

    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown.open .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-dropdown-link {
        display: block;
        padding: 0.75rem 1rem;
        color: #374151;
        text-decoration: none;
        font-size: 1rem;
        transition: background 0.2s ease;
    }

    .nav-dropdown-link:hover,
    .nav-dropdown-link:focus {
        background: #f3f4f6;
        color: #2563eb;
    }

    .nav-dropdown-link:focus {
        outline: 3px solid #2563eb;
        outline-offset: 2px;
    }

    .nav-dropdown-link[aria-current="page"] {
        background: #dbeafe;
        color: #2563eb;
        font-weight: 600;
    }
}

/* ===== MOBILE NAVIGATION ===== */
@media (max-width: 1023px) {
    .navigation {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background: white;
        z-index: 1100;
        transition: left 0.3s ease;
        overflow-y: auto;
        overflow-x: hidden;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.3);
        padding-top: 100px;
        -webkit-overflow-scrolling: touch;
    }

    .navigation.nav-open {
        left: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 20px;
        align-items: stretch;
        margin: 0;
        list-style: none;
    }

    .nav-item {
        margin-bottom: 0;
    }

    .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        padding: 16px 20px;
        font-size: 16px;
        font-weight: 600;
        background: #f8fafc;
        margin-bottom: 8px;
        border: 2px solid #e2e8f0;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        color: #1f2937;
        min-height: 56px;
        border-radius: 12px;
        white-space: normal;
        transition: all 0.3s ease;
        word-wrap: break-word;
        text-decoration: none;
        cursor: pointer;
    }
    
    .nav-link:hover,
    .nav-link:focus {
        background: linear-gradient(135deg, #3b82f6, #2563eb);
        color: white;
        text-decoration: none;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
        border-color: #2563eb;
    }

    .nav-link:focus {
        outline: 3px solid #fbbf24;
        outline-offset: 2px;
    }
    
    .nav-item.active .nav-link {
        background: linear-gradient(135deg, #10b981, #059669);
        color: white;
        font-weight: 700;
        box-shadow: 0 3px 10px rgba(16, 185, 129, 0.5);
        border-color: #10b981;
    }

    .dropdown-arrow {
        margin-left: auto;
        font-size: 14px;
        font-weight: bold;
        opacity: 0.8;
        transition: all 0.3s ease;
        color: #6b7280;
        flex-shrink: 0;
    }
    
    .nav-dropdown.open .dropdown-arrow {
        transform: rotate(180deg);
        color: #2563eb;
    }
    
    .nav-link:hover .dropdown-arrow,
    .nav-item.active .nav-link .dropdown-arrow,
    .nav-dropdown.open .nav-link .dropdown-arrow {
        color: white;
        opacity: 1;
    }

    /* Mobile Dropdown Menu */
    .nav-dropdown-menu {
        position: static;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        transform: none;
        
        display: block;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        min-width: auto;
        
        margin: 8px 0 16px 0;
        padding: 0;
        
        background: #f1f5f9;
        border: 2px solid #cbd5e1;
        border-radius: 10px;
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
        
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-dropdown.open .nav-dropdown-menu {
        max-height: 400px;
        padding: 16px;
        border-color: #2563eb;
        background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    }

    .nav-dropdown-link {
        display: block;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        
        padding: 12px 16px;
        margin: 0 0 10px 0;
        background: white;
        border: 2px solid #e2e8f0;
        border-radius: 8px;
        
        font-size: 14px;
        font-weight: 600;
        color: #1f2937;
        text-align: center;
        text-decoration: none;
        line-height: 1.4;
        
        overflow: hidden;
        word-wrap: break-word;
        white-space: normal;
        
        transition: all 0.3s ease;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
    
    .nav-dropdown-link:last-child {
        margin-bottom: 0;
    }
    
    .nav-dropdown-link:hover,
    .nav-dropdown-link:focus {
        background: linear-gradient(135deg, #2563eb, #1d4ed8);
        color: white;
        border-color: #2563eb;
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(37, 99, 235, 0.4);
    }

    .nav-dropdown-link:focus {
        outline: 3px solid #fbbf24;
        outline-offset: 2px;
    }
    
    .nav-dropdown-link[aria-current="page"] {
        background: linear-gradient(135deg, #10b981, #059669);
        color: white;
        border-color: #10b981;
        font-weight: 700;
    }

    .nav-dropdown.open > .nav-link {
        background: linear-gradient(135deg, #3b82f6, #2563eb);
        color: white;
        border-color: #2563eb;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .navigation {
        max-width: 300px;
        padding-top: 90px;
    }
    
    .nav-menu {
        padding: 15px;
    }

    .nav-link {
        padding: 14px 16px;
        font-size: 15px;
        min-height: 50px;
        border-radius: 10px;
        margin-bottom: 6px;
    }

    .nav-dropdown-link {
        padding: 10px 12px;
        font-size: 13px;
        margin-bottom: 8px;
        border-radius: 6px;
        line-height: 1.3;
    }

    .dropdown-arrow {
        font-size: 12px;
    }
}

/* Mobile Menu Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1099;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.nav-open {
    overflow: hidden;
}

/* ===== HIDE/SHOW NAVIGATION ANIMATIONS - TYLKO DESKTOP ===== */
@media (min-width: 1024px) {
    .header.nav-hidden {
        transform: translateY(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .header.nav-visible {
        transform: translateY(0);
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                    background 0.3s ease, 
                    box-shadow 0.3s ease;
    }

    .navigation.nav-hidden {
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.3s ease;
        top: -80px;
    }
    
    .navigation.nav-visible {
        transform: translateY(0);
        opacity: 1;
        background: rgba(248, 250, 252, 0.98);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        border-bottom: 2px solid rgba(37, 99, 235, 0.2);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.3s ease,
                    background 0.3s ease,
                    box-shadow 0.3s ease;
    }
}

/* Na mobile - zawsze widoczne, bez animacji */
@media (max-width: 1023px) {
    .header.nav-hidden,
    .header.nav-visible,
    .navigation.nav-hidden,
    .navigation.nav-visible {
        transform: none !important;
        opacity: 1 !important;
        transition: none !important;
    }
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    background: #f8fafc;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #6b7280;
}

.breadcrumb-item:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: #6b7280;
    font-weight: bold;
}

.breadcrumb-item.active {
    color: #6b7280;
    font-weight: 500;
}

.breadcrumb-item a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.breadcrumb-item a:focus {
    outline: 3px solid #2563eb;
    outline-offset: 2px;
}

/* ===== HERO SECTION Z OBRAZKIEM ===== */
.hero {
    position: relative;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== HERO Z OBRAZKIEM - NOWE STYLE ===== */
.hero-with-image {
    position: relative;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 2rem 0;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-with-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.2;
    z-index: 0;
}

.hero-with-image .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.05);
    z-index: 1;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    text-align: center;
    order: 2;
}

.hero-image {
    order: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 250px;
    max-height: 350px;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border: 4px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Tablet layout */
@media (min-width: 768px) {
    .hero-with-image {
        padding: 3rem 0;
        min-height: 700px;
    }
    
    .hero-content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    
    .hero-text {
        text-align: left;
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-img {
        min-height: 400px;
        max-height: 500px;
        border-radius: 20px;
        border-width: 5px;
    }
}

/* Desktop - duży obrazek */
@media (min-width: 1024px) {
    .hero-with-image {
        padding: 4rem 0;
        min-height: 750px;
    }
    
    .hero-content-grid {
        gap: 5rem;
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .hero-img {
        min-height: 500px;
        max-height: 600px;
        border-radius: 24px;
        border-width: 6px;
    }
}

/* Duże desktopy */
@media (min-width: 1200px) {
    .hero-with-image {
        min-height: 800px;
        padding: 5rem 0;
    }
    
    .hero-content-grid {
        gap: 6rem;
    }
    
    .hero-img {
        min-height: 550px;
        max-height: 650px;
    }
}

/* Mobile responsywność */
@media (max-width: 767px) {
    .hero-with-image {
        min-height: 600px;
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.125rem !important;
    }
    
    .hero-description {
        font-size: 1rem !important;
    }
    
    .hero-img {
        min-height: 220px;
        max-height: 280px;
        border-radius: 12px;
        border-width: 3px;
    }
}

@media (max-width: 480px) {
    .hero-with-image {
        min-height: 550px;
        padding: 1.5rem 0;
    }
    
    .hero-content-grid {
        gap: 1.5rem;
    }
    
    .hero-img {
        min-height: 200px;
        max-height: 250px;
        border-radius: 10px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        min-width: 200px;
    }
}

/* ===== SECTIONS ===== */
section {
    padding: 4rem 0;
}

@media (max-width: 768px) {
    section {
        padding: 2rem 0;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.875rem;
        margin-bottom: 2rem;
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #2563eb;
    border-radius: 2px;
}

/* ===== CONTACT INFO ===== */
.contact-info {
    background: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
}

@media (min-width: 640px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 280px;
    position: relative;
}

@media (max-width: 640px) {
    .contact-card {
        padding: 1.5rem;
        min-height: 240px;
    }
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    border-color: #2563eb;
}

.contact-card h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-size: 1.25rem;
    font-weight: 700;
    padding-bottom: 1rem;
    border-bottom: 3px solid #e2e8f0;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .contact-card h3 {
        font-size: 1.125rem;
    }
}

.contact-card .icon {
    font-size: 1.5rem;
    color: #2563eb;
    flex-shrink: 0;
}

.contact-card address {
    font-style: normal;
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 640px) {
    .contact-card address {
        font-size: 0.9rem;
    }
}

.contact-card p {
    color: #6b7280;
    margin: 1rem 0;
    max-width: none;
    font-size: 0.95rem;
}

.contact-card a {
    color: #2563eb;
    font-weight: 600;
}

.contact-card a:focus {
    outline: 3px solid #2563eb;
    outline-offset: 2px;
}

.contact-card:first-child {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-top: 4px solid #2563eb;
}

.contact-email {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #0ea5e9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(14, 165, 233, 0.15);
}

.contact-email p:first-child {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(14, 165, 233, 0.2);
}

.contact-email strong {
    color: #0c4a6e;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-email a {
    color: #0ea5e9;
    font-weight: 700;
    word-break: break-all;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.contact-email a:hover {
    color: #0284c7;
    text-decoration-thickness: 3px;
}

.contact-email a:focus {
    outline: 3px solid #0ea5e9;
    outline-offset: 2px;
}

.email-delivery {
    font-size: 0.9rem;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border: 2px solid #3b82f6;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.5rem;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.email-delivery:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.email-delivery strong {
    color: #1e40af;
    font-size: 0.95rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.delivery-code {
    font-family: 'Courier New', Courier, monospace;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.75rem;
    border-radius: 6px;
    border: 2px solid #3b82f6;
    color: #1e40af;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: inline-block;
    margin-top: 0.5rem;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
    transition: all 0.2s ease;
    cursor: text;
    user-select: all;
}

.delivery-code:hover {
    background: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
    transform: translateY(-1px);
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

@media (max-width: 640px) {
    .service-card {
        padding: 1.5rem;
    }
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    border-color: #2563eb;
}

.service-card:focus-within {
    outline: 3px solid #2563eb;
    outline-offset: 2px;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-size: 1.25rem;
}

@media (max-width: 640px) {
    .service-card h3 {
        font-size: 1.125rem;
    }
}

.service-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    max-width: none;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.service-link:hover {
    border-bottom-color: #2563eb;
    text-decoration: none;
}

.service-link:focus {
    outline: 3px solid #2563eb;
    outline-offset: 2px;
}

/* ===== IMPORTANT INFO ===== */
.important-info {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .info-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

@media (max-width: 640px) {
    .info-card {
        padding: 1.5rem;
    }
}

.info-card--warning {
    border-left-color: #f59e0b;
}

.info-card h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.info-card .icon {
    font-size: 1.5rem;
}

.info-link {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.info-link:hover {
    border-bottom-color: #2563eb;
    text-decoration: none;
}

.info-link:focus {
    outline: 3px solid #2563eb;
    outline-offset: 2px;
}

/* ===== LOCATION ===== */
.location-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .location-content {
        grid-template-columns: 1fr 1fr;
    }
}

.location-info h3 {
    margin-bottom: 1rem;
}

.location-info ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.location-info li {
    margin-bottom: 0.5rem;
    color: #6b7280;
}

/* ===== MAP STYLES ===== */
.map-placeholder {
    background: #f3f4f6;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    color: #6b7280;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.map-container {
    background: transparent;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 0;
}

.map-container iframe {
    display: block;
    border-radius: 12px;
}

.map-placeholder.map-loaded,
.map-container.map-loaded {
    background: transparent;
    border: none;
    padding: 0;
}

.map-placeholder iframe,
.map-container iframe {
    transition: opacity 0.5s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
}

.map-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #6b7280;
    text-align: center;
}

.map-spinner,
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #2563eb;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #f1f5f9;
    padding: 3rem 0 1rem 0;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6, #60a5fa);
}

.footer-main {
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-bottom: 2rem;
    }
}

.footer-section {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-section:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
    letter-spacing: 0.5px;
    width: 100%;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    border-radius: 1px;
}

.footer-address {
    font-style: normal;
    line-height: 1.4;
    color: #e2e8f0;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    padding: 1rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 6px;
    border-left: 3px solid #2563eb;
    width: 100%;
    text-align: center;
}

.footer-address strong {
    color: #ffffff;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    justify-content: center;
}

.footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.footer-contact-item .contact-icon {
    font-size: 1rem;
    flex-shrink: 0;
    opacity: 0.9;
    width: 20px;
    text-align: center;
}

.footer-contact .contact-label {
    color: #9ca3af;
    font-size: 0.8rem;
    margin-right: 0.25rem;
}

.footer-contact a {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
    word-break: break-all;
}

.footer-contact a:hover {
    color: #93c5fd;
    text-decoration: underline;
}

.footer-contact a:focus {
    outline: 3px solid #60a5fa;
    outline-offset: 2px;
}

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.footer-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
    text-align: left;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.footer-hours-item:hover {
    background: rgba(16, 185, 129, 0.1);
    border-bottom-color: #10b981;
    transform: translateY(-1px);
}

.footer-day {
    color: #e2e8f0;
    font-weight: 500;
    flex: 1;
    min-width: 0;
}

.footer-time {
    color: #ffffff;
    font-weight: 700;
    background: rgba(16, 185, 129, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.footer-info {
    color: #e2e8f0;
    font-size: 0.8rem;
    line-height: 1.4;
    width: 100%;
}

.footer-info p {
    margin-bottom: 1rem;
    max-width: none;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info strong {
    color: #ffffff;
    font-weight: 700;
}

.footer-emergency {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(185, 28, 28, 0.1));
    border: 2px solid rgba(239, 68, 68, 0.4);
    border-radius: 6px;
    padding: 1rem;
    width: 100%;
}

.footer-emergency h4 {
    color: #fca5a5;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-emergency-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem;
    font-size: 0.8rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    margin-bottom: 0.4rem;
    transition: all 0.2s ease;
}

.footer-emergency-item:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: translateX(2px);
}

.footer-emergency-item:last-child {
    margin-bottom: 0;
}

.footer-emergency a {
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-emergency a:hover {
    text-decoration: underline;
    color: #fca5a5;
}

.footer-emergency a:focus {
    outline: 3px solid #fca5a5;
    outline-offset: 2px;
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (max-width: 640px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

.copyright {
    color: #9ca3af;
    font-size: 0.8rem;
    margin: 0;
    font-weight: 500;
}

.footer-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .footer-meta {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
}

.footer-meta a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.2s ease;
    padding: 0.4rem 0.8rem;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.05);
    font-weight: 500;
}

.footer-meta a:hover {
    color: #ffffff;
    background: rgba(59, 130, 246, 0.2);
    transform: translateY(-1px);
}

.footer-meta a:focus {
    outline: 3px solid #60a5fa;
    outline-offset: 2px;
}

.footer-tech-info {
    text-align: center;
    color: #6b7280;
    font-size: 0.75rem;
}

/* ===== COOKIES NOTICE ===== */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
    padding: 1rem 0;
}

.cookie-notice.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 1rem;
    }
}

.cookie-info {
    flex: 1;
}

.cookie-info h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-info p {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.4;
    max-width: none;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

@media (max-width: 768px) {
    .cookie-actions {
        justify-content: center;
        width: 100%;
    }
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    background: none;
    min-height: auto;
    min-width: auto;
}

.cookie-btn:focus {
    outline: 3px solid #2563eb;
    outline-offset: 2px;
}

.cookie-btn-accept {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.cookie-btn-accept:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
}

.cookie-btn-settings {
    background: transparent;
    color: #6b7280;
    border-color: #6b7280;
}

.cookie-btn-settings:hover {
    background: #6b7280;
    color: white;
}

/* ===== SCREEN READER ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== FOCUS STYLES ===== */
*:focus {
    outline: 3px solid #2563eb;
    outline-offset: 2px;
}

*:focus:not(:focus-visible) {
    outline: none;
}

*:focus-visible {
    outline: 3px solid #2563eb;
    outline-offset: 2px;
}

/* ===== LOADING INDICATOR ===== */
.loading-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    flex-direction: column;
    gap: 1rem;
}

.loading-text {
    color: #6b7280;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 640px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .header-content {
        padding: 0.75rem 0;
        min-height: 70px;
    }
    
    section {
        padding: 1.5rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .header,
    .navigation,
    .breadcrumbs,
    .hero,
    .mobile-menu-toggle,
    .cookie-notice,
    #wcag-panel,
    #wcag-toggle,
    .nav-overlay {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
        background: #fff;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    .footer {
        background: white !important;
        color: black !important;
    }
}

/* ===== ACCESSIBILITY - HIGH CONTRAST MODE ===== */
@media (prefers-contrast: high) {
    body {
        background: #fff;
        color: #000;
    }
    
    .contact-card,
    .service-card,
    .info-card {
        border: 2px solid #000;
    }
    
    .header.nav-visible {
        background: #ffffff !important;
        border-bottom: 2px solid #000000;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
    }
    
    .navigation.nav-visible {
        background: #ffffff !important;
        border-bottom: 2px solid #000000 !important;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
    }
    
    .footer {
        background: #000000 !important;
        color: #ffffff !important;
    }
    
    .footer-tech-info,
    .footer-meta a,
    .footer-contact .contact-label,
    .copyright {
        color: #ffffff !important;
    }
    
    .footer-section {
        border: 2px solid #ffffff !important;
    }
}

/* ===== ACCESSIBILITY - REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .header.nav-hidden,
    .header.nav-visible,
    .navigation.nav-hidden,
    .navigation.nav-visible {
        transition: none !important;
    }
    
    .loading-spinner,
    .map-spinner {
        animation: none !important;
        border: 4px solid #2563eb !important;
    }
}

/* ===== ULEPSZONE HERO Z OBRAZKIEM ===== */
/* ===== POPRAWIONE HERO Z OBRAZKIEM ===== */