﻿:root {
    --bg-color: #000000;
    --surface-color: #0D0D0D;
    --primary-color: #00a3a8;
    /* Moto Green - Branding & Action */
    --primary-dark: #007f83;
    --secondary-color: #fbbc04;
    /* UX Yellow - Highlights & Featured */
    --secondary-dark: #eab308;
    --text-color: #FFFFFF;
    --text-muted: #999999;
    --glass-bg: rgba(13, 13, 13, 0.6);
    --glass-border: rgba(0, 163, 168, 0.2);
    --transition-smooth: cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img,
video,
iframe {
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.6;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    overflow-x: hidden;
    width: 100%;
}

body.page-loaded {
    opacity: 1;
}

/* Animation System */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Fade in animation for hero content */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes sheen {
    100% {
        left: 200%;
    }
}


@keyframes h1Entry {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes h1Light {
    0% {
        left: -150%;
    }

    100% {
        left: 150%;
    }
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

@keyframes floatingGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Global Button Hover & Interaction System */
.cta-button,
.cta-header-button,
.btn,
.btn-outline,
.btn-navigate,
.cta-package-btn,
.segment-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
}

.cta-button::after,
.cta-header-button::after,
.btn::after,
.btn-outline::after,
.btn-navigate::after,
.cta-package-btn::after,
.segment-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 60px;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    pointer-events: none;
}

.cta-button:hover,
.cta-header-button:hover,
.btn:hover,
.btn-outline:hover,
.btn-navigate:hover,
.cta-package-btn:hover,
.segment-btn:hover {
    transform: scale(1.03);
}

.cta-button:hover::after,
.cta-header-button:hover::after,
.btn:hover::after,
.btn-outline:hover::after,
.btn-navigate:hover::after,
.cta-package-btn:hover::after,
.segment-btn:hover::after {
    animation: sheen 0.8s forwards;
}

/* Global Image Hover System */
.img-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s var(--transition-smooth);
}

.img-card img {
    transition: transform 0.6s var(--transition-smooth);
}

.img-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.img-card:hover img {
    transform: scale(1.05);
}

/* Top Bar - High Visibility */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002;
    background: #111;
    border-bottom: 1px solid rgba(0, 163, 168, 0.3);
    padding: 8px 0;
    transition: all 0.4s ease;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 35px;
    align-items: center;
}

.top-bar-left span {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.top-bar-left i {
    color: var(--secondary-color);
    margin-right: 8px;
}

.top-bar-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-bar a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    opacity: 0.7;
}

.top-bar a:hover {
    color: var(--primary-color);
    opacity: 1;
}

/* Header - Modern Glassmorphism */
header {
    position: fixed;
    top: 38px;
    /* Adjusted dynamically */
    left: 0;
    width: 100%;
    height: 125px;
    /* Increased by another 10% as requested (~115px -> 125px) */
    z-index: 1001;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s var(--transition-smooth);
    display: flex;
    align-items: center;
}

header.header-scrolled {
    height: 90px;
    /* Proportional shrink */
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}



nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 10;
    flex-shrink: 0;
}

.logo-img {
    height: 70px;
    /* Nieco większe logo */
    width: auto;
    transition: all 0.6s var(--transition-smooth);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

header.header-scrolled .logo-img {
    height: 50px;
}

.nav-right {
    display: flex;
    gap: 35px;
    align-items: center;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--primary-color);
    transition: width 0.4s var(--transition-smooth);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* CTA Header Button */
.cta-header-button {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    padding: 10px 22px;
    border-radius: 4px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.4s var(--transition-smooth);
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-header-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 60px;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: none;
}

.cta-header-button:hover {
    scale: 1.05;
    box-shadow: 0 8px 25px rgba(0, 163, 168, 0.5);
}

.cta-header-button:hover::after {
    animation: sheen 0.8s forwards;
}



.text-center {
    text-align: center !important;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #fff;
}

h1 {
    font-size: clamp(36px, 6vw, 68px);
    font-weight: 900;
    letter-spacing: 4px;
    line-height: 1.1;
}

h2 {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.2;
}

h3 {
    font-size: clamp(20px, 3.2vw, 28px);
    font-weight: 700;
    letter-spacing: 1.5px;
}

h4 {
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 700;
    letter-spacing: 1.2px;
}

/* Labels and Names */
h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

h6 {
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.heading-accent,
.accent-secondary {
    color: var(--primary-color) !important;
    -webkit-text-fill-color: var(--primary-color) !important;
}

.heading-accent-yellow,
.accent-primary {
    color: var(--secondary-color) !important;
    -webkit-text-fill-color: var(--secondary-color) !important;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 80px 0;
}

/* Hero */
/* Hero Section Layout - Redesign */
.page-hero,
.page-hero-home {
    min-height: 65vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 140px;
    /* Offset for fixed header + topbar */
    padding-bottom: 60px;
    text-align: left;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
}

.page-hero::before,
.page-hero-home::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 20, 30, 0.75));
    z-index: 1;
}

