:root {
    /* Modern Corporate Color Palette */
    --primary-color: #0f172a;
    /* Slate 900 - Trustworthy & Professional */
    --primary-light: #334155;
    /* Slate 700 */
    --accent-color: #3b82f6;
    /* Blue 500 - Action & Clarity */
    --accent-hover: #2563eb;
    /* Blue 600 */
    --gold-accent: #d4af37;
    /* Premium touch */

    /* Backgrounds & Surfaces */
    --bg-body: #ffffff;
    --bg-surface: #f8fafc;
    /* Slate 50 */
    --bg-surface-alt: #f1f5f9;
    /* Slate 100 */

    /* Typography Colors */
    --text-main: #1e293b;
    /* Slate 800 */
    --text-muted: #64748b;
    /* Slate 500 */
    --text-light: #94a3b8;
    /* Slate 400 */
    --text-white: #ffffff;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-accent: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #c5a028 100%);

    /* Spacing System */
    /* Spacing System - Capped for better desktop control */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: clamp(3rem, 5vw, 4rem);
    --space-xl: clamp(4rem, 8vw, 6rem);

    /* Borders & Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --border-light: 1px solid #e2e8f0;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --duration-fast: 0.2s;
    --duration-normal: 0.4s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
    /* Default base size */
}

body {
    font-family: 'Poppins', 'Inter', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography Overrides */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--primary-color);
}

p {
    color: var(--text-muted);
    font-weight: 400;
    font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--duration-fast) ease;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--accent-color);
}

.text-gold {
    color: var(--gold-accent);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    /* Modern pill shape */
    transition: all var(--duration-fast) var(--ease-out);
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.01em;
    white-space: nowrap;
    /* Prevent breaking on small screens */
}

.btn svg {
    width: 36px;
    /* Increased from 26px */
    height: 36px;
    transition: transform var(--duration-fast);
}

.btn:hover svg {
    transform: scale(1.1);
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: var(--shadow-md);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.1);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-white {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    background: var(--bg-surface);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    transition: all var(--duration-normal) var(--ease-out);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.logo span {
    color: var(--accent-color);
}

.nav-menu {
    display: flex;
    gap: var(--space-md);
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width var(--duration-fast) var(--ease-out);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    /* Changed from height to min-height */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Added for horizontal centering */
    text-align: center;
    /* Ensure text alignment inheritance */
    position: relative;
    background: var(--gradient-hero);
    color: white;
    overflow: hidden;
    padding-top: 80px;
    /* Offset for navbar */
    padding-bottom: var(--space-lg);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1560185893-a55cbc8c57e8?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    opacity: 0.2;
    mix-blend-mode: overlay;
}

.hero-overlay {
    /* Optional geometric pattern overlay */
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.15), transparent 40%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    padding: 0 var(--space-md);
    margin: 0 auto;
    /* Ensure centering */
}

.hero-title {
    font-size: clamp(2.5rem, 5vw + 1rem, 5rem);
    /* Fluid typography */
    line-height: 1.1;
    margin-bottom: var(--space-md);
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    /* Slate 400 */
    margin-bottom: var(--space-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: var(--space-sm);
}

/* Scroll Mouse Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Services Section */
.section-padding {
    padding: var(--space-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.service-card {
    background: white;
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    border: var(--border-light);
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(59, 130, 246, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--bg-surface-alt);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    transition: background var(--duration-fast);
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-card:hover .service-icon {
    background: var(--accent-color);
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.service-features {
    list-style: none;
    margin-top: auto;
    padding-top: var(--space-sm);
    border-top: 1px solid var(--bg-surface-alt);
}

.service-features li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
}

/* Gallery Section */
.gallery {
    background: var(--bg-surface);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-md);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.gallery-image {
    width: 100%;
    height: 100%;
    transition: transform 0.6s var(--ease-out);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background-color: var(--bg-surface-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-muted);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-md);
    opacity: 1;
    /* Always visible */
    transition: opacity var(--duration-normal);
}

.gallery-overlay h4 {
    color: white;
    transform: translateY(0);
    /* No transform */
    transition: transform var(--duration-normal);
}

.gallery-overlay p {
    color: var(--text-light);
    font-size: 0.9rem;
    transform: translateY(0);
    /* No transform */
    transition: transform var(--duration-normal) 0.1s;
}

/* About / Stats Section */
.about-stats {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    justify-content: space-between;
}

.stat-item {
    text-align: center;
    padding: var(--space-md);
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

/* Features List (About) */
.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    transition: background var(--duration-fast);
}

.feature-box:hover {
    background: white;
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    min-width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Contact Section */
.contact {
    background: white;
}

/* About Section Specifics */
.about-section-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 16/9;
    /* More cinematic ratio */
    width: 100%;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--duration-normal);
}

.about-section-wrapper:hover .about-image img {
    transform: scale(1.03);
    /* Subtle zoom on hover for professional feel */
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-lg);
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-xl);
}

.contact-info h3 {
    margin-bottom: var(--space-md);
}

.contact-item {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    box-shadow: var(--shadow-sm);
}

.contact-form {
    background: white;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: var(--space-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--bg-surface-alt);
    /* Light border */
    background: var(--bg-surface);
    border-radius: var(--radius-sm);
    font-family: inherit;
    transition: border-color var(--duration-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: white;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: var(--space-lg) 0 var(--space-md);
}

/* Input Groups */
.input-group {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-light);
    /* Default border */
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-surface);
    transition: border-color var(--duration-fast);
}

