body { 
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; 
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    color: #1e293b; 
    position: relative; 
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url('/images/ducato_inverted.png') no-repeat center center;
    background-size: 90% auto;
    opacity: 0.08;
    filter: grayscale(20%) brightness(1.2) contrast(0.8);
    z-index: -1;
    pointer-events: none;
}

/* ========================================
   PODSTAWOWE STYLE GALERII - PRIORYTET
   ======================================== */

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.gallery-section .section-title {
    color: #1e293b;
    margin-bottom: 16px;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.gallery-section .section-subtitle {
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Gallery Item */
.gallery-item {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 48px rgba(59, 130, 246, 0.15), 0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: rgba(249, 115, 22, 0.3);
}

/* Gallery Image Container */
.gallery-image-container {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    display: block;
}

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

/* Gallery Content */
.gallery-content {
    padding: 24px;
}

.gallery-item-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.3;
}

.gallery-item-description {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.gallery-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

.gallery-category,
.gallery-date {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.gallery-category i,
.gallery-date i {
    color: #3b82f6;
    width: 16px;
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9) 0%, rgba(249, 115, 22, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.gallery-overlay-content i {
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.gallery-overlay-content .gallery-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-overlay-content .gallery-description {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Hero Section Styles */
.hero-section {
    padding: 40px 0;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 24px;
}

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

.stat-item {
    text-align: center;
    min-width: 80px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    margin-top: 4px;
}

/* ========================================
   NOWOCZESNA SEKCJA FLOTY - MOBILE FIRST
   ======================================== */

/* Fleet Section - Modern Design */
.fleet-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.fleet-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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    z-index: 0;
}

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

.fleet-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 50%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1.2;
}

/* Fleet Cards - Modern Grid */
.fleet-item {
    margin-bottom: 24px;
}

.fleet-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fleet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #f97316);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 2;
}

.fleet-card:hover::before {
    transform: scaleX(1);
}

.fleet-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 64px rgba(59, 130, 246, 0.15), 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: rgba(249, 115, 22, 0.4);
}

/* Fleet Image Container */
.fleet-gallery-container {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleet-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    display: block;
}

.fleet-card:hover .fleet-img {
    transform: scale(1.05);
}

/* Fleet Card Content */
.fleet-card .card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fleet-card .card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.3;
}

.fleet-card .card-text {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

/* Fleet Equipment */
.fleet-equipment {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.fleet-equipment .badge {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 12px;
    font-weight: 500;
    border: none;
}

.fleet-equipment .badge.more {
    background: linear-gradient(135deg, #64748b, #475569);
}

/* Fleet Price */
.fleet-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: #059669;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fleet-price::before {
    content: '💰';
    font-size: 1.2rem;
}

/* Fleet Button */
.fleet-card .btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-transform: none;
    font-size: 0.95rem;
}

.fleet-card .btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    color: white;
}

/* Fleet Filters */
.fleet-filter {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    color: #64748b;
    padding: 8px 16px;
    margin: 0 4px 8px 0;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.fleet-filter:hover,
.fleet-filter.active {
    background: linear-gradient(135deg, #3b82f6, #f97316);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.25);
}

/* ========================================
   NOWOCZESNA SEKCJA WŁAŚCICIELA - MOBILE FIRST
   ======================================== */

/* Owner Section - Modern Design */
.owner-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.owner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

/* Owner Card - Modern Glass Effect */
.owner-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.owner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #f97316);
    border-radius: 28px 28px 0 0;
}

/* Owner Name - Gradient Text */
.owner-name {
    font-size: 2.2rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 50%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

/* Owner Title */
.owner-title {
    font-size: 1.3rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
}

.owner-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #f97316);
    border-radius: 2px;
}

/* Owner Description */
.owner-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 28px;
    text-align: justify;
}

/* Owner Quote */
.owner-quote {
    font-style: italic;
    font-size: 1.2rem;
    color: #64748b;
    position: relative;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(249, 115, 22, 0.05) 100%);
    border-radius: 16px;
    border-left: 4px solid #3b82f6;
    font-weight: 500;
    line-height: 1.6;
}

.owner-quote::before {
    content: '"';
    font-size: 3rem;
    color: #3b82f6;
    position: absolute;
    top: -10px;
    left: 16px;
    font-family: serif;
    opacity: 0.3;
}

/* Owner Photo - Modern Hexagon Design */
.owner-photo {
    width: 300px;
    height: 300px;
    object-fit: cover;
    object-position: center top;
    border: 6px solid #ffffff;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(135deg, #3b82f6, #f97316);
    padding: 6px;
}

.owner-photo::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    background: linear-gradient(135deg, #3b82f6, #f97316, #10b981);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: rotateGradient 3s linear infinite;
}

.owner-photo:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 20px 64px rgba(59, 130, 246, 0.3), 0 12px 32px rgba(0, 0, 0, 0.2);
}

.owner-photo:hover::before {
    opacity: 1;
}

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

/* Alternative: Rounded Rectangle with Cut Corners */
.owner-photo.rounded-cut {
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    border-radius: 0;
}

/* Alternative: Diamond Shape */
.owner-photo.diamond {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    border-radius: 0;
}

/* Alternative: Modern Rounded Square */
.owner-photo.modern-square {
    clip-path: polygon(0% 20%, 20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%);
    border-radius: 0;
}

/* Alternative: Organic Shape */
.owner-photo.organic {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    clip-path: none;
}

/* Alternative: Star Shape */
.owner-photo.star {
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    border-radius: 0;
}

/* Alternative: Heart Shape */
.owner-photo.heart {
    clip-path: polygon(50% 85%, 15% 45%, 15% 15%, 50% 15%, 85% 15%, 85% 45%);
    border-radius: 0;
}

/* Alternative: Cloud Shape */
.owner-photo.cloud {
    border-radius: 50px 50px 50px 50px / 50px 50px 50px 50px;
    clip-path: none;
}

/* Alternative: Blob Shape */
.owner-photo.blob {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    clip-path: none;
    animation: blobAnimation 7s ease-in-out infinite;
}

@keyframes blobAnimation {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

/* Alternative: Modern Octagon */
.owner-photo.octagon {
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    border-radius: 0;
}

/* Alternative: Rounded Triangle */
.owner-photo.triangle {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    border-radius: 0;
}

/* Alternative: Butterfly Shape */
.owner-photo.butterfly {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    border-radius: 0;
    transform: rotate(45deg);
}

.owner-photo.butterfly:hover {
    transform: scale(1.05) rotate(50deg);
}

/* Simple Rounded Corners - Clean and Modern */
.owner-photo.rounded-corners {
    border-radius: 24px;
    clip-path: none;
    background: linear-gradient(135deg, #3b82f6, #f97316);
    padding: 6px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.owner-photo.rounded-corners::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 32px;
    background: linear-gradient(135deg, #3b82f6, #f97316, #10b981);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.owner-photo.rounded-corners:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 64px rgba(59, 130, 246, 0.25), 0 12px 32px rgba(0, 0, 0, 0.15);
}

.owner-photo.rounded-corners:hover::before {
    opacity: 1;
}

/* MOBILNE MENU SKŁADANE */
.mobile-menu-toggle {

    
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #1a2233;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s;
}

.mobile-menu-toggle:hover {
    background: #f8f9fa;
    color: #ff7a00;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.mobile-nav-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: #fff;
    padding: 80px 0 20px 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

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

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #1a2233;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s;
}

.mobile-nav-close:hover {
    background: #f8f9fa;
    color: #ff7a00;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
}

.mobile-nav-links .nav-link {
    display: block;
    padding: 15px 0;
    color: #1a2233;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 1px solid #e0e7ef;
    transition: color 0.2s;
}

.mobile-nav-links .nav-link:hover,
.mobile-nav-links .nav-link.active {
    color: #ff7a00;
}

.mobile-nav-links .btn-cta {
    margin-top: 20px;
    text-align: center;
    background: #ff7a00;
    color: #fff;
    border: none;
    font-weight: 700;
    border-radius: 24px;
    padding: 12px 24px;
    text-decoration: none;
    display: inline-block;
}

.main-header { 
    background: rgba(255, 255, 255, 0.95); 
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8); 
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04); 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    animation: headerIn 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition: all 0.3s ease;
}
@keyframes headerIn { 
    from { 
        opacity: 0; 
        transform: translateY(-40px); 
    } 
    to { 
        opacity: 1; 
        transform: none; 
    } 
}

/* Professional animations */
@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);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation classes */
.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