/* Background Outlined Text - MOTOSPACE */
.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Orbitron', sans-serif;
    font-size: 15vw;
    font-weight: 950;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    letter-spacing: 2vw;
    animation: fadeInLS 2s ease-out;
}

@keyframes fadeInLS {
    from {
        opacity: 0;
        letter-spacing: 5vw;
    }

    to {
        opacity: 1;
        letter-spacing: 2vw;
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    position: relative;
    z-index: 2;
    align-items: center;
    width: 100%;
}

.hero-left {
    animation: slideInLeft 1s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
}

.hero-left h1 {
    line-height: 1.1;
    margin-bottom: 0;
    text-align: left !important;
    position: relative;
    display: inline-block;
    opacity: 0;
    animation: h1Entry 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s;
    overflow: hidden;
}

.hero-left h1 span {
    position: relative;
    z-index: 2;
}

.hero-left h1::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            transparent 40%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 60%,
            transparent 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: h1LightText 4s infinite linear;
    animation-delay: 2s;
    z-index: 3;
    pointer-events: none;
}

@keyframes h1LightText {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.hero-left h1,
.hero-left h1 span {
    background: linear-gradient(90deg, #fff, #888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-left h1 .accent-primary {
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-left h1 .accent-secondary {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    animation: slideInRight 1s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
}

.hero-right p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8) !important;
    max-width: 100% !important;
    margin: 0 !important;
    text-align: left !important;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-btns .cta-button {
    margin: 0;
    padding: 18px 36px;
    white-space: nowrap;
}

.hero-btns .cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    box-shadow: none;
    color: var(--primary-color);
    border-radius: 4px;
}



/* Responsive Hero */
@media (max-width: 992px) {

    .page-hero,
    .page-hero-home {
        min-height: auto;
        padding-top: 140px;
        padding-bottom: 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-left h1 {
        text-align: center !important;
    }

    .hero-right {
        align-items: center;
        text-align: center;
    }

    .hero-right p {
        text-align: center !important;
    }

    .hero-btns {
        justify-content: center;
    }
}

/* About Section - AutoZen Style v3.1 (Grid Visibility Fix) */
.about-section {
    padding: 100px 0;
    position: relative;
    background-color: #050000;
    /* Deep dark red/black */
    background-image:
        linear-gradient(rgba(255, 0, 0, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 0, 0.2) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: center center;
    overflow: hidden;
    z-index: 1;
}

.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 10%, #000 90%);
    pointer-events: none;
    z-index: -1;
}

/* Enhanced Flashlight Effect - v3.1: Proper layering & 1px lines */
.about-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.25) 0%, rgba(255, 50, 50, 0.1) 25%, transparent 65%) no-repeat;
    background-size: 1000px 1000px;
    pointer-events: none;
    z-index: 2;
    animation: lightFollow 30s infinite ease-in-out;
    mix-blend-mode: screen;

    /* Masking to 1px grid lines */
    -webkit-mask-image:
        linear-gradient(white 1px, transparent 1px),
        linear-gradient(90deg, white 1px, transparent 1px);
    mask-image:
        linear-gradient(white 1px, transparent 1px),
        linear-gradient(90deg, white 1px, transparent 1px);
    -webkit-mask-size: 30px 30px;
    mask-size: 30px 30px;
    -webkit-mask-position: center center;
    mask-position: center center;
}

@keyframes lightFollow {
    0% {
        background-position: -30% -30%;
    }

    15% {
        background-position: 110% 20%;
    }

    30% {
        background-position: 10% 110%;
    }

    45% {
        background-position: 90% -10%;
    }

    60% {
        background-position: -10% 90%;
    }

    70% {
        background-position: 115% 115%;
    }

    85% {
        background-position: 20% 105%;
    }

    100% {
        background-position: -30% -30%;
    }
}

.about-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 600px;
}

