:root {
    --primary-color: #dc143c;
    --primary-dark: #b00020;
    --secondary-color: #0a0a0a;
    --accent-color: #ff1744;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --bg-light: #f5f5f5;
    --bg-dark: #000000;
    --gradient-primary: linear-gradient(135deg, #dc143c 0%, #ff1744 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-red: 0 4px 20px rgba(220, 20, 60, 0.3);
    --transition: all 0.3s ease;
    --max-width: 1400px;
}

@media (min-width: 1600px) {
    :root {
        font-size: 18px;
    }
}

@media (min-width: 1920px) {
    :root {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    :root {
        font-size: 14px;
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.98) !important;
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
}

.navbar-toggler {
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.brand-shine {
    font-size: 1.8rem;
    color: var(--primary-color);
    letter-spacing: 2px;
    line-height: 1;
}

.brand-subtitle {
    font-size: 0.7rem;
    color: var(--text-light);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.brand-logo {
    height: 48px;
    width: auto;
    align-self: center;
    display: block;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.nav-btn {
    background: var(--gradient-primary) !important;
    color: var(--text-light) !important;
    border: none !important;
    border-radius: 50px;
    padding: 0.5rem 1.5rem !important;
    font-weight: 600;
    margin-left: 1rem;
    box-shadow: var(--shadow-red);
    transition: var(--transition);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(220, 20, 60, 0.5);
}

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.58) 0%, rgba(26, 26, 26, 0.66) 100%), url('../zdjecia/tlo1.png') center center / cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(100px, 100px);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(220, 20, 60, 0.15) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.hero-main {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #dc143c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-buttons .btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: var(--text-light);
    box-shadow: var(--shadow-red);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(220, 20, 60, 0.5);
}

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

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

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-scroll a {
    color: var(--text-light);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.stats-section {
    background: var(--gradient-dark);
    padding: 5rem 0;
    border-top: 4px solid var(--primary-color);
    border-bottom: 4px solid var(--primary-color);
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.2), 0 -10px 40px rgba(220, 20, 60, 0.2);
    position: relative;
    overflow: hidden;
}

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

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

.stat-item {
    text-align: center;
    color: var(--text-light);
    padding: 2.5rem 1rem;
    background: rgba(220, 20, 60, 0.05);
    border-radius: 15px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.stat-item:hover {
    background: rgba(220, 20, 60, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

.stat-number {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    text-shadow: 0 0 20px rgba(220, 20, 60, 0.5);
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.promotions-section {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.promotions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="promo-grid" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(220,20,60,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23promo-grid)"/></svg>');
    pointer-events: none;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.promotion-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

.promotion-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.promotion-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: var(--shadow-red);
}

.promotion-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.promotion-content {
    padding: 2rem;
}

.promotion-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.promotion-description {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.promotion-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.promotion-price {
    display: flex;
    flex-direction: column;
}

.promotion-old-price {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
}

.promotion-new-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
}

.promotion-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.promotion-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
    color: white;
}

section {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.services-section {
    background: var(--bg-light);
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-card.featured {
    background: var(--gradient-dark);
    color: var(--text-light);
    border-color: var(--primary-color);
}

.service-card.featured .service-title,
.service-card.featured .service-description,
.service-card.featured .service-features li {
    color: var(--text-light);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-description {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #495057;
}

.service-features i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-link:hover {
    gap: 1rem;
}

.calculator-section {
    background: var(--bg-light);
}

.calculator-wrapper {
    background: #ffffff;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.calculator-form {
    background: transparent;
    border-radius: 20px;
    padding: 2.5rem;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.step-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.vehicle-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.vehicle-type {
    background: var(--bg-light);
    border: 3px solid transparent;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.vehicle-type:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.vehicle-type.selected {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-color);
}

.vehicle-type.selected h4,
.vehicle-type.selected p,
.vehicle-type.selected .vehicle-example {
    color: white;
}

.vehicle-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.vehicle-emoji {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-red);
}

.vehicle-emoji i {
    font-size: 2rem;
    color: white;
}

.vehicle-type:hover .vehicle-emoji {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(220, 20, 60, 0.5);
}

.vehicle-type.selected .vehicle-emoji {
    background: white;
}

.vehicle-type.selected .vehicle-emoji i {
    color: var(--primary-color);
}

.vehicle-type.selected .vehicle-icon {
    color: white;
}

.vehicle-type h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.vehicle-type p {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.vehicle-example {
    font-size: 0.8rem;
    color: #adb5bd;
    font-style: italic;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 0.5rem;
}


.qty-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--primary-color);
    color: white;
}

.qty-value {
    font-size: 1.1rem;
    font-weight: 700;
    min-width: 24px;
    text-align: center;
}

.service-qty {
    padding: 1rem 1.5rem;
}

.service-checkbox {
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 1.5rem;
    transition: var(--transition);
    cursor: pointer;
}

.service-checkbox:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.service-checkbox input[type="checkbox"] {
    display: none;
}

.service-checkbox label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin: 0;
    width: 100%;
}

.service-checkbox input[type="checkbox"]:checked+label {
    color: var(--primary-color);
    font-weight: 600;
}

.service-name {
    font-weight: 600;
}

.calculator-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1rem;
}

.calculator-navigation .btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
}

.calculator-summary {
    background: var(--gradient-dark);
    color: white;
    border-radius: 20px;
    padding: 2.5rem;
    position: sticky;
    top: 100px;
}

.calculator-summary h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
}

.summary-vehicle {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.summary-vehicle i {
    font-size: 2rem;
    color: var(--primary-color);
}

.summary-services h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
}

.summary-services ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.summary-services li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
}

.summary-services li.empty-state {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.total-price {
    color: var(--primary-color);
    font-size: 2rem;
}

.summary-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-block {
    width: 100%;
    padding: 1rem;
    border-radius: 50px;
    font-weight: 600;
}

.gallery-section {
    background: var(--bg-dark);
}

.gallery-section .section-title,
.gallery-section .section-subtitle {
    color: var(--text-light);
}

.gallery-section .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 2rem;
    transition: var(--transition);
    opacity: 0.9;
}

.gallery-item:hover .gallery-overlay {
    background: rgba(255, 107, 53, 0.9);
}

.gallery-overlay h4 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.gallery-overlay i {
    font-size: 2rem;
    color: white;
    opacity: 0;
    transform: scale(0);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i {
    opacity: 1;
    transform: scale(1);
}

.about-section {
    background: white;
}

.about-image {
    position: relative;
    height: 600px;
    border-radius: 30px;
    margin-bottom: 2rem;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.about-content {
    padding: 2rem 0;
}

.about-text {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.about-feature i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.about-feature p {
    color: #6c757d;
}

.booking-section {
    background: var(--bg-light);
}

.booking-info {
    padding: 2rem 0;
}

.booking-description {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.booking-feature {
    display: flex;
    gap: 1.5rem;
}

.booking-feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.booking-feature h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.booking-feature p {
    color: #6c757d;
}

.booking-form {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.contact-section {
    background: white;
}

.contact-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #6c757d;
    margin: 0;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--text-dark);
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

.footer-logo {
    height: 52px;
    width: auto;
    display: block;
    margin-bottom: 1.2rem;
}

.footer-about p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
}

.footer-contact i {
    color: var(--primary-color);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-credit {
    margin-top: 0.4rem;
    font-size: 0.85rem;
    opacity: 0.75;
}

.footer-credit a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.footer-credit a:hover {
    text-decoration: underline;
}

.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 991px) {
    .hero-main {
        font-size: 3rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .calculator-summary {
        position: static;
        margin-top: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-image {
        height: 400px;
    }
}

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

    .hero-section {
        min-height: 600px;
    }

    .hero-main {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-item {
        height: 300px;
    }

    .vehicle-types {
        grid-template-columns: 1fr;
    }

    .calculator-wrapper {
        padding: 1.5rem;
    }

    .calculator-form {
        padding: 1.5rem;
    }

}

@media (max-width: 575px) {
    .navbar-brand {
        font-size: 0.9rem;
    }

    .brand-shine {
        font-size: 1.5rem;
    }

    .brand-logo {
        height: 38px;
    }

    .hero-main {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .booking-form {
        padding: 1.5rem;
    }
}

.gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-content {
    position: relative;
    width: 95%;
    max-width: 1400px;
    max-height: 90vh;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 10000;
    transition: var(--transition);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.gallery-modal-close:hover {
    background: var(--primary-color);
    transform: rotate(90deg);
}

.gallery-modal-body {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gallery-modal-image-wrapper {
    position: relative;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.gallery-modal-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 80vh;
}

.gallery-modal-info {
    padding: 3rem 3rem 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gallery-modal-info h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 1rem;
}

.gallery-modal-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.modal-details {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.modal-details h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-details h4 i {
    color: var(--primary-color);
}

.modal-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-details li {
    padding: 0.6rem 0;
    color: #495057;
    font-size: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.modal-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.modal-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.modal-stat {
    flex: 1;
    min-width: 150px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.modal-stat i {
    font-size: 1.5rem;
}

.modal-stat span {
    font-weight: 600;
    font-size: 0.9rem;
}

.modal-booking-btn {
    margin-top: auto;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-red);
    transition: var(--transition);
}

.modal-booking-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(220, 20, 60, 0.5);
    color: white;
}

@media (max-width: 992px) {
    .gallery-modal-body {
        grid-template-columns: 1fr;
        max-height: 90vh;
        overflow-y: auto;
    }

    .gallery-modal-info {
        padding: 2rem;
    }

    .gallery-modal-image-wrapper {
        min-height: 400px;
    }

    .gallery-modal-close {
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 768px) {
    .gallery-modal-content {
        width: 98%;
    }

    .gallery-modal-info h2 {
        font-size: 1.5rem;
    }

    .gallery-modal-info h3 {
        font-size: 1.2rem;
    }

    .modal-details {
        padding: 1rem;
    }

    .gallery-modal-image-wrapper {
        min-height: 300px;
    }
}

.reviews-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.google-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem 2rem;
    border-radius: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

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

.google-stars {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.google-stars i {
    color: #fbbc04;
    font-size: 1.1rem;
}

.google-score {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-left: 0.5rem;
}

.google-count {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(220, 20, 60, 0.15);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.review-meta {
    flex: 1;
}

.review-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.2rem 0;
}

.review-stars {
    display: flex;
    gap: 0.15rem;
}

.review-stars i {
    color: #fbbc04;
    font-size: 0.85rem;
}

.review-google-icon {
    color: #4285F4;
    font-size: 1.3rem;
    flex-shrink: 0;
    opacity: 0.7;
}

.review-text {
    color: #495057;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.review-date {
    font-size: 0.8rem;
    color: #adb5bd;
    font-weight: 500;
}

.reviews-cta {
    margin-top: 1rem;
}

.reviews-btn {
    border-radius: 50px;
    padding: 1rem 2.5rem !important;
    font-weight: 600;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.reviews-btn:hover {
    background: var(--text-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

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

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .google-rating-badge {
        padding: 0.8rem 1.5rem;
    }

    .review-card {
        padding: 1.5rem;
    }
}

.calc-group {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 0.8rem;
    overflow: hidden;
    background: #fff;
}

.calc-group-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.2rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calc-group-header > span {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.calc-group-arrow {
    transition: transform 0.3s ease;
}

.calc-group.open .calc-group-arrow {
    transform: rotate(180deg);
}

.calc-group-body {
    max-height: 0;
    overflow: hidden;
    padding: 0 0.8rem;
    transition: max-height 0.35s ease, padding-bottom 0.35s ease;
}

.calc-group.open .calc-group-body {
    max-height: 2200px;
    padding-bottom: 0.8rem;
}

.calc-group-featured {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 1px var(--primary-color), 0 4px 18px rgba(220, 20, 60, 0.18);
}

.calc-popular-badge {
    background: var(--primary-color);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.2rem 0.7rem;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.calculator-contact-note {
    margin: 1.5rem 0 0;
    padding: 1rem 1.2rem;
    background: rgba(220, 20, 60, 0.06);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.calculator-contact-note a {
    color: var(--primary-color);
    font-weight: 700;
}

.calculator-contact-note i {
    color: var(--primary-color);
    margin-right: 0.3rem;
}
.calculator-form .service-checkbox {
    display: flex;
    align-items: flex-start;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
    user-select: none;
}
.calculator-form .service-checkbox:hover { border-color: var(--primary-color); background: rgba(220,20,60,0.03); }
.calculator-form .service-checkbox.selected { background: rgba(220,20,60,0.07); border-color: var(--primary-color); }
.calculator-form .service-checkbox.service-required { background: rgba(220,20,60,0.05); border-color: rgba(220,20,60,0.4); }
.calculator-form .service-checkbox input[type="checkbox"] { width:18px; height:18px; min-width:18px; accent-color: var(--primary-color); cursor:pointer; margin-right:0.75rem; margin-top:0.2rem; }
.calculator-form .service-checkbox label { display:flex; flex-direction:column; align-items:stretch; width:100%; cursor:pointer; margin:0; gap:0.3rem; }
.svc-head { display:flex; justify-content:space-between; align-items:center; width:100%; gap:0.5rem; }
.calculator-form .service-name { font-weight:600; color:var(--text-dark); font-size:0.95rem; display:flex; align-items:center; flex-wrap:wrap; gap:0.4rem; }
.svc-desc { font-size:0.8rem; color:#6c757d; line-height:1.45; font-weight:400; }
.required-note { font-size:0.72rem; color:var(--primary-color); font-weight:600; background:rgba(220,20,60,0.1); padding:0.15rem 0.5rem; border-radius:20px; display:inline-flex; align-items:center; gap:0.3rem; margin-left:0.3rem; }
.req-badge { font-size:0.72rem; color:var(--primary-color); font-weight:600; background:rgba(220,20,60,0.1); padding:0.1rem 0.4rem; border-radius:20px; }
.svc-range { font-weight:700; color:var(--primary-color); font-size:0.88rem; white-space:nowrap; }
#totalPrice { font-size:1.1rem; font-weight:800; color:var(--primary-color); }
#selectedServices li { display:flex; justify-content:space-between; align-items:baseline; padding:0.4rem 0; border-bottom:1px solid #f0f0f0; gap:0.5rem; flex-wrap:wrap; font-size:0.9rem; }
#selectedServices li:last-child { border-bottom:none; }

.calc-size { margin-bottom: 1.2rem; }
.calc-size-title { display:flex; align-items:center; gap:0.6rem; font-size:1rem; font-weight:700; color:var(--primary-color); text-transform:uppercase; letter-spacing:1px; margin-bottom:0.8rem; }
.calc-size-options { display:grid; grid-template-columns:repeat(3, 1fr); gap:0.6rem; }
.calc-size-option { display:flex; flex-direction:column; gap:0.25rem; text-align:left; padding:0.9rem 1rem; border:2px solid #e9ecef; border-radius:12px; background:#fff; cursor:pointer; transition:all 0.2s ease; }
.calc-size-option:hover { border-color:var(--primary-color); }
.calc-size-option.active { border-color:var(--primary-color); background:rgba(220,20,60,0.07); }
.calc-size-name { font-weight:700; color:var(--text-dark); font-size:0.95rem; }
.calc-size-desc { font-size:0.75rem; color:#6c757d; line-height:1.4; }

.summary-size-row { display:flex; justify-content:space-between; align-items:center; gap:0.5rem; padding:0.8rem 1rem; margin-bottom:1.5rem; background:rgba(255,255,255,0.1); border-radius:10px; font-size:0.95rem; }
.summary-size-row span:last-child { font-weight:700; color:var(--primary-color); }

@media (max-width: 480px) {
    .calc-size-options { grid-template-columns:1fr; }
}

/* Formularz kontaktowy */
.contact-form-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.contact-form-title { font-weight: 800; color: var(--text-dark); margin-bottom: 0.5rem; }
.contact-form-lead { color: #6c757d; margin-bottom: 2rem; font-size: 0.95rem; }
.contact-field { margin-bottom: 1.2rem; }
.contact-field label { display: block; font-weight: 600; color: var(--text-dark); margin-bottom: 0.4rem; font-size: 0.9rem; }
.contact-form .form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}
.contact-form .form-control:focus { outline: none; border-color: var(--primary-color); }
.contact-form textarea.form-control { resize: vertical; min-height: 120px; }
.contact-consent { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 1.5rem; }
.contact-consent input { margin-top: 0.25rem; width: 18px; height: 18px; min-width: 18px; accent-color: var(--primary-color); cursor: pointer; }
.contact-consent label { font-size: 0.85rem; color: #6c757d; line-height: 1.5; cursor: pointer; margin: 0; }
.contact-submit { width: 100%; padding: 1rem; font-weight: 700; }
.contact-status { margin: 1rem 0 0; font-size: 0.95rem; font-weight: 600; min-height: 1.4rem; }
.contact-status.is-success { color: #1e7e34; }
.contact-status.is-error { color: var(--primary-color); }

/* Przycisk „Zapytaj o tę wycenę" w podsumowaniu kalkulatora */
.calc-attach-btn { margin-top: 1rem; text-align: center; }
.calc-attach-hint { display: none; margin-top: 0.5rem; font-size: 0.85rem; font-weight: 600; color: #ffd7d0; }
.calc-attach-hint.is-visible { display: block; }
.calc-call-btn { border: 2px solid rgba(255, 255, 255, 0.5); color: #fff; background: transparent; padding: 0.85rem 1rem; border-radius: 50px; font-weight: 600; transition: all 0.2s ease; }
.calc-call-btn:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }

/* Widoczny box z dołączoną wyceną w formularzu */
.contact-quote { border: 1px solid #e9ecef; background: #f8f9fa; border-radius: 12px; padding: 1rem 1.2rem; margin-bottom: 1.2rem; }
.contact-quote-head { display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; font-weight: 700; color: var(--primary-color); font-size: 0.9rem; margin-bottom: 0.5rem; }
.contact-quote-remove { background: none; border: none; color: #6c757d; font-size: 1.4rem; line-height: 1; cursor: pointer; padding: 0 0.3rem; }
.contact-quote-remove:hover { color: var(--primary-color); }
.contact-quote-text { margin: 0; font-family: inherit; font-size: 0.85rem; color: var(--text-dark); white-space: pre-wrap; line-height: 1.5; }

@media (max-width: 576px) {
    .contact-form-wrapper { padding: 1.5rem; }
}