.scale-in {
    animation: scaleIn 0.6s ease-out;
}

/* Staggered animations */
.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }
.main-header a { line-height: 1; }
.main-header .nav-link { color: #1a2233; font-weight: 600; font-size: 1rem; margin: 0 8px; letter-spacing: 0.02em; transition: color 0.2s; }
.main-header .nav-link.active, .main-header .nav-link:hover { color: #ff7a00; text-decoration: underline; }
.main-header .btn-cta { 
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%); 
    color: #fff; 
    border: none; 
    font-weight: 700; 
    border-radius: 24px; 
    padding: 10px 28px; 
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3); 
    transition: all 0.3s ease; 
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}
.main-header .btn-cta::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;
}
.main-header .btn-cta:hover::before {
    left: 100%;
}
.main-header .btn-cta:hover { 
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%); 
    color: #fff; 
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}
.hero-main { 
    min-height: 90vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 64px; 
    flex-wrap: wrap; 
    padding: 80px 0 40px 0;
    position: relative;
    background: transparent;
}
.hero-main-left { 
    max-width: 520px; 
}


.hero-logo { width: 50px; height: 50px; border-radius: 12px; background: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 0; box-shadow: 0 2px 12px #0001; flex-shrink: 0; }
.hero-logo img { width: 100%; height: 100%; object-fit: contain; border-radius: 12px; }
.hero-title { 
    font-size: 3.5rem; 
    font-weight: 900; 
    color: #0f172a; 
    margin-bottom: 24px; 
    line-height: 1.1; 
    letter-spacing: -0.03em; 
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.hero-claim { 
    font-size: 1.4rem; 
    color: #3b82f6; 
    margin-bottom: 40px; 
    min-height: 40px; 
    font-weight: 600; 
    opacity: 0.9;
}
.hero-main-right { min-width: 340px; max-width: 520px; display: flex; align-items: center; justify-content: center; }
.hero-bus-svg { width: 100%; max-width: 420px; animation: busFloat 3.5s ease-in-out infinite alternate; }
@keyframes busFloat { from { transform: translateY(0);} to { transform: translateY(-18px);} }

/* Animacje dla profesjonalnego busa */
.hero-bus-svg .moving-line {
  animation: moveLines 1.8s linear infinite;
}
@keyframes moveLines {
  from { transform: translateX(0); }
  to { transform: translateX(-50px); }
}

.hero-bus-svg .wheel {
  animation: rotateWheel 1.2s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes rotateWheel {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-bus-svg .bus-body {
  animation: busBounce 2.5s ease-in-out infinite;
}
@keyframes busBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.hero-bus-svg .smoke-particle {
  animation: smokeRise 4s ease-out infinite;
}
@keyframes smokeRise {
  0% { 
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
  100% { 
    transform: translateY(-25px) scale(1.8);
    opacity: 0;
  }
}

.hero-bus-svg .smoke-particle:nth-child(2) {
  animation-delay: 0.8s;
}
.hero-bus-svg .smoke-particle:nth-child(3) {
  animation-delay: 1.6s;
}
.hero-bus-svg .smoke-particle:nth-child(4) {
  animation-delay: 2.4s;
}

/* Światła hamowania */
.hero-bus-svg .brake-light {
  animation: brakeLight 2s ease-in-out infinite;
}
@keyframes brakeLight {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Kierunkowskazy */
.hero-bus-svg .turn-signal {
  animation: turnSignal 1s ease-in-out infinite;
}
@keyframes turnSignal {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Lepsze animacje dla szprych kół */
.hero-bus-svg .wheel-spoke {
  animation: wheelSpoke 1.2s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes wheelSpoke {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.about-section { padding: 64px 0 32px 0; display: flex; flex-wrap: wrap; align-items: center; gap: 48px; }
.about-illustration { flex: 1 1 320px; display: flex; align-items: center; justify-content: center; }
.about-illustration svg { width: 220px; height: 220px; }
.about-content { flex: 2 1 400px; }
.about-title { font-size: 2.2rem; font-weight: 800; color: #1a2233; margin-bottom: 18px; }
.about-text { font-size: 1.18rem; color: #222; }
.why-section { background: rgba(255, 255, 255, 0.95); padding: 64px 0 32px 0; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.why-card { 
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%); 
    border-radius: 24px; 
    box-shadow: 0 4px 24px rgba(59, 130, 246, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04); 
    padding: 48px 24px; 
    text-align: center; 
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
    cursor: pointer; 
    border: 1px solid rgba(226, 232, 240, 0.6);
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #f97316);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.why-card:hover::before {
    transform: scaleX(1);
}
.why-card:hover { 
    transform: translateY(-12px) scale(1.02); 
    box-shadow: 0 20px 48px rgba(59, 130, 246, 0.15), 0 8px 16px rgba(0, 0, 0, 0.08); 
    border-color: rgba(249, 115, 22, 0.3);
}
.why-icon { font-size: 2.6rem; color: #3a8dde; margin-bottom: 18px; transition: color 0.2s; }
.why-card:hover .why-icon { color: #ff7a00; }
.why-title { font-size: 1.18rem; font-weight: 700; color: #1a2233; margin-bottom: 8px; }
.why-desc { color: #555; font-size: 1.05rem; }
.services-section { padding: 64px 0 32px 0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 40px; }
.service-card { 
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%); 
    border-radius: 24px; 
    box-shadow: 0 4px 24px rgba(249, 115, 22, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04); 
    padding: 48px 24px; 
    text-align: center; 
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
    border: 1px solid rgba(226, 232, 240, 0.6); 
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-card:hover { 
    transform: translateY(-12px) scale(1.02); 
    box-shadow: 0 20px 48px rgba(249, 115, 22, 0.15), 0 8px 16px rgba(0, 0, 0, 0.08); 
    border-color: rgba(59, 130, 246, 0.3);
}
.service-icon { font-size: 2.4rem; color: #ff7a00; margin-bottom: 18px; transition: color 0.2s; }
.service-card:hover .service-icon { color: #3a8dde; }
.service-title { font-size: 1.18rem; font-weight: 700; color: #1a2233; margin-bottom: 8px; }
.service-desc { color: #555; font-size: 1.05rem; }
.stats-section { 
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); 
    color: #fff; 
    padding: 80px 0; 
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
    pointer-events: none;
}
.stats-grid { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 64px; 
    justify-content: center; 
    position: relative;
    z-index: 1;
}
.stat-card { 
    text-align: center; 
    min-width: 200px; 
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.stat-number { 
    font-size: 3.2rem; 
    font-weight: 900; 
    background: linear-gradient(135deg, #f97316 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.stat-label { 
    font-size: 1.1rem; 
    color: #cbd5e1; 
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cta-section { text-align: center; padding: 64px 0 0 0; }
.cta-section .btn { 
    font-size: 1.3rem; 
    padding: 20px 56px; 
    border-radius: 32px; 
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%); 
    color: #fff; 
    border: none; 
    font-weight: 800; 
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.3); 
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cta-section .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;
}
.cta-section .btn:hover::before {
    left: 100%;
}
.cta-section .btn:hover { 
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%); 
    color: #fff; 
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.4);
}
.footer { 
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); 
    color: #64748b; 
    border-top: 1px solid rgba(226, 232, 240, 0.8); 
    padding: 64px 0 32px 0; 
    text-align: center; 
    font-size: 1rem; 
    margin-top: auto;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #f97316);
}

/* Style dla rozwijanych sekcji szczegółów rezerwacji */
.booking-details-expanded {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-top: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.booking-details-content {
    padding: 1.5rem;
}

.booking-details-expanded.show {
    animation: slideDown 0.3s ease-out;
}

.booking-details-expanded.hide {
    animation: slideUp 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        max-height: 1000px;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        max-height: 1000px;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        max-height: 0;
        transform: translateY(-10px);
    }
}

/* Style dla sekcji szczegółów rezerwacji */
.booking-details-section {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.booking-details-section h6 {
    color: #495057;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ff7a00;
    padding-bottom: 0.5rem;
}

/* Style dla siatki szczegółów busa */
.bus-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.bus-detail-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.bus-detail-item h6 {
    color: #6c757d;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bus-detail-item p {
    color: #212529;
    font-weight: 500;
    margin: 0;
    word-wrap: break-word;
}

/* Style dla listy wyposażenia */
.equipment-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
}

.equipment-list li {
    background: #fff;
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.equipment-list li i {
    color: #28a745;
    font-size: 0.8rem;
}

.equipment-list .badge {
    margin-left: auto;
    font-size: 0.7rem;
}

/* Style dla statusów rezerwacji */
.status-badge {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.status-confirmed {
    background-color: #d1edff;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.status-cancelled {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.status-completed {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}





/* THEME TOGGLE STYLES */
.theme-toggle {
    background: none;
    border: 2px solid #e0e7ef;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #1a2233;
    font-size: 1rem;
}

.theme-toggle:hover {
    background: #ff7a00;
    border-color: #ff7a00;
    color: #fff;
    transform: scale(1.1);
}

.mobile-theme-toggle {
    background: #f8f9fa;
    border: 1px solid #e0e7ef;
    border-radius: 8px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #1a2233;
    font-weight: 600;
    text-align: left;
}

.mobile-theme-toggle:hover {
    background: #ff7a00;
    color: #fff;
    border-color: #ff7a00;
}

/* DARK MODE VARIABLES */
:root {
    --bg-primary: #f5f7fa;
    --bg-secondary: rgba(255, 255, 255, 0.95);
    --bg-card: #fff;
    --bg-input: #fff;
    --text-primary: #1a2233;
    --text-secondary: #555;
    --text-muted: #888;
    --text-inverse: #fff;
    --border-color: #e0e7ef;
    --border-light: #f1f5f9;
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.1);
    --shadow-strong: rgba(0, 0, 0, 0.15);
    --accent-primary: #3a8dde;
    --accent-secondary: #ff7a00;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --ducato-filter: grayscale(20%) brightness(1.2) contrast(0.8);
}

[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: rgba(15, 23, 42, 0.95);
    --bg-card: #1e293b;
    --bg-input: #334155;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --text-inverse: #0f172a;
    --border-color: #475569;
    --border-light: #334155;
    --shadow-light: rgba(0, 0, 0, 0.3);
    --shadow-medium: rgba(0, 0, 0, 0.4);
    --shadow-strong: rgba(0, 0, 0, 0.6);
    --accent-primary: #60a5fa;
    --accent-secondary: #fb923c;
    --success-color: #22c55e;
    --warning-color: #eab308;
    --danger-color: #ef4444;
    --ducato-filter: grayscale(10%) brightness(1.8) contrast(1.2) invert(1);
}

/* APPLY DARK MODE STYLES */
body {
    background: var(--bg-primary) !important;
    color: var(--text-primary) !important;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body::after {
    filter: var(--ducato-filter);
    transition: filter 0.3s ease;
}

/* LAYOUT ELEMENTS */
.main-header {
    background: var(--bg-secondary) !important;
    border-bottom-color: var(--border-color) !important;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.hero-title {
    color: var(--text-primary) !important;
}

.hero-claim {
    color: var(--accent-primary) !important;
}

.about-title, .service-title, .why-title {
    color: var(--text-primary) !important;
}

.about-text, .service-desc, .why-desc {
    color: var(--text-secondary) !important;
}

/* SECTIONS */
.why-section, .services-section, .how-section, .discounts-section {
    background: var(--bg-secondary) !important;
}

.why-card, .service-card, .discount-card {
    background: var(--bg-card) !important;
    border-color: var(--border-color) !important;
    box-shadow: 0 2px 16px var(--shadow-light) !important;
}

.footer {
    background: var(--bg-secondary) !important;
    border-top-color: var(--border-color) !important;
    color: var(--text-muted) !important;
}

/* BUTTONS */
.btn-cta {
    background: var(--accent-secondary) !important;
    border-color: var(--accent-secondary) !important;
    color: var(--text-inverse) !important;
}

.btn-cta:hover {
    background: var(--text-primary) !important;
    border-color: var(--text-primary) !important;
    color: var(--bg-primary) !important;
}

.btn-primary {
    background: var(--accent-primary) !important;
    border-color: var(--accent-primary) !important;
}

.btn-secondary {
    background: var(--bg-card) !important;
    border-color: var(--border-color) !important;
    color: var(--text-primary) !important;
}

.btn-outline-primary {
    border-color: var(--accent-primary) !important;
    color: var(--accent-primary) !important;
}

.btn-outline-primary:hover {
    background: var(--accent-primary) !important;
    color: var(--text-inverse) !important;
}

/* FORMS */
.form-control {
    background: var(--bg-input) !important;
    border-color: var(--border-color) !important;
    color: var(--text-primary) !important;
}

.form-control:focus {
    background: var(--bg-input) !important;
    border-color: var(--accent-primary) !important;
    color: var(--text-primary) !important;
    box-shadow: 0 0 0 0.2rem rgba(96, 165, 250, 0.25) !important;
}

.form-control::placeholder {
    color: var(--text-muted) !important;
}

.form-select {
    background: var(--bg-input) !important;
    border-color: var(--border-color) !important;
    color: var(--text-primary) !important;
}

.form-label {
    color: var(--text-primary) !important;
}

/* NAVIGATION */
.nav-link {
    color: var(--text-primary) !important;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-secondary) !important;
}

/* THEME TOGGLES */
.theme-toggle {
    border-color: var(--border-color) !important;
    color: var(--text-primary) !important;
}

.mobile-theme-toggle {
    background: var(--bg-card) !important;
    border-color: var(--border-color) !important;
    color: var(--text-primary) !important;
}

/* ALERTS & BADGES */
.alert {
    background: var(--bg-card) !important;
    border-color: var(--border-color) !important;
    color: var(--text-primary) !important;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1) !important;
    border-color: var(--success-color) !important;
    color: var(--success-color) !important;
}

.alert-warning {
    background: rgba(234, 179, 8, 0.1) !important;
    border-color: var(--warning-color) !important;
    color: var(--warning-color) !important;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1) !important;
    border-color: var(--danger-color) !important;
    color: var(--danger-color) !important;
}

.badge {
    background: var(--accent-primary) !important;
    color: var(--text-inverse) !important;
}

/* CARDS & CONTAINERS */
.card {
    background: var(--bg-card) !important;
    border-color: var(--border-color) !important;
}

.card-header {
    background: var(--bg-secondary) !important;
    border-bottom-color: var(--border-color) !important;
}

.list-group-item {
    background: var(--bg-card) !important;
    border-color: var(--border-color) !important;
    color: var(--text-primary) !important;
}

/* MISC ELEMENTS */
.timeline-point .desc {
    color: var(--text-secondary) !important;
}

.discount-desc {
    color: var(--text-secondary) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.border {
    border-color: var(--border-color) !important;
}

.bg-light {
    background: var(--bg-secondary) !important;
}

.bg-white {
    background: var(--bg-card) !important;
}

/* TABLES */
.table {
    color: var(--text-primary) !important;
}

.table-striped > tbody > tr:nth-of-type(odd) > td,
.table-striped > tbody > tr:nth-of-type(odd) > th {
    background: var(--bg-card) !important;
}

.table th {
    border-color: var(--border-color) !important;
    color: var(--text-primary) !important;
}

.table td {
    border-color: var(--border-color) !important;
}

/* DROPDOWNS */
.dropdown-menu {
    background: var(--bg-card) !important;
    border-color: var(--border-color) !important;
}

.dropdown-item {
    color: var(--text-primary) !important;
}

.dropdown-item:hover {
    background: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
}

/* MODALS */
.modal-content {
    background: var(--bg-card) !important;
    border-color: var(--border-color) !important;
}

.modal-header {
    border-bottom-color: var(--border-color) !important;
}

.modal-footer {
    border-top-color: var(--border-color) !important;
}

/* ICONS COLORS */
.text-primary {
    color: var(--accent-primary) !important;
}

.text-success {
    color: var(--success-color) !important;
}

.text-warning {
    color: var(--warning-color) !important;
}

.text-danger {
    color: var(--danger-color) !important;
}

/* Dark mode specific adjustments */
[data-theme="dark"] .hero-bus-svg .bus-body {
    filter: brightness(1.1);
}

[data-theme="dark"] .mobile-nav-content {
    background: var(--bg-card) !important;
}

[data-theme="dark"] .mobile-nav-links .nav-link {
    color: var(--text-primary) !important;
    border-bottom-color: var(--border-color) !important;
}

[data-theme="dark"] .card,
[data-theme="dark"] .bg-light {
    background: var(--bg-card) !important;
}

[data-theme="dark"] .text-muted {
    color: var(--text-muted) !important;
}

[data-theme="dark"] .border {
    border-color: var(--border-color) !important;
} 

/* Discount Cards */
.discount-card {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.discount-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.discount-card:hover::before {
    transform: scaleX(1);
}
.discount-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: rgba(16, 185, 129, 0.3);
}
.discount-percentage {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq-section .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.faq-section .accordion-button {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    border: none;
    padding: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
}

.faq-section .accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(249, 115, 22, 0.25);
    border: none;
}

/* Testimonials Section */
.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    padding: 32px 24px;
    text-align: center;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: rgba(249, 115, 22, 0.3);
}

.testimonial-text {
    font-style: italic;
    line-height: 1.7;
    color: #4b5563;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.testimonial-author {
    color: #1f2937;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.testimonial-role {
    color: #6b7280;
    font-size: 0.95rem;
}

.faq-section .accordion-body {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    color: #4b5563;
    line-height: 1.7;
    font-size: 1rem;
}

/* Testimonials Section */
.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    padding: 32px 24px;
    text-align: center;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: rgba(249, 115, 22, 0.3);
}

.testimonial-text {
    font-style: italic;
    line-height: 1.7;
    color: #4b5563;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.testimonial-author {
    color: #1f2937;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.testimonial-role {
    color: #6b7280;
    font-size: 0.95rem;
}

/* Areas Section */
.area-card {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    padding: 32px 24px;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.area-card:hover::before {
    transform: scaleX(1);
}

.area-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: rgba(16, 185, 129, 0.3);
}

.area-card i {
    color: #10b981;
    font-size: 2.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.2));
}

.area-card h4 {
    color: #1f2937;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Dark mode styles for FAQ and Areas */
[data-theme="dark"] .faq-section .accordion-item {
    background: #2d3748;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

[data-theme="dark"] .faq-section .accordion-button {
    background: #2d3748;
    color: #e2e8f0;
}

[data-theme="dark"] .faq-section .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #ff7a00, #ff9500);
    color: white;
}

[data-theme="dark"] .faq-section .accordion-body {
    background: #1a202c;
    color: #a0aec0;
}

[data-theme="dark"] .area-card {
    background: #2d3748;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

[data-theme="dark"] .area-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

[data-theme="dark"] .area-card h4 {
    color: #e2e8f0;
}

[data-theme="dark"] .area-card p {
    color: #a0aec0;
}

/* Reviews Section */
.review-card {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    padding: 32px 24px;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.review-card:hover::before {
    transform: scaleX(1);
}

.review-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: rgba(249, 115, 22, 0.3);
}

.stars {
    color: #fbbf24;
    filter: drop-shadow(0 1px 2px rgba(251, 191, 36, 0.3));
    margin-bottom: 16px;
}

.review-text {
    font-style: italic;
    line-height: 1.7;
    color: #4b5563;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.reviewer strong {
    color: #1f2937;
    font-weight: 700;
    font-size: 1.1rem;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

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

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

.stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Why Choose Section */
.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    padding: 32px 24px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #f97316);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
}

.feature-icon i {
    color: #3b82f6;
    font-size: 2.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.2));
}

.feature-card h4 {
    color: #1f2937;
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 1.2rem;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1rem;
}

/* Dark mode styles for Reviews and Features */
[data-theme="dark"] .review-card {
    background: #2d3748;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

[data-theme="dark"] .review-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

[data-theme="dark"] .review-text {
    color: #a0aec0;
}

[data-theme="dark"] .reviewer strong {
    color: #e2e8f0;
}

[data-theme="dark"] .stat-label {
    color: #a0aec0;
}

[data-theme="dark"] .feature-card {
    background: #2d3748;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

[data-theme="dark"] .feature-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

[data-theme="dark"] .feature-card h4 {
    color: #e2e8f0;
}

[data-theme="dark"] .feature-card p {
    color: #a0aec0;
}



/* Fleet section */
.fleet-card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}
.fleet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #f97316);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.fleet-card:hover::before {
    transform: scaleX(1);
}
.fleet-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: rgba(249, 115, 22, 0.3);
}
.fleet-img-wrap {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}
.fleet-img {
    display: block;
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.35s ease, filter 0.35s ease;
}
.fleet-img-wrap:hover .fleet-img {
    transform: scale(1.04);
    filter: saturate(1.05);
}

/* Fleet Gallery */
.fleet-gallery-container {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.fleet-gallery {
    position: relative;
    width: 100%;
    height: 100%;
}

.fleet-gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.fleet-gallery-slide.active {
    opacity: 1;
}

.fleet-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fleet-gallery:hover .fleet-gallery-slide img {
    transform: scale(1.05);
}

/* Gallery Arrows */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 14px;
}

.gallery-arrow-left {
    left: 10px;
}

.gallery-arrow-right {
    right: 10px;
}

.fleet-gallery:hover .gallery-arrow {
    opacity: 1;
}

.gallery-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

/* Gallery Indicators */
.gallery-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: white;
    transform: scale(1.2);
}

.gallery-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Gallery Counter */
.gallery-counter {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fleet-gallery:hover .gallery-counter {
    opacity: 1;
}

/* Owner Photo Styles */
.owner-photo {
    width: 280px;
    height: 280px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    object-fit: cover;
    object-position: center top;
    border: 4px solid #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.owner-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.owner-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.owner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.owner-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.owner-name {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #3b82f6 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.owner-title {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 20px;
}

.owner-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 24px;
}

.owner-quote {
    font-style: italic;
    font-size: 1.1rem;
    color: #64748b;
    position: relative;
    padding-left: 24px;
}

.owner-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -8px;
    font-size: 2rem;
    color: #3b82f6;
    font-weight: 900;
}

/* Responsive Gallery Styles */
@media (max-width: 768px) {
    .fleet-gallery-container {
        height: 250px;
    }
    .gallery-arrow {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    .gallery-arrow-left {
        left: 8px;
    }
    .gallery-arrow-right {
        right: 8px;
    }
    .gallery-indicators {
        bottom: 10px;
        gap: 6px;
    }
    .gallery-dot {
        width: 6px;
        height: 6px;
    }
    .gallery-counter {
        top: 10px;
        left: 10px;
        font-size: 0.7rem;
        padding: 3px 6px;
    }
}

@media (max-width: 480px) {
    .fleet-gallery-container {
        height: 200px;
    }
    .gallery-arrow {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }
    .gallery-arrow-left {
        left: 5px;
    }
    .gallery-arrow-right {
        right: 5px;
    }
    .gallery-indicators {
        bottom: 8px;
        gap: 4px;
    }
    .gallery-dot {
        width: 5px;
        height: 5px;
    }
    .gallery-counter {
        top: 8px;
        left: 8px;
        font-size: 0.6rem;
        padding: 2px 5px;
    }
}

/* Responsive Owner Styles */
@media (max-width: 768px) {
    .owner-photo {
        width: 200px;
        height: 200px;
    }
    .owner-card {
        padding: 30px 20px;
    }
    .owner-name {
        font-size: 1.6rem;
    }
    .owner-title {
        font-size: 1.1rem;
    }
    .owner-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .owner-photo {
        width: 180px;
        height: 180px;
    }
    .owner-card {
        padding: 24px 16px;
    }
    .owner-name {
        font-size: 1.4rem;
    }
    .owner-title {
        font-size: 1rem;
    }
    .owner-description {
        font-size: 0.95rem;
    }
    .owner-quote {
        font-size: 1rem;
        padding-left: 20px;
    }
}

/* ========================================
   LOGO STYLES
   ======================================== */

/* Logo styles for header */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 50px !important;
    height: 50px !important;
    max-width: 50px !important;
    max-height: 50px !important;
    object-fit: contain !important;
    border-radius: 8px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

.logo-subtitle {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    margin: 0;
}

/* Dark mode logo styles */
[data-theme="dark"] .logo-title {
    color: #f8fafc;
}

[data-theme="dark"] .logo-subtitle {
    color: #94a3b8;
}

/* Mobile logo styles */
@media (max-width: 767px) {
    .logo-img {
        width: 40px !important;
        height: 40px !important;
        max-width: 40px !important;
        max-height: 40px !important;
    }
    
    .logo-title {
        font-size: 1.1rem;
    }
    
    .logo-subtitle {
        font-size: 0.8rem;
    }
    
    /* Header mobile optimizations */
    .main-header {
        padding: 8px 0;
    }
    
    .main-header .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .main-header .d-flex {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 35px !important;
        height: 35px !important;
        max-width: 35px !important;
        max-height: 35px !important;
    }
    
    .logo-title {
        font-size: 1rem;
    }
    
    .logo-subtitle {
        font-size: 0.75rem;
    }
    
    /* Header small mobile optimizations */
    .main-header {
        padding: 6px 0;
    }
    
    .main-header .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .main-header .d-flex {
        gap: 6px;
    }
    
    .mobile-menu-toggle {
        padding: 6px;
        font-size: 1.2rem;
    }
}

@media (max-width: 360px) {
    .logo-img {
        width: 30px !important;
        height: 30px !important;
        max-width: 30px !important;
        max-height: 30px !important;
    }
    
    .logo-title {
        font-size: 0.9rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }
    
    /* Header extra small mobile optimizations */
    .main-header {
        padding: 4px 0;
    }
    
    .main-header .container {
        padding-left: 8px;
        padding-right: 8px;
    }
    
    .main-header .d-flex {
        gap: 4px;
    }
    
    .mobile-menu-toggle {
        padding: 4px;
        font-size: 1rem;
    }
}

/* ========================================
   MOBILE OPTIMIZATIONS FOR GALLERY
   ======================================== */

/* Mobile Gallery Section */
@media (max-width: 767px) {
.gallery-section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 40px 0;
    }
}

@media (max-width: 360px) {
    .gallery-section {
        padding: 30px 0;
    }
}

.gallery-section .section-title {
    color: #1e293b;
    margin-bottom: 16px;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.gallery-section .section-subtitle {
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Mobile Gallery Section Titles */
@media (max-width: 767px) {
    .gallery-section .section-title {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .gallery-section .section-subtitle {
        font-size: 1rem;
        max-width: 100%;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .gallery-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .gallery-section .section-subtitle {
        font-size: 0.95rem;
        padding: 0 5px;
    }
}

@media (max-width: 360px) {
    .gallery-section .section-title {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    
    .gallery-section .section-subtitle {
        font-size: 0.9rem;
        padding: 0;
    }
}

/* Hero section mobile optimization */
.hero-section {
    padding: 40px 0;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 24px;
}

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

.stat-item {
    text-align: center;
    min-width: 80px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    margin-top: 4px;
}

/* Mobile hero section optimization */
@media (max-width: 767px) {
    .hero-section {
        padding: 30px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .hero-stats {
        gap: 16px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 25px 0;
    }
    
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }
    
    .hero-stats {
        gap: 12px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 360px) {
    .hero-section {
        padding: 20px 0;
    }
    
    .hero-title {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }
    
    .hero-stats {
        gap: 10px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}



/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Mobile Gallery Grid Optimization */
@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 25px;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        gap: 16px;
        margin-top: 20px;
        padding: 0 5px;
    }
}

@media (max-width: 360px) {
    .gallery-grid {
        gap: 12px;
        margin-top: 15px;
        padding: 0;
    }
}

/* Gallery Item */
.gallery-item {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #f97316);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 2;
}

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

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 48px rgba(59, 130, 246, 0.15), 0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: rgba(249, 115, 22, 0.3);
}

/* Gallery Image Container */
.gallery-image-container {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Gallery Image Container */
@media (max-width: 767px) {
    .gallery-image-container {
        height: 200px;
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
    }
}

@media (max-width: 480px) {
    .gallery-image-container {
        height: 180px;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
    }
}

@media (max-width: 360px) {
    .gallery-image-container {
        height: 160px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    display: block;
}

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

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9) 0%, rgba(249, 115, 22, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.gallery-overlay-content i {
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.gallery-overlay-content .gallery-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-overlay-content .gallery-description {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Gallery Content */
.gallery-content {
    padding: 24px;
}

/* Mobile Gallery Content */
@media (max-width: 767px) {
    .gallery-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .gallery-content {
        padding: 16px;
    }
}

@media (max-width: 360px) {
    .gallery-content {
        padding: 12px;
    }
}

.gallery-item-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.3;
}

.gallery-item-description {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Mobile Gallery Text */
@media (max-width: 767px) {
    .gallery-item-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .gallery-item-description {
        font-size: 0.95rem;
        margin-bottom: 14px;
    }
}

@media (max-width: 480px) {
    .gallery-item-title {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .gallery-item-description {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
}

@media (max-width: 360px) {
    .gallery-item-title {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .gallery-item-description {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
}

.gallery-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

.gallery-category,
.gallery-date {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Mobile Gallery Meta */
@media (max-width: 767px) {
    .gallery-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding-top: 12px;
    }
    
    .gallery-category,
    .gallery-date {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .gallery-meta {
        gap: 6px;
        padding-top: 10px;
    }
    
    .gallery-category,
    .gallery-date {
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .gallery-meta {
        gap: 4px;
        padding-top: 8px;
    }
    
    .gallery-category,
    .gallery-date {
        font-size: 0.75rem;
    }
}

.gallery-category i,
.gallery-date i {
    color: #3b82f6;
    width: 16px;
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .gallery-item:hover {
        transform: none;
    }
    
    .gallery-item:hover .gallery-image {
        transform: none;
    }
    
    .gallery-item:hover .gallery-overlay {
        opacity: 0;
    }
    
    .gallery-item:active {
        transform: scale(0.98);
    }
    
    .gallery-item:active .gallery-overlay {
        opacity: 1;
    }
}

/* Mobile Modal Optimizations */
@media (max-width: 767px) {
    .modal-xl {
        max-width: 95%;
        margin: 10px auto;
    }
    
    .modal-dialog {
        margin: 10px;
    }
    
    .modal-content {
        border-radius: 12px;
    }
    
    .modal-header {
        padding: 15px 20px;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .modal-title {
        font-size: 1.1rem;
    }
    
    .modal-body {
        padding: 0;
    }
    
    .modal-footer {
        padding: 15px 20px;
        border-top: 1px solid #e2e8f0;
    }
    
    #modalImage {
        max-height: 60vh !important;
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .modal-xl {
        max-width: 98%;
        margin: 5px auto;
    }
    
    .modal-dialog {
        margin: 5px;
    }
    
    .modal-header {
        padding: 12px 16px;
    }
    
    .modal-title {
        font-size: 1rem;
    }
    
    .modal-footer {
        padding: 12px 16px;
    }
    
    #modalImage {
        max-height: 50vh !important;
    }
}

@media (max-width: 360px) {
    .modal-xl {
        max-width: 100%;
        margin: 0;
    }
    
    .modal-dialog {
        margin: 0;
        height: 100vh;
        display: flex;
        align-items: center;
    }
    
    .modal-content {
        border-radius: 0;
        height: 100vh;
        display: flex;
        flex-direction: column;
    }
    
    .modal-body {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    #modalImage {
        max-height: 70vh !important;
        width: 100%;
        object-fit: contain;
    }
}

.gallery-preview-item {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.gallery-preview-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #f97316);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.gallery-preview-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.12);
    border-color: rgba(249, 115, 22, 0.3);
}

.gallery-preview-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 12px 12px 0 0;
}

.gallery-preview-item:hover .gallery-preview-image {
    transform: scale(1.05);
}

.gallery-preview-content {
    padding: 16px;
}

.gallery-preview-title {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    font-size: 1rem;
}

.gallery-preview-description {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 12px;
}

.gallery-preview-link {
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.gallery-preview-link:hover {
    color: #f97316;
}




[data-theme="dark"] .fleet-card {
    background: var(--bg-card) !important;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35) !important;
    border-color: var(--border-color) !important;
}

/* ========================================
   NOWE STYLE MOBILNE - MOBILE FIRST
   ======================================== */

/* Base mobile styles - wszystkie urządzenia */
.container {
    padding-left: 16px;
    padding-right: 16px;
}

/* Mobile navigation */
@media (max-width: 991px) {
    .main-header nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-nav {
        display: block;
    }
}

/* Tablet styles */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        padding-left: 24px;
        padding-right: 24px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-claim {
        font-size: 1.2rem;
    }
}

/* Mobile styles */
@media (max-width: 767px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    /* Header mobile */
    .main-header {
        padding: 12px 0;
    }
    
    /* Hero section mobile */
    .hero-main {
        min-height: 60vh;
        padding: 40px 0 30px 0;
        text-align: center;
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 16px;
        line-height: 1.2;
    }
    
    .hero-claim {
        font-size: 1.1rem;
        margin-bottom: 24px;
    }
    
    .hero-logo {
        width: 45px;
        height: 45px;
    }
    
    /* Sections mobile */
    .about-section,
    .why-section,
    .services-section,
    .stats-section,
    .cta-section {
        padding: 40px 0 30px 0;
    }
    
    .about-title {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }
    
    .about-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Grid layouts mobile */
    .why-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-card,
    .service-card {
        padding: 24px 20px;
        margin-bottom: 16px;
    }
    
    .why-icon,
    .service-icon {
        font-size: 2.2rem;
        margin-bottom: 16px;
    }
    
    .why-title,
    .service-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .why-desc,
    .service-desc {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Stats mobile */
    .stats-grid {
        flex-direction: column;
        gap: 24px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    /* CTA mobile */
    .cta-section .btn {
        font-size: 1.1rem;
        padding: 16px 32px;
        margin: 8px 0;
        display: block;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Fleet Section Mobile Optimization */
    .fleet-section {
        padding: 40px 0;
    }
    
    .fleet-section h2 {
        font-size: 2rem;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .fleet-section .d-flex {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .fleet-section .btn-outline-primary {
        order: 2;
        width: 100%;
        max-width: 200px;
    }
    
    .fleet-section .mb-4 {
        order: 1;
        width: 100%;
        justify-content: center;
    }
    
    .fleet-gallery-container {
        height: 200px;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }
    
    .fleet-card {
        border-radius: 20px;
    }
    
    .fleet-card .card-body {
        padding: 20px;
    }
    
    .fleet-card .card-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .fleet-card .card-text {
        font-size: 0.95rem;
        margin-bottom: 14px;
    }
    
    .fleet-equipment {
        gap: 4px;
        margin-bottom: 14px;
    }
    
    .fleet-equipment .badge {
        font-size: 0.7rem;
        padding: 4px 8px;
        border-radius: 10px;
    }
    
    .fleet-price {
        font-size: 1.2rem;
        margin-bottom: 14px;
    }
    
    .fleet-card .btn {
        font-size: 0.9rem;
        padding: 10px 20px;
        border-radius: 10px;
    }
    
    .fleet-filter {
        font-size: 0.8rem;
        padding: 6px 12px;
        border-radius: 16px;
        margin: 0 2px 6px 0;
    }
    
    /* Owner Section Mobile Optimization */
    .owner-section {
        padding: 40px 0;
    }
    
    .owner-section .row {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .owner-card {
        padding: 30px 24px;
        border-radius: 20px;
        margin-top: 24px;
    }
    
    .owner-name {
        font-size: 1.8rem;
        margin-bottom: 6px;
    }
    
    .owner-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .owner-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
    }
    
    .owner-description {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 24px;
        text-align: left;
    }
    
    .owner-quote {
        font-size: 1.1rem;
        padding: 16px 20px;
        border-radius: 12px;
    }
    
    .owner-quote::before {
        font-size: 2.5rem;
        top: -8px;
        left: 12px;
    }
    
    .owner-photo {
        width: 220px;
        height: 220px;
        border: 4px solid #ffffff;
        margin: 0 auto;
        padding: 4px;
    }
    
    .owner-photo::before {
        top: -8px;
        left: -8px;
        right: -8px;
        bottom: -8px;
    }
    
    .owner-photo.rounded-corners {
        border-radius: 18px;
        padding: 4px;
        box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12), 0 6px 18px rgba(0, 0, 0, 0.08);
    }
    
    .owner-photo.rounded-corners::before {
        border-radius: 22px;
        top: -6px;
        left: -6px;
        right: -6px;
        bottom: -6px;
    }
    
    .owner-photo.rounded-corners:hover {
        transform: scale(1.03);
        box-shadow: 0 16px 48px rgba(59, 130, 246, 0.2), 0 8px 24px rgba(0, 0, 0, 0.12);
    }
    
    /* Gallery CTA mobile optimization */
    .cta-section h2 {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }
    
    .cta-section p {
        font-size: 1rem;
        margin-bottom: 24px;
        padding: 0 10px;
    }
    
    .cta-section .d-flex {
        flex-direction: column;
        gap: 12px;
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .hero-title {
        font-size: 1.9rem;
        margin-bottom: 14px;
    }
    
    .hero-claim {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .about-title {
        font-size: 1.6rem;
        margin-bottom: 14px;
    }
    
    .about-text {
        font-size: 0.95rem;
    }
    
    .why-card,
    .service-card {
        padding: 20px 16px;
        margin-bottom: 12px;
    }
    
    .why-icon,
    .service-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .why-title,
    .service-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .why-desc,
    .service-desc {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Gallery CTA small mobile optimization */
    .cta-section h2 {
        font-size: 1.6rem;
        margin-bottom: 14px;
    }
    
    .cta-section p {
        font-size: 0.95rem;
        margin-bottom: 20px;
        padding: 0 5px;
    }
    
    .cta-section .d-flex {
        gap: 10px;
    }
    
    .cta-section .btn {
        font-size: 1rem;
        padding: 14px 28px;
        max-width: 280px;
    }
    
    /* Fleet Section Small Mobile Optimization */
    .fleet-section {
        padding: 30px 0;
    }
    
    .fleet-section h2 {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }
    
    .fleet-gallery-container {
        height: 180px;
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
    }
    
    .fleet-card {
        border-radius: 16px;
    }
    
    .fleet-card .card-body {
        padding: 16px;
    }
    
    .fleet-card .card-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .fleet-card .card-text {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .fleet-equipment {
        gap: 3px;
        margin-bottom: 12px;
    }
    
    .fleet-equipment .badge {
        font-size: 0.65rem;
        padding: 3px 6px;
        border-radius: 8px;
    }
    
    .fleet-price {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .fleet-card .btn {
        font-size: 0.85rem;
        padding: 8px 16px;
        border-radius: 8px;
    }
    
    .fleet-filter {
        font-size: 0.75rem;
        padding: 5px 10px;
        border-radius: 14px;
        margin: 0 1px 4px 0;
    }
    
    /* Owner Section Small Mobile Optimization */
    .owner-section {
        padding: 30px 0;
    }
    
    .owner-card {
        padding: 24px 20px;
        border-radius: 16px;
        margin-top: 20px;
    }
    
    .owner-name {
        font-size: 1.6rem;
        margin-bottom: 4px;
    }
    
    .owner-title {
        font-size: 1rem;
        margin-bottom: 16px;
    }
    
    .owner-title::after {
        width: 30px;
    }
    
    .owner-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .owner-quote {
        font-size: 1rem;
        padding: 14px 16px;
        border-radius: 10px;
    }
    
    .owner-quote::before {
        font-size: 2rem;
        top: -6px;
        left: 10px;
    }
    
    .owner-photo {
        width: 180px;
        height: 180px;
        border: 3px solid #ffffff;
        padding: 3px;
    }
    
    .owner-photo::before {
        top: -6px;
        left: -6px;
        right: -6px;
        bottom: -6px;
    }
    
    .owner-photo.rounded-corners {
        border-radius: 14px;
        padding: 3px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.06);
    }
    
    .owner-photo.rounded-corners::before {
        border-radius: 17px;
        top: -4px;
        left: -4px;
        right: -4px;
        bottom: -4px;
    }
    
    .owner-photo.rounded-corners:hover {
        transform: scale(1.02);
        box-shadow: 0 14px 42px rgba(59, 130, 246, 0.18), 0 7px 21px rgba(0, 0, 0, 0.1);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
    
    .cta-section .btn {
        font-size: 1rem;
        padding: 14px 28px;
        max-width: 280px;
    }
}

/* Extra small mobile styles */
@media (max-width: 360px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .hero-title {
        font-size: 1.7rem;
        margin-bottom: 12px;
    }
    
    .hero-claim {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }
    
    .about-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .about-text {
        font-size: 0.9rem;
    }
    
    .why-card,
    .service-card {
        padding: 18px 14px;
        margin-bottom: 10px;
    }
    
    .why-icon,
    .service-icon {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .why-title,
    .service-title {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .why-desc,
    .service-desc {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Gallery CTA extra small mobile optimization */
    .cta-section h2 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .cta-section p {
        font-size: 0.9rem;
        margin-bottom: 18px;
        padding: 0;
    }
    
    .cta-section .d-flex {
        gap: 8px;
    }
    
    .cta-section .btn {
        font-size: 0.95rem;
        padding: 12px 24px;
        max-width: 260px;
    }
    
    /* Fleet Section Extra Small Mobile Optimization */
    .fleet-section {
        padding: 25px 0;
    }
    
    .fleet-section h2 {
        font-size: 1.6rem;
        margin-bottom: 14px;
    }
    
    .fleet-gallery-container {
        height: 160px;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
    }
    
    .fleet-card {
        border-radius: 12px;
    }
    
    .fleet-card .card-body {
        padding: 14px;
    }
    
    .fleet-card .card-title {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .fleet-card .card-text {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .fleet-equipment {
        gap: 2px;
        margin-bottom: 10px;
    }
    
    .fleet-equipment .badge {
        font-size: 0.6rem;
        padding: 2px 4px;
        border-radius: 6px;
    }
    
    .fleet-price {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .fleet-card .btn {
        font-size: 0.8rem;
        padding: 6px 12px;
        border-radius: 6px;
    }
    
    .fleet-filter {
        font-size: 0.7rem;
        padding: 4px 8px;
        border-radius: 12px;
        margin: 0 1px 3px 0;
    }
    
    /* Owner Section Extra Small Mobile Optimization */
    .owner-section {
        padding: 25px 0;
    }
    
    .owner-card {
        padding: 20px 16px;
        border-radius: 12px;
        margin-top: 16px;
    }
    
    .owner-name {
        font-size: 1.4rem;
        margin-bottom: 4px;
    }
    
    .owner-title {
        font-size: 0.95rem;
        margin-bottom: 14px;
    }
    
    .owner-title::after {
        width: 25px;
    }
    
    .owner-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 18px;
    }
    
    .owner-quote {
        font-size: 0.95rem;
        padding: 12px 14px;
        border-radius: 8px;
    }
    
    .owner-quote::before {
        font-size: 1.8rem;
        top: -4px;
        left: 8px;
    }
    
    .owner-photo {
        width: 150px;
        height: 150px;
        border: 2px solid #ffffff;
        padding: 2px;
    }
    
    .owner-photo::before {
        top: -4px;
        left: -4px;
        right: -4px;
        bottom: -4px;
    }
    
    .owner-photo.rounded-corners {
        border-radius: 12px;
        padding: 2px;
    }
    
    .owner-photo.rounded-corners::before {
        border-radius: 14px;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
    }
}

/* ========================================
   DODATKOWE OPTYMALIZACJE MOBILNE GALERII
   ======================================== */

/* Performance optimizations for mobile */
@media (max-width: 767px) {
    .gallery-item {
        will-change: transform;
        backface-visibility: hidden;
        transform: translateZ(0);
    }
    
    .gallery-image {
        will-change: transform;
        backface-visibility: hidden;
    }
}

/* Touch-friendly interactions */
@media (hover: none) and (pointer: coarse) {
    .gallery-item {
        min-height: 44px;
        min-width: 44px;
    }
    
    .fleet-card {
        min-height: 44px;
        min-width: 44px;
    }
    
    .fleet-card:hover {
        transform: none;
    }
    
    .fleet-card:active {
        transform: scale(0.98);
    }
    
    .fleet-filter {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .owner-photo {
        min-height: 44px;
        min-width: 44px;
    }
    
    .owner-photo:hover {
        transform: none;
    }
    
    .owner-photo:active {
        transform: scale(0.98);
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .gallery-item,
    .gallery-image,
    .gallery-overlay {
        transition: none !important;
        animation: none !important;
    }
    
    .gallery-item:hover {
        transform: none !important;
    }
    
    .owner-photo,
    .owner-card {
        transition: none !important;
        animation: none !important;
    }
    
    .owner-photo:hover {
        transform: none !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .gallery-item {
        border: 2px solid #000;
    }
    
    .gallery-overlay {
        background: rgba(0, 0, 0, 0.9) !important;
    }
}

/* ========================================
   NOWE STYLE MOBILNE DLA GALERII
   ======================================== */

/* Gallery mobile styles */
@media (max-width: 767px) {
    .gallery-section {
        padding: 30px 0 20px 0;
    }
    
    .gallery-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .gallery-section .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .gallery-filters {
        margin-bottom: 25px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        margin: 0 3px;
        font-size: 0.85rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 25px;
    }
    
    .gallery-item {
        border-radius: 12px;
    }
    
    .gallery-image-container {
        height: 160px;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
    }
    
    .gallery-content {
        padding: 14px;
    }
    
    .gallery-item-title {
        font-size: 1rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .gallery-item-description {
        font-size: 0.9rem;
        margin-bottom: 10px;
        line-height: 1.4;
    }
    
    .gallery-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding-top: 10px;
    }
    
    .gallery-category,
    .gallery-date {
        font-size: 0.8rem;
    }
    
    .gallery-overlay-content {
        padding: 12px;
    }
    
    .gallery-overlay-content i {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .gallery-overlay-content .gallery-title {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .gallery-overlay-content .gallery-description {
        font-size: 0.8rem;
        line-height: 1.3;
    }
}

/* Gallery small mobile styles */
@media (max-width: 480px) {
    .gallery-section {
        padding: 25px 0 20px 0;
    }
    
    .gallery-section .section-title {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    
    .gallery-section .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .gallery-filters {
        margin-bottom: 20px;
    }
    
    .filter-btn {
        padding: 6px 12px;
        margin: 0 2px;
        font-size: 0.8rem;
    }
    
    .gallery-grid {
        gap: 12px;
        margin-top: 20px;
    }
    
    .gallery-image-container {
        height: 140px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    
    .gallery-image {
        height: 140px;
    }
    
    .gallery-item {
        border-radius: 10px;
    }
    
    .gallery-content {
        padding: 12px;
    }
    
    .gallery-item-title {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .gallery-item-description {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .gallery-meta {
        gap: 4px;
        padding-top: 8px;
    }
    
    .gallery-category,
    .gallery-date {
        font-size: 0.75rem;
    }
    
    .gallery-overlay-content {
        padding: 10px;
    }
    
    .gallery-overlay-content i {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .gallery-overlay-content .gallery-title {
        font-size: 0.85rem;
        margin-bottom: 4px;
    }
    
    .gallery-overlay-content .gallery-description {
        font-size: 0.75rem;
        line-height: 1.2;
    }
}

/* Gallery extra small mobile styles */
@media (max-width: 360px) {
    .gallery-section {
        padding: 20px 0 15px 0;
    }
    
    .gallery-section .section-title {
        font-size: 1.4rem;
        margin-bottom: 6px;
    }
    
    .gallery-section .section-subtitle {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .gallery-filters {
        margin-bottom: 15px;
    }
    
    .filter-btn {
        padding: 5px 10px;
        margin: 0 1px;
        font-size: 0.75rem;
    }
    
    .gallery-grid {
        gap: 10px;
        margin-top: 15px;
    }
    
    .gallery-image-container {
        height: 120px;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }
    
    .gallery-image {
        height: 120px;
    }
    
    .gallery-item {
        border-radius: 8px;
    }
    
    .gallery-content {
        padding: 10px;
    }
    
    .gallery-item-title {
        font-size: 0.9rem;
        margin-bottom: 4px;
        line-height: 1.2;
    }
    
    .gallery-item-description {
        font-size: 0.8rem;
        margin-bottom: 6px;
        line-height: 1.3;
    }
    
    .gallery-meta {
        gap: 3px;
        padding-top: 6px;
    }
    
    .gallery-category,
    .gallery-date {
        font-size: 0.7rem;
    }
    
    .gallery-overlay-content {
        padding: 8px;
    }
    
    .gallery-overlay-content i {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }
    
    .gallery-overlay-content .gallery-title {
        font-size: 0.8rem;
        margin-bottom: 3px;
    }
    
    .gallery-overlay-content .gallery-description {
        font-size: 0.7rem;
        line-height: 1.1;
    }
}

/* ========================================
   NOWE STYLE MOBILNE DLA MODALI
   ======================================== */

/* Modal mobile styles */
@media (max-width: 767px) {
    .modal-dialog {
        margin: 10px;
    }
    
    .modal-xl {
        max-width: calc(100% - 20px);
    }
    
    .modal-content {
        border-radius: 12px;
    }
    
    .modal-header {
        padding: 12px 16px;
    }
    
    .modal-title {
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    .modal-body {
        padding: 0;
    }
    
    .modal-body img {
        width: 100%;
        height: auto;
        max-height: 70vh;
        object-fit: contain;
        border-radius: 0;
    }
    
    .modal-body .p-3 {
        padding: 16px !important;
    }
}

/* Modal small mobile styles */
@media (max-width: 480px) {
    .modal-dialog {
        margin: 8px;
    }
    
    .modal-xl {
        max-width: calc(100% - 16px);
    }
    
    .modal-header {
        padding: 10px 12px;
    }
    
    .modal-title {
        font-size: 1rem;
    }
    
    .modal-body img {
        max-height: 60vh;
    }
    
    .modal-body .p-3 {
        padding: 12px !important;
    }
}

/* Modal extra small mobile styles */
@media (max-width: 360px) {
    .modal-dialog {
        margin: 5px;
    }
    
    .modal-xl {
        max-width: calc(100% - 10px);
    }
    
    .modal-header {
        padding: 8px 10px;
    }
    
    .modal-title {
        font-size: 0.95rem;
    }
    
    .modal-body img {
        max-height: 50vh;
    }
    
    .modal-body .p-3 {
        padding: 10px !important;
    }
}
[data-theme="dark"] .fleet-card:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.5) !important;
}
[data-theme="dark"] .fleet-img {
    background: #111827;
}

.side-cta-btn {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1040;
    border: none;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 800;
    background: var(--accent-secondary);
    color: var(--text-inverse);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.side-cta-btn:hover { opacity: 0.95; }

.side-panel-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1040;
}

.side-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(420px, 92vw);
    height: 100vh;
    background: var(--bg-card);
    border-left: 1px solid var(--border-color);
    box-shadow: -10px 0 30px var(--shadow-medium);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1041;
    display: flex;
    flex-direction: column;
}
.side-panel.open { transform: translateX(0); }
.side-panel-header { padding: 16px; border-bottom: 1px solid var(--border-color); }
.side-panel-body { padding: 16px; overflow: auto; }

.avatar-circle {
    width: 40px; height: 40px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 800; color: #fff; background: #111827;
}
[data-theme="dark"] .avatar-circle { background: #2563eb; }

.equipment-tag {
    background: #fff !important;
    color: #111 !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
    font-weight: 600;
}
[data-theme="dark"] .equipment-tag {
    background: #1f2937 !important;
    color: #e5e7eb !important;
    border-color: #374151 !important;
}

.fleet-section .btn.fleet-filter.active {
    background: var(--accent-secondary);
    color: var(--text-inverse);
    border-color: var(--accent-secondary);
}

.bus-details-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 16px;
}
.bus-detail {
    padding: 6px 0;
    color: var(--text-primary);
    font-size: 0.95rem;
}
[data-theme="dark"] .bus-detail {
    color: var(--text-secondary);
}

/* --- MAŁY KALENDARZ W REZERWACJI --- */
.calendar-container, .calendar-container.small-calendar {
  max-width: 240px !important;
  min-width: 180px;
  font-size: 0.92rem;
  padding: 8px 4px 4px 4px;
}
.calendar-header, .calendar-body {
  font-size: 0.92rem !important;
}
.calendar-day-header {
  font-size: 0.90rem !important;
  padding: 1px 0;
}
.calendar-container .calendar-day, .calendar-container .calendar-cell {
  min-width: 24px;
  height: 24px;
  font-size: 0.92rem;
  padding: 0;
}
.calendar-container .calendar-day.selected, .calendar-container .calendar-day.today {
  font-size: 0.92rem;
}
@media (max-width: 991px) {
  .calendar-container, .calendar-container.small-calendar {
    max-width: 100% !important;
  }
} 