.img-card {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.img-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.main-img {
    width: 60%;
    height: 80%;
    top: 0;
    right: 0;
    z-index: 2;
}

.main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub-img {
    width: 50%;
    height: 45%;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.sub-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-card {
    top: 15%;
    left: 5%;
    background: var(--surface-color);
    padding: 30px;
    border: 1px solid var(--glass-border);
    z-index: 3;
    text-align: center;
    width: 240px;
}

.stats-card h4 {
    font-size: 12px;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.stats-card .stats-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stats-card .stats-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.stats-card .users-group {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.stats-card .user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--surface-color);
    margin-left: -15px;
    background-color: #333;
    background-size: cover;
    background-position: center;
}

.stats-card .user-avatar:first-child {
    margin-left: 0;
}

/* About Content */
.section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.about-content p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-footer {
    display: flex;
    align-items: center;
    gap: 40px;
}

.exp-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 25px 35px;
    border-radius: 12px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.exp-box .exp-num {
    font-size: 56px;
    font-weight: 900;
}

.exp-box .exp-text {
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}

.feature-list i {
    color: var(--primary-color);
    font-size: 16px;
}

/* Responsive About */
@media (max-width: 992px) {
    .about-section {
        padding: 60px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-images {
        height: 500px;
        order: 2;
    }

    .about-content {
        order: 1;
        text-align: center;
    }

    .section-label {
        justify-content: center;
    }

    .about-footer {
        flex-direction: column;
        gap: 30px;
    }

    .main-img {
        width: 70%;
        left: auto;
    }

    .sub-img {
        width: 60%;
    }
}

/* CTA */
.cta-button {
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(0, 163, 168, 0.3);
    display: inline-block;
    margin-top: 15px;
    border: none;
    border-radius: 4px;
}

.cta-button:hover {
    box-shadow: 0 15px 40px rgba(0, 163, 168, 0.6);
    color: #fff;
}

/* hover::after sheen defined in global block above */

/* Old .pricing-packages grid removed - replaced by .pricing-packages-grid */

.package-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s var(--transition-smooth);
    position: relative;
}

.package-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 15px 45px rgba(0, 163, 168, 0.3);
}

.package-card.featured {
    border: 2px solid var(--secondary-color);
    box-shadow: 0 0 30px rgba(251, 188, 4, 0.2);
}

.package-badge {
    background: var(--secondary-color);
    color: #000;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 0 0 15px rgba(251, 188, 4, 0.3);
}

.package-title {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.package-subtitle {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 25px;
}

.package-price {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 10px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}


.btn {
    padding: 14px 35px;
    background: transparent;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    border: 1px solid var(--glass-border);
    width: 100%;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 163, 168, 0.4);
}

.btn:hover {
    border-color: var(--primary-color);
    color: #fff;
    background: rgba(0, 163, 168, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 163, 168, 0.2);
}

/* Old contact layout removed (.contact-wrapper, .contact-info-box, .contact-detail, .hours-list, .map-wrapper) - replaced by .contact-grid system */

/* Footer */
footer {
    background: var(--surface-color);
    padding: 60px 0 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

/* Footer Logo Link Wrapper */
.footer-logo-link {
    display: inline-block;
    transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
    /* Smoother expansion */
    padding: 0;
    margin: 0;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
    display: block;
}

/* Logo Hover Effect - Scale Only (5%) */
.footer-logo-link:hover {
    transform: scale(1.15);
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    padding-left: 0 !important;
    /* Prevent generic link shift */
}

/* Reset paragraph spacing */
.footer-col p {
    margin-top: 15px;
}

.footer-col h4 {
    font-size: 16px;
    /* Increased from 14px */
    color: var(--primary-color);
    margin-bottom: 25px;
    /* Increased margin */
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 14px;
    /* Increased margin */
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    /* Removed padding-left transition */
}

.footer-col a:hover {
    color: var(--primary-color);
    padding-left: 0;
    /* REMOVED padding shift */
}

/* Highlighting the Contact Column */
.footer-contact {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 25px;
    /* Hover effects removed per request */
}

.footer-contact p {
    font-size: 14px;
    /* Increased from 12px */
    color: var(--text-muted);
    margin: 10px 0;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 13px;
    /* Increased from 12px */
}

/* Mobile Navigation & Responsive Styles */

/* Hamburger Menu Logic */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1005;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Active State for Hamburger */
.hamburger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 992px) {

    .pricing-packages,
    .contact-wrapper,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .top-bar {
        position: relative !important;
        top: 0 !important;
        display: block !important;
        padding: 10px 0;
        z-index: 1002;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .top-bar-left {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 5px;
    }

    .top-bar-right {
        justify-content: center;
    }

    /* Global Typography & Layout */
    body {
        font-size: 13px;
    }

    .container {
        padding: 0 20px;
    }

    /* Mobile Menu Visibility */
    .hamburger-menu {
        display: flex;
        margin-left: auto;
        /* Push to right edge */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease-in-out;
        z-index: 1000;
        padding: 40px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links a {
        font-size: 20px;
    }

    /* Header Adjustments */
    header {
        position: fixed !important;
        top: 0 !important;
        height: 80px !important;
        z-index: 1100 !important;
        background: rgba(0, 0, 0, 0.9) !important;
        display: flex !important;
        align-items: center !important;
    }

    header.header-scrolled {
        height: 70px !important;
    }

    .logo-img {
        height: 45px !important;
        width: auto !important;
    }

    /* Adjust page content to prevent being hidden under fixed header */
    body {
        padding-top: 0;
        /* Header is fixed at top:0 */
    }

    .page-hero,
    .page-hero-home {
        padding-top: 100px !important;
    }

    /* Hero Section Mobile Adjustments */
    .page-hero,
    .page-hero-home {
        min-height: 300px;
        padding-top: 70px;
        padding-bottom: 25px;
        text-align: center;
        display: flex;
        align-items: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .hero-left h1 {
        font-size: clamp(28px, 8vw, 34px);
        text-align: center !important;
        margin-bottom: 15px;
        /* Reduced */
        line-height: 1.1;
    }

    .hero-right {
        align-items: center;
        text-align: center;
    }

    .hero-right p {
        font-size: 14px;
        /* Reduced */
        text-align: center !important;
        margin-bottom: 15px !important;
    }

    /* Hero Buttons - Stacked on Mobile */
    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        align-items: center;
    }

    .hero-btns .cta-button {
        width: 100%;
        max-width: 320px;
        text-align: center;
        justify-content: center;
        display: flex;
        margin: 0;
    }

    .border-trace-btn {
        width: 100% !important;
        max-width: 320px !important;
        display: flex !important;
    }

    /* Global Spacing & Typography */
    section {
        padding: 50px 0;
        /* Reduced */
    }

    h2 {
        font-size: 26px;
        /* Reduced */
    }

    h3 {
        font-size: 22px;
        /* Reduced */
    }

    /* Compact Pricing Selector - 2 Columns */
    .segment-selector {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 30px;
    }

    .segment-btn {
        min-width: unset;
        width: 100%;
        padding: 12px 10px;
        font-size: 12px;
    }

    /* Contact Section Mobile */
    /* Merged into rule below */

    .contact-grid {
        width: 100% !important;
        margin: 0 !important;
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .contact-info-panel,
    .contact-form-panel,
    .contact-map-panel {
        padding: 20px 15px;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        overflow: hidden;
    }

    .contact-item {
        gap: 12px;
        margin-bottom: 15px;
    }

    .contact-icon-box {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .phone-number,
    .email-address {
        font-size: 16px !important;
        overflow-wrap: break-word;
        word-break: break-word;
        letter-spacing: 0.5px;
    }

    .hour-row {
        gap: 10px;
        font-size: 12px;
        line-height: 1.4;
        padding-bottom: 6px;
    }

    .hour-row strong {
        font-size: 12px;
        white-space: nowrap;
    }

    /* Footer Mobile - Compact */
    footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        gap: 30px;
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .footer-col h4 {
        margin-bottom: 15px;
        font-size: 14px;
    }

    .footer-bottom p {
        font-size: 11px;
    }

    .overall-score {
        font-size: 48px;
    }

    .footer-logo-link:hover {
        padding-left: 0 !important;
    }
}

@media (max-width: 768px) {
    /* Further Mobile refinements */

    /* Center all section headers and descriptions on mobile */
    section .container h1,
    section .container h2,
    section .container h3,
    section .container p {
        text-align: center !important;
    }

    .hero-bg-text {
        font-size: 18vw;
        /* Adjust background text size */
        top: 40%;
    }

    /* Footer mobile - already handled in 992px breakpoint */

    /* Fix for VERY small screens (<400px) */
    @media (max-width: 400px) {
        .container {
            padding: 0 15px;
        }

        .contact-info-panel,
        .contact-form-panel {
            padding: 20px 15px;
        }

        h2 {
            font-size: 22px;
        }

        .phone-number,
        .email-address {
            font-size: 13px !important;
        }

        .contact-icon-box {
            width: 35px;
            height: 35px;
            font-size: 14px;
        }
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--surface-color);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-item:hover::before {
    transform: scaleY(1);
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 25px rgba(0, 163, 168, 0.15);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    user-select: none;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question::after {
    content: '+';
    font-size: 28px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px 25px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 14px;
}

/* --- Blog Section (WordPress-Ready) --- */
.blog-section {
    padding: 100px 0;
    background: var(--bg-color);
}

.blog-archive-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Legacy .post-card styles removed */

.post-thumbnail {
    position: relative;
    height: 180px;
    /* Zmniejszono z 240px */
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.1);
}

.post-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-dark);
    color: #fff;
    padding: 6px 15px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', sans-serif;
}

.post-card {
    position: relative;
    /* For stretched link */
    background: var(--glass-bg);
    /* Zmieniono z #fff */
    backdrop-filter: blur(10px);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid var(--glass-border);
    cursor: pointer;
}

.post-card:hover {
    /* Removed transform as requested */
    box-shadow: 0 20px 50px rgba(0, 163, 168, 0.25);
    border-color: var(--primary-color);
}

.post-content {
    padding: 25px;
    /* Zmniejszono z 30px */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.post-title {
    font-size: 16px;
    /* Zmniejszono z 20px */
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 16px;
    color: #fff;
    /* Zmieniono z #1a1a1a */
    font-family: 'Montserrat', sans-serif;
}

.post-excerpt {
    font-size: 13px;
    /* Zmniejszono z 14px */
    color: var(--text-muted);
    /* Zmieniono z #666 */
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* .post-read-more removed - not used in current HTML */

.post-meta {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #666;
    /* Muted color for meta */
}

@media (max-width: 768px) {
    .blog-archive-wrapper {
        grid-template-columns: 1fr;
    }
}

/* .service-card, .package hover, .content-section - removed (unused) */

/* .content-section removed - not used */

/* Google Reviews Section */
/* Google Reviews Section */
.reviews-section {
    padding: 60px 0 75px;
    position: relative;
    overflow: hidden;
    background-color: #080808;
    /* Solid dark background */
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    /* Subtle border top */
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    /* Subtle border bottom */
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: stretch;
}

.reviews-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.reviews-carousel {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 20px;
    height: 100%;
    cursor: grab;
}

.carousel-controls {
    display: none !important;
    /* Hide controls as requested */
}

/* Compact Review Card */
.review-card {
    flex: 0 0 calc(33.333% - 14px);
    /* Show 3 cards with gaps */
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 25px;
    /* Increased padding */
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
    justify-content: space-between;
    /* Improve vertical alignment */
}

.review-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    border-bottom: 1px solid #1a1a1a;
    /* Subtle separation line */
    padding-bottom: 15px;
}

.review-avatar {
    width: 36px;
    height: 36px;
    background: #222;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid #333;
}

.review-info h5 {
    font-size: 14px;
    margin-bottom: 2px;
    color: #fff;
    font-weight: 600;
}

.review-date {
    font-size: 11px;
    color: #666;
}

.review-stars {
    color: #FFD700;
    font-size: 12px;
    margin-top: 4px;
    letter-spacing: 1px;
}

.review-content {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
    font-style: italic;
    flex-grow: 1;
}

/* Reviews Summary Box - More compact */
.reviews-summary {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.google-brand {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.google-brand i {
    font-size: 20px;
    background: linear-gradient(45deg, #4285F4, #34A853, #FBBC05, #EA4335);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.overall-score {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'Orbitron', sans-serif;
}

.overall-stars {
    color: #FFD700;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.reviews-count {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 25px;
}

.btn-google {
    background: #fff;
    color: #000;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-google:hover {
    background: #eee;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        flex: 0 0 calc(50% - 10px);
    }

    .reviews-summary {
        order: -1;
    }
}

@media (max-width: 768px) {
    .review-card {
        flex: 0 0 calc(100% - 20px);
        margin-right: 20px;
    }

    .reviews-carousel {
        padding-left: 10px;
        /* Slight offset for mobile swipe feel */
    }

    .overall-score {
        font-size: 48px;
    }
}

/* --- Selektor Segmentów --- */
.segment-selector {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.segment-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 140px;
    gap: 4px;
}

.segment-btn strong {
    font-size: 14px;
    letter-spacing: 1px;
    color: #fff;
}

.segment-btn span {
    font-size: 12px;
    opacity: 0.6;
}

.segment-btn:hover {
    background: rgba(0, 163, 168, 0.1);
    border-color: var(--primary-color);
    color: #fff;
}

.segment-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 163, 168, 0.3);
}

.segment-btn.active strong,
.segment-btn.active span {
    color: #000;
}

/* --- Modern Premium Package Cards --- */
.pricing-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
    padding-bottom: 50px;
}

.package-card-premium {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 35px 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.package-card-premium:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(0, 163, 168, 0.25);
}

.package-card-premium.featured:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(0, 163, 168, 0.25);
}

.package-card-premium.komplet-premium:hover {
    border-color: var(--secondary-color) !important;
    box-shadow: 0 20px 50px rgba(251, 188, 4, 0.25);
}

.package-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #000;
    padding: 7px 26px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.package-card-premium:last-child .package-badge {
    background: var(--secondary-color);
}

.package-header {
    margin-bottom: 20px;
}

.package-header h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: #fff;
    margin: 0 0 5px 0;
    letter-spacing: 1px;
}

.package-subtitle {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.package-price {
    margin-bottom: 25px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.price-prefix {
    font-size: 13px;
    color: var(--text-muted);
}

.price-value {
    font-size: clamp(36px, 5vw, 44px);
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    line-height: 1;
}

.price-currency {
    font-size: 19px;
    color: #fff;
    font-weight: 700;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.package-features li {
    margin-bottom: 5px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-features i {
    color: var(--primary-color);
    font-size: 16px;
}

.package-bonus {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-package-btn {
    display: block;
    width: 100%;
    padding: 12px 24px;
    text-align: center;
    border: 1px solid #2A2A2A;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.featured .cta-package-btn {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
    box-shadow: 0 5px 15px rgba(0, 163, 168, 0.2);
}

.cta-package-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-3px);
}

.full-pricing-cta {
    text-align: center;
    margin-top: 30px;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    padding: 15px 40px;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: #fff;
    background: rgba(0, 163, 168, 0.05);
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #0D0D0D;
    padding: 30px;
    border: 1px solid #222;
    width: 90%;
    max-width: 700px;
    border-radius: 12px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.close-modal {
    color: #555;
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 40px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-title {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 10px;
    font-size: 28px;
    color: #fff;
}

.modal-segment-info {
    margin-bottom: 30px;
    color: var(--text-muted);
    font-size: 15px;
    border-bottom: 1px solid #222;
    padding-bottom: 15px;
}

.detailed-pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.detailed-pricing-table th {
    text-align: left;
    padding: 20px;
    color: var(--primary-color);
    border-bottom: 2px solid #222;
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
}

.detailed-pricing-table td {
    padding: 10px 20px;
    border-bottom: 1px solid #151515;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    transition: background 0.3s ease;
}

.detailed-pricing-table tbody tr:hover td {
    background: rgba(0, 163, 168, 0.08);
    color: #fff;
}

.text-right {
    text-align: right;
}

@media (max-width: 768px) {
    .pricing-packages-grid {
        grid-template-columns: 1fr;
    }

    .price-value {
        font-size: 44px;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .segment-selector {
        gap: 10px;
    }

    .segment-btn {
        min-width: 120px;
    }
}

/* --- Sekcja Kontakt Premium --- */
#kontakt {
    padding: 80px 0;
    background: #000;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.contact-form-panel {
    background: #0D0D0D;
    border: 1px solid #1A1A1A;
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.premium-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 15px 20px;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
    outline: none;
    box-shadow: 0 0 15px rgba(0, 163, 168, 0.2);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M1 4l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.form-status {
    margin-top: 20px;
    font-size: 14px;
}

.alert.success {
    color: var(--primary-color);
    background: rgba(0, 163, 168, 0.1);
    padding: 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (max-width: 1200px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-map-panel {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map-panel {
        grid-column: span 1;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

.contact-info-panel {
    background: #0D0D0D;
    border: 1px solid #1A1A1A;
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.contact-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.contact-icon-box {
    width: 42px;
    height: 42px;
    background: rgba(0, 163, 168, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.contact-text p,
.contact-text .label,
.hour-row span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-link {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover h3 {
    color: var(--primary-color);
}

.phone-number,
.email-address,
.contact-link h3 {
    font-size: 20px !important;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin: 0 !important;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.contact-link h3 {
    color: #fff;
}

.phone-number a,
.email-address a {
    color: #fff !important;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    max-width: 100%;
}

.phone-number a:hover,
.email-address a:hover {
    color: var(--primary-color) !important;
}

.opening-hours-grid {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    gap: 100px;
}

.hour-row span {
    /* Styles unified with .label and .contact-text p above */
    margin-bottom: 0;
}

.hour-row strong {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
}

.closed-status {
    color: #ef4444 !important;
}

/* Mapa */
.contact-map-panel {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid #1A1A1A;
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 480px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(1) invert(0.92) contrast(1.1) brightness(0.9);
}

.map-overlay-bottom {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 5;
}

.map-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.g-logo {
    color: #fff;
    font-weight: 900;
    font-size: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 12px;
}

.map-rating .stars {
    color: #fbbf24;
    font-size: 12px;
    letter-spacing: 1px;
}

.map-rating .score {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.btn-navigate {
    background: var(--primary-color);
    color: #000;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-navigate:hover {
    background: #fff;
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-panel {
        padding: 30px;
    }

    .map-container {
        min-height: 380px;
    }
}

/* --- Single Post Layout --- */


.post-wrapper {
    padding: 80px 0;
    background: var(--bg-color);
    /* Zmieniono z #fff */
    color: #fff;
}

.post-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

.post-category-tag {
    background: var(--primary-color);
    color: #000;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.post-header-meta {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    /* Wycentrowanie w hero */
    gap: 25px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.single-post-content {
    line-height: 1.8;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.single-post-content .lead {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 40px;
}

.single-post-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--primary-color);
    /* Akcent zamiast czarnego */
    font-family: 'Orbitron', sans-serif;
}

.single-post-content p {
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.8);
}

.post-inline-image {
    width: 100%;
    border-radius: 8px;
    margin: 30px 0;
    border: 1px solid var(--glass-border);
}

.single-post-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 24px 35px;
    margin: 45px 0;
    background: rgba(255, 255, 255, 0.03);
    font-style: italic;
    font-size: 18px;
    color: var(--text-muted);
}

.post-cta-box {
    background: var(--surface-color);
    border: 1px solid var(--primary-color);
    color: #fff;
    padding: 40px;
    border-radius: 12px;
    margin-top: 60px;
}

.post-cta-box h3 {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    margin-bottom: 15px;
}

.post-sidebar .sidebar-box {
    background: var(--surface-color);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.post-sidebar h4 {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    color: #fff;
}

.sidebar-links {
    list-style: none;
    padding: 0;
}

.sidebar-links li {
    margin-bottom: 12px;
}

.sidebar-links a {
    text-decoration: none;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.sidebar-links a:hover {
    color: var(--primary-color);
}

.sidebar-phone {
    font-size: 24px;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    text-decoration: none;
}

@media (max-width: 992px) {
    .post-layout {
        grid-template-columns: 1fr;
    }
}



/* --- New Service Detail Layout --- */
.service-detail-section {
    padding: 80px 0;
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.service-detail-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* User provided background */
    background-image: url('assets/tlo-moto-space.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.service-detail-section .container {
    position: relative;
    z-index: 1;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: start;
}

.service-main-content h2 {
    margin-bottom: 25px;
    text-align: left !important;
}

.service-description {
    margin-bottom: 40px;
}

.service-description p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px 30px;
    margin-bottom: 30px;
    list-style: none;
    padding: 0;
}

.service-features-list li {
    font-size: 14px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 8px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 16px;
    /* Increased to 16px */
}

.service-features-list li i {
    color: var(--secondary-color);
    /* Yellow checkmarks */
    font-size: 16px;
    /* Increased to 16px */
}

.service-gallery {
    position: relative;
    height: 600px;
    /* Increased height to match About Section */
    margin-top: 70px;
}

.service-gallery .img-card {
    position: absolute;
    transition: all 0.5s var(--transition-smooth);
}

.service-gallery .main-img {
    width: 60%;
    /* Match About */
    height: 80%;
    /* Match About */
    top: 0;
    right: 0;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    /* Lightweight shadow */
}

.service-gallery .sub-img {
    width: 50%;
    /* Match About */
    height: 45%;
    /* Match About */
    bottom: 0;
    left: 0;
    z-index: 1;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    /* Lightweight shadow */
}

.service-gallery .small-img {
    position: absolute;
    width: 36%;
    height: 37%;
    top: 11%;
    left: 9%;
    right: auto;
    bottom: auto;
    z-index: 3;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.service-gallery .img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Sidebar Components --- */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* --- Alternative Minimalist Sidebar Design --- */
.sidebar-service-box {
    background: rgba(13, 13, 13, 0.95);
    border: 1px solid rgba(0, 163, 168, 0.15);
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.sidebar-service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0.8;
}

.sidebar-service-box:hover {
    border-color: rgba(0, 163, 168, 0.3);
    box-shadow: 0 12px 40px rgba(0, 163, 168, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.sidebar-service-box h4 {
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: 3px;
    font-weight: 700;
    position: relative;
    padding-left: 0;
}

.sidebar-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-list li {
    padding: 0;
    border-bottom: none;
}

.sidebar-list a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    padding: 12px 0;
    background: transparent;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.sidebar-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 0;
    background: var(--primary-color);
    transition: width 0.4s var(--transition-smooth);
}

.sidebar-list a:hover {
    color: var(--primary-color);
    padding-left: 0;
    /* No shift */
    letter-spacing: 1.2px;
}

.sidebar-list a:hover::after {
    width: 100%;
}

.sidebar-list a i {
    font-size: 12px;
    color: var(--primary-color);
    opacity: 0.5;
    transition: transform 0.3s ease;
}

.sidebar-list a:hover i {
    transform: translateX(5px);
    opacity: 1;
}

/* sidebar-list a i - duplicate removed, kept primary definition above */

/* --- Consultation Form Sidebar --- */
.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-input-dark {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 15px;
    color: #fff;
    border-radius: 4px;
    font-family: inherit;
    font-size: 13px;
    width: 100%;
}

.form-input-dark:focus {
    border-color: var(--secondary-color);
    outline: none;
}

.btn-consultation {
    background: var(--secondary-color);
    color: #000;
    border: none;
    padding: 18px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.btn-consultation:hover {
    background: #fff;
    transform: translateY(-2px);
}

/* --- Sidebar Contact CTA --- */
.sidebar-contact-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-cta-item {
    background: transparent;
    border: none;
    padding: 5px 0;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-cta-item:hover {
    transform: translateX(8px);
}

.contact-cta-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 700;
}

.contact-cta-value {
    font-size: 16px;
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
}

.contact-cta-item i {
    color: var(--secondary-color);
    margin-right: 10px;
}

@media (max-width: 992px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-features-list {
        grid-template-columns: 1fr;
    }

    .service-gallery {
        height: 500px;
    }

    .service-gallery .main-img {
        width: 70%;
    }

    .service-gallery .sub-img {
        width: 60%;
    }

    .service-gallery .small-img {
        width: 40%;
        left: 0;
    }
}

/* Pakiet Premium Accent */
.komplet-premium {
    border: 1px solid var(--secondary-color) !important;
    position: relative;
    box-shadow: 0 0 30px rgba(251, 188, 4, 0.15);
    background: linear-gradient(to bottom, #111, #000) !important;
}

.komplet-premium::before {
    content: 'DLA WYMAGAJĄCYCH';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: #000;
    padding: 7px 26px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    font-family: 'Orbitron', sans-serif;
    z-index: 5;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.komplet-premium .price-value {
    color: var(--secondary-color) !important;
    text-shadow: 0 0 15px rgba(251, 188, 4, 0.3);
}

.komplet-premium .cta-package-btn {
    background: var(--secondary-color) !important;
    color: #000 !important;
    border-color: var(--secondary-color) !important;
}

.komplet-premium .cta-package-btn:hover {
    background: #fff !important;
    color: #000 !important;
    border-color: #fff !important;
}

/* 
=============================================
   Border Trace Animation Button Component
=============================================
*/

@keyframes borderTraceRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.border-trace-btn {
    position: relative !important;
    overflow: hidden !important;
    background: rgba(255, 255, 255, 0.11) !important;
    /* increased opacity per request */
    border: none !important;
    border-radius: 4px;
    z-index: 1;
    isolation: isolate;
    color: #fff !important;
    padding: 18px 36px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    transition: background-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

/* Ensure default pseudo-elements don't interfere */
.border-trace-btn::after,
.border-trace-btn::before {
    display: none !important;
}

/* The Gradient Border Container */
.btn-border-gradient {
    position: absolute;
    inset: 0;
    border-radius: 4px;
    padding: 1.5px;
    /* Defines border thickness */
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

/* The Spinning Gradient itself (inside the masked container) */
.btn-border-gradient::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: conic-gradient(from 0deg,
            transparent 0%,
            transparent 70%,
            rgba(255, 255, 255, 0.8) 85%,
            #ffffff 90%,
            rgba(255, 255, 255, 0.8) 95%,
            transparent 100%);
    transform: translate(-50%, -50%);
    animation: borderTraceRotate 4s linear infinite;
    will-change: transform;
}

/* Specific text styling */
.btn-text {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Hover Effects */
.border-trace-btn:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    /* Slightly more visible on hover */
    box-shadow: 0 0 20px rgba(0, 163, 168, 0.15);
    /* Subtle outer glow */
    transform: translateY(-2px);
}

.border-trace-btn:hover .btn-border-gradient::before {
    /* Speed up or brighten on hover */
    filter: drop-shadow(0 0 2px #fff);
}

.border-trace-btn:hover .btn-text {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

/* .post-read-more-placeholder removed - not used */

/* Brands & Products Section - Carousel Marquee */
.brands-section {
    padding: 80px 0;
    background: #050505;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.brands-slider {
    width: 100%;
    position: relative;
    margin-top: 50px;
    overflow: hidden;
    /* This ensures logos are hidden outside the grid */
}

/* Gradient faders on sides */
.brands-slider::before,
.brands-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brands-slider::before {
    left: -2px;
    background: linear-gradient(to right, #050505, transparent);
}

.brands-slider::after {
    right: -2px;
    background: linear-gradient(to left, #050505, transparent);
}

.brands-track {
    display: flex;
    width: calc(300px * 16);
    /* 8 items duplicated = 16 slides */
    animation: scrollBrands 40s linear infinite;
}

.brands-track:hover {
    animation-play-state: paused;
}

.brand-slide {
    width: 300px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.brand-logo-img {
    max-width: 170px;
    height: auto;
    filter: grayscale(100%) brightness(1.2) contrast(0.8);
    opacity: 0.5;
    transition: all 0.4s ease;
}

.brand-slide:hover .brand-logo-img {
    filter: grayscale(0%) brightness(1) contrast(1);
    opacity: 1;
    transform: scale(1.08);
    /* Minimal scale */
}

/* .brand-name removed - no longer used in HTML */

@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-300px * 8));
    }
}

@media (max-width: 768px) {

    .brands-slider::before,
    .brands-slider::after {
        width: 100px;
    }

    .brand-slide {
        width: 220px;
    }

    .brands-track {
        width: calc(220px * 16);
    }

    @keyframes scrollBrands {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-220px * 8));
        }
    }

    .brand-logo-img {
        max-width: 130px;
    }
}