.input-group-prefix {
    padding: 0 1rem;
    background: var(--bg-surface-alt);
    color: var(--text-muted);
    font-weight: 500;
    border-right: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-width: 60px;
}

.input-group input {
    border: none !important;
    border-radius: 0 !important;
    flex: 1;
    background: transparent !important;
    padding: 1rem !important;
    /* Ensure padding matches other inputs */
    height: 100%;
}

.input-group:focus-within {
    border-color: var(--accent-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.input-group:focus-within .input-group-prefix {
    background: white;
    color: var(--accent-color);
    border-color: var(--bg-surface-alt);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer h3 {
    color: white;
    margin-bottom: var(--space-sm);
}

.footer h4 {
    color: var(--text-light);
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.footer p {
    color: var(--text-light);
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 0.5rem;
}

.footer a {
    color: var(--text-light);
}

.footer a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-md);
    text-align: center;
    color: var(--text-light);
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Reviews Ticker Section */
.reviews-section {
    background: var(--bg-surface);
    overflow: hidden;
    position: relative;
}

.reviews-track {
    display: flex;
    gap: var(--space-md);
    width: max-content;
    animation: scroll 40s linear infinite;
    padding: var(--space-md) 0;
}

.reviews-track:hover {
    animation-play-state: paused;
}

.review-card {
    background: white;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    width: 350px;
    flex-shrink: 0;
    border: 1px solid var(--border-light);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-sm);
}

.review-stars {
    color: var(--gold-accent);
    font-size: 0.9rem;
}

.review-name {
    font-weight: 600;
    color: var(--primary-color);
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Assumes track is duplicated for seamless loop */
}

/* Models Slider */
.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: var(--space-md) 0;
}

.slider-track {
    display: flex;
    width: calc(300px * 12);
    /* 6 images * 2 (duplicated) * width */
    animation: scroll-slider 30s linear infinite;
    gap: var(--space-md);
}

.slider-track:hover {
    animation-play-state: paused;
}

.slide {
    width: 300px;
    height: 400px;
    /* Portrait aspect for shower cabins usually looks better */
    flex-shrink: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: white;
    padding: var(--space-xs);
    /* White border effect */
    transition: transform var(--duration-normal);
}

.slide:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-sm);
    display: block;
}

@keyframes scroll-slider {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-300px * 6 - var(--space-md) * 6));
    }
}

/* --- RESPONSIVE DESIGN --- */

/* Global Responsive Resets */
img {
    max-width: 100%;
    height: auto;
}

/* TV & Ultra Wide Screens (> 1600px) */
@media (min-width: 1600px) {
    .container {
        max-width: 1400px;
        /* Reduced from 1500px to maintain tighter corporate feel */
    }

    /* Removed font-size: 18px to keep standard desktop look */

    .hero-title {
        font-size: 5rem;
        /* Cap at 5rem instead of 5.5rem */
    }

    .services-grid {
        gap: var(--space-lg);
    }
}

/* Laptop (1024px - 1440px) - Handled by default styles */

/* Tablet Landscape & Small Laptops (1024px - 1200px) */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

/* Tablet Portrait (768px - 1024px) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

    .contact-wrapper {
        gap: var(--space-md);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

/* Mobile & Small Tablets (< 768px) */
@media (max-width: 768px) {
    :root {
        --space-lg: 3rem;
        /* Reduce large spacing on mobile */
        --space-xl: 4rem;
    }

    .container {
        padding: 0 var(--space-sm);
    }

    .hero-title {
        font-size: 2.5rem;
        /* Adjusted for better fit */
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: var(--space-sm);
    }

    .btn {
        width: 100%;
        padding: 1rem 1.5rem;
        /* Larger touch target */
    }

    .btn svg {
        width: 40px;
        /* Larger icon on mobile */
        height: 40px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: var(--space-md);
    }

    .contact-wrapper .contact-info {
        order: 2;
        /* Put form first or info first? Keeping default order is usually fine, or form first for leads. */
    }

    .about-section-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        text-align: center;
    }

    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 85%;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: var(--space-xl) var(--space-md);
        transition: right var(--duration-normal) var(--ease-out);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1001;
        /* Ensure above everything else */
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: block;
        z-index: 1002;
        /* Above nav menu */
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--primary-color);
        margin: 5px 0;
        transition: all 0.3s;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* About Stats stack on mobile */
    .about-stats {
        flex-direction: column;
        gap: var(--space-sm);
    }

    /* Services Grid Adjustment */
    .services-grid {
        grid-template-columns: 1fr;
        /* Stack services on mobile */
    }

    /* Process Grid Adjustment */
    .process-grid {
        grid-template-columns: 1fr !important;
        /* Stack process steps */
    }

    /* Slider Adjustment */
    .slide {
        width: 250px;
        /* Smaller slides for mobile */
        height: 350px;
    }

    .slider-track {
        width: calc(250px * 12);
        /* Update track width calc */
        animation: scroll-slider 25s linear infinite;
        /* Slightly faster feel */
    }

    @keyframes scroll-slider {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-250px * 6 - var(--space-md) * 6));
        }
    }

    .mobile-bottom-nav {
        display: flex;
    }

    /* Add padding to body/footer to prevent buttons from covering content */
    body {
        padding-bottom: 70px;
        /* Increased padding */
    }
}

/* Small Mobile (< 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .service-card {
        padding: var(--space-sm);
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* Even smaller slides for very small screens */
    .slide {
        width: 220px;
        height: 320px;
    }

    .slider-track {
        width: calc(220px * 12);
    }

    @keyframes scroll-slider {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-220px * 6 - var(--space-md) * 6));
        }
    }
}