/* General Styles */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --gradient-start: #667eea;
    --gradient-end: #764ba2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    transition: all 0.3s ease;
    padding: 1.3rem 0;
}

.navbar-brand {
    transition: all 0.3s ease;
    padding: 0.45rem 0;
}

.navbar-brand:hover {
    transform: scale(1.02);
}

/* Wyłącz hover w mobile GLOBALNIE */
@media (max-width: 991.98px) {
    .navbar-brand:hover {
        transform: none !important;
    }
}

.navbar-logo {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

/* Navbar pomniejszony podczas scrollowania - WYŁĄCZONE W MOBILE */
.navbar-scrolled {
    padding: 0.5rem 0;
}

.navbar-scrolled .navbar-logo {
    height: 42px;
}

.navbar-scrolled .navbar-brand {
    padding: 0.25rem 0;
}

.navbar-scrolled .nav-link {
    padding: 0.45rem 1rem;
    font-size: 1rem;
}

/* ============================================
   MOBILE NAVBAR - PRZEPROJEKTOWANE OD NOWA
   ============================================ */
@media (max-width: 991.98px) {
    /* NAVBAR - Czysty, minimalistyczny design */
    .navbar {
        padding: 0.75rem 0 !important;
        height: auto !important;
        min-height: 60px !important;
        background-color: #ffffff !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    }
    
    .navbar.navbar-scrolled {
        padding: 0.75rem 0 !important;
    }
    
    /* CONTAINER - Flexbox layout */
    .navbar .container,
    .navbar > .container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        position: relative !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    /* LOGO - Zawsze po lewej, max-width aby się zmieściło */
    .navbar-brand {
        padding: 0 !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
        max-width: calc(100% - 70px) !important; /* Szerokość - miejsce na hamburger */
    }
    
    .navbar-logo {
        height: 35px !important;
        width: auto !important;
        max-width: 100% !important;
        object-fit: contain !important;
    }
    
    /* HAMBURGER - Zawsze po prawej, na tej samej wysokości co logo */
    .navbar-toggler {
        order: 2 !important;
        margin-left: auto !important;
        padding: 0.5rem !important;
        border: 1px solid rgba(0, 0, 0, 0.08) !important;
        border-radius: 0.375rem !important;
        background-color: transparent !important;
        transition: background-color 0.2s ease !important;
    }
    
    .navbar-toggler:hover {
        background-color: rgba(0, 0, 0, 0.03) !important;
    }
    
    .navbar-toggler:focus {
        box-shadow: none !important;
        border-color: rgba(0, 0, 0, 0.1) !important;
    }
    
    /* MENU MOBILNE - Pełna szerokość, pod navbar */
    .navbar-collapse {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background-color: #ffffff !important;
        border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
        margin-top: 0.75rem !important;
        max-height: calc(100vh - 80px) !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    /* LISTA MENU - Czysta, profesjonalna */
    .navbar-nav {
        padding: 1rem 0 !important;
        width: 100% !important;
    }
    
    /* ELEMENTY MENU - Duże klikalne obszary */
    .nav-item {
        margin: 0 !important;
        width: 100% !important;
    }
    
    .nav-link {
        padding: 1rem 1.5rem !important;
        font-size: 1rem !important;
        font-weight: 500 !important;
        color: #212529 !important;
        border-left: 3px solid transparent !important;
        transition: all 0.2s ease !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }
    
    .nav-link:hover,
    .nav-link:focus,
    .nav-link:active {
        background-color: rgba(13, 110, 253, 0.05) !important;
        color: var(--primary-color) !important;
        border-left-color: var(--primary-color) !important;
    }
    
    /* DROPDOWN - Wyraźnie zagnieżdżony */
    .nav-item.dropdown {
        position: relative !important;
    }
    
    .dropdown-toggle {
        position: relative !important;
    }
    
    .dropdown-toggle::after {
        margin-left: auto !important;
        transition: transform 0.2s ease !important;
    }
    
    /* Obróć strzałkę gdy menu otwarte */
    .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(180deg) !important;
    }
    
    /* DROPDOWN MENU - Zagnieżdżone z lewym wcięciem */
    .dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0.5rem 0 0.5rem 1rem !important;
        background-color: rgba(248, 249, 250, 0.6) !important;
        border: none !important;
        border-left: 3px solid rgba(13, 110, 253, 0.2) !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }
    
    .dropdown-item {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.95rem !important;
        font-weight: 400 !important;
        color: #495057 !important;
        border-radius: 0.25rem !important;
        margin: 0.125rem 0.5rem !important;
        transition: all 0.2s ease !important;
    }
    
    .dropdown-item:hover,
    .dropdown-item:focus,
    .dropdown-item:active {
        background-color: rgba(13, 110, 253, 0.08) !important;
        color: var(--primary-color) !important;
    }
    
    .dropdown-item.active {
        background-color: rgba(13, 110, 253, 0.1) !important;
        color: var(--primary-color) !important;
        font-weight: 600 !important;
    }
    
    /* PHONE NUMBER - Wyróżniony */
    .navbar-nav .nav-item:last-child .nav-link {
        color: var(--primary-color) !important;
        font-weight: 600 !important;
        background-color: rgba(13, 110, 253, 0.05) !important;
        margin: 0.5rem 1rem !important;
        border-radius: 0.375rem !important;
        border-left: none !important;
    }
    
    /* Usuwamy niepotrzebne stany */
    .navbar-scrolled .navbar-logo,
    .navbar-scrolled .navbar-brand,
    .navbar-scrolled .navbar-toggler {
        /* Wszystko zostaje takie samo */
    }
}

.nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.6rem 1.2rem;
    font-size: 1.05rem;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Dropdown hover effect - TYLKO NA DESKTOP */
@media (min-width: 992px) {
    .dropdown-hover:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

.dropdown-menu {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Kodak horizontal banner - responsywny */
.kodak-horizontal-banner {
    max-width: 800px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Mobile - pełna szerokość, bez ucięć */
@media (max-width: 991.98px) {
    .kodak-horizontal-banner-wrapper {
        padding: 0 1rem;
    }
    
    .kodak-horizontal-banner {
        max-width: 100%;
        width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 0.5rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
}

/* Phone number in navbar */
.navbar .nav-item:last-child .nav-link {
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,128C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.3;
}

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

/* Warehouse Image Container */
.warehouse-image-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    background: #f5f5f5;
}

.warehouse-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Przycina zdjęcie do kontenera */
    object-position: center 40%; /* Wyśrodkowanie i pokazanie środkowej części */
    display: block;
    transition: transform 0.3s ease;
}

.warehouse-image:hover {
    transform: scale(1.05);
}

/* Jeśli zdjęcie nie załadowane - placeholder */
.warehouse-image[alt]:not([src*=".jpg"]):not([src*=".png"]):not([src*=".jpeg"]) {
    min-height: 400px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Feature Boxes */
.feature-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Value Cards */
.value-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Product Cards */
.product-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.product-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

/* Kodak Section */
.kodak-section {
    background: linear-gradient(135deg, #FBBA00 0%, #F5A623 100%);
    position: relative;
    overflow: hidden;
    padding: 2rem 0 !important;
}

.kodak-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: top;
}

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

.kodak-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 140px;
    margin: 0 auto;
}

.kodak-logo {
    width: 100%;
    height: auto;
    max-width: 140px;
    display: block;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.kodak-logo:hover {
    transform: scale(1.03);
}

/* Kodak Page Specific Styles */
.kodak-hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.kodak-hero-logo img {
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.kodak-description {
    border-left: 4px solid #FBBA00;
}

.kodak-product-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    padding: 2rem;
    transition: all 0.3s ease;
}

.kodak-product-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.kodak-product-image-container img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.kodak-product-image-container:hover img {
    transform: scale(1.05);
}

/* Responsive adjustments for product images */
@media (max-width: 768px) {
    .kodak-product-image-container {
        height: 350px;
        padding: 1.5rem;
    }
}

/* Brands Page Styles */
.brands-hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.brand-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.brand-logo-container {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
}

.brand-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-card:hover .brand-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.brand-name {
    font-weight: 600;
    color: #333;
    margin: 0;
}

@media (max-width: 768px) {
    .brand-logo-container {
        height: 100px;
    }
    
    .brand-card {
        padding: 1.5rem;
    }
}

/* Partner Page Styles */
.partner-hero-section {
    background: linear-gradient(135deg, #F5A623 0%, #FBBA00 100%);
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.partner-form-card {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.partner-form .form-control,
.partner-form .form-select {
    border: 1px solid #ddd;
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.partner-form .form-control:focus,
.partner-form .form-select:focus {
    border-color: #FBBA00;
    box-shadow: 0 0 0 0.2rem rgba(251, 186, 0, 0.25);
}

.partner-form .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.btn-partner {
    background: linear-gradient(135deg, #F5A623 0%, #FBBA00 100%);
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-partner:hover {
    background: linear-gradient(135deg, #FBBA00 0%, #F5A623 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(251, 186, 0, 0.4);
    color: white;
}

.benefit-card {
    background: transparent;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F5A623 0%, #FBBA00 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(251, 186, 0, 0.3);
}

@media (max-width: 768px) {
    .partner-form-card {
        padding: 2rem 1.5rem;
    }
    
    .partner-hero-section h1 {
        font-size: 2rem;
    }
}

/* Stats Box */
.stat-box {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Product Link */
.product-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.product-link:hover {
    color: var(--gradient-start);
    text-decoration: underline;
}

/* Downloads Hero Section */
.downloads-hero-section {
    background: linear-gradient(135deg, #FBBA00 0%, #F5A623 100%);
    padding: 5rem 0 3rem 0;
    position: relative;
    overflow: hidden;
}

.downloads-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,128C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.3;
}

.downloads-hero-section .container {
    position: relative;
    z-index: 1;
}

/* Manual Cards */
.manual-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.manual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.manual-icon {
    font-size: 4rem;
    color: #FBBA00;
    margin-bottom: 1rem;
}

.manual-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-download {
    background: linear-gradient(135deg, #FBBA00 0%, #F5A623 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-download:hover {
    background: linear-gradient(135deg, #F5A623 0%, #FBBA00 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(251, 186, 0, 0.4);
    color: white;
}

.btn-download i {
    font-size: 1.2rem;
}

.btn-catalog {
    background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-catalog:hover {
    background: linear-gradient(135deg, #0056b3 0%, #0d6efd 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.4);
    color: white;
}

.btn-catalog i {
    font-size: 1.2rem;
}

/* Contact Hero Section */
.contact-hero-section {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    padding: 5rem 0 3rem 0;
    position: relative;
    overflow: hidden;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,128C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.3;
}

.contact-hero-section .container {
    position: relative;
    z-index: 1;
}

/* Contact Cards */
.contact-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

/* Contact Form Card */
.contact-form-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-card .form-control,
.contact-form-card .form-control-lg {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-control-lg:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
}

.contact-form-card .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-form-card .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.contact-form-card .btn-primary {
    padding: 0.75rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Form Styles */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Footer */
footer a:hover {
    opacity: 0.8;
}

.footer-logo {
    height: 60px;
    width: auto;
    max-width: 100%;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

/* Mobile - logo w stopce mniejsze i dopasowane */
@media (max-width: 991.98px) {
    .footer-logo {
        height: 40px !important;
        max-width: 100% !important;
        object-fit: contain !important;
    }
    
    .footer-logo:hover {
        transform: none !important;
    }
}

/* ============================================
   MOBILE UX - PRZYCISKI CTA
   ============================================ */
@media (max-width: 767.98px) {
    /* Wszystkie przyciski CTA w sekcjach produktowych */
    .btn-lg {
        display: block !important;
        width: 100% !important;
        margin: 0 0 1rem 0 !important; /* Usuń me-3, dodaj margin-bottom */
        padding: 1rem 1.5rem !important;
        font-size: 1.05rem !important;
        text-align: center !important;
    }
    
    /* Ostatni przycisk w grupie - mniejszy margin */
    .btn-lg:last-child {
        margin-bottom: 0 !important;
    }
    
    /* Kontenery z przyciskami */
    .mt-4 {
        margin-top: 2rem !important;
    }
    
    /* Przyciski outline - te same zasady */
    .btn-outline-primary.btn-lg {
        border-width: 2px !important;
    }
}

/* Tablet - przyciski mogą być obok siebie, ale z większym odstępem */
@media (min-width: 768px) and (max-width: 991.98px) {
    .btn-lg.me-3 {
        margin-right: 1.5rem !important;
    }
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border: none;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.6);
}

.scroll-top-btn.show {
    display: flex;
}

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

.animate-on-scroll {
    animation: fadeInUp 0.6s ease forwards;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .nav-link {
        font-size: 1.05rem;
        padding: 0.5rem 1rem;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .product-icon {
        font-size: 2rem;
    }

    .contact-icon {
        font-size: 2rem;
    }

    .warehouse-image-container {
        height: 300px;
        margin-top: 2rem;
    }
    
    .kodak-section {
        padding: 1.5rem 0 !important;
    }
    
    .kodak-logo-container {
        max-width: 100px;
    }
    
    .kodak-logo {
        max-width: 100px;
    }
}

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

.btn:active {
    animation: pulse 0.3s ease;
}

/* Background Patterns */
.bg-gradient {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
}

/* Clickable Image Hover Effect */
.cursor-pointer {
    cursor: pointer;
}

.cursor-pointer:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Modal Image Styles */
.modal-body img {
    max-height: 85vh;
    object-fit: contain;
}

/* SoundBrix Carousel Styles */
#soundbrixCarousel {
    position: relative;
}

#soundbrixCarousel .carousel-control-prev,
#soundbrixCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

#soundbrixCarousel .carousel-control-prev {
    left: 20px;
}

#soundbrixCarousel .carousel-control-next {
    right: 20px;
}

#soundbrixCarousel .carousel-control-prev:hover,
#soundbrixCarousel .carousel-control-next:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.7);
}

#soundbrixCarousel .carousel-indicators {
    margin-bottom: -40px;
}

#soundbrixCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid white;
}

#soundbrixCarousel .carousel-indicators button.active {
    background-color: var(--primary-color);
}
